diff --git a/conf/app.ini b/conf/app.ini index c5aeeb94e..8710e3d01 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -299,5 +299,22 @@ ARGS = LANGS = en-US,zh-CN,zh-HK,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,ja-JP,es-ES,pt-BR,pl-PL,bg-BG,it-IT NAMES = English,简体中文,繁體中文,Deutsch,Français,Nederlands,Latviešu,Русский,日本语,Español,Português,Polski,български,Italiano +; Used for datetimepicker +[i18n.datelang] +en-US = en +zh-CN = zh +zh-HK = zh-TW +de-DE = de +fr-FR = fr +nl-NL = nl +lv-LV = lv +ru-RU = ru +ja-JP = ja +es-ES = es +pt-BR = pt-BR +pl-PL = pl +bg-BG = bg +it-IT = it + [other] SHOW_FOOTER_BRANDING = false \ No newline at end of file diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 32c92405a..2843b8175 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -399,6 +399,14 @@ milestones.closed = Closed %s milestones.no_due_date = No due date milestones.open = Open milestones.close = Close +milestones.new_subheader = Create milestones to organize your issues. +milestones.create = Create Milestone +milestones.title = Title +milestones.desc = Description +milestones.due_date = Due Date (optional) +milestones.clear = clear +milestones.invalid_due_date_format = Due date format is invalid, must be 'mm/dd/year'. +milestones.create_success = Milestone '%s' has been created successfully! settings = Settings settings.options = Options diff --git a/config.codekit b/config.codekit index 0a4616570..120180d3b 100644 --- a/config.codekit +++ b/config.codekit @@ -95,15 +95,6 @@ "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 }, - "\/public\/css\/datepicker3.css": { - "fileType": 16, - "ignore": 0, - "ignoreWasSetByUser": 0, - "inputAbbreviatedPath": "\/public\/css\/datepicker3.css", - "outputAbbreviatedPath": "No Output Path", - "outputPathIsOutsideProject": 0, - "outputPathIsSetByUser": 0 - }, "\/public\/css\/font-awesome.min.css": { "fileType": 16, "ignore": 0, @@ -140,6 +131,15 @@ "outputPathIsOutsideProject": 0, "outputPathIsSetByUser": 0 }, + "\/public\/css\/jquery.datetimepicker.css": { + "fileType": 16, + "ignore": 0, + "ignoreWasSetByUser": 0, + "inputAbbreviatedPath": "\/public\/css\/jquery.datetimepicker.css", + "outputAbbreviatedPath": "No Output Path", + "outputPathIsOutsideProject": 0, + "outputPathIsSetByUser": 0 + }, "\/public\/css\/jquery.minicolors.css": { "fileType": 16, "ignore": 0, diff --git a/gogs.go b/gogs.go index 6c24e9986..1513bbfae 100644 --- a/gogs.go +++ b/gogs.go @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.3.0804 Beta" +const APP_VER = "0.6.3.0805 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/models/issue.go b/models/issue.go index cf62134b5..0835d1c9c 100644 --- a/models/issue.go +++ b/models/issue.go @@ -640,6 +640,7 @@ type Milestone struct { Completeness int // Percentage(1-100). Deadline time.Time DeadlineString string `xorm:"-"` + IsOverDue bool `xorm:"-"` ClosedDate time.Time } @@ -651,6 +652,9 @@ func (m *Milestone) BeforeSet(colName string, val xorm.Cell) { } m.DeadlineString = t.Format("2006-01-02") + if time.Now().After(t) { + m.IsOverDue = true + } } } diff --git a/modules/auth/repo_form.go b/modules/auth/repo_form.go index 6fb8ef919..986390217 100644 --- a/modules/auth/repo_form.go +++ b/modules/auth/repo_form.go @@ -117,9 +117,9 @@ func (f *CreateIssueForm) Validate(ctx *macaron.Context, errs binding.Errors) bi // \/ \/ \/ \/ \/ type CreateMilestoneForm struct { - Title string `form:"title" binding:"Required;MaxSize(50)"` - Content string `form:"content"` - Deadline string `form:"due_date"` + Title string `binding:"Required;MaxSize(50)"` + Content string + Deadline string } func (f *CreateMilestoneForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 3b1cf2ad3..d068d7c45 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -112,7 +112,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x79\x4d\x93\xe3\x46\x72\xf6\x1d\xbf\xa2\x44\xbd\x7a\x35\xe3\x00\xd9\x5f\x9a\x0f\xb5\xd4\xb6\xd8\x24\xc8\xc6\x0e\xbf\x04\x90\x33\x1a\x4d\x74\xa0\xd1\x40\x91\x84\x1a\x44\x61\x50\x40\xf7\x70\xc3\x87\x55\xf8\xe0\x08\x1f\xed\x0d\xfb\xe2\x83\x7d\x70\x38\xc2\xf6\xda\xde\xf0\x65\x77\x1d\x3e\x29\x7c\x9f\xf9\x0f\x0a\xed\xfa\x5f\xf8\xc9\x2a\x80\x04\x7b\x5a\xb3\xda\xb5\x1d\x33\xd1\x04\xea\x23\xab\x32\x2b\xf3\xc9\x27\x0b\xef\xb3\x91\xf5\xd4\x72\x98\xfa\x33\x1c\x77\xed\xde\x73\x36\x3d\xb3\x5d\xd6\xb3\x07\x96\xf1\x3e\x9b\x0c\xac\xb6\x6b\xb1\x61\xfb\x89\xc5\x3a\x67\xed\x51\xdf\x72\xd9\x78\xc4\x3a\x63\xc7\xb1\xdc\xc9\x78\xd4\xb5\x47\x7d\xd6\x99\xb9\xd3\xf1\x10\x8d\xa3\x9e\xdd\xd7\x33\x8d\x4f\x58\x3b\x4d\x59\xe2\xaf\x38\xcb\x97\x7e\xce\xe4\x52\xdc\x48\x26\x12\xc6\xaf\x79\xb6\x66\xa9\xbf\x40\x47\x94\xc7\xdc\x68\x4f\x26\xde\xa8\x3d\xb4\xd8\x09\xeb\x8b\x85\x3c\xc6\x5f\xd6\x8f\x72\xe6\xf2\xec\x3a\x0a\x38\x24\x75\x96\x7e\x82\xe1\x68\x8b\xe6\x6c\x2d\x0a\x96\x15\x09\x8b\x45\xe0\xc7\xf1\xda\x70\x66\x23\x6f\xe6\x62\xf7\x27\x6c\x11\xe5\x18\x6d\x45\xf9\x92\x67\xac\x11\xf2\xeb\x86\xc9\x1a\x69\x26\xc2\x06\x13\x68\xc8\xb9\xcc\xd1\x12\xf2\xb9\x5f\xc4\x90\x25\xf5\x18\x25\x01\xaa\xd3\x06\xf0\x6e\x18\x2f\x32\x9e\x0a\x19\xe5\x22\x5b\x9f\x1b\xce\x78\x3c\x65\x27\x86\xdb\x71\xec\xc9\xd4\x9b\x3e\x9f\xd0\xb0\x4b\x5f\x2e\x31\xae\x88\xce\xb1\xde\xa8\x58\x5d\x62\x3d\x31\x87\x44\x59\x70\xa9\xf5\xf5\x33\xae\x74\xe6\x21\x8b\x12\xe8\xcd\x95\xca\x86\xed\xba\x33\xcb\x9b\xb4\xfb\xb0\x9b\x37\x9a\x0d\x21\xec\x60\x1f\xa2\x24\x94\xe5\xd9\xb9\x31\x71\xc6\xd3\x71\x67\x3c\x40\xfb\x32\xcf\x53\xa3\x3b\x1e\xb6\xed\x11\xde\x94\xba\x4b\x21\x73\xb5\x23\x6f\xe6\xd0\x90\x0f\xee\x55\xe3\xef\xcb\xe3\xbd\xbd\x0f\xee\xe9\xe1\x78\xf9\xe0\xde\xd9\x74\x3a\xf1\x26\x63\x67\x7a\x5f\xee\x19\xea\xa5\xdd\xed\xc2\x4a\xc6\xa6\x03\x02\x8e\xf6\xf7\xf7\xa1\x42\x37\x92\xfe\x65\xcc\x99\xeb\x9e\xb1\x39\xf7\xf3\x02\x9b\xbf\x59\xf2\x84\x25\x02\x9a\x5c\xfb\x51\x4c\xdd\x46\xd7\x76\xdb\xa7\x03\xcb\xa3\x61\x27\x6c\xee\xc7\x92\x1b\x78\xae\x84\x1d\x1e\xd6\x44\x75\xba\x23\x3a\xea\x84\xb4\x2f\xcf\x60\x25\x42\x6e\x8c\x7b\xbd\x81\x3d\xb2\x2a\x83\x6b\x21\x95\x60\x67\x3c\x9b\x5a\x8e\x37\x18\xf7\x37\x5d\x9f\xb0\x3e\x4f\x78\xe6\xe7\x30\x67\xce\x53\x79\x8c\x96\xff\xc7\x82\x10\xe6\xcc\x97\x7b\xb9\xd8\x5b\xc0\x67\xf6\x82\x42\xe6\x62\xb5\x47\x26\x93\x6a\x40\x4b\xb5\xb3\x80\x67\x39\x6b\x06\xfe\x49\x9e\x15\x9c\x35\xc3\x02\x82\x22\x91\x9c\x3c\x7e\xf4\x70\x7f\xb9\xbf\xda\x97\xac\x49\x36\x3d\x59\xad\xe9\xa7\xc5\x5f\xf9\xab\x34\xe6\xad\x40\xac\x8c\x4f\x20\x67\x9c\xb1\x79\x26\x56\xcc\x67\xad\x74\xfe\x8a\xcd\x23\x28\xc6\x5f\xa5\x22\xcb\x71\xac\xaa\x07\xae\xc6\x9e\x45\x49\x48\xce\x4d\x8b\x45\xf3\x28\xd0\x7b\x15\xb0\xe1\xbd\x50\x40\x0a\x19\x71\x2e\xb2\x05\xcf\x59\x2e\xca\xf9\x6a\x62\x9a\x45\xd7\x34\xf8\x8a\xaf\xef\x6b\xbd\x44\xca\x13\x29\x63\x96\x5e\x05\xf2\xe0\x90\x35\x61\x3c\x92\xaa\x56\x6f\x8a\x22\x2f\xdf\xf8\x8a\x35\x13\x81\x69\xf2\x87\xcd\xc2\xc8\x6a\x12\x75\x48\x7a\x08\xb9\x34\x3a\x96\x33\xf5\x28\x5e\x61\xee\xba\x09\xf7\xaa\x65\x8c\x27\xd6\xf3\x3b\x07\x94\x12\xb1\xfc\x2c\x4d\xe1\xfd\x31\xce\x3a\xa6\x18\xc8\x39\x2c\x48\x4a\xf9\x49\x08\x2b\xc0\xdc\x81\xb6\x1b\x9d\x17\x86\xd7\xa2\x4f\x99\x00\xad\xe4\x6a\x30\x16\x05\x3f\x35\xf3\x57\x3c\x28\x60\x60\xc3\x9d\xb6\xa7\x76\xc7\x53\xfe\x3e\x69\x4f\xe1\x73\x1a\x55\x62\x32\x31\x4e\xb1\x5c\xb4\xff\xa5\x3d\x61\xb2\x48\xc9\xac\x86\x35\x52\x8e\xa4\xda\xb6\x2e\x34\xc0\x66\xa2\x64\xa1\x51\x07\x47\x81\x23\x49\x9a\xb1\x58\x2c\x70\x8c\x05\x42\x4f\x9a\x2c\xf0\x13\x76\xc9\x59\x63\x29\x56\x5c\xc3\x05\x0e\x2a\xc6\x21\x36\x8c\x41\x5b\xc1\x1c\x45\x2d\xd9\x81\x46\x20\x62\x43\x3f\xf7\x81\x03\xfc\xbc\x06\x39\xab\xb5\x7c\x19\x2b\xd0\x81\x37\x2d\x32\x2e\xb5\x24\x34\x46\x39\x3f\x42\x47\x94\x7f\x28\x09\xc1\x32\x16\x2c\x05\x81\x5b\xf7\xb4\xc2\x14\x35\xd7\x38\x1b\xbb\x14\x4a\x07\x87\x8f\x5a\xfb\xf8\x77\x70\x7c\x74\xb4\xff\xd0\x28\xe1\x91\x5c\xda\x28\xb1\x2e\x13\x22\x37\x26\x6d\xd7\x7d\xd6\x55\x76\xe9\xd1\x42\xb5\x65\x93\x78\x6d\x32\x5e\x41\xa1\x0e\x4a\xda\x59\xc6\x5f\x16\x51\x56\xaa\x08\xc8\x89\xe6\xeb\xe6\xbc\x88\xe3\x06\x22\x79\xb0\x81\x41\x3d\xbe\x12\x5b\xed\x5f\x49\x35\xf4\x51\x30\xd2\x5f\x05\x59\x2b\xbc\x84\x39\xfc\x70\x15\x25\xe7\x0a\xc9\x82\x22\x8b\x72\x40\xa7\x3d\xc2\x09\x0e\x06\x08\xe7\xce\x93\xda\x61\xbc\xf7\x9e\x4e\x24\x3a\xcf\x4c\xc7\xec\x89\x65\x4d\xd8\xf3\xf1\xcc\x61\x4a\xb7\x6e\x7b\xda\x66\x6e\xbb\x67\xbd\xf7\x9e\xe1\x5a\x1d\xc7\x9a\x7a\xf0\x42\x08\x78\xef\xfd\xcf\x7a\x5d\xeb\x99\x83\xff\xff\xff\x0f\xee\x91\x2f\x14\xb9\xa0\x63\x84\xbf\x67\x7c\xc5\x15\x0c\x87\x3e\x82\x02\x00\x62\x8f\x3c\xc7\x1a\x5a\xc3\x53\xe0\x49\xb7\xfd\xdc\xc5\xfc\x47\x46\x67\x3c\x7e\x62\x5b\x2a\x5d\xd4\x4c\xea\xf9\x37\x5c\xd2\xa1\x96\xdd\x9b\x79\xf5\x31\x51\x12\x64\x3c\x8c\xb4\x55\x1c\x4a\x62\x92\x02\x58\xbc\x5a\x33\xbf\x80\x95\x93\xbc\xf2\xca\x25\xf7\x43\x6c\x44\xa5\x3e\x04\x04\xf9\x97\x7a\x31\x1c\x4a\xb2\x2e\xd0\xdf\x19\x7f\xf1\xdc\x6b\xcf\xa6\x67\xd6\x08\x0e\x0e\x27\x1f\x6f\x52\xd8\x17\xcd\x67\xd6\x29\x75\x35\xa9\xa1\x4c\x0c\x70\x94\x73\xa3\xdd\x99\xda\x4f\x2d\xaf\x83\x13\xf2\x06\xf4\x34\xb4\x47\x40\x4b\x52\xec\xe0\xf1\x3e\x84\xbb\x16\x85\x09\x39\xc4\xf7\x0e\x42\xb4\xaa\xdd\x70\xf8\x3d\xa0\x28\x10\xc9\x3c\xca\x56\x8c\x37\x57\x80\x78\x15\x18\x19\x5f\x44\x32\xd7\x28\x09\x99\x7d\xdb\x25\x40\xb6\x90\x55\x06\x9e\xca\xef\xce\xb0\x76\x94\x5d\x81\x74\xa7\x72\x44\x1c\x8b\x9b\x72\x32\x16\xa0\xd8\x57\x0e\xc1\x60\x34\x05\x06\x41\x20\x8a\x24\xd7\x0e\xb4\x41\x7b\x25\xde\x51\xfa\xd7\x84\xaa\x2d\xae\x00\x36\x4c\x46\x0b\x95\x3f\xb0\xd5\xeb\x88\xdf\x40\xec\x3a\x5f\x22\x8e\x5b\xd8\xd9\xe7\x33\xdb\x41\x26\xb2\xfb\x23\x9c\xf4\x53\xdb\x7a\x56\x93\xd0\xf1\x03\x40\x0b\xf2\x56\xee\x63\x2f\x92\xa5\x51\x40\x29\xad\x02\x87\x4e\xbb\x73\x66\x79\xed\xa7\xf0\x33\xa7\x36\x6b\x48\x36\x80\x32\x1a\xc2\x49\xff\x72\xfc\x68\x3c\x05\x2d\xf2\xc8\x06\xf5\xe1\x04\xf0\x21\xcf\x31\xeb\x58\xe5\x6a\xca\xc0\x60\x20\xcb\xe2\x92\xf2\x07\x85\x46\x94\x4b\x9d\x9e\x34\x31\xd8\x3b\x78\xf8\xa0\x92\xf9\x2e\x5f\xd8\x2c\xf2\x7d\x63\xc7\xdf\x67\xba\xae\x50\xa7\x01\xed\x83\x2b\x06\xf3\x47\xab\x62\x45\xe0\x0f\x4b\xfe\x18\x19\x1d\x9b\xc3\x99\x67\x00\x88\x54\x68\x40\xcc\xd7\xe9\x36\xfb\xc2\x57\xec\xe1\x6c\x48\xd1\x06\xc3\x7e\x09\x43\x9d\x59\xb5\xc8\x35\x5e\xdc\xf0\xcb\xa5\x10\x57\x84\x78\x67\xf8\x65\xb9\x2f\xaf\xd8\xcb\x82\x23\xb5\xc6\x3c\x59\x00\xdf\x3f\x9f\x59\xa0\x37\x03\x6b\xd4\x57\x18\x71\x50\xd2\x0b\x1e\x47\x08\x18\xf0\xbd\x15\xa7\x74\x84\x23\x05\x4a\x60\x0b\xd2\xe8\x5a\xe4\xa6\x8e\x37\xb5\x87\x16\x92\x3f\xe6\x3c\xa0\xc0\x56\xee\x14\x25\x0a\x4b\x78\x2d\xb1\xd2\xa9\xb8\x4f\xec\x89\x37\x1d\xb8\x1e\xe6\x11\x5d\xdd\xee\x8f\xbc\x98\x48\x94\xb6\x5b\xb7\x66\x98\xd3\x62\x3e\x57\x59\x8a\x76\x49\x51\x19\x80\x52\x26\x3c\x36\x61\x1d\x9e\x12\xb3\x84\x9b\x44\x2a\x2b\x95\x14\x33\x14\xc9\x87\x48\x9c\x09\xf6\x71\x43\x7c\x4e\x75\xb6\x00\x48\xa3\xae\x77\x3a\xeb\xf5\x88\xa6\x58\x23\x4d\xdf\xc0\x01\x29\xd8\x81\x9a\x48\x7d\x6b\xcd\xf8\x54\x44\x69\x82\xeb\xce\x4e\x7f\x64\x75\xa6\x8a\xaf\x55\x64\xf7\xbe\xac\x3c\x4e\x33\x3f\xe2\x39\x2b\xe5\x4a\x72\x95\xa7\xad\x05\x3d\x93\x1b\x1d\x3f\x78\xfc\x08\x7d\x9f\x7f\x5e\x76\xbc\x7c\xa9\x5a\x0f\xc9\x4a\x23\x91\x73\x93\xf6\xab\x12\x29\x91\x0a\x0e\x93\xea\x63\x6e\x7c\xf4\xf0\x01\xe0\xde\x1d\x4e\x27\x2e\x5a\xe2\x98\x92\x1b\xa0\x28\x6c\x21\xbe\xe8\xe4\x01\xcd\xce\x14\x56\x24\x4a\xae\xe6\x62\x21\x52\x3f\xc3\xc1\xac\x56\x10\x04\x35\x28\xb1\x3b\xbd\x0e\x7b\xf8\xd1\xfe\xc7\x2d\x66\xeb\x85\xf4\x7e\xab\x84\x2b\xb7\x82\x60\x21\xb5\x90\x1f\xdf\x00\x83\x37\xeb\x55\x29\xad\xc6\x0d\xcf\xac\xc1\x98\x48\x8b\x86\x19\xcd\x34\x89\x7f\x29\xc8\x24\xe2\x1c\x46\x74\x5c\xc0\xd4\xd6\xc6\x39\xd5\x1c\x25\xa5\xa3\x78\xc8\x76\x02\xc1\xd6\xae\xc4\x1d\x8e\xaf\x68\x9a\x5c\x03\x97\x56\xd8\x0b\xc6\x79\xb4\xa1\x12\xda\xb7\x31\xa3\x53\xa1\xd2\xb0\xce\xe3\x44\x5d\xe9\x16\x1b\x03\xbf\x48\x2d\x34\x92\x68\xac\x2c\x79\x3c\x6f\x12\x50\xc1\x5e\xb5\x89\x52\xbb\xe9\xc6\x45\x35\xae\xb1\x20\x8e\xa0\x55\x7d\x20\xe5\x73\x8f\x78\x98\xdd\xa3\xf0\xdf\x72\xe2\x3b\xb8\x99\xf6\xef\x77\x91\xb3\x72\xc4\x96\x9d\x29\x17\xd3\x1c\x36\x0c\x11\xf8\x60\x3a\x74\xa2\x0f\x8e\x0e\x0f\x5b\x6c\x4a\x4a\x94\xc4\xe7\x2b\x02\x5c\x3c\x72\xe5\xb8\x9b\xc1\xd0\x90\xf4\xbf\x68\x90\x87\x37\xd8\xa7\xaa\xfb\xb3\x1a\x4f\xfe\xc3\x0b\x32\xc3\x0a\x11\x62\xf4\x1c\x14\x81\x27\xe5\xa2\x70\x91\x4d\xe6\x53\xf9\x20\xf5\xa5\xbc\x11\x59\x58\x12\x98\x2d\x77\x31\x5e\x08\xca\xa0\x6f\x87\x6d\xd9\xd1\xd2\xa0\xfa\x76\x7f\x67\x60\x03\x34\x3d\x9b\x84\x94\xcf\x9a\x2f\xa8\x7a\x6d\x3c\x51\x69\xaf\x42\x66\x3f\x8d\x5a\x35\x74\xa6\xbd\x19\x04\xbb\x65\x25\x75\x07\x80\x2b\x62\xb1\xa7\xb6\xb0\x47\x7f\x44\x06\x10\x35\xa6\xe3\x27\xd6\xe8\x07\x4e\x0a\x02\xd8\xd0\xcb\x41\xd4\x13\x43\x15\x32\x79\xe5\x00\x51\xa8\xf9\x31\x47\x7e\xcc\xd5\xf9\xa0\xbf\x12\x07\x64\x94\x02\xd6\x0d\x89\xde\x92\x53\xcb\xd6\x42\x88\x85\xb6\xf7\x1e\x38\xc7\x57\x3c\xc8\x37\xc6\x51\x3d\xff\x43\xe3\xdc\xdc\xdc\x94\x82\x60\x26\xa9\x96\x51\x1a\x90\x95\xa2\x64\x2e\x5a\xda\x2b\x7e\xf0\x70\xec\x91\x38\xff\x5d\x06\x2e\x99\xc0\x8e\x4a\x42\x1b\xec\x50\x49\xb9\xd3\xc2\xef\x9c\x55\x1a\xb8\x34\xc8\xcb\x97\xbf\xa7\x31\x50\x9f\x79\xa4\x81\x47\x2a\x28\xcc\x65\xdf\xfe\xea\xcf\x7f\xf3\xf5\x4f\xef\xf4\x93\xcc\x4f\x97\x25\x1a\x97\xfb\x68\xed\xff\x36\x37\xb9\x73\xce\xee\xee\x6f\x78\x74\x29\x7e\x4f\x05\x40\xc2\xee\xb4\x38\x3c\x5f\x89\xad\xad\xfb\x5b\x76\x7a\xf7\x94\x1d\x77\x7e\x11\x10\xc9\xda\x29\x7e\xf8\x4a\x64\x6b\x5d\x63\x20\x15\x36\x14\x78\x50\xab\x1a\x79\xeb\xe2\xa5\x1c\x6c\xb4\xbb\xed\xc9\x54\x31\x5f\xdd\x52\x95\x1c\x65\x7f\x59\xc7\xf4\x3b\x48\xa9\x20\x96\xd7\x7e\x5c\x23\x0f\x3b\x12\x1f\xee\xa3\xde\x80\xa4\xa7\x6d\x52\xe4\xe1\x7e\x25\x48\xef\x45\x45\x5b\x7d\x2f\x10\x90\x20\x8a\x14\x5f\x17\x84\x7c\x1a\xf0\x30\x4b\x4d\x38\x06\x47\xce\x81\x56\x57\x27\x79\x90\x9a\xd4\x79\x72\xfc\xf0\xe8\xd1\xc7\x66\x85\x62\x27\x2b\x3f\xf0\x33\xa4\x9a\xf0\xf2\x64\xdf\x4c\x85\x88\x3d\xe2\x58\x27\x60\x3c\x66\x14\xc6\xdc\x2b\xb9\xce\x89\xa6\xdd\xd5\xca\xc7\xec\x62\x5b\xda\x1d\x1c\x1c\x1e\x1c\x5c\x94\xf9\x51\x51\x7d\x29\xb1\xa1\xbb\x6d\x4a\xf1\xb4\xb5\xad\x36\x6d\x59\x6d\xde\x65\x57\x70\xc5\xa7\x76\x77\xd7\xb0\x93\x4c\x5c\x47\x54\x9a\x28\xde\xbf\x40\xbe\x24\xfd\xa5\xde\x1e\x86\x1c\xab\x44\xb8\xf4\xaf\x09\xb0\xd7\xd5\xa8\x35\xa7\x4b\x35\x5a\x1e\x14\x44\xef\x70\x5b\xd0\xa3\xc4\x6c\x2d\x5a\xec\x42\x15\x83\x65\xaf\xbc\xf8\x3f\xb3\x22\x29\x7c\x8c\x7a\xac\x89\xdf\x66\x98\x11\xa9\xdc\x53\x8d\x2c\x94\x49\xb5\x61\x94\x2f\x20\x38\xd5\xce\xa8\x4e\x3e\xae\xd6\xfb\xac\xda\xa3\x97\x13\x11\xb9\xd8\x98\xc9\x2b\xef\x2e\xcb\xb2\xb6\xd2\x04\x6b\xba\xa5\xca\x01\x08\x6f\xc4\x75\x21\x57\xd6\x89\x25\x87\x88\xbc\x38\xba\xe2\x9e\xe6\xfb\x98\x61\x6b\x02\x49\x2c\xa1\xb2\x17\x7c\x56\x85\x56\xe9\xce\x75\x76\xa2\xc3\x5b\x0b\x44\x48\xcf\x1c\xab\x46\x5b\xad\x44\xf1\x25\x49\x89\x43\xad\xbf\x33\x97\xee\xb4\xaa\x1a\x81\x8a\x3f\x2d\x05\xd3\x55\xc7\x76\xeb\x88\x1e\xb2\xe3\x26\x84\x76\x84\x3c\x06\xb9\xdb\x37\xfa\x1d\xaf\x8a\x1e\x45\xc5\x21\x44\x77\x6c\xa5\xc4\xd1\x9c\x2b\x39\x77\x4c\x77\x2d\xd7\xa5\x22\x76\x60\xf7\xac\xdd\xf9\xc6\x8b\xb2\xf8\x22\xaf\x9e\x12\x4f\x8d\xfd\x80\x53\x45\x57\xb6\x2b\x83\x6f\x6f\x2a\x34\xd1\xd2\xfe\xfd\x12\x05\x4c\x71\xcb\xbf\xcb\x7e\xac\xe8\x3c\xb5\x3b\xb4\x4e\xc9\x9f\x75\x39\xe7\xcd\x26\x83\x71\xbb\xeb\xd5\xef\x28\x74\x1d\x28\xd5\x3d\x72\x94\x70\xc9\xf5\x95\x8f\x22\x3e\x01\xea\x19\x34\x34\xc2\x42\xc8\x65\x21\x1a\x46\xdf\x29\x05\xb9\xe3\x99\xa3\xe4\x03\xb5\x95\x80\x0d\x13\xad\x86\xd4\x78\x8a\x9f\xe7\x88\x6e\xb0\xe6\x9c\xd4\x7c\xb6\xe4\x4a\x99\x6d\xab\x54\xac\x96\xab\xd3\x04\x03\xef\x6a\x85\x24\x99\xe1\x82\x0e\xeb\xa2\x3c\xc6\xed\xd9\x4d\xe8\x5e\x8c\xf8\x65\x4d\xc8\xad\x89\x5a\xb9\x6d\xf7\xc5\xce\xcd\x4c\xad\x83\x2e\x32\x13\x4e\x26\x5d\x51\xcd\xaa\x6a\x75\xba\x00\x40\xed\x27\xcb\x30\x89\x56\xfe\x82\xef\x7d\x95\xf2\xc5\x1f\xeb\xc7\x34\x59\x18\xed\xc1\x60\xfc\xcc\xea\xaa\x0b\x2a\xca\x2f\x77\x0e\x22\xb6\xf7\x4a\xd7\x97\xe0\xca\x1c\x6b\x2a\x74\xd8\xdd\xeb\xd1\xe1\xf0\xd4\x18\xb6\xbf\x50\x65\x25\x5d\x3b\x1f\x96\xf3\x92\xcd\xdd\x39\x4d\x92\xaa\xe2\x28\xd2\x58\xf8\xb7\xac\x84\x22\x8b\xa6\x13\xd9\x75\xab\x2b\x73\xf2\x45\x32\xb7\x9b\xf2\x00\x64\x9a\xeb\x0b\xc5\x92\x8c\x92\xe9\xe8\x5a\x6b\xcd\x00\x1f\x29\x5d\x27\x92\x59\xf8\x2d\x1b\x82\x0a\x03\x84\x8f\x2a\x21\xc8\x2e\x65\x59\x83\xe1\x08\x14\xba\xcc\xa7\x83\x6b\x8f\x5c\xbb\x63\xb2\x59\x12\xbd\xea\xfa\x54\x73\x39\xc5\xe5\xba\x7c\xea\x75\x1e\x1f\x1e\x56\xbf\x5f\xea\x87\x07\xfb\x66\x25\x7a\xf3\xa0\xbb\x8e\x8e\x8e\x3e\xde\x3c\x8c\xfc\x44\x98\xec\x49\x94\x23\x31\xa0\x66\x71\x73\x90\xea\xf2\x67\x88\x42\x2a\xda\x3c\x07\x99\x50\x09\x4c\xbd\xd2\xac\x32\xb9\xa9\xe3\x24\xb6\x42\x2a\x53\x8c\xfa\x97\x54\x5e\xd7\xcc\x20\x39\x57\xc8\x43\xec\x43\xc4\x7e\xb2\x68\x89\x6c\xb1\x97\x5e\x2d\xf6\xc8\x7a\x7b\xef\xe3\xa9\x49\x74\x33\xf7\xc9\x4f\x7a\x63\x67\xd8\xd6\xb9\x08\x3c\x56\x7f\xfb\xd8\xde\xbc\x56\x39\xa9\xa4\xa7\xf5\xa4\x44\xd9\x94\x7e\xa9\x44\xd5\xb1\x5b\xdd\x8e\xde\x0a\xdf\x6a\x6e\x55\x0e\xa1\xd4\xf4\xe9\x20\x24\x4f\x7d\x75\xc7\xbf\xc2\xc8\x08\xa5\x85\xfa\x58\x50\x79\x67\x35\xcd\x54\x5e\xd2\x30\xca\x5b\xca\xb2\xf5\x7f\xb3\xbc\xbf\x55\xd9\xeb\xeb\x8b\x4a\xf1\x69\x06\xe8\x22\x35\xbb\xfc\xb2\x58\xd0\x83\x0d\xdb\xd3\xef\x33\x3f\x53\xfa\x5b\x59\x26\x32\x7a\xe8\x64\x11\xdd\x07\xde\xce\xce\x5a\x82\x31\xb0\x9e\x5a\xc4\x52\xd4\xab\x51\x31\x95\xca\x36\x4a\x75\x7d\x53\x46\xc7\xd0\x2a\xdb\xcf\xab\x69\x9b\x09\xca\x18\xb7\x47\x53\xe3\x76\xe8\x27\xba\xc6\xd3\xc8\x23\xe9\xa6\x52\xc0\x2d\xe0\xdd\x18\xca\x32\x91\xe3\xf9\x9e\xbc\x21\x0f\x54\x31\x28\x08\x1a\xe8\x76\xa0\xa4\x06\xf7\xdf\xce\x37\x83\x71\xdf\x73\xc6\x53\x5d\xa9\x96\x60\x45\x91\x1c\x03\x5a\x6b\xe1\x4c\x77\x0c\x38\x45\xda\xcd\x8e\x0c\x65\xd3\x7d\x1d\xcd\xf4\x1d\xc8\xad\xec\xac\x2c\xbd\x81\x12\xb9\x8c\xe6\xf9\xbb\xe4\x1c\x3e\x06\x69\xf1\x13\x08\x64\x9f\x7e\x8a\x37\x93\x1d\x3e\x78\x58\x03\x19\xcf\x3d\xb3\x7b\xea\xa3\xd4\x63\x95\xc3\x16\x84\x84\x4a\xeb\x10\x95\xcc\xfa\x6d\xbd\xba\x6d\x7b\xf0\xfc\x2d\xcd\xac\x57\x69\x94\x29\xec\x58\x4b\xda\x0e\x09\xa0\xbd\xdc\x0b\x79\xcc\xe9\x5e\x73\x4e\xd7\x9d\x2b\x6c\x9b\x46\xec\x9a\xeb\x91\xda\xcc\xe6\xee\xb9\x76\xcc\xc9\x5d\x67\x9c\xd4\x4f\xcd\xe1\x25\x41\xd5\xec\x94\xd0\x4c\x7f\x37\x2d\xed\xb1\x42\x52\x06\x02\xdf\x41\x25\x1c\x0b\x54\x66\x64\x75\xa6\x1e\xf2\xf1\xd0\xad\x7f\x48\x9b\x62\x3e\x62\x2d\xdb\xc8\x56\x17\x2f\x35\x26\x0c\x21\x31\x96\x7b\x97\xd4\x3a\x39\x29\xc3\x02\xdc\x8e\x5c\xbe\x00\x3a\xea\xd8\x2f\xc2\xf4\x96\xdf\xd3\x90\xfa\xa7\x4d\xbc\xab\x3b\xc4\x1a\xf1\x2e\x3f\x4e\x6e\x3e\x39\x28\x24\xb9\x65\x25\x6a\xac\x5b\xe9\x5d\xb7\x6e\xbb\x1b\xe8\x46\xfe\x22\xc1\x72\x51\x50\x99\xae\xbc\x17\x22\xf2\xd0\xa8\xdd\xd0\xbd\x73\xe0\xad\x2b\xbb\x92\xb8\xff\xae\xf7\x1d\xea\x74\x39\x71\xd7\xed\x67\x27\xb1\xcd\xcf\x25\xe6\xbd\x68\x1c\xd4\xaf\x59\x1a\x66\xe3\x70\xe7\xfd\x9c\xce\xc4\xa2\xbb\x53\xb7\x66\xb6\x0d\xec\xde\x36\xdd\xf6\x6b\xd5\xd6\x7c\xbb\x5f\xad\xd8\xce\x07\x24\xa3\xeb\x90\x6c\x35\xee\x14\xf3\x42\xba\x27\x7c\x85\xa4\xa2\xb7\x77\xac\xbe\x3f\x1d\xd3\x9f\xcf\x36\x5f\xa6\xd5\x5d\xf7\x1f\x01\x7a\x33\x10\xd6\x93\x22\x9f\x3f\x36\xc8\x6b\x54\x3e\x01\x37\x3e\x57\xf1\xd0\xb7\xa7\x5e\xd7\xee\xf5\x76\xa3\x9f\xee\x7c\xb3\x45\xa1\xb9\x12\x79\xbb\xca\x0c\xb0\xe2\x87\x98\xc8\x16\xc1\x87\xd5\xb2\x8d\x66\xd3\x5f\xd0\x0e\x25\x0c\xc8\xf0\x02\x44\xa3\x6c\x42\x89\x4e\xa5\x43\x91\x6c\x12\x5e\x94\x37\x65\xb0\x52\x25\x6c\x28\x02\xa9\x1a\x16\xc1\xde\x41\xeb\x51\xeb\x01\x31\xde\xb6\xd3\xa7\x0d\xa8\xab\x19\xac\xb2\xe4\x7e\x4c\x17\xe4\x74\x79\xde\x52\x3b\x6e\xcd\x65\x70\x75\xfe\x16\x37\xb3\xd4\x07\x4a\xcd\xeb\xb7\x45\xe9\x52\x14\xd9\x96\x5e\x28\x8c\xfa\xa8\x55\xaf\x49\x0f\x3f\x7a\xb7\x96\xb4\x58\x5d\xcf\x22\xc9\x88\x4e\xa9\x0a\xa0\xd9\xcc\xfd\x85\xfc\x5d\x14\x25\x69\xa5\xaa\x1b\x3d\x5f\x44\x07\x8f\x09\x66\xda\x23\xd5\xc0\x93\xe6\xcc\x35\x7f\xbc\x6c\x76\x46\xf4\xf7\xec\x89\x19\xf2\x66\xd7\x32\xe7\x59\xb3\xe7\x98\x49\xdc\x1c\x0d\xcc\xf8\xba\x39\x78\x6a\x66\x45\xd3\x99\x99\x5f\xf9\xcd\x1f\x4d\x4c\x2e\x9b\x96\x6b\xa6\x79\xf3\xd4\x31\xd3\xb8\x39\x19\x98\x97\x8b\xe6\x69\xdf\xc4\x9a\xf6\x54\x7d\xa9\x24\xd9\x16\x60\x2a\x92\x4b\xf3\xd7\xff\xfc\x93\x6f\xff\xe3\x2f\xbe\xfd\xc5\xcf\xbe\xfb\xcb\x3f\x35\x7f\xfd\xcb\xaf\xff\xeb\x1f\x7f\x5a\xbe\x74\x79\x91\xcb\x60\x69\xf6\x32\x3f\xf9\xe6\xef\xfd\x48\x9a\x23\x8e\xe2\x14\x24\x05\x95\xfd\xc0\xcf\xaf\x23\xfe\x9f\x7f\x5b\x98\xaf\xff\xe6\xcd\x9f\xbc\xf9\xfa\xcd\xd7\xaf\x7f\xf5\xfa\x17\xaf\x7f\x69\x7e\xf7\x57\x7f\xf7\xdd\x5f\xff\xd3\x6f\xfe\xe5\x67\xa6\x25\x53\xff\x9b\x9f\x8b\xd8\x9c\x80\xaf\x15\x8b\xe2\x9b\x7f\x90\x78\x8c\xe5\x55\x64\xbe\xfe\xf9\x9b\x3f\x7b\xfd\xef\xaf\xff\xed\xf5\xbf\xbe\xf9\x89\x9e\x69\xda\xb9\x1f\x47\xc4\x9c\x8c\x17\x82\xbc\xfe\xdc\x70\xcf\xc6\xcf\xbc\x1e\x18\x0e\xf2\xfd\xa9\xa3\x3f\xf1\x56\xe8\xf6\xdf\x01\x00\x00\xff\xff\xba\x9f\xc1\x1c\x16\x23\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5a\x4b\x8f\xe3\x56\x76\xde\xf3\x57\x5c\x97\xe3\xb8\x3b\x90\x54\x2f\xf7\xc3\x65\x57\x62\x95\x44\xa9\x38\xad\x97\x49\xa9\xcb\xed\x46\x81\xc5\xa2\xae\x24\x76\x51\x24\x9b\x97\xac\x6a\x19\x59\x8c\x91\x45\x80\x2c\x93\x41\xb2\xc9\x22\x59\x04\x01\x92\x4c\x92\x41\x36\x33\x13\x64\x65\x64\xdf\xfd\x1f\x0c\xcf\xe4\x5f\xe4\x3b\xe7\x92\x12\x55\x5d\xee\xf1\x4c\x32\xb0\x51\x22\xef\xe3\xdc\x7b\xbe\x7b\x1e\xdf\xb9\xec\xf7\xc5\xc0\x7c\x6a\xda\x82\xff\xf4\x87\x6d\xab\xf3\x4c\x8c\x4f\x2d\x47\x74\xac\x9e\x69\xbc\x2f\x46\x3d\xb3\xe9\x98\xa2\xdf\x7c\x62\x8a\xd6\x69\x73\xd0\x35\x1d\x31\x1c\x88\xd6\xd0\xb6\x4d\x67\x34\x1c\xb4\xad\x41\x57\xb4\x26\xce\x78\xd8\x47\xe3\xa0\x63\x75\xf5\x4c\xe3\x13\xd1\x4c\x12\x11\x79\x4b\x29\xb2\x85\x97\x09\xb5\x88\x6f\x94\x88\x23\x21\xaf\x65\xba\x12\x89\x37\x47\x47\x90\x85\xd2\x68\x8e\x46\xee\xa0\xd9\x37\xc5\xb1\xe8\xc6\x73\x75\x84\xbf\xa2\x1b\x64\xc2\x91\xe9\x75\xe0\x4b\x48\x6a\x2d\xbc\x08\xc3\xd1\x16\xcc\xc4\x2a\xce\x45\x9a\x47\x22\x8c\x7d\x2f\x0c\x57\x86\x3d\x19\xb8\x13\x07\xbb\x3f\x16\xf3\x20\xc3\x68\x33\xc8\x16\x32\x15\x3b\x53\x79\xbd\x53\x13\x3b\x49\x1a\x4f\x77\x44\x8c\x86\x4c\xaa\x0c\x2d\x53\x39\xf3\xf2\x10\xb2\x94\x1e\xc3\x12\xa0\x3a\x6d\x00\xef\x86\xf1\x3c\x95\x49\xac\x82\x2c\x4e\x57\xe7\x86\x3d\x1c\x8e\xc5\xb1\xe1\xb4\x6c\x6b\x34\x76\xc7\xcf\x46\x34\xec\xd2\x53\x0b\x8c\xcb\x83\x73\xac\x37\xc8\x97\x97\x58\x2f\x9e\x41\xa2\xca\xa5\xd2\xfa\x7a\xa9\x64\x9d\xe5\x54\x04\x11\xf4\x96\xac\xb2\x61\x39\xce\xc4\x74\x47\xcd\x2e\x70\x73\x07\x93\x3e\x84\xed\xef\x41\x94\x82\xb2\x32\x3d\x37\x46\xf6\x70\x3c\x6c\x0d\x7b\x68\x5f\x64\x59\x62\xb4\x87\xfd\xa6\x35\xc0\x1b\xab\xbb\x88\x55\xc6\x3b\x72\x27\x36\x0d\xf9\xe0\x5e\x39\xfe\xbe\x3a\xda\xdd\xfd\xe0\x9e\x1e\x8e\x97\x0f\xee\x9d\x8e\xc7\x23\x77\x34\xb4\xc7\xf7\xd5\xae\xc1\x2f\xcd\x76\x1b\x28\x19\xeb\x0e\x08\x38\xdc\xdb\xdb\x83\x0a\xed\x40\x79\x97\xa1\x14\x8e\x73\x2a\x66\xd2\xcb\x72\x6c\xfe\x66\x21\x23\x11\xc5\xd0\xe4\xda\x0b\x42\xea\x36\xda\x96\xd3\x3c\xe9\x99\x2e\x0d\x3b\x16\x33\x2f\x54\xd2\xc0\x73\x29\xec\xe0\xa0\x22\xaa\xd5\x1e\xd0\x51\x47\xa4\x7d\x71\x06\xcb\x78\x2a\x8d\x61\xa7\xd3\xb3\x06\x66\x09\xb8\x16\x52\x0a\xb6\x87\x93\xb1\x69\xbb\xbd\x61\x77\xdd\xf5\x89\xe8\xca\x48\xa6\x5e\x06\x38\x33\x99\xa8\x23\xb4\xfc\x81\xf0\xa7\x80\x33\x5b\xec\x66\xf1\xee\x1c\x36\xb3\xeb\xe7\x2a\x8b\x97\xbb\x04\x99\xe2\x01\x0d\x6e\x17\xbe\x4c\x33\x51\xf7\xbd\xe3\x2c\xcd\xa5\xa8\x4f\x73\x08\x0a\xe2\xe8\xf8\xf1\xa3\x87\x7b\x8b\xbd\xe5\x9e\x12\x75\xc2\xf4\x78\xb9\xa2\x9f\x86\x7c\xe5\x2d\x93\x50\x36\xfc\x78\x69\x7c\x02\x39\xc3\x54\xcc\xd2\x78\x29\x3c\xd1\x48\x66\xaf\xc4\x2c\x80\x62\xf2\x55\x12\xa7\x19\x8e\x95\x7b\x60\x6a\xe2\x2c\x88\xa6\x64\xdc\xb4\x58\x30\x0b\x7c\xbd\xd7\x18\x18\xde\x9b\xc6\x90\x42\x20\xce\xe2\x74\x2e\x33\x91\xc5\xc5\x7c\x9e\x98\xa4\xc1\x35\x0d\xbe\x92\xab\xfb\x5a\xaf\x38\x91\x91\x52\xa1\x48\xae\x7c\xb5\x7f\x20\xea\x00\x8f\xa4\xf2\xea\xf5\x38\xcf\x8a\x37\xb9\x14\xf5\x28\xc6\x34\xf5\xc3\x66\x61\x64\x39\x89\x3a\x14\x3d\x4c\xa5\x32\x5a\xa6\x3d\x76\xc9\x5f\x01\x77\x15\xc2\xdd\x72\x19\xe3\x89\xf9\xec\xce\x01\x85\x44\x2c\x3f\x49\x12\x58\x7f\x88\xb3\x0e\xc9\x07\x32\x09\x04\x49\x29\x2f\x9a\x02\x05\xc0\xed\x6b\xdc\xe8\xbc\x30\xbc\xe2\x7d\x0c\x01\x5a\xc9\xd4\x00\x16\x39\x3f\x35\xcb\x57\xd2\xcf\x01\xb0\xe1\x8c\x9b\x63\xab\xe5\xb2\xbd\x8f\x9a\x63\xd8\x9c\x8e\x2a\x21\x41\x8c\x53\x2c\x16\xed\x7e\x69\x8d\x84\xca\x13\x82\xd5\x30\x07\x6c\x48\xdc\xb6\x31\xa1\x1e\x36\x13\x44\x73\x1d\x75\x70\x14\x38\x92\xa8\x1e\xc6\xf3\x39\x8e\x31\x87\xeb\xa9\x9a\xf0\xbd\x48\x5c\x4a\xb1\xb3\x88\x97\x52\x87\x0b\x1c\x54\x88\x43\xdc\x31\x7a\x4d\x0e\x73\xe4\xb5\x84\x03\x8d\x80\xc7\x4e\xbd\xcc\x43\x1c\x90\xe7\x95\x90\xb3\x5c\xa9\x97\x21\x07\x1d\x58\xd3\x3c\x95\x4a\x4b\x42\x63\x90\xc9\x43\x74\x04\xd9\x87\x8a\x22\x58\x2a\xfc\x45\x4c\xc1\xad\x7d\x52\xc6\x14\x9e\x6b\x9c\x0e\x1d\x72\xa5\xfd\x83\x47\x8d\x3d\xfc\xb7\x7f\x74\x78\xb8\xf7\xd0\x28\xc2\x23\x99\xb4\x51\xc4\xba\x34\x8e\x33\x63\xd4\x74\x9c\xb3\x36\xe3\xd2\xa1\x85\x2a\xcb\x46\xe1\xaa\x26\x64\x19\x0a\xb5\x53\xd2\xce\x52\xf9\x32\x0f\xd2\x42\x45\x84\x9c\x60\xb6\xaa\xcf\xf2\x30\xdc\x81\x27\xf7\xd6\x61\x50\x8f\x2f\xc5\x96\xfb\x67\xa9\x86\x3e\x0a\x41\xfa\xb3\x93\x35\xa6\x97\x80\xc3\x9b\x2e\x83\xe8\x9c\x23\x99\x9f\xa7\x41\x86\xd0\x69\x0d\x70\x82\xbd\x1e\xdc\xb9\xf5\xa4\x72\x18\xef\xbd\xa7\x13\x89\xce\x33\xe3\xa1\x78\x62\x9a\x23\xf1\x6c\x38\xb1\x05\xeb\xd6\x6e\x8e\x9b\xc2\x69\x76\xcc\xf7\xde\x33\x1c\xb3\x65\x9b\x63\x17\x56\x08\x01\xef\xbd\xff\x59\xa7\x6d\x9e\xd9\xf8\xff\x0f\xff\xe8\x1e\xd9\x42\x9e\xc5\x74\x8c\xb0\xf7\x54\x2e\x25\x87\xe1\xa9\x07\xa7\x40\x00\xb1\x06\xae\x6d\xf6\xcd\xfe\x09\xe2\x49\xbb\xf9\xcc\xc1\xfc\x47\x46\x6b\x38\x7c\x62\x99\x9c\x2e\x2a\x90\xba\xde\x8d\x54\x74\xa8\x45\xf7\x7a\x5e\x75\x4c\x10\xf9\xa9\x9c\x06\x1a\x15\x9b\x92\x98\x22\x07\x8e\x5f\xad\x84\x97\x03\xe5\x28\x2b\xad\x72\x21\xbd\x29\x36\xc2\xa9\x0f\x0e\x41\xf6\xc5\x2f\x86\x4d\x49\xd6\x41\xf4\xb7\x87\x5f\x3c\x73\x9b\x93\xf1\xa9\x39\x80\x81\xc3\xc8\x87\xeb\x14\xf6\x45\xfd\xcc\x3c\xa1\xae\x3a\x35\x14\x89\x01\x86\x72\x6e\x34\x5b\x63\xeb\xa9\xe9\xb6\x70\x42\x6e\x8f\x9e\xfa\xd6\x00\xd1\x92\x14\xdb\x7f\xbc\x07\xe1\x8e\x49\x6e\x42\x06\xf1\xbd\x83\xe0\xad\xbc\x1b\x09\xbb\x47\x28\xf2\xe3\x68\x16\xa4\x4b\x21\xeb\x4b\x84\x78\x76\x8c\x54\xce\x03\x95\xe9\x28\x09\x99\x5d\xcb\xa1\x80\x6c\x22\xab\xf4\x5c\xce\xef\x76\xbf\x72\x94\xed\x18\xe9\x8e\x73\x44\x18\xc6\x37\xc5\x64\x2c\x40\xbe\xcf\x06\x21\x00\x1a\x07\x03\xdf\x8f\xf3\x28\xd3\x06\xb4\x8e\xf6\x2c\xde\x66\xfd\x2b\x42\x79\x8b\x4b\x04\x1b\xa1\x82\x39\xe7\x0f\x6c\xf5\x3a\x90\x37\x10\xbb\xca\x16\xf0\xe3\x06\x76\xf6\xf9\xc4\xb2\x91\x89\xac\xee\x00\x27\xfd\xd4\x32\xcf\x2a\x12\x5a\x9e\x8f\xd0\x82\xbc\x95\x79\xd8\x8b\x12\x49\xe0\x53\x4a\x2b\x83\x43\xab\xd9\x3a\x35\xdd\xe6\x53\xd8\x99\x5d\x99\xd5\x27\x0c\xa0\x8c\x0e\xe1\xa4\x7f\x31\x7e\x30\x1c\x83\x16\xb9\x84\x41\x75\x38\x05\xf8\xa9\xcc\x30\xeb\x88\x73\x35\x65\x60\x30\x90\x45\x7e\x49\xf9\x83\x5c\x23\xc8\x94\x4e\x4f\x9a\x18\xec\xee\x3f\x7c\x50\xca\x7c\x97\x2d\xac\x17\xf9\xbe\xb1\xc3\xef\x83\xae\x1d\xf3\x69\x40\x7b\xff\x4a\x00\xfe\x60\x99\x2f\x29\xf8\x03\xc9\xaf\x90\xd1\xb1\x39\x9c\x79\x8a\x00\x91\xc4\x3a\x20\x66\xab\x64\x93\x7d\x61\x2b\x56\x7f\xd2\x27\x6f\x03\xb0\x5f\x02\xa8\x53\xb3\xe2\xb9\xc6\xf3\x1b\x79\xb9\x88\xe3\x2b\x8a\x78\xa7\xf8\x15\x99\xa7\xae\xc4\xcb\x5c\x22\xb5\x86\x32\x9a\x23\xbe\x7f\x3e\x31\x41\x6f\x7a\xe6\xa0\xcb\x31\x62\xbf\xa0\x17\x32\x0c\xe0\x30\xe0\x7b\x4b\x49\xe9\x08\x47\x8a\x28\x81\x2d\x28\xa3\x6d\x92\x99\xda\xee\xd8\xea\x9b\x48\xfe\x98\xf3\x80\x1c\x9b\xcd\x29\x88\x38\x96\xc8\x4a\x62\xa5\x53\x71\x9e\x58\x23\x77\xdc\x73\x5c\xcc\x23\xba\xba\xd9\x1f\x59\x31\x91\x28\x8d\x5b\xbb\x02\xcc\x49\x3e\x9b\x71\x96\xa2\x5d\x92\x57\xfa\xa0\x94\x91\x0c\x6b\x40\x47\x26\xc4\x2c\x61\x26\x01\x67\xa5\x82\x62\x4e\xe3\xe8\x43\x24\xce\x08\xfb\xb8\x21\x3e\xc7\x9d\x0d\x04\xa4\x41\xdb\x3d\x99\x74\x3a\x44\x53\xcc\x81\xa6\x6f\xe0\x80\xe4\xec\x88\x9a\x48\x7d\x2b\xcd\xf8\xd8\xa3\x34\xc1\x75\x26\x27\x3f\x32\x5b\x63\xe6\x6b\x25\xd9\xbd\xaf\x4a\x8b\xd3\xcc\x8f\x78\xce\x92\x4d\x49\x2d\xb3\xa4\x31\xa7\x67\x32\xa3\xa3\x07\x8f\x1f\xa1\xef\xf3\xcf\x8b\x8e\x97\x2f\xb9\xf5\x80\x50\x1a\xc4\x99\xac\xd1\x7e\x39\x91\x12\xa9\x90\x80\x54\x1f\xf3\xce\x47\x0f\x1f\x20\xdc\x3b\xfd\xf1\xc8\x41\x4b\x18\x52\x72\x43\x28\x9a\x36\xe0\x5f\x74\xf2\x08\xcd\xf6\x18\x28\x12\x25\xe7\xb9\x58\x88\xd4\x4f\x71\x30\xcb\x25\x04\x41\x0d\x4a\xec\x76\xa7\x25\x1e\x7e\xb4\xf7\x71\x43\x58\x7a\x21\xbd\xdf\x32\xe1\xaa\x8d\x20\x20\xc4\x0b\x79\xe1\x0d\x62\xf0\x7a\xbd\x32\xa5\x55\xb8\xe1\xa9\xd9\x1b\x12\x69\xd1\x61\x46\x33\x4d\xe2\x5f\x1c\x32\x89\x38\x4f\x03\x3a\x2e\xc4\xd4\xc6\xda\x38\x79\x0e\x4b\x69\x31\x0f\xd9\x4c\xa0\xb0\xb5\x2d\x71\x8b\xe3\x33\x4d\x53\x2b\xc4\xa5\x25\xf6\x82\x71\x2e\x6d\xa8\x08\xed\x1b\x9f\xd1\xa9\x90\x35\xac\xf2\xb8\xb8\xaa\x74\x43\x0c\x11\xbf\x48\x2d\x34\x92\x68\xac\xac\x64\x38\xab\x53\xa0\x02\x5e\x95\x89\x4a\x9b\xe9\xda\x44\x75\x5c\x13\x7e\x18\x40\xab\xea\x40\xca\xe7\x2e\xf1\x30\xab\x43\xee\xbf\xe1\xc4\x77\x70\x33\x6d\xdf\xef\x22\x67\xc5\x88\x0d\x3b\x63\x13\xd3\x1c\x76\x3a\x85\xe3\x83\xe9\xd0\x89\x3e\x38\x3c\x38\x68\x88\x31\x29\x51\x10\x9f\x17\x14\x70\xf1\x28\xd9\x70\xd7\x83\xa1\x21\xe9\x7f\xb1\x43\x16\xbe\x23\x3e\xe5\xee\xcf\x2a\x3c\xf9\x8f\x2f\x08\x86\x25\x3c\xc4\xe8\xd8\x28\x02\x8f\x8b\x45\x61\x22\xeb\xcc\xc7\xf9\x20\xf1\x94\xba\x89\xd3\x69\x41\x60\x36\xdc\xc5\x78\x1e\x53\x06\x7d\xdb\x6d\x8b\x8e\x86\x0e\xaa\x6f\xf7\xb7\x7a\x16\x82\xa6\x6b\x91\x90\xe2\x59\xf3\x05\xae\xd7\x86\x23\x4e\x7b\x65\x64\xf6\x92\xa0\x51\x89\xce\xb4\x37\x83\xc2\x6e\x51\x49\xdd\x11\xc0\x99\x58\xec\xf2\x16\x76\xe9\x4f\x9c\x22\x88\x1a\xe3\xe1\x13\x73\xf0\x03\x27\xf9\x3e\x30\x74\x33\x10\xf5\xc8\xe0\x42\x26\x2b\x0d\x20\x98\x6a\x7e\x2c\x91\x1f\x33\x3e\x1f\xf4\x97\xe2\x10\x19\x55\x0c\x74\xa7\x44\x6f\xc9\xa8\x55\x63\x1e\xc7\x73\x8d\xf7\x2e\x38\xc7\x0b\xe9\x67\x6b\x70\xb8\xe7\xff\x08\xce\xcd\xcd\x4d\x21\x08\x30\x29\x5e\x86\x35\x20\x94\x82\x68\x16\x37\xb4\x55\xfc\xe0\xe1\xd8\x23\x71\xfe\xbb\x00\x2e\x98\xc0\x96\x4a\xb1\x06\xec\x80\xa5\xdc\x89\xf0\x3b\x67\x15\x00\x17\x80\xbc\x7c\xf9\x3b\x82\x81\xfa\xcc\x25\x0d\x5c\x52\x81\x63\xae\xf8\xf6\x97\x7f\xf9\xeb\xaf\x7f\x72\xa7\x9d\xa4\x5e\xb2\x28\xa2\x71\xb1\x8f\xc6\xde\x6f\x32\x93\x3b\xe7\x6c\xef\xfe\x46\x06\x97\xf1\xef\xa8\x00\x48\xd8\x9d\x88\xc3\xf2\x59\x6c\x65\xdd\xdf\xb0\xd3\xbb\xa7\x6c\x99\xf3\x73\x9f\x48\xd6\x56\xf1\x23\x97\x71\xba\xd2\x35\x06\x52\xe1\x0e\x07\x0f\x6a\xe5\x91\xb7\x2e\x5e\x8a\xc1\x46\xb3\xdd\x1c\x8d\x99\xf9\xea\x96\xb2\xe4\x28\xfa\x8b\x3a\xa6\xdb\x42\x4a\x05\xb1\xbc\xf6\xc2\x0a\x79\xd8\x92\xf8\x70\x0f\xf5\x06\x24\x3d\x6d\x92\x22\x0f\xf7\x4a\x41\x7a\x2f\xec\x6d\xd5\xbd\x40\x40\x04\x2f\x62\xbe\x1e\x53\xe4\xd3\x01\x0f\xb3\x78\xc2\x11\x38\x72\x86\x68\x75\x75\x9c\xf9\x49\x8d\x3a\x8f\x8f\x1e\x1e\x3e\xfa\xb8\x56\x46\xb1\xe3\xa5\xe7\x7b\x29\x52\xcd\xf4\xf2\x78\xaf\x96\xc4\x71\xe8\x12\xc7\x3a\x06\xe3\xa9\x05\xd3\x50\xba\x05\xd7\x39\xd6\xb4\xbb\x5c\xf9\x48\x5c\x6c\x4a\xbb\xfd\xfd\x83\xfd\xfd\x8b\x22\x3f\x32\xd5\x57\x0a\x1b\xba\x1b\x53\xf2\xa7\x0d\xb6\x1a\xda\xa2\xda\xbc\x0b\x57\x70\xc5\xa7\x56\x7b\x1b\xd8\x51\x1a\x5f\x07\x54\x9a\x30\xef\x9f\x23\x5f\x92\xfe\x4a\x6f\x0f\x43\x8e\x38\x11\x2e\xbc\x6b\x0a\xd8\xab\x72\xd4\x4a\xd2\xa5\x1a\x2d\x0f\x0a\xa2\x77\xb8\x29\xe8\x51\x62\x36\xe6\x0d\x71\xc1\xc5\x60\xd1\xab\x2e\x7e\x6f\x28\x92\xc2\x47\xa8\xc7\xea\xf8\xad\x4f\x53\x22\x95\xbb\xdc\x28\xa6\x2a\x2a\x37\x8c\xf2\x05\x04\xa7\xdc\x19\xd5\xc9\x47\xe5\x7a\x9f\x95\x7b\x74\x33\x22\x22\x17\x6b\x98\xdc\xe2\xee\xb2\x28\x6b\x4b\x4d\xb0\xa6\x53\xa8\xec\x83\xf0\x06\x52\x17\x72\x45\x9d\x58\x70\x88\xc0\x0d\x83\x2b\xe9\x6a\xbe\x8f\x19\x96\x26\x90\xc4\x12\x4a\xbc\x60\xb3\xec\x5a\x85\x39\x57\xd9\x89\x76\x6f\x2d\x10\x2e\x3d\xb1\xcd\x0a\x6d\x35\x23\xe6\x4b\x8a\x12\x07\xaf\xbf\x35\x97\xee\xb4\xca\x1a\x81\x8a\x3f\x2d\x05\xd3\xb9\x63\xb3\x75\x78\x0f\xe1\xb8\x76\xa1\x2d\x21\x8f\x41\xee\xf6\x8c\x6e\xcb\x2d\xbd\x87\xa9\x38\x84\xe8\x8e\x8d\x94\x30\x98\x49\x96\x73\xc7\x74\xc7\x74\x1c\x2a\x62\x7b\x56\xc7\xdc\x9e\x6f\x3c\x2f\x8a\x2f\xb2\xea\x31\xf1\xd4\xd0\xf3\x25\x55\x74\x45\x3b\x03\xbe\xb9\xa9\xd0\x44\x4b\xdb\xf7\x4b\x14\x30\xf9\x2d\xfb\x2e\xfa\xb1\xa2\xfd\xd4\x6a\xd1\x3a\x05\x7f\xd6\xe5\x9c\x3b\x19\xf5\x86\xcd\xb6\x5b\xbd\xa3\xd0\x75\xa0\xe2\x7b\xe4\x20\x92\x4a\xea\x2b\x1f\x26\x3e\x3e\xea\x19\x34\xec\x4c\xf3\x58\x2d\xf2\x78\xc7\xe8\xda\x85\x20\x67\x38\xb1\x59\x3e\xa2\x36\x0b\x58\x33\xd1\x72\x48\x85\xa7\x78\x59\x06\xef\x06\x6b\xce\x48\xcd\xb3\x85\x64\x65\x36\xad\x8a\x59\xad\xe4\xd3\x04\x03\x6f\x6b\x85\x14\xc1\x70\x41\x87\x75\x51\x1c\xe3\xe6\xec\x46\x74\x2f\x46\xfc\xb2\x22\xe4\xd6\x44\xad\xdc\xa6\xfb\x62\xeb\x66\xa6\xd2\x41\x17\x99\x91\x24\x48\x97\x54\xb3\x72\xad\x4e\x17\x00\xa8\xfd\x54\xe1\x26\xc1\xd2\x9b\xcb\xdd\x17\x89\x9c\xff\xa9\x7e\x4c\xa2\xb9\xd1\xec\xf5\x86\x67\x66\x9b\x2f\xa8\x28\xbf\xdc\x39\x88\xd8\xde\x2b\x5d\x5f\x82\x2b\x4b\xac\xc9\xd1\x61\x7b\xaf\x87\x07\xfd\x13\xa3\xdf\xfc\x82\xcb\x4a\xba\x76\x3e\x28\xe6\x45\xeb\xbb\x73\x9a\xa4\xb8\xe2\xc8\x93\x30\xf6\x6e\xa1\x84\x22\x8b\xa6\x13\xd9\x75\xca\x2b\x73\xb2\x45\x82\xdb\x49\xa4\x0f\x32\x2d\xf5\x85\x62\x41\x46\x09\x3a\xba\xd6\x5a\x09\x84\x8f\x84\xae\x13\x09\x16\x79\x0b\x43\x50\x61\x04\xe1\xc3\x52\x08\xb2\x4b\x51\xd6\x60\x38\x1c\x85\x2e\xf3\xe9\xe0\x9a\x03\xc7\x6a\xd5\xc4\x24\x0a\x5e\xb5\x3d\xaa\xb9\xec\xfc\x72\x55\x3c\x75\x5a\x8f\x0f\x0e\xca\xdf\x2f\xf5\xc3\x83\xbd\x5a\x29\x7a\xfd\xa0\xbb\x0e\x0f\x0f\x3f\x5e\x3f\x0c\xbc\x28\xae\x89\x27\x41\x86\xc4\x80\x9a\xc5\xc9\x40\xaa\x8b\x9f\x3e\x0a\xa9\x60\xfd\xec\xa7\x31\x27\x30\x7e\xa5\x59\x45\x72\xe3\xe3\x24\xb6\x42\x2a\x93\x8f\x7a\x97\x54\x5e\x57\x60\x50\x52\x72\xe4\x21\xf6\x11\x87\x5e\x34\x6f\xc4\xe9\x7c\x37\xb9\x9a\xef\x12\x7a\xbb\xef\xe3\xa9\x4e\x74\x33\xf3\xc8\x4e\x3a\x43\xbb\xdf\xd4\xb9\x08\x3c\x56\x7f\xfb\xd8\xdc\xbc\x96\x39\xa9\xa0\xa7\xd5\xa4\x44\xd9\x94\x7e\xa9\x44\xd5\xbe\x5b\xde\x8e\xde\x72\xdf\x72\x6e\x59\x0e\xa1\xd4\xf4\xe8\x20\x94\x4c\x3c\xbe\xe3\x5f\x62\x64\x80\xd2\x82\x3f\x16\x94\xd6\x59\x4e\xab\xb1\x95\xec\x18\xc5\x2d\x65\xd1\xfa\xff\x59\xde\xdf\xaa\xec\xf5\xf5\x45\xa9\xf8\x38\x45\xe8\x22\x35\xdb\xf2\x32\x9f\xd3\x83\x05\xec\xe9\xf7\xcc\x4b\x59\x7f\x33\x4d\xe3\x94\x1e\x5a\x69\x40\xf7\x81\xb7\xb3\xb3\x96\x60\xf4\xcc\xa7\x26\xb1\x14\x7e\x35\x4a\xa6\x52\x62\xc3\xaa\xeb\x9b\x32\x3a\x86\x46\xd1\x7e\x5e\x4e\x5b\x4f\x60\x30\x6e\x8f\xa6\xc6\xcd\xd0\x4f\x74\x8d\xa7\x23\x8f\xa2\x9b\xca\x18\x66\x01\xeb\xc6\x50\x91\xc6\x19\x9e\xef\xa9\x1b\xb2\x40\xf6\xc1\x98\x42\x03\xdd\x0e\x14\xd4\xe0\xfe\xdb\xf9\xa6\x37\xec\xba\xf6\x70\xac\x2b\xd5\x22\x58\x91\x27\x87\x08\xad\x15\x77\xa6\x3b\x06\x9c\x22\xed\x66\x4b\x06\x63\xba\xa7\xbd\x99\xbe\x03\x39\x25\xce\x8c\xf4\x3a\x94\xa8\x45\x30\xcb\xde\x25\xe7\xe0\x31\x48\x8b\x17\x41\xa0\xf8\xf4\x53\xbc\xd5\xc4\xc1\x83\x87\x95\x20\xe3\x3a\xa7\x56\x87\x3f\x4a\x3d\xe6\x1c\x36\xa7\x48\xc8\x5a\x4f\x51\xc9\xac\xde\xd6\xab\xdd\xb4\x7a\xcf\xde\xd2\xcc\x7c\x95\x04\x29\xc7\x8e\x95\xa2\xed\x90\x00\xda\xcb\xbd\xa9\x0c\x25\xdd\x6b\xce\xe8\xba\x73\x89\x6d\xd3\x88\x6d\xb8\x1e\xf1\x66\xd6\x77\xcf\x95\x63\x8e\xee\x3a\xe3\xa8\x7a\x6a\xb6\x2c\x08\xaa\x66\xa7\x14\xcd\xf4\x77\xd3\x02\x8f\x25\x92\x32\x22\xf0\x1d\x54\xc2\x36\x41\x65\x06\x66\x6b\xec\x22\x1f\xf7\x9d\xea\x87\xb4\x31\xe6\xc3\xd7\xd2\xb5\x6c\xbe\x78\xa9\x30\x61\x08\x09\xb1\xdc\xbb\xa4\x56\xc9\x49\xe1\x16\xe0\x76\x64\xf2\x39\xa2\xa3\xf6\xfd\x7c\x9a\xdc\xb2\x7b\x1a\x52\xfd\xb4\x89\x77\xbe\x43\xac\x10\xef\xe2\xe3\xe4\xfa\x93\x03\x47\x92\x5b\x28\x51\x63\x15\xa5\x77\xdd\xba\x6d\x6f\xa0\x1d\x78\xf3\x08\xcb\x05\x7e\x09\x5d\x71\x2f\x44\xe4\x61\xa7\x72\x43\xf7\xce\x81\xb7\xae\xec\x0a\xe2\xfe\xdb\xde\x77\xf0\xe9\x4a\xe2\xae\x9b\xcf\x4e\xf1\x26\x3f\x17\x31\xef\xf9\xce\x7e\xf5\x9a\x65\xa7\xb6\x73\xb0\xf5\x7e\x4e\x67\x62\xd2\xdd\xa9\x53\x81\x6d\x1d\x76\x6f\x43\xb7\xf9\x5a\xb5\x81\x6f\xfb\xab\x95\xd8\xfa\x80\x64\xb4\x6d\x92\xcd\xe3\x4e\x30\x6f\x4a\xf7\x84\xaf\x90\x54\xf4\xf6\x8e\xf8\xfb\xd3\x11\xfd\xf9\x6c\xfd\x65\x9a\xef\xba\xff\x04\xa1\x37\x05\x61\x3d\xce\xb3\xd9\x63\x83\xac\x86\xf3\x09\xb8\xf1\x39\xfb\x43\xd7\x1a\xbb\x6d\xab\xd3\xd9\xf6\x7e\xba\xf3\x4d\xe7\xb9\xe6\x4a\x64\xed\x9c\x19\x80\xe2\x87\x98\x28\xe6\xfe\x87\xe5\xb2\x3b\xf5\xba\x37\xa7\x1d\x2a\x00\x28\xf0\x82\x88\x46\xd9\x84\x12\x1d\xa7\xc3\x38\x5a\x27\xbc\x20\xab\x2b\x7f\xc9\x25\xec\x34\xf6\x15\x37\xcc\xfd\xdd\xfd\xc6\xa3\xc6\x03\x62\xbc\x4d\xbb\x4b\x1b\xe0\xab\x19\xac\xb2\x90\x5e\x48\x17\xe4\x74\x79\xde\xe0\x1d\x37\x66\xca\xbf\x3a\x7f\x8b\x9b\x99\xfc\x81\x52\xf3\xfa\x4d\x51\xba\x88\xf3\x74\x43\x2f\x38\x46\x7d\xd4\xa8\xd6\xa4\x07\x1f\xbd\x5b\x4b\x5a\xac\xaa\x67\x1e\xa5\x44\xa7\xb8\x02\xa8\xd7\x33\x6f\xae\x7e\x1b\x45\x49\x5a\xa1\xea\x5a\xcf\xe7\xc1\xfe\x63\x0a\x33\xcd\x01\x37\xc8\xa8\x3e\x71\x6a\x5f\x2d\xea\xad\x01\xfd\x3d\x7d\x52\x9b\xca\x7a\xdb\xac\xcd\xd2\x7a\xc7\xae\x45\x61\x7d\xd0\xab\x85\xd7\xf5\xde\xd3\x5a\x9a\xd7\xed\x49\xed\x85\x57\xff\xd1\xa8\x26\x55\xdd\x74\x6a\x49\x56\x3f\xb1\x6b\x49\x58\x1f\xf5\x6a\x97\xf3\xfa\x49\xb7\x86\x35\xad\x31\x7f\xa9\x24\xd9\x26\xc2\x54\xa0\x16\xb5\x5f\xfd\xeb\x8f\xbf\xfd\xaf\xbf\xfa\xf6\xe7\x3f\xfd\xee\xaf\xff\xbc\xf6\xab\x5f\x7c\xfd\x3f\xff\xfc\x93\xe2\xa5\x2d\xf3\x4c\xf9\x8b\x5a\x27\xf5\xa2\x6f\xfe\xd1\x0b\x54\x6d\x20\x51\x9c\x82\xa4\xa0\xb2\xef\x79\xd9\x75\x20\xff\xfb\xef\xf3\xda\xeb\xbf\x7b\xf3\x67\x6f\xbe\x7e\xf3\xf5\xeb\x5f\xbe\xfe\xf9\xeb\x5f\xd4\xbe\xfb\x9b\x7f\xf8\xee\x6f\xff\xe5\xd7\xff\xf6\xd3\x9a\xa9\x12\xef\x9b\x9f\xc5\x61\x6d\x04\xbe\x96\xcf\xf3\x6f\xfe\x49\xe1\x31\x54\x57\x41\xed\xf5\xcf\xde\xfc\xc5\xeb\xff\x7c\xfd\x1f\xaf\xff\xfd\xcd\x8f\xf5\xcc\x9a\x95\x79\x61\x40\xcc\x49\x33\x8f\x29\xc3\x4f\x8c\x90\x78\x10\x4a\x91\x2b\xf8\x33\xc3\x43\x9e\x22\x89\x29\x9d\x1b\x8c\x0f\xe3\x64\x30\x48\x78\xfc\x6a\x61\x30\x52\xfc\x58\x1f\x9f\x19\x8c\x18\xff\xc3\x11\x83\x61\xa3\xf8\x98\x1a\x8c\x1d\x1e\xa3\xd0\x60\x00\xe9\xdf\x6f\x5c\x1b\x8c\x22\x7d\xba\xcd\x0d\x86\x12\x8f\x2f\x3c\x83\xf1\xa4\x55\x94\xc1\xa0\xe2\x91\x7f\x0d\x06\x97\xde\x42\x83\x11\xa6\x7f\x77\x32\x37\x18\x66\x22\xe3\x19\xdd\x19\x91\x03\x9f\x1b\xce\xe9\xf0\xcc\xed\x80\xac\x81\xba\x9c\xd8\xfa\x6b\x75\x19\xa8\xff\x37\x00\x00\xff\xff\x13\x55\x54\xc9\xe1\x23\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -127,7 +127,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 8982, mode: os.FileMode(420), modTime: time.Unix(1438485627, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 9185, mode: os.FileMode(420), modTime: time.Unix(1438756423, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -772,7 +772,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xdb\x72\x1c\x47\xd2\xde\x7d\x3f\x45\x4b\x0e\x9a\x52\x04\x38\x0c\x49\x61\x87\x43\x41\x52\x86\x00\xf1\xb0\x3f\x71\xf8\x09\x70\xd7\x6b\x06\xa3\xb7\x31\xdd\x98\xe9\xc5\x4c\xf7\xa8\x0f\x18\x61\xaf\xfc\x1a\x7e\x3d\x3f\x89\x33\xbf\xcc\xac\x43\x77\x0f\x28\xed\x3a\xfc\xdf\x00\x35\x55\x59\xa7\xac\xac\xac\x3c\x55\x75\xbe\xdb\x65\x45\xd9\x2d\xd3\x97\xe9\x71\xba\xcb\xab\x7a\x53\x76\x5d\xda\x95\x9b\xdb\x67\xeb\xa6\xeb\xcb\x22\x7d\x53\xf5\xf4\xbb\xbd\xaf\x96\x65\x92\xac\x9b\x6d\x49\xa0\x6f\xe9\x5f\x52\xe4\xdd\xfa\xa6\xc9\xdb\x82\x32\x4e\x2d\x9d\x94\xbf\xed\x36\x4d\xcb\x40\xbf\x48\x2a\x59\x97\x9b\x1d\xd7\xa1\x7f\x49\x57\xad\xea\xac\xaa\xe9\xe7\x15\xa5\xd2\x77\x75\xd2\x35\xcb\x2a\xdf\x64\x41\x01\x32\xac\xfc\xc7\xf4\xfb\xba\x48\xaf\xfa\x72\x97\xbe\xe8\xb6\xf9\x66\xf3\x2a\xef\x50\xa5\x2f\xd3\x7c\xb9\x6c\x86\xba\x7f\xf1\x5c\x0a\xa4\xf1\x66\xe8\xad\xf5\x8b\xa1\x97\xbc\x61\x67\x59\x1f\x77\x49\x5b\xae\x2a\x9a\x58\x4b\x59\x1f\x34\x99\xec\xcb\x9b\xae\xea\x79\xd0\x7f\x91\x54\x72\x5f\xb6\x5d\xd5\xf0\x78\xfe\x2c\xa9\x64\x97\xaf\x18\xe0\x92\xfe\x25\x7d\xb9\xdd\x6d\x72\x54\xb8\xd6\x64\xb2\xc9\xeb\xd5\x20\x30\xef\x35\x99\x24\x03\x61\xae\xce\x81\xb3\x8f\x9a\x4c\xca\x6d\x5e\x6d\x18\x3f\xcf\x38\x41\xed\x76\xdd\xbe\x01\x16\x2f\x35\x49\x63\xcc\xfa\x87\x5d\x89\x21\x3e\xbb\xa6\x54\xb2\xcc\x77\xfd\x72\x9d\x53\xce\x89\xa4\x12\x02\xda\x35\x34\xd6\xa6\x7d\x00\x9c\xfd\x48\x9a\x76\x95\xd7\xd5\x3f\xf2\x5e\xc6\x7f\x11\xfc\x4c\xb6\x55\xdb\x36\x3c\xf5\x33\x24\x92\xba\xdc\x67\xdc\x0e\xe5\x9c\x97\xfb\xb0\x15\x2e\xd9\x56\xab\x56\x66\xc9\x85\x67\xf8\xc5\xad\x70\xd9\x6d\xd3\xde\x69\xc1\x6b\x4e\x8e\xaa\xd2\x20\xb4\x34\xee\x3f\xaf\x09\x2f\x5a\x7a\x86\x1f\x11\x40\x97\xe4\xc5\xb6\xaa\xb3\x5d\x5e\x97\x8c\xa3\x63\xfe\x45\x78\xa1\x5f\x89\x2e\x77\xd6\x95\x7d\x5f\xd5\xab\x8e\x8b\x25\x2b\xbd\xd2\xac\x24\x28\x73\x79\x3c\x9e\x2e\xbb\x2d\xcb\x42\x46\xd4\xa5\xaf\x29\x9d\xec\x86\xcd\x86\xe6\xfe\xeb\x50\x76\x3d\xc3\x5f\xd2\x6f\x9a\x85\xfc\x4e\xaa\xae\xa3\x04\x65\xbf\x43\x22\xa1\x05\xa8\x97\x18\xd2\x09\x12\x49\xf2\xa9\x2b\xf3\x76\xb9\xfe\x9c\xc8\x7f\xf4\xc8\x89\xc5\x62\x71\x70\x69\x98\x1c\x94\x14\xa4\x07\xeb\x20\x59\x36\x05\xff\x38\xa1\x7f\xd4\x74\x55\x77\x3d\x91\xf4\xe7\x44\x13\x0c\x26\x29\x41\x63\x5f\xf5\x9b\xd2\x67\x62\x7f\x74\xbc\x0e\xe9\xeb\xaa\xed\xfa\x67\x7d\x45\x24\xf7\x61\xa8\x13\x9e\x1f\x91\x73\x56\xdc\xd8\x2e\x7f\xd3\x10\x76\x90\xdd\xd2\xfc\xce\x1e\xae\xfe\xfd\xfd\x51\x7a\x49\x5b\x7d\xd5\x96\x94\x4e\xa9\x0d\xfa\x47\x75\x7e\x58\x24\x54\xcb\x7a\x3a\xcd\xfb\xfc\x26\xef\x4a\x8f\x56\x2e\x14\x1a\x75\x65\xa0\x54\x66\x1b\x60\x11\x5d\x1f\xcd\x77\x8e\xce\xa9\x0d\xdd\x1d\xae\x8d\x73\xde\x22\x94\xcf\x5c\x03\x95\x2f\x37\x25\xe7\x53\x53\xe9\xbb\xf3\xf3\x8b\xd3\x9f\xd3\xb2\x5e\x55\x75\x99\xee\xab\x7e\x9d\x0e\xfd\xed\x7f\xcb\x56\x65\x5d\xb6\xc4\x44\x96\x55\x4a\x3b\xa3\x25\x22\x48\x89\x3c\x65\x72\x8b\xa4\xeb\x36\xd9\x56\xd0\x7b\x75\xf5\x3e\x3d\x63\x14\xef\xf2\x7e\x8d\x81\xf4\xeb\xa4\xfb\x75\xc3\x28\x72\x1d\x5e\xaf\xcb\xf4\xb6\xa2\x59\x03\xa8\xb9\x35\x7c\xa4\x85\x8e\x71\x91\x94\x6d\x9b\xd1\xbe\xef\x1f\x32\xad\xac\xed\x8d\x21\xa5\x09\x22\x9d\xba\xe9\xd3\x9b\x32\x45\x9d\x45\x92\xd8\x80\x0d\xbb\xc7\xbb\xdd\xa6\x5a\xca\x8e\x7d\x23\x65\x1e\xd1\xcc\xa2\x15\x4b\x21\x1c\x10\x65\x65\x01\xba\x88\xff\x3d\x34\x43\x9b\x46\x6c\x00\xf5\xd7\x25\xf1\xe5\xf5\x40\x5b\x2e\x27\x9e\xba\x69\x86\xe2\x2b\x50\xaa\x8d\xde\x13\x6a\xfa\xa1\xa1\x01\x03\x3b\x0e\xc0\x77\x71\x4c\x14\xc7\xa7\x42\x5b\x6e\x1b\xe2\x0e\x8e\xd8\x2b\x22\xa8\x7d\x45\x85\x34\xd3\x2e\xbf\xa7\xfd\xd6\x37\x69\xbf\xae\xba\xb4\x20\x62\x5b\x72\xc3\xb4\x35\x06\xe2\xc7\x42\x16\x44\xa0\x42\x1a\x96\x17\xaf\x01\xa0\xb6\x03\x51\xd3\x9a\x1a\x63\x6e\xcf\x47\x13\x35\x39\x37\x4e\x4c\x89\xda\x01\x7d\x13\xe5\x36\xc4\x5b\x99\xfb\x9d\x22\xa1\xbf\xc3\xf6\x69\x54\xf9\xed\x2d\x8d\xaa\x23\xaa\x78\x9b\x2e\x37\x0d\x91\xd4\xc7\x0f\xef\xa9\xf2\xba\xef\x77\xd9\xae\x69\x41\xc6\xd7\xd7\x97\xb4\x3d\xda\xde\xe7\x06\xb8\x66\x98\x7a\xd8\xde\xd0\xaf\xfd\xba\x22\x26\x90\x07\x0b\x04\x54\x6c\xf8\x80\xa9\xd3\xa6\x5e\x60\xad\x86\x76\x33\x5a\x46\xea\xd2\x4a\x0e\x0c\x8f\x87\xf0\x9c\xff\x5c\xf9\x51\x62\xba\x1d\x9d\xc2\x7b\x2c\x2a\x4d\xb5\xc4\x69\x42\xb4\xd5\xec\xb8\xdd\x80\xb8\x2e\x34\xc3\x53\x14\x4e\x20\x57\x2e\xe7\x10\x95\xe2\x8c\x0f\x78\xe9\x96\x26\xac\xbb\xf9\xea\x8c\xd0\x80\x2d\x8d\xdc\xdb\xb6\xd9\x52\xee\x6b\xfa\xe7\x33\xfc\xf0\xcf\xb8\x3d\xc0\xe4\x45\x41\x6c\xa6\x3b\x4a\x3f\xbc\x3e\x49\xff\xcb\x0f\xdf\x7f\xbf\x48\xdf\xf5\xbc\x21\x98\x46\xfe\xce\x6b\x4b\x49\x39\x10\x1d\x28\xed\xdc\x9e\x96\xff\x6b\x26\xf0\xaf\xd3\x17\x28\xfd\xef\xe5\x6f\x39\x9d\xb3\xe5\x62\xd9\x6c\x5f\xf1\xe6\xde\xe6\xfd\x22\xe1\x12\xa2\x1a\x25\xa7\xab\xb2\x2e\x28\xa1\xc7\xaa\x96\x05\x5c\x47\xcb\x83\x43\x56\x4e\xff\x6c\xd9\xd4\xb7\x55\xcb\x13\xfa\xa5\xce\x6f\x08\x27\x26\x17\x10\x3b\x46\x89\x9d\x5d\x84\x34\xda\xc8\xd5\xed\x83\x07\xc5\x54\xcf\x39\x53\x17\x34\x61\x59\x89\x1a\x55\x91\xc9\x61\xf9\x0a\xd9\x58\xb7\x0b\x9a\x5e\x6b\xf8\xee\x3c\xc2\x9b\xdb\xdb\x0d\x31\x36\x63\x56\xda\xc3\x85\xe4\x0a\xdf\x0a\x41\x88\x18\x77\x90\x6c\x4e\xab\x0e\x90\x27\xa7\xe7\x69\x79\x4f\xd4\x46\xe4\xb0\x6b\x9b\x62\x58\x82\xc2\x18\xf6\x28\xe5\x63\x82\xf0\x4b\x9c\x61\x29\xec\x2d\xd8\xab\x3c\x34\x66\x08\x4b\x02\xa2\x2d\x5a\x48\x7b\x99\x20\xa8\x35\x41\xc2\xba\xb9\x62\xe1\x30\x2c\x9b\xad\x30\x19\x1d\x56\xa9\x1b\xd7\xa5\xe5\xae\x37\x0f\x29\x4e\x7d\xd0\xc5\xb2\x2d\x03\xd9\xae\x5b\x24\x7a\x56\x99\x84\x98\xdd\x57\x24\x54\x04\x4b\x85\x52\x13\x17\x99\x3d\xfc\x99\x01\x58\x4c\xeb\x66\xeb\xba\x81\x5d\x70\xc7\x5c\x42\x73\xa7\xce\x79\x7c\x1d\x86\x80\x1e\x58\xdc\x23\x62\xbc\xaf\xc0\x69\x14\x59\x18\x2b\x61\x0c\x5d\x53\x57\x5d\x59\xa2\x05\xaa\xff\x9c\xda\x44\x9d\x85\x8a\x30\x2a\x8a\xd8\xb9\xfb\xd7\x66\x48\x8b\x26\xe5\x83\x00\xec\x8c\x6a\xdb\x54\x6b\x9d\xbe\xce\x39\x6d\xab\xd5\x9a\xf8\x4a\xb3\x3f\x12\xa4\xed\xd7\x4d\xc9\xb4\xf3\xee\xf4\xe5\x77\x32\x8e\x15\x33\x37\x57\x89\xd9\x62\x3e\xf4\x0d\xd3\xa9\x2e\xa1\x0c\xc1\x1d\x2f\x80\x9c\x08\x4b\x02\x34\x16\x4f\x4d\x00\x9b\x9e\xd6\xba\x4f\xc2\x32\xdd\x20\x1e\x46\x6a\x8f\x44\x5c\x95\x62\xb2\x55\x03\xc9\xcc\xa4\x16\x66\xd5\x24\x4a\x77\x7d\xb6\xaa\xfa\xec\x96\x37\x2c\xb7\xf9\x9a\xeb\xf2\xc9\x41\x25\xe9\x53\x2a\x7a\x9a\xd2\xae\x27\xc9\xb1\xf8\x31\x7d\x72\xaf\xc7\xf5\x0f\xbc\x13\xb3\xfc\x9e\x60\xb1\x18\x40\x70\x4b\x14\x2e\xd2\x82\x89\xef\x45\x43\x74\xce\x38\xef\x86\x1d\x38\xba\x9e\xd0\x47\xe9\x4e\x00\x8b\x66\x5f\x6f\x9a\xbc\x00\xcb\xa1\xdd\x55\x41\xf9\xb8\xa9\xea\x9c\x4e\x17\x6b\x05\xac\xec\x09\x51\xc3\xf9\xc5\x35\x00\x57\xcd\xcd\x50\x6d\x0a\x03\x58\xd0\x0c\xef\xf3\x4d\x55\xb0\x9c\xa5\xeb\x1e\xca\x34\x96\x55\xc9\x58\x96\x4d\xcb\xc7\x21\x66\x63\x15\x0f\x9c\xc3\x2d\x9f\x6f\xc8\xa6\xba\x0a\x8b\x7a\xee\xc8\x64\x34\xd0\xc2\x43\x00\xe5\x03\x15\x14\x53\x75\xf5\xd3\x1e\x23\x5d\x0e\xd4\x17\x2d\x3a\x67\x53\xc5\x2e\x7d\xf6\x8a\xfe\x26\x7c\x3c\x0b\xdf\x5b\x4d\x11\xcf\x85\xa9\x14\x0e\xb2\x4b\xa3\xa1\x46\xe4\xed\xa8\xcb\x88\x37\x98\x6b\x38\x5e\x23\x81\x6e\x10\x7a\x65\x4d\x6b\x43\xcb\x5a\x7e\x45\x89\xa7\xb4\x81\x57\x1b\x2c\x42\x0e\xe9\x85\xc4\xb8\x86\xf0\xc6\x04\x72\x24\xdb\xe5\x96\xa6\xc6\xbc\xb3\xcf\xef\x68\x6c\x79\x4b\x42\x58\xf2\x89\xb5\xd1\xcf\xc9\x20\x02\x50\xb3\x29\x9c\xb0\x09\x9a\x6e\xda\xb1\x8a\xe5\x81\x1c\xbd\x76\x24\x45\x2e\xd7\x99\xd3\x65\x19\x29\x7d\xf9\x1b\xce\x3c\x14\x79\xd5\x96\x89\x9d\x8b\x92\xed\x03\x96\x8b\x27\x71\xf6\xe0\x57\x8b\xc4\x1f\xda\x22\x24\xa2\xdf\x34\x8c\xb5\xfb\xd2\x41\x9d\x84\xb9\x71\x05\x6a\x8b\x04\x35\x6d\x2a\xd6\x84\xa8\x48\xd4\x35\x2d\x15\x95\x8d\x54\x91\x4f\xaa\x63\x7f\x4e\xac\x83\xa8\xc9\xe4\x13\x31\x03\xd2\x4b\x84\xbd\x64\xac\x8d\xd9\xe2\xd0\x50\x84\xe7\xb0\x62\xa6\xfc\xc0\x9f\x83\xeb\x72\xc7\x47\xe6\xb6\xc3\xaa\x6e\x08\xb2\x78\x50\xd9\xcb\xad\xef\x4f\xc2\x69\x69\xc1\x89\x3f\x7d\x65\xda\xfb\x1f\x6c\xe2\xe7\x8a\x56\x12\xf5\xe3\x93\x83\xcf\x6b\xda\x6a\x3b\x60\x9f\x36\xc9\xc3\x51\x1a\x9d\x41\xeb\xbc\x23\xee\x4b\x07\x9c\x56\x2b\x16\xa6\x1d\xf0\xaa\xe5\x4b\x21\x79\x68\xf2\x20\x52\xa9\xd9\xb4\xe3\x23\x8d\x47\x28\x0c\x4a\x7b\x71\x07\x3e\x8e\xf3\xf0\xd4\x9f\xe9\x93\x10\xb6\x2d\x59\xe6\xcb\xb6\xa2\xa1\xcb\xaf\xf4\xac\x4c\x48\x30\x59\xd1\x7e\x34\x7a\x7b\xc9\x2a\xd9\x0a\x12\xaa\x92\x1b\x03\x94\x7d\xc8\x41\x15\xc2\x72\x7e\x32\x8b\x05\x6d\xec\x3d\xf4\x55\xda\x9a\x13\xf4\xd3\x59\x43\xc5\x0b\xe3\xc8\x72\xe0\x42\x3e\xe9\x68\xb3\x7b\x24\x1e\xa7\xb4\xfa\x69\x08\xa5\x72\xa2\x9f\x16\x57\xe0\x4d\xff\xe2\xe6\xd5\x93\xee\xc5\xf3\x9b\x57\x8e\x35\x2e\xd7\xe5\xf2\x4e\x74\x89\xaa\xbe\x69\x7e\x83\xc2\x45\x0b\xcf\x38\xae\x79\x8b\x3c\x29\xd2\x35\x95\x42\x26\xa7\xad\x4c\xd5\x08\xf1\x5c\x1a\x2d\x1a\x0d\x86\x77\xfc\xc2\x6c\x3f\xee\x70\x30\x42\xa2\xda\xe8\x44\x46\x46\x6a\x3e\xf6\x0e\x67\x05\x74\x7b\xcc\xb9\x4c\xb9\x60\xf3\x9e\x74\x31\xdf\x4d\xb5\xad\xfa\x09\xe9\x30\x1f\xc9\x95\x04\x55\xcf\x37\x5c\xa2\x2d\x60\x03\x63\x21\x6e\x4c\xcd\xd0\xb9\x69\xe4\xb4\xcf\x49\xbd\xf9\x21\x25\x12\x1a\xe8\x14\xe2\x39\xd1\x30\x89\x1d\xe7\x7c\xf0\x92\x82\x90\x77\xd9\x50\x2b\x5a\xcb\xc2\x88\xe9\x6d\x85\x43\x82\xfb\x35\x92\x0f\xa0\x0c\xf3\x2a\xe7\xa6\xdf\x38\x8c\x7f\x4b\x42\xf1\xad\xab\xc6\x9c\x9b\x07\x54\xb1\x4c\x96\xcf\x2e\x1e\x71\xb6\xba\x14\xf5\x0a\x18\x60\x38\x5e\x68\x52\x0e\xfc\xea\x91\x86\x71\x47\x39\x58\x90\x9b\xa1\xef\x1b\x96\xb9\x37\x4c\x35\x52\xc7\x46\x7d\x02\x40\xa8\x11\xbe\x3d\x2c\x48\x88\x27\x59\x9b\xd2\x64\xe0\xcc\x5b\xe1\x54\x5b\x19\xcd\x4e\x8f\x3a\x07\x56\x88\xba\x9e\xd7\x0f\x46\xca\x44\x10\x3c\x0a\xee\xb0\x9f\x1f\xcb\x37\x6d\xf9\xad\x1f\x8d\xdb\x33\xa8\x61\x23\x92\xea\xc1\x7e\xfa\x80\x52\x50\x89\xdb\x75\x76\x72\xa9\x91\xc5\xd3\x47\x1b\xa3\x17\xe5\xbc\x33\x88\xc1\x92\xd8\x58\x00\xd1\x34\x0b\xd4\x5e\x8c\xfa\xf2\xea\xce\x14\x83\x7d\x3c\x64\x7f\x00\xf5\x4d\x93\x75\x6b\x51\x2d\x6d\x78\xe9\xa6\xac\x57\x91\x99\x00\x36\x58\x10\xdd\x7f\xe5\x63\x8e\x04\xf8\x7c\xf3\x39\x79\x80\x3d\xea\xaf\xc4\xe1\x6b\xd8\xeb\x9a\x84\x0a\x44\x19\x39\x43\x82\x40\x59\x33\xfa\x9c\xf0\x11\x78\x3e\x12\xeb\xf8\x88\xd0\xbc\x40\xbe\x40\xd1\x2f\x91\xb4\x66\x4b\x98\x5c\xce\x88\x80\x1f\x4a\x6f\x97\x44\xca\x4d\x91\x94\xe8\x6b\x53\x75\x48\x9f\xbe\x2b\xb5\xf1\xb7\xa4\x36\x77\x1f\xa1\xf6\x8a\x0e\xcb\x0a\xef\x65\xfe\xc0\x42\x97\x64\xeb\x0f\x14\x5c\x97\xf9\x56\x47\xc9\x49\x69\xe2\x98\x8e\x33\xcd\xe4\x24\x9d\x72\x81\x55\x23\x81\xf8\x61\x53\x10\x59\x44\x8f\x7d\x27\xfe\x97\x6a\xf4\xfc\xdb\xc4\x14\xf3\xb7\x24\xdf\xec\xd6\x39\xce\xff\x00\x0c\x56\x07\x02\xc2\xc2\xa7\x00\x01\x2d\x0c\xdb\xb2\xad\x96\x9c\xe4\x0a\xdf\x3c\xcb\xbe\x85\xc1\x89\x36\x0a\x09\x82\x71\x63\x05\x6d\x92\x7f\xaa\x41\x4e\xb3\x90\x18\xb6\xdb\x55\xff\xb0\x59\x44\xcd\x71\x3e\xf1\x1c\x82\x80\x48\xe6\xa1\x1c\x10\x0e\x46\x16\xcf\xfa\x94\xf9\x42\xcf\x22\x60\xd4\xf4\x36\xff\xed\x4b\x15\xb7\xcd\x4c\x3d\x61\x05\xbe\x92\x6d\x78\x9d\x62\xcc\x0e\x08\x9e\xed\x1b\x07\xa1\x69\xe9\x19\xa4\xbe\xa3\x53\xad\x76\x60\x1f\xe5\x77\x8a\xdf\x3f\x9a\x09\x9c\x8e\x10\x15\xa0\x53\x67\x0c\xa7\xc3\xb9\x60\xbe\x09\x41\x78\xe1\xb7\x5b\x28\x1c\x3b\x72\x66\x31\xd2\x54\x7e\xc7\x38\x48\xa2\x14\x3d\x81\x48\x6a\xe1\xed\xf6\x19\x9f\x91\x19\x0b\x9d\x75\x28\x5a\xba\xd3\xd3\xce\x17\x40\x88\xdd\x37\x9b\xd6\x1b\x6d\xb8\x83\xd5\x49\x14\x98\xa9\x7d\x31\x35\xe4\x1d\xa8\xdf\xd3\x96\x99\x69\xc0\xed\xa4\x83\x15\x65\x31\x51\x89\x66\x5e\x4c\x78\xc1\xb4\x22\x83\xb1\x69\x75\x9d\xd1\x4e\x8f\x6a\x5e\x0e\x37\xc4\x0f\x1d\x03\x60\x7a\x86\x4c\x5d\xf7\xbe\x15\xa9\x4d\x9a\x6c\xb9\x62\x43\x95\x0d\x3b\x1a\xab\x12\x20\x1d\x25\x02\x16\x92\x9f\x5f\x1f\xb7\xd4\x21\x55\x84\x2a\x80\x5b\xe1\x58\xf9\xa2\x39\xd3\x98\x28\xc9\x35\x03\x15\x4c\x87\xa1\x72\xc0\x96\xb5\x8d\x6e\x60\xc6\xce\x9a\x89\xc8\x36\xf1\x5a\xf2\xb1\x8d\xa6\x4a\x74\x71\xb8\x79\xa2\x64\x56\xd7\xbe\xd4\x3e\xc0\xfe\x60\xd3\xa1\xb2\x3e\x6d\x58\x1b\x77\x40\x87\x9a\x75\xea\x64\xf9\x5b\x05\xa3\xdf\x9b\xea\xbe\x54\x85\xd2\xe9\xd1\x28\x5b\x24\x1b\x62\x25\xac\xb8\xc8\xac\x44\x0a\x6e\xee\x59\xef\xe3\xfe\xb8\x54\xea\x89\x11\x50\x27\xc5\xeb\xac\xaa\x29\xa9\x82\xcd\xbe\x2c\x8e\x48\x40\xe0\x1a\x34\x4e\x30\x9d\x7c\xb3\xcf\x1f\x3a\x58\x58\x8c\x5f\xb1\xc1\x53\xaa\x33\x33\x22\xf1\x61\x85\x51\x85\xd6\x6d\xda\xaf\x86\x09\x25\x48\x7f\xc8\xef\xa1\x5c\x82\xd7\xa8\xcd\x86\x74\x76\x3e\x34\x71\x40\xeb\x49\xc5\x8a\x31\xab\x91\xac\x21\x48\x71\xd0\x10\x1c\x26\x7a\x6e\xcc\xd4\x3d\x62\xe1\x8a\xba\x61\x51\x87\xb8\xb9\xe0\x9a\xa4\x47\xc2\x2c\x86\x14\x58\x1a\x68\x63\x94\xcf\x44\xaa\xae\x08\x87\xac\xa5\x79\xe5\x9b\x4f\x36\x5a\x15\x33\x0b\x4b\x3e\x54\xe7\xa4\xeb\x69\x0b\x30\xa6\xcd\x55\xf7\x57\x91\xce\x54\xe1\xe6\x52\x6c\x2d\xa0\xa9\x5b\x57\xbb\xb4\x81\xa9\x31\x44\xa1\x27\xdb\x40\x40\x25\x6c\x14\x25\xa4\x76\xb6\xb9\xb6\x79\xdd\xdd\x96\x30\xbe\x6e\xd3\x5b\xf6\x23\x2d\xb4\x6b\x96\x77\xc5\x65\x77\xa0\x67\xd1\x80\xd0\x75\x78\xd6\x60\xed\x82\x85\x8a\xbb\x26\x98\x7b\xf4\xac\x63\x00\x56\x7d\x4b\x9d\x8d\x81\xc9\x6c\x82\x02\xc8\x9c\x91\x8b\xc3\x46\x73\x5f\x86\x88\xb8\xfd\x67\x67\x1e\x60\x5d\xed\xcb\x62\x94\x8f\x97\x49\x3a\x85\xad\x03\x1e\xaa\x9b\x87\x78\xf6\x5c\xd5\x51\x00\xfb\x4b\xee\x4b\xed\x85\x37\x06\xef\x95\x51\x83\xb0\x71\x78\x4d\x23\xe9\x73\x28\x8c\x37\x34\xc4\xe5\x3a\xda\x9d\xd7\x28\x49\xa5\x64\xb2\x41\x93\x4f\xdc\xf5\xe7\x84\x98\x66\xbd\x2a\xd9\x50\x46\x2d\xf1\x81\x89\xdf\x2a\xdf\x4b\x26\x0d\x78\xd5\x4a\x9a\xcd\xeb\x56\x65\x49\x1b\xb2\xd9\x3e\x5a\xb3\xaa\xcd\xdc\xd3\x25\x7f\x6f\x48\x02\x81\x9d\xf8\x4f\x94\x62\xd9\xb9\x4e\x22\xcf\xd0\xc8\x4a\x01\xe5\xa2\xea\x1f\xfc\x89\x71\xac\x39\xa4\x24\x83\x3b\xc0\xee\xf1\xda\xd2\xb4\x1e\x39\x33\x3d\xde\xda\x92\x52\x38\x31\x42\xbd\xb6\x74\xc2\x3a\xf6\x76\x81\xc3\x81\x45\x71\x98\xb6\x83\x23\xe1\xe9\x93\xee\x29\x2f\x98\x95\x2d\x02\xf8\x5d\xde\x13\x5b\xac\x45\xc1\x11\x0e\x15\x56\xd5\x62\xd7\x04\xb8\x8a\x80\x2d\xe0\x0f\x16\x54\x7c\x4e\x48\x13\x85\x03\x91\xa6\x26\xa9\x59\xe7\xa7\xb2\x98\x4e\x25\xe6\x7f\xa3\xa4\xda\x53\x52\x17\x05\xa1\x8a\x2e\x9c\x80\xe6\x32\xea\x62\x0f\x52\x97\xa8\x01\x29\xb6\x1e\x29\x79\xbf\x4c\x4f\x25\x61\x2a\xf3\x50\x61\x4e\x55\x91\x24\x3b\xe0\x3d\x0b\x46\x2b\x0b\xe1\x06\x2d\xff\x03\x0b\x76\x3b\x96\x0b\x08\x0b\xd2\x0a\x08\xd7\x1c\x0a\x90\x04\xd8\x03\x1b\xa8\x7b\x6c\x9a\x85\x1e\x58\x07\xce\x12\xd2\x96\xb9\x1e\x83\xed\xcb\x9b\x94\x8d\xa5\x44\x38\xa4\x55\xe9\x44\xb7\x39\x29\x64\xf7\x55\xee\xec\x3a\xb4\x5a\xec\xb6\xd7\x53\xf4\x35\xbb\xec\xe1\x07\x9d\x06\x70\xb0\x37\x43\x1d\x17\xef\x35\x99\x0c\xbb\x82\x2d\x62\x7e\xc2\x1f\x91\xe1\x26\x1c\x97\x07\xb6\x4a\x4c\xdd\xaa\x79\x29\x06\xe0\x45\xaa\x70\x3c\xb2\x87\x85\x6d\x9f\x99\xc8\x0f\xdd\x42\xc5\x18\x24\x74\x11\x48\x91\xaa\xbc\x06\xb0\x10\xde\x03\xf4\x8a\x57\x10\x08\xa1\xb3\x32\x5d\x37\xfb\x74\x53\xd5\x77\x9d\xe2\xd7\x59\x53\x4c\xcb\x4e\x4f\x91\x41\xc0\x62\xe7\x61\xb1\xaa\xaa\x87\xf2\xa7\xc4\x52\x62\xc6\x47\x72\x1a\xe5\x50\xca\xa9\x38\x66\x06\xea\x7d\x39\x41\x76\x7a\x8c\xec\x59\x58\xaf\x25\x6b\x15\xf8\x83\x99\xfd\xaa\x5b\xe8\xb6\x64\xf1\x1c\xec\xf0\x8d\x72\x21\xc2\x4f\xd3\x74\x6a\xb9\xf4\xec\x87\xf3\x60\xe6\x50\x28\x5d\x2d\x07\xa1\x8b\x29\x83\x31\x2f\x07\x41\xb1\x72\x49\xc2\x92\x8e\x07\x7b\x3b\xab\xb6\x12\xa9\xf3\x51\x4b\xc5\xe1\xef\xb4\x12\x14\x2f\x48\xcf\x1e\x4d\x26\xf4\x37\x9c\x13\x2e\x65\xfa\xc6\x47\xad\xf0\xc8\xc4\x05\x41\x08\x0e\xfb\x68\xb0\x63\xca\xd2\x06\xcc\x74\xfe\x05\x02\x33\xf2\x09\xdd\x30\xc2\x9b\x1d\x6b\x69\x36\x91\x50\x78\xa2\x4e\x00\x57\xce\x98\x0d\xca\xcf\xe1\x30\x1b\xdb\x2a\x22\x3d\x4b\x5b\x38\x28\x4d\x8f\xc6\x34\xd9\x3b\x56\x6f\x4f\x73\x0b\xa7\x63\x04\xbf\x10\xea\xcf\x61\x57\x16\x9f\xda\xd0\x89\x3c\xc9\x5d\xc1\x21\x27\x4d\x10\x02\xa0\xae\x74\x5e\x4b\x39\x16\x6e\xc4\xe6\x74\x89\x2f\x72\x00\x1a\x62\x14\x6b\xa3\xa5\x79\xc0\x43\xc6\xb6\x6b\x69\xd1\xe9\xe0\x1d\xd9\xb1\x26\x2c\x2d\x62\x5f\xe0\x5e\x0d\xdc\xb9\x9e\x6b\x91\xfe\xa9\x6d\x31\xff\x47\xca\x72\xbc\xed\xb3\x64\xdb\x98\x75\xaa\xcc\xda\x95\x0a\xcb\x4e\x68\x0c\xd8\x03\xa5\x33\x6e\x14\xc0\x44\x3c\x44\x80\x85\x20\x66\x47\xb5\xec\x2c\xb2\x12\xc3\xde\xfb\x1f\x66\x19\x8e\x3a\x74\x96\x61\x3f\xd4\x11\xd9\xf0\x18\x47\x27\xce\x84\x80\xa8\x00\xe7\xaf\x2e\x7d\x70\xaa\xea\xe2\xbb\xc3\x95\xbb\x11\x99\x9e\xd1\x44\x59\x38\x82\x95\x08\xc0\x61\x59\xc0\x43\xc8\x06\xc2\x7e\x44\xc0\xef\x26\x46\xcc\x98\xbf\x1e\x43\x83\x21\xac\x08\x2c\xcb\x03\x7c\xa0\x89\xf4\xa7\x1a\xd1\x96\x11\x21\x4e\x5b\x17\xc5\xf2\x20\xfe\x4a\x2f\x12\x1d\xa9\xda\xb0\xae\x56\x6b\x9a\x57\xb5\x65\x87\x25\xb8\xb6\x79\xc5\xbc\x56\xc7\xbf\x68\xe3\x35\xab\x9a\x2d\x40\xdc\x83\x28\xe3\x8e\xdb\xbe\xe8\xfa\xb6\xa9\x57\xaf\x4e\x1b\x56\xb7\xd8\x8e\xc2\x47\xc5\x4f\x2f\x9e\x6b\x3e\xb1\x0c\x5e\x43\x8e\x96\x7c\x53\xf5\x6f\x87\x9b\xa7\x5d\xba\x22\xd9\x00\x07\xc8\x8b\x3c\x5d\xb7\xe5\xed\xcb\xaf\x9f\x74\x5f\xbf\x52\x2f\xb5\xc4\x14\xed\x6b\x87\x96\x17\xcf\xf3\x57\x2c\x3d\x77\xcd\x86\x84\xda\xb8\x4a\xb3\xdd\xca\xfa\x12\xfb\xdb\x0a\x24\xc6\x0f\xc7\x76\x59\x03\x73\x65\xab\xf8\xa1\x06\x17\x8e\xd6\xfd\xfa\xe8\xb2\x25\x6c\x5f\xd0\x83\x94\x7e\xca\x71\xcf\x79\x66\x54\x90\xd3\x8b\x52\xb6\xbe\x01\x11\x31\x63\xd3\x76\x02\x13\x06\x13\xcc\x57\xb6\xe7\xa4\xc3\x60\xc7\x41\x64\x38\x66\x18\x16\x61\xa1\xe8\xaa\x65\xe3\xbd\xaa\xb5\x28\xa0\xb3\x21\x10\x61\xcf\x1b\x75\x22\xa4\x96\xe9\x09\xd2\x44\x3a\x25\xc7\x63\x4f\x4d\x63\x21\x4f\xbd\x69\x07\x29\x32\x20\x44\x6d\xd5\x85\x49\x88\x02\x5e\x42\x94\xba\xa9\xea\x42\x08\x4f\xe9\x46\xe3\x0e\x1c\xc1\xd0\x71\x54\x33\x10\x6c\x6c\x9c\xd0\xdf\x01\xe6\xae\xa2\xf6\x83\x23\x89\xf6\xfb\x50\x07\xfb\x4d\x08\x3a\xeb\x1b\xb1\x35\xe9\x24\x2f\x49\x62\x47\xcc\xd1\xb1\x34\x78\xcd\xc5\x9d\xc6\xbd\xa9\x53\xd2\xaa\xbc\xd1\x4c\xac\x16\x00\x13\x14\x75\x0e\x11\xf8\xe5\x95\x37\x6b\x45\xfd\xc5\x1a\x4d\x84\x85\x21\xe2\xb5\x1d\xb6\x16\xff\x71\x7a\x7c\xf9\x6e\x91\xb8\xfe\xac\xcd\x5f\x72\x92\x3a\x64\x04\x7b\xa7\x37\x32\x43\x19\xef\x50\xe7\xad\x90\xea\x66\xa6\x42\x4d\xd0\xa2\x9b\xd3\x64\x3e\x32\x97\xb8\x5c\x50\x5c\x76\x81\x2e\x2d\xbd\x61\x24\x63\xde\xe6\x66\xfa\x15\x21\xd6\x59\x74\x98\xa7\xee\x1e\x98\x5b\x04\x91\x22\xb9\x20\x68\x8f\xfd\x3e\x0a\x51\x21\x48\xe8\x93\x29\x4b\x88\xad\x23\x7d\x1b\xb0\x12\x7f\x98\x1b\x50\x02\xc8\x70\x67\xeb\x19\x8d\xd7\x1f\x15\xe1\xa0\x45\xcd\x8d\xa5\x96\xaf\x52\x61\x44\xe2\xff\xe4\x71\x89\x6c\xa3\x38\x0e\x95\x1b\x6a\x73\x5f\x6e\x38\x92\x4d\x07\xe4\x9d\x80\xaa\xca\x44\x2e\x40\x05\x72\xce\x3f\x8e\x1c\x74\x67\xb1\xac\x6d\x68\x5f\xb0\xc6\x08\x82\x08\x18\x5e\x3f\xd1\x41\x8c\x61\x9e\x1c\x9f\x9f\x5f\x5c\x7b\x3e\xc9\x94\x55\x17\xc4\xcd\xbf\x72\xf1\x2f\x93\x71\x59\x14\x0c\xc6\x87\x80\xa8\x08\xc2\xc7\xe1\x68\x8d\x43\x70\xe1\xc6\xb7\xd6\x29\xb9\x6a\xb0\x9b\x1b\x1e\x8b\xd4\x28\xe2\xf1\x17\x87\x44\xfc\xe4\x13\x1f\x30\x9f\x13\xb3\xd2\x5d\xf0\xff\x24\x34\x74\x06\xa6\x69\x50\xb3\xb7\x60\xfb\x70\x4f\x1a\x40\x53\x4c\x0c\x9f\x34\xb0\xa1\x1b\x72\xc8\x70\x84\xfb\x06\x7c\xf1\x36\x85\x77\xeb\x88\xed\x38\x4d\x0b\x1a\x64\xe4\x0e\x75\xf5\xeb\x80\x13\x92\x25\x38\x3a\xf1\x39\xac\xea\xa6\xda\x08\xf3\xfc\xb3\xfb\x21\xf9\x9c\x1a\xc5\x42\x06\x9d\xd3\xaf\x17\xdd\x8e\x23\xc5\x88\x37\x77\x2f\xbf\x26\x91\x9b\x34\x16\xfc\x7d\xc6\xf6\x01\x4d\xe5\x45\x35\xd0\x51\x44\x02\x18\xbb\x8d\x69\x3d\xa9\xca\x2b\xd6\xf5\xef\xcc\x84\x34\x0e\x5b\x47\x99\x45\x36\x72\x19\xc2\x1b\x91\x3b\x33\x2c\x15\x57\xc5\x06\xd0\x8b\xf1\x28\x0d\xa6\xc5\xec\x9a\xc9\xfd\xae\x0c\x51\xa7\x2e\x02\x5d\xe8\x53\xfa\xd7\x56\x08\xcf\x94\x7c\xbe\x43\x90\x06\xf7\x07\x5c\xa6\xef\xf7\x8a\x08\x60\xc9\x3a\xca\x62\x55\xf5\x24\x26\xf3\x5d\x0b\x28\xaf\xb4\x83\x88\x4b\xe2\xfa\x81\xa4\x2c\x67\xa6\xae\xc1\xa2\x62\x55\x57\x7d\xc6\x56\xfd\xad\x84\x94\x53\xb3\xf9\x46\xc4\x8a\x18\xf3\xe2\xc1\x4d\x3f\xfc\x72\x7c\x7a\xf6\xcb\x62\x5b\x58\x84\x89\xe2\x53\x43\x4b\x02\x8c\x16\xe5\x6d\x3e\x6c\xcc\x7a\x85\x09\x23\x23\xfd\x19\x19\x7a\x1b\x81\x14\x0d\xc2\xdf\xbd\x9c\x91\x72\x3f\xe1\x9d\xe5\x7c\xc3\x62\xe4\xb7\x07\x6c\x3a\x63\xb7\xca\x1f\x37\xed\x8c\x5b\x78\xdc\xc2\xc3\x3e\xf7\x8c\xed\x75\xa9\xc6\x65\x44\xde\xc8\x44\x6f\x4b\x58\x54\xbc\xbb\x2e\x21\x61\xf1\x61\xe9\x61\xe2\x36\x75\x23\x3f\x4c\xe3\x37\x9b\xa1\x1c\x11\xb9\xe0\xd1\x68\xdc\x7a\xd2\x65\x39\xd3\x4b\x1c\xc1\xba\x28\xc4\x02\xe1\xc4\x99\x49\xd6\xec\xc8\x66\xa9\x55\xb5\x29\x07\x65\xb6\x75\xc4\x87\x5a\x8c\xda\x3b\xc9\x94\xa0\x51\x44\xa8\x41\x7c\x8d\xcd\x90\xe6\x3f\xcf\xc3\x00\xf0\x44\x36\x85\xed\x34\xdd\x22\xb7\x6e\xaf\x21\x94\x98\xe3\x44\xe3\x4d\x86\xfb\x26\x01\xa6\xc2\xe8\x0e\x66\x6f\x05\xf3\xe7\xdd\x43\xc6\xc6\x10\xb0\xe4\xdd\x43\x82\x18\x08\x3a\xd0\x32\x9c\x97\x92\x09\x06\xb9\xa9\x76\x72\x5b\x89\x0a\xaa\x52\x02\x19\x91\xb8\xf8\xb7\x44\x90\xe2\x56\x08\x0b\x8d\x2b\x4c\x5c\x40\x8c\xf8\x27\xf0\xab\x9e\x25\x5e\x31\xce\xbe\xfc\x3a\xbb\xa1\x3d\x7a\xf7\x75\x20\x01\xf3\x65\x27\x16\x7b\xbf\x22\xc9\x6a\xaf\x0e\xc8\x8f\x92\x4a\xec\xf7\x5f\xf0\x6b\xe0\xc0\x38\xf1\x76\x72\x22\xd1\x5f\x6c\xe3\x4c\xf4\x8e\x0d\x33\xa3\x84\x05\x4e\x65\x1b\x24\x6c\x86\x9c\xe3\xd7\x81\x67\x29\xc2\xfb\xcb\xf4\xdf\xf9\x57\xfa\x86\x7f\xe9\x54\x78\x1b\xbb\x3d\x8a\x15\x1e\x6d\xec\x30\x52\x0c\x1c\x47\xc3\x2d\xfd\x9e\x96\xf0\x92\x00\xfb\x1a\x57\x62\x80\x1c\x93\x9c\xec\x06\xf6\xa1\xf3\xba\x5b\x6f\x97\x94\x83\x00\x6f\xce\xe4\x33\x2c\x68\xc1\x19\xc0\xa3\x36\x12\xc7\x2a\x94\x45\xf4\x6d\x09\x79\x8b\xfe\x69\x59\x46\xc0\x59\x9f\xc3\xe4\x29\x40\x44\x72\xff\x39\xbd\xa6\x1c\x85\x28\xc3\xa2\x44\x41\x51\x3e\xbe\xd5\x83\x6d\xd4\x81\xe3\x72\x82\x48\x7e\x53\x76\x3d\xa1\x08\xea\xa3\xfb\x91\xf0\x18\xab\x5e\x42\xf9\x90\x4a\x34\xd0\x54\xcc\xda\x92\x4c\x60\x34\x6c\x73\x0e\xdb\xfa\x90\xef\xe5\x27\x61\x5a\xaf\x01\xbd\x95\x94\x64\x23\x10\x59\x40\x11\xae\xec\xe0\x71\xae\x2b\x0d\x5f\x5a\x3a\xb1\x01\x2c\xa6\x03\xb1\x92\xd1\x2d\xa4\x74\x39\x2a\xbf\x15\x79\xff\x35\x4b\xfb\x96\x97\x83\x7f\xa5\x16\x56\xe1\xf2\xb7\xb4\xfd\xc5\x3e\x76\x26\x29\x57\x52\x48\xc4\xcf\x29\x5f\x78\xb3\x3c\x8b\xa9\xbc\xe0\xff\x2e\x97\x08\x46\xf7\x0f\xfd\x4f\x14\xf3\x9c\xab\x6a\x99\x5c\x7b\xf2\xd9\x99\xf0\x38\x29\xc4\x72\x4c\x0a\xb3\xdd\x26\x5f\x96\x2e\x86\x13\x40\xe0\xdb\x7c\xe5\x4a\x81\x49\xf4\x63\xc7\xf7\x0d\x95\x3f\xa1\xed\x4c\xbf\xac\x84\x36\x03\x9d\x85\xae\xe8\x84\x7f\x16\x56\x48\xb8\xe7\xa8\x40\x1b\x43\xd4\x7f\x58\x46\xe7\x07\xf3\x26\x31\x8a\x9d\xb3\x74\xcd\x69\x93\x3a\x46\x35\x1c\x35\x85\xc4\x34\x82\x21\xf6\xce\x11\xe8\x90\x0e\x35\x39\x82\xd0\xe3\x04\x87\xc8\xb4\x64\xc1\x41\xb5\x8e\xac\x8f\xe1\x8c\x02\x69\xcf\x81\x4a\x07\x1c\x85\xc4\xe1\x75\xbe\xcb\x42\xb5\x9d\xb9\x4a\xc2\x1b\x8a\xec\xe6\x41\xeb\x08\x4b\x28\xd8\xd5\x75\xa0\xca\x96\xfd\x59\xe0\x95\x5a\xe5\xcc\x65\x84\x55\x78\xa9\xd0\x30\x41\x48\x3a\x7d\xf2\xe9\xbb\xcf\x1d\xb7\xec\xcc\x09\xcf\x9f\x7c\xfa\xfe\x33\x31\x54\xfc\x63\x8e\x6a\xb5\x77\x6d\x79\x5f\x35\x03\x6e\xee\x69\xd2\x13\x0c\xe2\x77\xcf\x39\x56\x57\xb3\x64\xf1\x4c\x0e\xf7\x94\x13\x97\x2f\x9b\x4d\xe3\x29\x0b\xbf\xc6\x00\x22\xf0\x3f\xd1\x05\xef\xe2\x62\x10\x9f\x5b\x8c\x27\x70\x65\xd4\xa3\x05\x11\xc8\xb2\xa8\xb8\x9d\x5f\xe8\x5f\x5c\x30\x72\xdb\xc4\x85\x2e\xde\x4b\x06\x88\xa8\x2f\xbb\x76\x32\x6d\x45\x9d\x1f\x00\x75\x1a\xc7\x2c\x98\x97\x47\xd1\xb9\xec\x02\x88\x22\xea\xb2\x64\x96\x53\xd5\x72\xed\x86\x9b\x65\x43\x16\x4a\xc5\xa5\xa3\x8d\x1e\x76\x35\xcc\xf7\xea\x75\x4c\x19\xa4\x0f\xb5\x55\x25\x27\xd2\x20\x93\x80\x3b\x07\x7c\xc4\x6f\xac\xa0\x78\x86\x0b\x04\xa5\xf3\x9c\x60\x0c\x50\xc8\x71\xc9\x89\x27\x5d\xd4\x37\x1d\xc4\x43\x99\x29\x2b\x24\x26\x40\xbf\x52\xfc\x1a\x0f\x81\x99\xe2\x5c\xdf\xd6\x72\x32\x7b\x5f\xd5\xf2\x16\x72\x93\x0b\xae\x3d\x49\xf9\xa2\x20\xce\x1c\xab\x7c\x12\xfe\xf6\x60\xeb\xa6\xb9\x93\x58\xfb\x1b\x24\x7d\x09\x29\x0f\x56\xc8\x57\xf9\xde\xc6\xa5\x45\xb9\xdb\x34\x0f\x66\x47\x3d\xc5\x2f\x75\x50\x1a\xc8\x4d\xde\x55\xcb\xf0\x2e\xee\xcf\x9c\x31\x33\x8b\x82\xed\xfb\x6d\xf6\x0f\xe1\x83\xa7\xf8\x95\xfe\x4f\x5e\x30\x07\xa2\xae\xbb\x0b\xbb\x7e\x71\xc5\x0e\x3c\x57\xaa\xae\x93\xa0\x2b\xf5\xf4\x4c\xfb\x52\x2f\x04\x8b\x19\xf3\xfa\xad\x73\xc1\x1d\xaa\x62\x5b\x61\xac\x19\xb0\x69\xc6\xb9\x2a\x26\xde\xb8\x39\x2f\x5c\x1c\x2c\xf4\xc8\xe6\x70\x43\x71\x71\x08\x2c\xef\x68\xf2\xc2\x42\x19\xa6\x60\xce\x5c\xe0\xc3\x17\x62\x65\x82\x8d\x61\xb5\x78\x27\x10\xc2\xc0\xa1\x0e\x9c\x15\xc7\x4d\xd0\x5e\x96\xbb\x8b\x3e\x6e\x19\x41\x94\xb0\x2d\x71\xd8\xb6\xf5\x8b\x6b\xdd\x08\x62\xe2\x78\x90\x4e\x94\x31\x0d\xc6\x10\xc7\x9c\x98\x19\x72\x17\xf6\xcf\xb6\xcb\xb1\xfe\xc8\xf5\xe4\xd0\x76\xb1\xfb\xe2\xd9\xb3\xa1\xa2\x2c\x24\xc5\xd8\x8f\x0d\xdc\x07\xba\xcc\x08\xd0\x90\x72\x51\x2f\xc5\x4a\xae\xf5\xf3\x28\x0e\x44\x42\x8e\xa0\xe0\xa9\x75\xe5\x26\x5f\xde\xb9\x11\x91\x02\xb6\x2c\xdb\x1e\x11\x18\x53\xb4\xb3\x07\x68\x09\x0e\xff\x62\xf7\xea\x19\x74\x14\xb9\xea\x89\x59\x08\x4b\xab\x6e\x03\x84\xc0\x86\xcb\x36\xd9\xfb\xaa\x18\x88\xbc\x79\x31\x16\x2f\x9e\xef\x5e\xc5\xf5\x89\x22\xa0\xb7\x1e\x6c\x63\xb4\x70\x2c\x34\x57\x88\x1b\xe7\x10\x27\xc4\xda\xdc\xfa\x10\xb2\x0e\x3d\x1c\xdc\x45\x01\xf3\x0d\x48\xdd\x38\xce\x17\x3c\x90\x53\x9c\x98\x81\x09\x17\xfe\x61\x64\x72\x30\xec\xb4\xc8\x02\xd2\x86\x21\xd3\x68\x76\xa6\x29\x31\x90\x8e\xb4\x73\x1f\xd1\xe3\x86\x66\x15\xda\xc3\xc3\x8b\x0d\x76\x73\x86\x3a\x07\xca\x96\x7f\xcf\x54\x45\x28\x2e\x0a\xcc\xe7\x24\xc8\x3e\x5c\x61\xe4\x75\x88\xda\x8a\x5d\x0f\xc1\x00\xe5\x78\x3d\xd4\xce\xc9\x6c\x1b\x6a\x5e\x0d\x5a\x41\xe0\x5e\x85\x10\xad\x4c\xef\xa2\x48\xd0\x41\x3a\x8e\x91\xd2\xd2\xfd\xba\x09\x22\xa1\x31\xa8\x14\x9b\x35\x1c\xc8\x22\x9e\xeb\x5e\x8e\x10\xc5\x8b\x1e\x28\xa3\x93\xc6\x36\x9f\x1d\x37\x88\xaa\xdd\x0e\xc4\x5b\x36\x15\x2d\x3a\x8e\x0c\xbd\x51\x7d\x71\x75\x8d\xbb\xaa\xc4\x0b\x89\xd1\xac\x98\x5e\xd3\xbf\xac\x49\x08\xe4\xc8\x35\xbe\xd8\xcc\x0e\xc5\x55\xda\x2c\x97\xec\x46\xac\x6a\xbd\x0b\xb6\x2f\xcd\x5c\x5f\x17\x1b\x71\x29\x86\x0e\x59\xe3\xbb\xa2\x98\xa7\xb8\xbc\xcc\x4c\xa0\xdb\x95\x4b\x92\x9c\x16\xe9\x7b\x52\x8e\xf8\x46\xac\xdc\x99\x06\xc3\x7c\x54\x8f\x77\x33\x81\x42\xcd\xf2\xe7\x62\x7a\x86\xba\xa7\x15\xec\x20\xc5\xbc\x77\x1c\xb6\x24\x72\x32\x17\x90\x08\x55\x6e\x6e\x25\x04\x8d\x3d\x16\x90\x00\xe5\x1e\x2e\x5b\x4d\xe5\x7a\x22\x9b\x1a\xd0\x80\x3a\x53\xe1\xf8\xc1\xad\x0d\x9e\x19\xe9\x86\x2c\x82\x59\xd8\x41\xe8\x71\x1e\x8f\x09\x02\xa6\x8d\xeb\x9d\xb0\x05\x2c\x1f\x42\xd5\xe4\x8a\xcd\x11\xf3\xe2\xdd\xa6\x74\xe1\xb9\x66\x7c\xda\xc9\xb5\x1a\x3e\xe9\x08\x5f\x88\xea\x34\x10\x39\x3f\x10\x3b\xcf\xe1\x8d\x83\x2e\x87\x05\x73\x00\xa1\xdc\xcf\xcc\x88\xf4\x40\x66\x04\x89\xa9\x79\x02\xe1\x3d\x7a\x00\x32\xb7\xde\x98\x85\x29\xb8\x97\x03\xde\x46\x94\xa8\x7b\x0a\x2d\x86\xb7\x0d\x85\x7c\x1f\xd9\x46\x01\x95\x47\x8f\x65\x60\x86\x7a\xcb\xe6\x05\x5f\x11\x79\xc5\xd4\xfb\xe2\x39\x92\x76\xb3\xc8\x28\x8f\xef\xe6\x07\x14\xc7\xf7\xae\x1b\xc2\x1f\x8e\xbe\xb6\x5c\xe5\x6d\x61\x41\xb2\x4a\xfd\xec\xc1\x02\x95\x87\x31\x10\xf9\xa6\x6b\xac\x09\xda\xad\x04\x72\xc7\xea\x3b\x11\x0a\xbf\x2c\xa1\xf7\xdf\xc1\xf9\x0b\xd9\x5a\xec\x5e\x26\x82\x1f\x76\xbc\x07\x64\x43\x59\x3f\x98\xf6\x37\x7f\xba\xba\x38\x3f\x4a\x7f\x7b\xb6\xdf\xef\x9f\x71\xf5\x67\x43\xbb\x61\x47\x6c\xc1\x41\xb8\xff\xe3\xec\xfd\x51\x5a\xf6\xcb\x6f\x17\xa4\x53\x60\x6b\x78\x51\x5f\xbd\x6b\xb7\xec\xf5\x63\xb2\x64\x27\xca\x3f\xbf\x65\x76\x72\xd7\x43\xdf\x41\x08\x6f\x7e\x84\x4c\x9b\x97\xdd\xf4\x5e\xa5\x02\xd1\x7f\xbd\xc4\x58\x92\x5e\x8a\xbb\x5e\x48\xf8\x02\x60\xd5\x96\xef\x23\xa3\x43\x84\x1b\xe4\x77\xec\x9d\x18\x36\x85\xd0\xa9\x71\x34\x9a\x9d\xa2\xac\x2c\x7e\x1a\xb7\x04\xa3\x16\xae\x7d\xbf\x4c\xff\xc4\x21\xca\x8c\x52\xa1\x02\x2e\x32\x2a\x00\x70\x48\x4b\xd8\x61\xa9\xde\x5b\x2b\xc7\x05\xde\xbc\x78\x5a\xf6\x08\x55\x99\xa3\x0d\x19\xb9\x1b\x9b\x5f\x4d\xdb\xa8\x74\xae\x51\x63\xad\x70\x6f\x71\x9a\x45\xd4\x3c\xda\x03\x7c\x2e\xed\xc7\xfb\x60\x7c\x24\xe9\x26\xf3\xec\x5e\x37\xd9\x84\xe3\x2b\xe0\x97\xf6\x99\x4a\x10\x13\x89\x2e\xe8\x41\x25\xbb\x49\x0f\xe2\x51\xcf\x74\x96\x16\x43\x0a\x2f\xfb\xa9\xcb\x8b\x8f\x20\xa3\x1a\x30\x90\x98\x64\x18\x21\xdd\x86\xc4\xbc\x2c\xdc\xe1\x7c\x98\x45\xb1\x0b\x57\x0c\x82\x88\x05\x76\x4b\x98\x09\x7f\x12\xaf\x11\x8a\x19\xd2\xaa\x79\x53\xc5\xeb\x3b\x2a\x1c\xbf\x47\x32\x2a\x66\xcd\x42\x1e\x3c\x3a\x91\x54\x92\x90\x6a\x7f\xbb\xb8\x69\x9b\x7d\xc7\x21\x04\x78\xb5\x81\x8d\x9a\xfc\x3b\xbd\xc2\x6f\x01\xd9\xe5\xad\xf0\x4c\x49\x48\xa6\x18\xe1\x28\x53\x12\x92\xc9\xac\x63\x72\x6b\xfe\x94\x4a\x70\x51\x9d\x1f\xb1\xe0\xd8\x39\x29\x59\x48\x15\xda\x2e\xfb\x8c\x53\x59\xd7\xe7\x30\x3b\x5e\xb1\xaa\x83\x4a\x57\x9c\xa3\x60\x9c\x34\x8c\x9a\x23\x95\x55\x6b\x8b\x66\xc4\x39\xe7\x7d\xaa\xe0\x86\x06\x47\x60\xb4\x34\x15\x0e\x32\x0f\x12\xba\x64\x09\xc2\x6c\x06\x1e\x42\x11\x04\xa4\xfe\xfc\xee\x5c\x7e\xc2\xac\xaa\xb1\x9d\xb0\xab\xbe\x66\x07\x97\x19\x6b\x17\x73\x46\x5b\x2b\x13\xe3\xb7\xc8\xff\xf6\x18\x16\x7e\x39\x88\xa2\xcd\x6f\xe1\x85\xe6\xff\x2e\x97\x0e\x4b\x5f\xed\xb2\x2d\x9f\x8d\xab\x11\x72\x04\xd5\x57\x48\xb8\x7c\x35\x01\xf1\x3f\x97\x97\xaf\x49\x73\x0a\x70\xf8\xa4\xf0\x18\x31\xd3\x2f\x91\xe2\x13\x62\x64\x15\x2b\x38\xaa\xf1\x8d\x3a\x04\x75\xf8\xcb\x8e\xa0\x1d\x3c\x2c\x65\x10\x7d\xbe\x72\x81\x0c\xf9\x4a\x0c\x61\xbe\x0c\xa2\x93\xc5\x97\x47\x75\xfc\x8d\x47\x53\xd9\xbc\x69\x9f\xca\xf1\x74\xcb\x32\xf4\x18\x50\x26\xbb\x0a\x10\x22\xdc\xad\x17\xe3\x85\x70\x06\x39\xc5\x59\x8a\xdf\x0e\xca\x4e\x02\x26\x97\x6c\x5b\x04\x87\x81\x10\x50\xb8\x6d\xcf\xf2\xf6\x8e\xdf\x72\x80\x89\xd0\x1a\xd8\xb7\x1a\x13\xcc\xff\xc3\x15\xd3\x37\x44\x2e\x25\x35\xe9\x30\xb6\x33\xa3\x36\x64\x52\x13\x83\x5c\x05\x3e\xbd\x24\xfe\xfc\xbd\xa4\xe4\xf1\xaf\x31\x65\x4c\x23\x7a\xa8\xec\xd9\x78\xdd\x02\x78\x87\xe8\xbf\x94\xff\xe7\x7f\xfd\x6f\x62\xf6\x3b\x52\x52\x7b\x44\x6b\xe9\x45\x21\xbf\xee\xe6\xa7\xf4\x2f\xbe\x3c\x83\xfe\x1d\x0c\x44\xd0\x9f\x6a\x80\x37\xa5\x26\x34\xca\xcf\x41\x18\x7d\x5f\xb1\x0d\x20\x26\x72\x48\x93\x9e\xcc\xd9\x6c\x39\x69\xc3\x88\x2a\x53\xfd\xdf\x5d\x54\xb0\xc5\xc5\xa2\x49\xf8\xaf\x12\x9d\x98\x08\xd4\x5c\x00\x70\x89\xa4\x27\x9d\xe5\xb3\xbf\x0c\xe7\x16\x22\xba\x08\x07\x11\xd2\xc3\x18\xc2\xde\x30\xf9\x4d\xdf\xbe\x12\x91\x5c\x6e\xde\x32\x6b\x71\xe1\x09\x72\xbd\x44\x82\x0f\x5d\x23\x61\x47\x4f\x3b\x8b\x40\xd4\x4b\xd9\x88\xf1\x9b\x09\x03\x0d\x43\x1b\x49\x22\x57\x9f\x9a\x5c\x9b\x51\x37\x5a\xf4\x14\x1e\x3c\x6d\xa6\x5f\xdb\x31\x5b\x24\xbb\xb2\xd9\x49\x30\x3e\x12\x7c\xb3\x89\x1f\x18\x63\xf2\x13\x0b\xda\x3b\x64\xd0\xbe\x46\x06\xee\xfc\xc1\xbf\xc5\xff\x13\xdc\x95\x50\x25\x90\x73\x35\xa5\xf9\xa3\xfb\x18\x6d\xf4\x72\x85\xf7\x01\xe2\x9e\x56\xf4\x54\x04\x37\x0e\x44\xcd\x04\x2e\x4c\x6e\xef\x61\x65\x90\xfb\x18\x74\x14\x49\xf1\x74\x03\xab\x88\x06\xfb\x72\x5b\xc4\xe5\xd4\x8d\xa0\x24\x83\xbb\x63\x7c\x45\xbb\xe6\x47\x57\x0c\xcb\xae\x9b\x60\xcb\xe0\x02\x56\x17\x54\xe3\xf5\x22\xad\x76\xe8\x7f\x12\x78\xf6\xb1\x55\x5d\x17\x18\xbe\x51\xc7\x67\xa7\x1b\x12\xc0\x36\x91\xb0\x88\x86\xd8\x3a\xf6\xd3\x81\x60\x84\xe9\x2d\xcd\x3f\x1e\x8e\x30\x6d\xe3\xf1\x80\x84\x7f\xd6\x7a\x3c\x7f\x87\xc2\x15\x4f\x2f\x53\xb8\xa2\xb9\x5b\x15\xff\x82\xa1\x96\x48\x4a\x87\x31\xd9\xdb\x07\x2d\xb5\x5a\xc7\x19\xfa\x0e\xdf\x8e\xfd\xe3\xf6\xda\xe8\x56\xe1\xef\xb0\xd8\xc6\x33\x0e\xc4\xe0\x68\x54\x0e\x21\x6c\x10\x88\x63\xe5\x0e\x49\xc7\x5e\x2a\x8e\x78\xc6\x58\x86\x9e\x84\xc6\x61\xa6\x8f\x56\x89\x03\xe5\xc2\x61\x3a\xf5\xdf\x87\x96\x99\x96\x2c\x21\x72\x62\x2e\xf9\x72\x9c\xdc\x01\xfb\xdb\x63\x01\x73\xe3\x51\x32\xaf\x71\xef\xd7\x85\x83\x7c\xb4\x46\x78\xcc\xc6\x36\xee\x7f\x25\x88\x6e\xde\xc6\xc5\x8a\xc3\xde\x54\x5d\x1c\xca\x86\x3f\xaf\xb0\xf1\x7d\x01\xc3\x97\xf8\xcb\x3c\xc3\xf5\x98\x1b\xf0\x2c\x5d\x3f\x1e\x34\x87\xd8\x0a\xf7\x5e\xe8\x15\x2b\xbb\xa0\x35\xca\xf7\xac\x0f\xf1\xe1\x3b\x89\x78\xf3\x40\xf2\x1b\xe2\xce\x6c\xc9\xb8\x7e\xdc\x47\x1c\x3a\x68\xb9\xce\xcc\x78\x86\x84\xcb\x27\xac\x2d\x4b\x44\x72\x9d\x48\xca\x95\xa8\x27\x51\x6f\x0a\xfb\x41\xc8\x2d\xd0\x97\xb0\x34\xf9\x5c\x3d\xf5\x14\xd7\x1c\x0c\x43\x8b\xf2\xb0\xe3\x25\xcc\xdd\xb5\x28\x5e\x26\x01\x54\x71\x53\x47\x05\x09\xf9\xc7\x71\x5b\xf2\x9e\x8e\x9e\x9e\xe7\xcd\x3e\x91\xa3\x73\xc1\x17\x17\x53\xb9\xb5\xa8\x39\xf1\x90\x24\x8f\x65\x14\x8d\x75\xc6\x1c\x48\x4c\x97\xd0\xe6\x69\xf9\x28\xba\x0b\x27\x87\x8b\xeb\xb2\x4b\xc8\x2c\x80\x42\x6a\x40\x40\x0e\xcb\xf5\x21\x71\x2c\xb4\x55\x08\xb0\xbe\x5b\x91\x44\xa3\x7e\x43\x88\xdf\xd3\x31\x8f\x73\xd2\xdd\x91\xd9\x0f\x70\x27\x85\x83\x76\x84\x1f\x6e\x6d\x1c\xf2\xe4\x97\x1b\x87\x7b\x4f\xce\x8f\x23\x84\xf8\x3d\xe3\xe0\x5e\x9e\xf3\x13\xbc\x58\xc4\xc7\xc6\x43\xca\xa1\x5e\xb1\x09\xad\xd3\xdd\x78\x88\x3e\x3c\xea\x3a\x38\xaf\xe1\xe1\x29\x46\xf2\x07\x9b\x8f\xa6\x07\xa7\x94\x88\xa3\x61\x46\x44\x10\x47\xdc\x6c\x9c\xf8\x97\xb7\x38\xaf\x34\x6a\x3a\xd0\xc0\xc5\xe6\xc1\xe6\x4e\x21\x1d\x97\x17\xe9\x20\x63\x9d\xa9\x5c\x27\x85\x5f\x3e\x78\x05\xce\x22\xbc\x45\xbe\x0b\x8f\x0c\x08\x78\xb6\x92\x85\xbc\xc8\xe0\xf6\x38\xb3\xba\xa0\xd7\x69\x63\x8e\x55\x03\xca\xb1\xe8\x29\x9c\xf1\xce\x50\x3a\x0b\x8c\x59\xcc\x94\x8f\x4c\x66\x15\x6f\x96\x41\x6d\xf3\x87\xc8\xc1\xc6\x91\xed\xac\x91\x45\xbb\xe6\xf0\x89\x3d\x1d\x8a\x3f\xab\xe5\x99\x03\x47\x30\x07\x23\x10\x16\xe1\x56\x9f\x12\x88\x27\xbb\x55\x9b\xb3\xad\xd1\xd6\x9a\x99\x45\x40\x0a\x68\xf0\x47\x37\x4b\xf7\xe0\xa4\xe7\x06\xf0\x60\x50\x43\x4f\x1f\x63\x0a\x7f\x60\x00\x60\x1b\x8f\x8f\x00\x6c\x41\x1e\x6b\xa0\x61\x04\x2c\xe0\xb1\x81\xe8\x4b\x91\xbf\x7f\x20\xe0\x1b\xbf\x73\x20\x47\x36\x0a\xbd\x22\x5c\x14\xb3\xfb\xff\xb1\xf1\x8d\xd4\x1d\x10\x67\x74\x07\x7d\x44\xf0\xd1\xab\xdd\x8e\xe8\x03\x5f\xb3\x35\x0b\x07\x83\xfa\xbe\xf5\x38\xf3\x4d\xd5\xb4\x84\x50\x65\xeb\x3e\xf4\x8f\xc7\xa1\xab\xec\xb1\xed\xdb\x07\x15\x49\x78\x72\x71\xe4\xac\xbf\x6a\x27\x4a\x18\x7c\x45\xf2\x2e\xc1\x27\xa0\xfd\xf3\x81\xe7\xf7\xe5\x15\x53\x71\xff\x75\xd1\x53\xf0\xd3\x2b\xe2\x8f\x5e\xcf\x8f\x9f\x25\x18\xbf\x4f\xd1\xc9\x65\x88\x95\xc9\x72\xf6\x50\x64\xe2\x9d\xe3\x57\x0f\x84\x83\x2d\xde\xc6\x5d\xf2\xcd\xcc\xa6\xae\xc4\xaf\x7a\x26\x29\xbe\x9c\xcb\xa6\x18\xb5\xc3\xf0\x1d\x1d\x1f\xb6\xe5\x67\x07\xe3\x22\xdb\x98\x54\x10\x90\x74\x50\x1e\x5c\x17\x47\xb8\x4d\x6b\x17\xe0\x7d\x0b\x18\x09\x4c\x98\x43\x30\x32\x1d\x07\x1a\x1d\xba\xb9\x1e\x33\x76\x84\xa4\xea\x06\x72\x6f\x7a\x33\x93\xe0\x3b\x91\x05\xdf\x89\x94\x67\x63\x8f\x82\x8c\x08\xe7\x61\xc1\xce\x3d\x8c\x13\x65\xc7\x07\x9f\xcf\x47\x98\x70\x9c\xc5\xb1\xc1\x51\x46\xbe\x9c\xf4\x22\x9b\x2a\xae\x27\xe1\x57\x61\x0e\x1b\x13\xd9\x21\x12\xb5\x1e\x5f\x29\x0b\x8b\xe4\xa5\x85\x28\x4b\x9f\xa6\x8c\x67\x22\x36\xd5\x30\x6f\xd3\xac\xf8\x95\x08\x18\x21\xe3\xe9\xa9\xec\x1c\xb7\x69\x71\x52\x51\x13\x88\xb4\x0b\x73\xe0\x37\xe8\xf3\x2e\xae\x8d\x2d\x18\x66\xe8\x15\xa3\x09\x20\xe9\xd4\xf9\x72\x8d\xf9\x2f\xe6\x08\xc9\x54\x63\x47\x4c\xfa\x28\xfd\x0c\xa4\x3c\x1f\x9a\xda\x63\xa1\xb3\x30\xfc\x2a\x39\xde\x66\x0d\x4a\x97\x84\xa9\x3a\xd3\x5b\x77\x8d\xde\x29\x38\xe1\x4c\xbb\x61\x97\x5e\x60\xc7\x75\x8f\x56\x0a\x4e\x31\x0e\xfd\xd4\x5b\x7d\x5a\x53\x24\x8e\x47\x8e\x33\xdf\xb2\x1e\x8c\xea\x19\xce\xbd\xae\xd6\x79\x39\x81\xa5\x1b\x73\x1d\x3b\x22\xf9\x5d\x6d\x8c\x46\xe9\x21\x5c\x33\x7f\x7c\xa8\xb0\x9e\x71\xa0\x33\x2c\x72\xd1\x20\x23\xb6\x66\x20\x5f\x68\x61\x34\xc4\xd9\x26\xfe\xc0\x20\xf9\x3d\xe3\xd5\xd2\xbd\xff\x7a\xca\x97\x7f\xdb\x1b\x0e\xa9\xe6\x33\xac\x94\x77\xb9\x9b\x3a\xb6\xc0\xcd\x57\x7f\x6c\x64\x18\x10\xeb\xdc\x73\xcd\x1f\x1a\x5b\x5b\x76\x0f\xf5\x32\xc3\x63\xbc\xdd\x5a\x43\xfc\x3e\x94\x62\x2b\x7f\xba\xa0\xbc\xe7\xb9\xde\x6b\x29\x71\x9f\xb6\x7b\x2a\xaf\x23\x7c\xb3\xa4\x7c\x3c\x06\x4c\x47\xdc\x33\xf0\x44\xd4\x36\x01\x8e\xc4\xb3\xfe\xdb\x47\x3b\x1a\xcd\x25\x60\x88\x01\x6e\x5b\x0c\xa5\x2f\x7f\xd7\x0c\x02\x27\x64\x38\x0d\x26\x03\xdd\xfd\xe0\x15\xe1\x33\x40\x8c\xb8\x6f\xf8\x2a\x0f\x5f\xe7\xe6\x37\x16\x35\x9c\x42\x0f\x34\x7b\x6c\x59\x8d\x47\x07\x26\x14\xf6\xfb\xc8\x0a\x3d\x8d\x46\xf1\xe5\x39\x86\x87\x90\x3c\x23\x3f\xec\xf0\x2d\x0f\xf7\x7e\xfc\x47\xfc\x0e\x99\x82\xbc\xcc\x90\xad\x9a\xb6\xa1\xe5\x81\x89\xd8\x5e\x6b\x78\x63\x79\xdd\x4c\x05\x98\xc0\x1f\xb2\x41\x23\xfd\xad\xce\x19\xb2\x49\x7e\xe0\xb0\x7f\x5f\xab\x6f\xfa\x7c\x63\x75\xd8\x02\xb9\x54\xbb\xf5\x35\x17\x58\xad\x63\x2b\x08\x6a\x6a\x9d\xe6\x86\xe3\xe9\x50\x45\x81\x2f\x34\x27\x80\x85\x9b\x83\x63\xed\x09\x5d\xc3\x2e\xe3\xa9\x22\xc0\x5b\xb2\xd3\xf7\xc8\x4e\xaf\x39\x7b\xda\x83\x8d\xca\x55\x1b\x0d\xea\x50\xbd\xdb\xb6\x9c\xd4\x79\xcd\xd7\x4e\xc6\xf0\x86\xb9\x75\x99\xef\x26\x78\x7b\x4b\x99\x13\xac\x01\x72\x8a\x00\xc0\x1e\xc6\x42\x58\xab\x2a\xa0\x58\x85\x35\xde\x51\xd6\x21\x68\x3c\x56\x35\x86\xc7\x57\x36\x0e\xd4\xd0\x33\x7b\x3c\x2a\xf5\xd9\x4c\x46\xd5\xdc\xfc\x1d\xdf\xa4\x50\xe8\x0b\xf9\x19\x40\xdd\x34\x4d\xcf\x4f\xff\xee\x58\xdc\x5a\xde\x39\x34\xfd\x6c\xf9\x2c\x6e\x2d\xef\x26\x98\x12\xe8\x29\xaa\x04\xfa\x30\xae\xb6\x7c\xe7\x8d\xfa\x6a\x87\x65\x3f\xd0\x06\x75\x1d\x9e\x5d\xf1\xfd\xb9\x2b\x57\x30\xe9\x71\x52\x33\xa4\xd0\x71\xe5\xb9\x9e\x97\x24\x44\x94\xb3\x5d\x9f\x70\xc9\xa3\x7d\x4f\xea\x86\x9d\x4f\xaa\xcf\xed\x14\x3c\x46\xc4\x46\xe7\x9b\x61\x79\x57\xf6\x1c\x93\xbb\xce\xe0\x61\x0e\xdb\xba\x34\xb0\xf4\x67\x80\xa5\x6f\x09\x2c\xbd\x96\x0f\x4b\x4c\x5b\xa5\x43\x67\x5b\xf6\x39\x22\x05\x82\x56\xde\x9c\xd0\x0a\x70\x76\x91\xcf\xd5\x82\x75\x26\x53\x29\x5b\x77\x21\x0b\x3e\x41\x0b\xfa\xc9\x0b\x11\xbc\x8f\x1d\xc8\x5c\x6b\xac\x06\xc8\xe9\xb7\x7c\x58\xca\x4b\x3b\xac\x18\xd0\x18\x3e\x48\x4e\x00\x8b\xd7\x19\x08\xd6\x78\x24\x9c\xe2\x78\xa6\x81\xc0\xaf\x63\x46\x29\x1c\xcc\x03\x0b\xe3\x22\xb8\xcb\x7c\xe8\x66\x01\x77\xb9\x6c\xa6\x83\x90\xd6\xbd\x01\x5a\xcf\x63\x38\xed\xb4\x13\x54\x0a\x5b\x11\x4d\x4d\x62\x37\xf5\x29\x05\xfb\xe8\x15\x42\x37\xed\x21\x05\x7c\xfa\x4a\x60\xbf\xf8\x92\xbb\x82\x89\xf4\x0a\x99\x55\x72\x4c\xde\xc2\x3b\x83\x96\xb6\x32\x58\xa2\xd4\xa6\xa7\x79\xd1\xb3\xf2\x9a\xa7\xf7\x80\x5c\xc7\x56\x3f\xbc\xc9\xa2\x2d\x42\x30\xb5\x90\x95\xf8\xc5\x5e\x8d\x5c\x11\x40\xb9\x3b\x2a\x9e\xa4\x4d\x58\x19\x4a\x83\xfb\xe6\x51\xd4\xc0\x7b\xe8\x13\xc1\xdc\x0e\xbe\xd9\x65\x97\xed\x7f\xe7\xb3\x5d\x7e\x36\x01\x8e\xe1\xe8\x8e\xb1\x5b\x75\x59\x88\xce\xf1\x5d\xfd\x7c\x84\x5e\x06\x57\x0c\x47\xa0\xf0\x7c\x87\x6f\xd4\x07\xee\x47\x43\x39\x1c\x7d\xf8\x36\x86\x06\x4a\x4d\x5a\x08\xea\x04\x1f\x14\xe1\x70\x53\xb9\xee\x31\x87\x22\x6f\x1d\x34\x0c\xb9\xe7\xcf\x00\xfd\xa8\x6b\x29\xc6\xc5\xfc\xab\x8c\xff\x5f\x1e\xa6\x0c\x07\xe0\x9f\xa7\x3c\xd0\xff\xff\x93\xe7\x29\xc7\x96\x59\xf7\x3e\x25\xde\xdf\x5b\x20\xf8\x3a\xde\xc7\x91\xe3\x2a\xda\xcf\xa8\x11\xee\x53\x64\xc4\xae\x7c\x64\x79\xb3\xaf\x59\x7c\xc5\x6a\x83\x2d\x3a\xee\x2f\x88\x97\x8f\x7a\x93\x1a\xd3\x37\x20\xe2\x21\x48\xce\xd4\x5b\x24\xf9\x6a\x8d\x48\xf5\xda\x72\xa9\xd6\xa3\x05\x4c\x12\xea\xa2\xb1\xbc\xc9\xb7\xf3\x78\x53\xeb\xd6\x1e\x0d\x39\xde\xdc\xd1\xa8\xa5\x92\x5c\xf4\xb2\x50\xfc\x59\x66\xa2\x80\xc1\x54\x24\x27\xbc\x38\x29\x39\xf2\x1e\x1b\x9e\x37\x96\x94\xe6\x4f\xa3\x30\x82\x11\x6b\x33\x71\xd7\x41\xa3\x00\x9a\xe5\x55\xc1\x58\xc6\xf1\x7f\x92\x1b\x7e\x2a\x4f\x72\xf4\xab\x63\xf8\xe0\x98\xe4\xdc\x20\x7e\x08\x51\x6e\x6c\x7c\x3a\x3d\xb7\x6e\xfb\xbe\xad\x6e\x86\x7e\xfe\xa5\x41\x57\x3a\x81\x36\xb7\x3f\xd3\x6e\xfa\x05\xd8\x6e\xb0\x86\xaf\x86\x2f\xb5\x3b\x7a\x43\x7e\x04\x27\xd7\x43\x53\x77\x3b\xf9\x35\x7e\x6b\xe1\x96\x79\x64\xd6\xf1\xc7\x2d\xcf\x88\xc5\x14\xe9\xd5\xb1\x96\xe0\xdb\x62\x6a\x1d\xc1\x27\xc8\x0e\xae\x02\x43\x4e\xbe\x55\xe6\x8b\x14\xaf\x28\x0a\x90\xab\x2f\x16\xf6\xf2\x98\x9c\xbc\xd6\x77\xfd\xfe\x8a\x92\xcb\xf6\x41\x1c\x46\xba\x2e\xec\x31\xd0\x2f\x7a\xd9\x13\xce\xc7\x67\xee\x9b\x69\xc1\x4a\x6b\x93\xfc\x3d\xa6\x2c\xf8\xd4\xa8\x36\x4e\xe3\x6f\xf4\x6b\x23\x6a\x30\x55\x5a\xe5\xf7\x6e\x89\x56\xe9\x9f\xb5\xe3\xcf\xd5\x31\xd9\xeb\xcb\x86\xba\x02\x93\xc3\x28\xb6\xdc\xe2\xa0\x71\x87\x52\x48\xef\xe1\x59\x19\x75\xf0\x3b\xdf\x21\x0c\xdb\x0a\x0e\x95\x47\xc6\x3a\x7b\x97\x2b\x7e\x44\x23\x04\xcc\x64\xff\xd9\xe3\x39\x51\xc3\xce\xc9\x34\xad\x10\xbd\xa2\x13\x55\x9a\x0f\x03\x78\xec\xfd\x1c\x31\x0a\x98\x32\xee\x6c\xde\xaa\x8c\xc7\xa6\x6f\x85\x7d\xec\x73\x8d\x01\xc8\xbd\xb8\xd6\x02\x08\xfb\xd0\x6c\x00\x34\xff\xb9\x40\x05\x18\xf3\x14\xcd\x1e\x7d\x45\x2e\xfa\x7c\x9c\xd5\xb4\xaf\xe1\x34\x83\x68\xdb\xf8\x5a\x95\xde\xe1\xf8\x80\x4c\x16\xb4\x0c\x7c\xee\x93\x8d\x41\x91\x76\xc4\x45\x61\x27\x38\xa1\xf8\xfb\x55\x8f\x7e\x5e\xd2\x10\xcc\x26\xf7\x65\x26\x2f\x28\x04\x75\x60\xf0\x5f\x22\x8c\x77\x5a\x89\xc6\x3d\xad\x41\xe3\x3e\x00\x2e\x4e\x60\xe3\xe7\x57\xf8\x25\x2c\xc4\x8d\x98\x43\xcb\x94\x8a\x6c\xc2\x92\x37\x7e\x9e\x3b\xc4\x41\x71\xe3\x09\xc3\x7d\xf2\x6b\x96\x34\xfc\x27\x53\xc3\x6e\xf9\x63\xa7\xc1\x41\xe0\x73\xc3\x23\xcd\xe7\x86\xdf\x54\xf5\xb9\x73\x1f\x39\x9d\x96\x7a\xcf\xfc\x37\x1c\x9b\xf2\xf5\x4e\xbe\xfb\xda\x7d\x8d\x2f\xdb\x7d\x1b\xd4\x08\x3f\x90\x1a\xe7\x8e\xdb\xd0\xef\xb1\x8d\x9a\x30\x66\x19\x6d\x99\x6a\x79\x00\x31\xee\xb3\x4c\xd1\x83\x95\x40\xbf\x7c\xde\x4f\x8f\x95\xe8\x7b\x8c\x63\x62\xf6\xcc\xd6\x91\x72\xc8\x68\x6d\x60\x1c\xd2\x1e\x7d\xa8\x50\x3f\x8e\xa3\xb1\xed\xee\x53\x50\x3f\x23\xdb\x8f\x70\xf6\x2b\x84\xe3\xcf\x0f\x72\xd0\xb9\x55\x89\xbf\x17\x39\xfd\x50\xa4\x82\xd9\xab\xb9\xb0\x08\x4c\x1e\xd8\x85\x29\x40\xdf\xd7\x35\xc6\x20\x57\x48\x38\xbe\x3b\xdb\xa8\xf9\x5b\xae\x99\x20\xca\x3b\x7d\x0f\x7b\xb7\x1b\x77\xf4\xcd\x9a\xa8\x92\x7c\x2a\xc7\x7d\x17\x63\x5a\xd9\x6e\x43\xb9\x45\xb4\xdb\x1d\xb3\x8b\xf8\xeb\x50\x0e\xd4\xb8\x7c\xcc\x86\x1f\xa2\xa1\x9f\xe9\x7b\xfc\x74\x6b\x25\xd7\x36\xa0\x0d\xcb\x87\xba\xf5\x22\x07\x94\x62\xca\x71\xab\x74\x57\xed\xf8\x58\xd6\xe7\xf8\x79\x71\x28\x07\x67\xf3\x9f\x91\x13\x22\x39\xe4\xcc\x67\xf8\x3d\x3f\x40\x85\x9d\x4a\x81\x71\xb9\x11\x14\xd1\x79\x13\x10\xd3\xdb\x5f\xde\x5f\x8c\x20\x67\x36\xa8\x96\xcc\x6c\xe8\xf8\x63\xa5\xe1\xf6\x15\x57\x8e\x9b\x02\xdc\x37\xf3\x33\x10\xc8\x83\x13\x10\x1a\xf2\x9e\x59\x10\xcf\x6c\x43\x4a\x6d\x45\xbe\x93\x1d\xa3\x74\x26\xbf\x63\xa0\xe0\x75\x2e\x81\xb2\xc7\xb9\x26\xbd\xd6\x61\x9f\xb5\xb8\x21\x3c\x3f\x90\x10\x81\x80\x1f\x48\xa8\xed\xec\xf0\x0c\x9a\x54\xd6\xfb\xaa\x50\xc1\x51\xe0\x2f\x35\xcb\x40\x0d\xc4\xb7\x6c\x10\xda\xb4\x1b\x26\x11\x6e\xe5\xa4\xb7\x13\xfc\x8a\x96\x4e\x37\x22\xef\x17\x81\xf5\xdb\x90\x9f\xeb\x95\x1a\x06\xbc\x5a\x3a\xc4\x98\x41\xe9\xcd\x89\x7f\xb7\x0c\xb6\xa7\xd1\x64\x36\xd5\x6d\xe9\x2c\x55\x3a\x9b\xf7\x94\x17\x01\xf3\x57\x86\x3b\xbb\x70\x26\x1f\x4c\xe2\xef\x94\x8e\x26\x11\x36\xa5\x33\x99\xb4\xb4\xab\x60\x3d\x0c\xf0\x22\x19\xf3\x18\x37\x68\xe5\xdb\x01\xb8\x32\xee\x31\xbb\xb5\x4f\x06\x04\x3b\xc4\xbf\xdf\xed\xcf\x67\xd7\x3b\x9f\xcb\xb3\x3d\x33\x94\x9e\x5c\x0c\x83\x93\xcb\xa2\x05\x16\xcb\x56\x9e\xb7\xe0\x7f\xd7\xec\xc7\x75\x25\xe1\xde\xb3\xbc\x8e\x68\xaf\x18\xe4\xb2\x8d\x26\x3d\xbc\x8f\x2e\x10\x34\x59\xc1\xcc\x43\x32\x31\x40\xf9\x5b\xb9\x1c\x02\xb7\xc2\x2f\xf2\x5b\xed\x78\xbe\x99\xc6\x82\x03\x87\x1a\x4f\xdd\x5c\x4a\x4e\x00\x33\x13\x0f\xef\x86\x8e\x10\x47\x0b\x75\x3c\xd8\xbf\xeb\x1e\xea\x0f\x43\x59\xc4\x85\x45\x39\xc8\xcf\x6c\x23\x77\x2f\x46\x41\x18\x06\x1b\x4a\x21\x61\x5e\xf6\x5d\x24\xa7\xb9\xb2\x99\x81\x5b\x51\x83\x4f\xe9\xee\x16\x01\x2c\x44\xf1\xe0\x29\x59\x19\x83\x94\x7f\x29\xc4\x2a\xf9\x24\x31\x0d\x9f\x47\x8f\x0b\x9a\xf9\x31\x08\xa3\x89\xee\xff\x3c\x91\xc7\x81\xe4\x92\x94\x55\xe2\x08\x22\x79\xdc\x28\x80\x7d\xde\xb5\xcb\xe7\x4f\xc2\x27\x85\xd8\x22\xe4\x01\xf8\x09\x22\x2e\xfc\x41\xdf\x1b\xd2\x71\xd8\xe7\xfa\xff\xa6\x4f\x15\xc9\xef\xb0\x5d\x31\x7b\x48\xd3\xdd\x7f\x72\xad\xff\x2d\xd1\x60\x0b\xdf\x84\x66\xe0\x21\xe1\x3f\xd2\x90\x7b\x23\x41\xe7\x67\xbf\x47\x78\xc1\x95\x54\x46\x88\xdc\x4d\x1d\x3f\xe8\xac\xa8\xc2\xcd\x56\xbe\x89\xe3\xf1\x44\x3f\x1e\x47\x54\xd4\xd4\x04\x51\xcd\x96\xef\x20\x66\xdf\x67\xfe\x95\x32\x5c\xc2\x93\x82\xaa\xe3\xcf\xda\xc8\xc7\xbd\x49\x40\xfe\xde\xbd\x50\x96\x7c\xea\x9b\x66\xf3\x39\xc9\x57\x3c\x27\xfa\x9b\xe0\x09\x40\x89\xd7\x45\x4c\x1a\x25\x13\xf9\xc9\xa9\xef\xb8\xe1\xef\x48\x4b\x25\x06\x82\xb7\x79\xbe\xdb\x22\x43\xbe\xd6\x88\x8c\x35\x32\xf8\xed\x48\xfc\x2c\xf0\xb3\xc8\x1f\xf0\x6b\x8f\x5f\xfb\xb2\xbc\x93\xca\xe0\x30\x54\x9d\xb4\xbe\x35\x72\x1e\xf0\xfb\xa1\xcc\x51\x5b\xfa\xd1\x07\x9d\xec\x07\x5e\x04\x92\x8f\x43\x22\xdf\x7e\x50\xbe\x3c\x7c\xfe\xd2\xbf\x81\xfe\x84\xfd\x63\x0f\x9a\x85\x14\xe5\x70\xf7\x9a\x25\xc9\x27\x60\x13\xa4\xcb\x6a\x83\x92\xa6\x5c\x1e\x87\x66\x4a\x92\xf2\xda\x7c\x9f\xf9\x71\x69\x0a\xb9\x7e\x54\x9a\x4a\xfe\x6f\x00\x00\x00\xff\xff\x4c\x45\x51\x5e\xe2\x85\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\x7d\xdb\x72\x1c\x47\xd2\xde\x7d\x3f\x45\x4b\x0e\x9a\x52\x04\x38\x0c\x49\x61\x87\x43\x41\x52\x86\x00\xf1\xb0\x3f\x41\xf0\x27\xc0\x5d\xaf\x19\x8c\xde\x9e\xe9\xc6\x4c\x2f\x66\xba\x47\x7d\xc0\x08\x7b\xe5\xd7\xf0\xeb\xf9\x49\x9c\xf9\x65\x66\x1d\xba\x7b\x40\x69\xd7\xe1\xff\x06\xa8\xa9\xca\x3a\x65\x65\x65\xe5\xa9\xaa\xf3\xfd\x3e\x2b\xca\x6e\x95\x3e\x4f\x4f\xd3\x7d\x5e\xd5\xdb\xb2\xeb\xd2\xae\xdc\xde\x3c\xd9\x34\x5d\x5f\x16\xe9\xab\xaa\xa7\xdf\xed\x5d\xb5\x2a\x93\x64\xd3\xec\x4a\x02\x7d\x4d\xff\x92\x22\xef\x36\xcb\x26\x6f\x0b\xca\x38\xb7\x74\x52\xfe\xb6\xdf\x36\x2d\x03\xfd\x22\xa9\x64\x53\x6e\xf7\x5c\x87\xfe\x25\x5d\xb5\xae\xb3\xaa\xa6\x9f\x57\x94\x4a\xdf\xd4\x49\xd7\xac\xaa\x7c\x9b\x05\x05\xc8\xb0\xf2\x1f\xd3\xef\xeb\x22\xbd\xea\xcb\x7d\xfa\xac\xdb\xe5\xdb\xed\x8b\xbc\x43\x95\xbe\x4c\xf3\xd5\xaa\x19\xea\xfe\xd9\x53\x29\x90\xc6\x9b\xa1\xb7\xd6\x2f\x87\x5e\xf2\x86\xbd\x65\x7d\xdc\x27\x6d\xb9\xae\x68\x62\x2d\x65\x7d\xd0\x64\x72\x28\x97\x5d\xd5\xf3\xa0\xff\x22\xa9\xe4\xae\x6c\xbb\xaa\xe1\xf1\xfc\x59\x52\xc9\x3e\x5f\x33\xc0\x7b\xfa\x97\xf4\xe5\x6e\xbf\xcd\x51\xe1\x5a\x93\xc9\x36\xaf\xd7\x83\xc0\xbc\xd5\x64\x92\x0c\x84\xb9\x3a\x07\xce\x3e\x6a\x32\x29\x77\x79\xb5\x65\xfc\x3c\xe1\x04\xb5\xdb\x75\x87\x06\x58\x7c\xaf\x49\x1a\x63\xd6\xdf\xef\x4b\x0c\xf1\xc9\x35\xa5\x92\x55\xbe\xef\x57\x9b\x9c\x72\xce\x24\x95\x10\xd0\xbe\xa1\xb1\x36\xed\x3d\xe0\xec\x47\xd2\xb4\xeb\xbc\xae\xfe\x91\xf7\x32\xfe\xcb\xe0\x67\xb2\xab\xda\xb6\xe1\xa9\x5f\x20\x91\xd4\xe5\x21\xe3\x76\x28\xe7\x5d\x79\x08\x5b\xe1\x92\x5d\xb5\x6e\x65\x96\x5c\x78\x81\x5f\xdc\x0a\x97\xdd\x34\xed\xad\x16\xbc\xe4\xe4\xa8\x2a\x0d\x42\x4b\xe3\xfe\xf3\x9a\xf0\xa2\xa5\x17\xf8\x11\x01\x74\x49\x5e\xec\xaa\x3a\xdb\xe7\x75\xc9\x38\x3a\xe5\x5f\x84\x17\xfa\x95\xe8\x72\x67\x5d\xd9\xf7\x55\xbd\xee\xb8\x58\xb2\xd2\x2b\xcd\x4a\x82\x32\x97\xc7\xe3\xe9\xb2\x9b\xb2\x2c\x64\x44\x5d\xfa\x92\xd2\xc9\x7e\xd8\x6e\x69\xee\xbf\x0e\x65\xd7\x33\xfc\x7b\xfa\x4d\xb3\x90\xdf\x49\xd5\x75\x94\xa0\xec\x37\x48\x24\xb4\x00\xf5\x0a\x43\x3a\x43\x22\x49\x3e\x75\x65\xde\xae\x36\x9f\x13\xf9\x8f\x1e\x39\xb1\x58\x2c\x8e\x2e\x0d\x93\x83\x92\x82\xf4\x60\x1d\x24\xab\xa6\xe0\x1f\x67\xf4\x8f\x9a\xae\xea\xae\x27\x92\xfe\x9c\x68\x82\xc1\x24\x25\x68\xec\xab\x7e\x5b\xfa\x4c\xec\x8f\x8e\xd7\x21\x7d\x59\xb5\x5d\xff\xa4\xaf\x88\xe4\x3e\x0c\x75\xc2\xf3\x23\x72\xce\x8a\xa5\xed\xf2\x57\x0d\x61\x07\xd9\x2d\xcd\xef\xe2\xfe\xea\xdf\xdf\x9e\xa4\xef\x69\xab\xaf\xdb\x92\xd2\x29\xb5\x41\xff\xa8\xce\x0f\x8b\x84\x6a\x59\x4f\xe7\x79\x9f\x2f\xf3\xae\xf4\x68\xe5\x42\xa1\x51\x57\x06\x4a\x65\xb6\x01\x16\xd1\xf5\xd1\x7c\xe7\xe8\x9c\xda\xd0\xdd\xe1\xda\x78\xc7\x5b\x84\xf2\x99\x6b\xa0\xf2\xfb\x6d\xc9\xf9\xd4\x54\xfa\xe6\xdd\xbb\xcb\xf3\x9f\xd3\xb2\x5e\x57\x75\x99\x1e\xaa\x7e\x93\x0e\xfd\xcd\x7f\xcb\xd6\x65\x5d\xb6\xc4\x44\x56\x55\x4a\x3b\xa3\x25\x22\x48\x89\x3c\x65\x72\x8b\xa4\xeb\xb6\xd9\x4e\xd0\x7b\x75\xf5\x36\xbd\x60\x14\xef\xf3\x7e\x83\x81\xf4\x9b\xa4\xfb\x75\xcb\x28\x72\x1d\x5e\x6f\xca\xf4\xa6\xa2\x59\x03\xa8\xb9\x31\x7c\xa4\x85\x8e\x71\x91\x94\x6d\x9b\xd1\xbe\xef\xef\x33\xad\xac\xed\x8d\x21\xa5\x09\x22\x9d\xba\xe9\xd3\x65\x99\xa2\xce\x22\x49\x6c\xc0\x86\xdd\xd3\xfd\x7e\x5b\xad\x64\xc7\xbe\x92\x32\x8f\x68\x66\xd1\x8a\xa5\x10\x0e\x88\xb2\xb2\x00\x5d\xc4\xff\xee\x9b\xa1\x4d\x23\x36\x80\xfa\x9b\x92\xf8\xf2\x66\xa0\x2d\x97\x13\x4f\xdd\x36\x43\xf1\x15\x28\xd5\x46\xef\x09\x35\xfd\xd0\xd0\x80\x81\x1d\x07\xe0\xbb\x38\x25\x8a\xe3\x53\xa1\x2d\x77\x0d\x71\x07\x47\xec\x15\x11\xd4\xa1\xa2\x42\x9a\x69\x97\xdf\xd1\x7e\xeb\x9b\xb4\xdf\x54\x5d\x5a\x10\xb1\xad\xb8\x61\xda\x1a\x03\xf1\x63\x21\x0b\x22\x50\x21\x0d\xcb\x8b\xd7\x00\x50\xbb\x81\xa8\x69\x43\x8d\x31\xb7\xe7\xa3\x89\x9a\x9c\x1b\x27\xa6\x44\xed\x80\xbe\x89\x72\x1b\xe2\xad\xcc\xfd\xce\x91\xd0\xdf\x61\xfb\x34\xaa\xfc\xe6\x86\x46\xd5\x11\x55\xbc\x4e\x57\xdb\x86\x48\xea\xe3\x87\xb7\x54\x79\xd3\xf7\xfb\x6c\xdf\xb4\x20\xe3\xeb\xeb\xf7\xb4\x3d\xda\xde\xe7\x06\xb8\x66\x98\x7a\xd8\x2d\xe9\xd7\x61\x53\x11\x13\xc8\x83\x05\x02\x2a\xb6\x7c\xc0\xd4\x69\x53\x2f\xb0\x56\x43\xbb\x1d\x2d\x23\x75\x69\x25\x47\x86\xc7\x43\x78\xca\x7f\xae\xfc\x28\x31\xdd\x8e\x4e\xe1\x03\x16\x95\xa6\x5a\xe2\x34\x21\xda\x6a\xf6\xdc\x6e\x40\x5c\x97\x9a\xe1\x29\x0a\x27\x90\x2b\x97\x73\x88\x4a\x71\xc6\x07\xbc\x74\x47\x13\xd6\xdd\x7c\x75\x41\x68\xc0\x96\x46\xee\x4d\xdb\xec\x28\xf7\x25\xfd\xf3\x19\x7e\xf8\x17\xdc\x1e\x60\xf2\xa2\x20\x36\xd3\x9d\xa4\x1f\x5e\x9e\xa5\xff\xe5\x87\xef\xbf\x5f\xa4\x6f\x7a\xde\x10\x4c\x23\x7f\xe7\xb5\xa5\xa4\x1c\x88\x0e\x94\x76\x6e\x4f\xcb\xff\x35\x13\xf8\xd7\xe9\x33\x94\xfe\xf7\xf2\xb7\x9c\xce\xd9\x72\xb1\x6a\x76\x2f\x78\x73\xef\xf2\x7e\x91\x70\x09\x51\x8d\x92\xd3\x55\x59\x17\x94\xd0\x63\x55\xcb\x02\xae\xa3\xe5\xc1\x21\x2b\xa7\x7f\xb6\x6a\xea\x9b\xaa\xe5\x09\xfd\x52\xe7\x4b\xc2\x89\xc9\x05\xc4\x8e\x51\x62\x67\x17\x21\x8d\x36\x72\x75\x73\xef\x41\x31\xd5\x77\x9c\xa9\x0b\x9a\xb0\xac\x44\x8d\xaa\xc8\xe4\xb0\x7c\x85\x6c\xac\xdb\x25\x4d\xaf\x35\x7c\x77\x1e\xe1\xcd\xcd\xcd\x96\x18\x9b\x31\x2b\xed\xe1\x52\x72\x85\x6f\x85\x20\x44\x8c\x7b\x48\x36\xe7\x55\x07\xc8\xb3\xf3\x77\x69\x79\x47\xd4\x46\xe4\xb0\x6f\x9b\x62\x58\x81\xc2\x18\xf6\x24\xe5\x63\x82\xf0\x4b\x9c\x61\x25\xec\x2d\xd8\xab\x3c\x34\x66\x08\x2b\x02\xa2\x2d\x5a\x48\x7b\x99\x20\xa8\x35\x41\xc2\xba\xb9\x62\xe1\x30\x2c\x9b\xad\x30\x19\x1d\x56\xa9\x1b\xd7\xa5\xe5\xae\xb7\xf7\x29\x4e\x7d\xd0\xc5\xaa\x2d\x03\xd9\xae\x5b\x24\x7a\x56\x99\x84\x98\xdd\x55\x24\x54\x04\x4b\x85\x52\x13\x17\x99\x3d\xfc\x99\x01\x58\x4c\xeb\x66\xeb\xba\x81\x5d\x72\xc7\x5c\x42\x73\xa7\xce\x79\x7c\x1d\x86\x80\x1e\x58\xdc\x23\x62\xbc\xab\xc0\x69\x14\x59\x18\x2b\x61\x0c\x5d\x53\x57\x5d\x59\xa2\x05\xaa\xff\x94\xda\x44\x9d\x85\x8a\x30\x2a\x8a\xd8\xb9\xfb\xd7\x66\x48\x8b\x26\xe5\x83\x00\xec\x8c\x6a\xdb\x54\x6b\x9d\xbe\xce\x39\x6d\xab\xf5\x86\xf8\x4a\x73\x38\x11\xa4\x1d\x36\x4d\xc9\xb4\xf3\xe6\xfc\xf9\x77\x32\x8e\x35\x33\x37\x57\x89\xd9\x62\x3e\xf4\x0d\xd3\xa9\x2e\xa1\x0c\xc1\x1d\x2f\x80\x9c\x08\x4b\x02\x34\x16\x4f\x4d\x00\x9b\x9e\xd6\xba\x4f\xc2\x32\xdd\x20\x1e\x46\x6a\x8f\x44\x5c\x95\x62\xb2\x75\x03\xc9\xcc\xa4\x16\x66\xd5\x24\x4a\x77\x7d\xb6\xae\xfa\xec\x86\x37\x2c\xb7\xf9\x92\xeb\xf2\xc9\x41\x25\xe9\x63\x2a\x7a\x9c\xd2\xae\x27\xc9\xb1\xf8\x31\x7d\x74\xa7\xc7\xf5\x0f\xbc\x13\xb3\xfc\x8e\x60\xb1\x18\x40\x70\x4b\x14\x2e\xd2\x82\x89\xef\x45\x43\x74\xce\x38\xef\x86\x3d\x38\xba\x9e\xd0\x27\xe9\x5e\x00\x8b\xe6\x50\x6f\x9b\xbc\x00\xcb\xa1\xdd\x55\x41\xf9\x58\x56\x75\x4e\xa7\x8b\xb5\x02\x56\xf6\x88\xa8\xe1\xdd\xe5\x35\x00\xd7\xcd\x72\xa8\xb6\x85\x01\x2c\x68\x86\x77\xf9\xb6\x2a\x58\xce\xd2\x75\x0f\x65\x1a\xcb\xaa\x64\x2c\xab\xa6\xe5\xe3\x10\xb3\xb1\x8a\x47\xce\xe1\x96\xcf\x37\x64\x53\x5d\x85\x45\x3d\x77\x64\x32\x1a\x68\xe1\x21\x80\xf2\x81\x0a\x8a\xa9\xba\xfa\x71\x8f\x91\xae\x06\xea\x8b\x16\x9d\xb3\xa9\x62\x97\x3e\x79\x41\x7f\x13\x3e\x9e\x85\xef\xad\xa7\x88\xe7\xc2\x54\x0a\x07\xd9\xa5\xd1\x50\x23\xf2\x76\xd4\x65\xc4\x1b\xcc\x35\x1c\xaf\x91\x40\x37\x08\xbd\xb2\xa6\xb5\xa5\x65\x2d\xbf\xa2\xc4\x63\xda\xc0\xeb\x2d\x16\x21\x87\xf4\x42\x62\x5c\x43\x78\x63\x02\x39\x91\xed\x72\x43\x53\x63\xde\xd9\xe7\xb7\x34\xb6\xbc\x25\x21\x2c\xf9\xc4\xda\xe8\xe7\x64\x10\x01\xa8\xd9\x16\x4e\xd8\x04\x4d\x37\xed\x58\xc5\xf2\x40\x8e\x5e\x3b\x92\x22\x57\x9b\xcc\xe9\xb2\x8c\x94\xbe\xfc\x0d\x67\x1e\x8a\xbc\x6a\xcb\xc4\xce\x45\xc9\xee\x1e\xcb\xc5\x93\xb8\xb8\xf7\xab\x45\xe2\x0f\x6d\x11\x12\xd1\x97\x0d\x63\xed\xae\x74\x50\x67\x61\x6e\x5c\x81\xda\x22\x41\x4d\x9b\x8a\x35\x21\x2a\x12\x75\x4d\x4b\x45\x65\x23\x55\xe4\x93\xea\xd8\x9f\x13\xeb\x20\x6a\x32\xf9\x44\xcc\x80\xf4\x12\x61\x2f\x19\x6b\x63\xb6\x38\x34\x14\xe1\x39\xac\x98\x29\x3f\xf0\xe7\xe0\xa6\xdc\xf3\x91\xb9\xeb\xb0\xaa\x5b\x82\x2c\xee\x55\xf6\x72\xeb\xfb\x93\x70\x5a\x5a\x70\xe2\x4f\x5f\x99\xf6\xfe\x07\x9b\xf8\xb9\xa2\x95\x44\xfd\xf8\xe4\xe0\xf3\x9a\xb6\xda\x1e\xd8\xa7\x4d\x72\x7f\x92\x46\x67\xd0\x26\xef\x88\xfb\xd2\x01\xa7\xd5\x8a\x85\x69\x07\xbc\x6a\xf9\x4a\x48\x1e\x9a\x3c\x88\x54\x6a\x36\xed\xf8\x48\xe3\x11\x0a\x83\xd2\x5e\xdc\x81\x8f\xe3\x3c\x3c\xf5\x67\xfa\x24\x84\xed\x4a\x96\xf9\xb2\x9d\x68\xe8\xf2\x2b\xbd\x28\x13\x12\x4c\xd6\xb4\x1f\x8d\xde\x9e\xb3\x4a\xb6\x86\x84\xaa\xe4\xc6\x00\x65\x1f\x72\x50\x85\xb0\x9c\x9f\xcc\x62\x41\x1b\xfb\x00\x7d\x95\xb6\xe6\x04\xfd\x74\xd6\x50\xf1\xc2\x38\xb2\x1c\xb8\x90\x4f\x3a\xda\xec\x1e\x89\xa7\x29\xad\x7e\x1a\x42\xa9\x9c\xe8\xa7\xc5\x15\x78\xd3\x3f\x5b\xbe\x78\xd4\x3d\x7b\xba\x7c\xe1\x58\xe3\x6a\x53\xae\x6e\x45\x97\xa8\xea\x65\xf3\x1b\x14\x2e\x5a\x78\xc6\x71\xcd\x5b\xe4\x51\x91\x6e\xa8\x14\x32\x39\x6d\x65\xaa\x46\x88\xe7\xd2\x68\xd1\x68\x30\xbc\xe3\x17\x66\xfb\x71\x87\x83\x11\x12\xd5\x46\x27\x32\x32\x52\xf3\xb1\x77\x38\x2b\xa0\xdb\x53\xce\x65\xca\x05\x9b\xf7\xa4\x8b\xf9\x6e\xab\x5d\xd5\x4f\x48\x87\xf9\x48\xae\x24\xa8\x7a\xbe\xe1\x12\x6d\x01\x1b\x18\x0b\x71\x63\x6a\x86\xce\x4d\x23\xa7\x43\x4e\xea\xcd\x0f\x29\x91\xd0\x40\xa7\x10\xcf\x89\x86\x49\xec\x38\xe7\x83\x97\x14\x84\xbc\xcb\x86\x5a\xd1\x5a\x16\x46\x4c\xaf\x2b\x1c\x12\xdc\xaf\x91\x7c\x00\x65\x98\x57\x39\x37\xfd\xc6\x61\xfc\x5b\x12\x8a\x6f\x5c\x35\xe6\xdc\x3c\xa0\x8a\x65\xb2\x7c\x76\xf1\x88\xb3\xd5\xa5\xa8\x57\xc0\x00\xc3\xf1\x42\x93\x72\xe0\x57\x8f\x34\x8c\x5b\xca\xc1\x82\x2c\x87\xbe\x6f\x58\xe6\xde\x32\xd5\x48\x1d\x1b\xf5\x19\x00\xa1\x46\xf8\xf6\xb0\x20\x21\x9e\x64\x6d\x4a\x93\x81\x33\x6f\x85\x53\x6d\x65\x34\x3b\x3d\xea\x1c\x58\x21\xea\x7a\x5e\xdf\x1b\x29\x13\x41\xf0\x28\xb8\xc3\x7e\x7e\x2c\xdf\xb4\xe5\xb7\x7e\x34\x6e\xcf\xa0\x86\x8d\x48\xaa\x07\xfb\xe9\x03\x4a\x41\x25\x6e\xd7\xd9\xc9\xa5\x46\x16\x4f\x1f\x6d\x8c\x5e\x94\xf3\xce\x20\x06\x4b\x62\x63\x01\x44\xd3\x2c\x50\x7b\x31\xea\xcb\xab\x3b\x53\x0c\xf6\xf1\x90\xfd\x01\xd4\x37\x4d\xd6\x6d\x44\xb5\xb4\xe1\xa5\xdb\xb2\x5e\x47\x66\x02\xd8\x60\x41\x74\xff\x95\x8f\x39\x12\xe0\xf3\xed\xe7\xe4\x1e\xf6\xa8\xbf\x12\x87\xaf\x61\xaf\x6b\x12\x2a\x10\x65\xe4\x02\x09\x02\x65\xcd\xe8\x73\xc2\x47\xe0\xbb\x91\x58\xc7\x47\x84\xe6\x05\xf2\x05\x8a\x7e\x89\xa4\x35\x5b\xc2\xe4\xfd\x8c\x08\xf8\xa1\xf4\x76\x49\xa4\xdc\x14\x49\x89\xbe\x36\x55\x87\xf4\xe9\xdb\x52\x1b\x7f\x4d\x6a\x73\xf7\x11\x6a\xaf\xe8\xb0\xac\xf0\xbe\xcf\xef\x59\xe8\x92\x6c\xfd\x81\x82\xeb\x32\xdf\xe9\x28\x39\x29\x4d\x9c\xd2\x71\xa6\x99\x9c\xa4\x53\x2e\xb0\x6a\x24\x10\x3f\x6c\x0a\x22\x8b\xe8\xb1\xef\xc4\xff\x52\x8d\x9e\x7f\x9b\x98\x62\xfe\x96\xe4\xdb\xfd\x26\xc7\xf9\x1f\x80\xc1\xea\x40\x40\x58\xf8\x14\x20\xa0\x85\x61\x57\xb6\xd5\x8a\x93\x5c\xe1\x9b\x27\xd9\xb7\x30\x38\xd1\x46\x21\x41\x30\x6e\xac\xa0\x4d\xf2\x4f\x35\xc8\x69\x16\x12\xc3\x76\xbb\xea\x1f\x36\x8b\xa8\x39\xce\x27\x9e\x43\x10\x10\xc9\x3c\x94\x03\xc2\xc1\xc8\xe2\x59\x9f\x32\x5f\xe8\x59\x04\x8c\x9a\xde\xe5\xbf\x7d\xa9\xe2\xae\x99\xa9\x27\xac\xc0\x57\xb2\x0d\xaf\x53\x8c\xd9\x01\xc1\xb3\x7d\xe3\x28\x34\x2d\x3d\x83\xd4\xb7\x74\xaa\xd5\x0e\xec\xa3\xfc\x4e\xf1\xfb\x47\x33\x81\xd3\x11\xa2\x02\x74\xea\x8c\xe1\x74\x38\x17\xcc\x37\x21\x08\x2f\xfc\x76\x0b\x85\x63\x47\xce\x2c\x46\x9a\xca\xef\x18\x07\x49\x94\xa2\x27\x10\x49\x2d\xbc\xdd\x3e\xe3\x33\x32\x63\xa1\xb3\x0e\x45\x4b\x77\x7a\xda\xf9\x02\x08\xb1\xfb\x66\xd3\x7a\xa3\x0d\x77\xb4\x3a\x89\x02\x33\xb5\x2f\xa7\x86\xbc\x23\xf5\x7b\xda\x32\x33\x0d\xb8\x9d\x74\xb4\xa2\x2c\x26\x2a\xd1\xcc\x8b\x09\x2f\x98\x56\x64\x30\x36\xad\x6e\x32\xda\xe9\x51\xcd\xf7\xc3\x92\xf8\xa1\x63\x00\x4c\xcf\x90\xa9\xeb\xde\xb7\x22\xb5\x49\x93\x2d\xd7\x6c\xa8\xb2\x61\x47\x63\x55\x02\xa4\xa3\x44\xc0\x42\xf2\xf3\xeb\xe3\x96\x3a\xa4\x8a\x50\x05\x70\x2b\x1c\x2b\x5f\x34\x67\x1a\x13\x25\xb9\x66\xa0\x82\xe9\x30\x54\x0e\xd8\xb1\xb6\xd1\x0d\xcc\xd8\x59\x33\x11\xd9\x26\x5e\x4b\x3e\xb6\xd1\x54\x89\x2e\x8e\x37\x4f\x94\xcc\xea\xda\x97\xda\x07\xd8\x1f\x6c\x3a\x54\xd6\xa7\x0d\x6b\xe3\x0e\xe8\x58\xb3\x4e\x9d\x2c\x7f\xab\x60\xf4\x7b\x55\xdd\x95\xaa\x50\x3a\x3d\x1a\x65\x8b\x64\x4b\xac\x84\x15\x17\x99\x95\x48\xc1\xcd\x1d\xeb\x7d\xdc\x1f\x97\x4a\x3d\x31\x02\xea\xa4\x78\x9d\x55\x35\x25\x55\xb0\x39\x94\xc5\x09\x09\x08\x5c\x83\xc6\x09\xa6\x93\x6f\x0f\xf9\x7d\x07\x0b\x8b\xf1\x2b\x36\x78\x4a\x75\x66\x46\x24\x3e\xac\x31\xaa\xd0\xba\x4d\xfb\xd5\x30\xa1\x04\xe9\x0f\xf9\x03\x94\x4b\xf0\x1a\xb5\xd9\x90\xce\xce\x87\x26\x0e\x68\x3d\xa9\x58\x31\x66\x35\x92\x35\x04\x29\x0e\x1a\x82\xc3\x44\xcf\x8d\x99\xba\x27\x2c\x5c\x51\x37\x2c\xea\x10\x37\x17\x5c\x93\xf4\x48\x98\xc5\x90\x02\x4b\x03\x6d\x8c\xf2\x89\x48\xd5\x15\xe1\x90\xb5\x34\xaf\x7c\xf3\xc9\x46\xab\x62\x66\x61\xc9\x87\xea\x9c\x74\x3d\x6d\x01\xc6\xb4\xb9\xea\xfe\x2a\xd2\x99\x2a\xdc\x5c\x8a\xad\x05\x34\x75\x9b\x6a\x9f\x36\x30\x35\x86\x28\xf4\x64\x1b\x08\xa8\x84\x8d\xa2\x84\xd4\xce\x36\xd7\x36\xaf\xbb\x9b\x12\xc6\xd7\x5d\x7a\xc3\x7e\xa4\x85\x76\xcd\xf2\xae\xb8\xec\x8e\xf4\x2c\x1a\x10\xba\x0e\xcf\x1a\xac\x5d\xb0\x50\x71\xd7\x04\x73\x87\x9e\x75\x0c\xc0\xaa\x6f\xa9\xb3\x31\x30\x99\x4d\x50\x00\x99\x33\x72\x71\xd8\x68\xee\xca\x10\x11\x37\xff\xec\xcc\x03\xac\xab\x7d\x59\x8c\xf2\xf1\x32\x49\xa7\xb0\x75\xc0\x43\xb5\xbc\x8f\x67\xcf\x55\x1d\x05\xb0\xbf\xe4\xae\xd4\x5e\x78\x63\xf0\x5e\x19\x35\x08\x1b\x87\xd7\x34\x92\x3e\x87\xc2\xb8\xa4\x21\xae\x36\xd1\xee\xbc\x46\x49\x2a\x25\x93\x0d\x9a\x7c\xe2\xae\x3f\x27\xc4\x34\xeb\x75\xc9\x86\x32\x6a\x89\x0f\x4c\xfc\x56\xf9\x5e\x32\x69\xc0\xeb\x56\xd2\x6c\x5e\xb7\x2a\x2b\xda\x90\xcd\xee\xc1\x9a\x55\x6d\xe6\x9e\x2e\xf9\x7b\x43\x12\x08\xec\xc4\x7f\xa2\x14\xcb\xce\x75\x12\x79\x86\x46\x56\x0a\x28\x17\x55\x7f\xef\x4f\x8c\x53\xcd\x21\x25\x19\xdc\x01\x76\x8f\x97\x96\xa6\xf5\xc8\x99\xe9\xf1\xd6\x96\x94\xc2\x89\x11\xea\xa5\xa5\x13\xd6\xb1\x77\x0b\x1c\x0e\x2c\x8a\xc3\xb4\x1d\x1c\x09\x8f\x1f\x75\x8f\x79\xc1\xac\x6c\x11\xc0\xef\xf3\x9e\xd8\x62\x2d\x0a\x8e\x70\xa8\xb0\xaa\x16\xbb\x26\xc0\x55\x04\x6c\x01\x7f\xb0\xa0\xe2\x73\x42\x9a\x28\x1c\x88\x34\x35\x49\xcd\x3a\x3f\x95\xc5\x74\x2a\x31\xff\x1b\x25\xd5\x9e\x92\xba\x28\x08\x55\x74\xe1\x04\x34\x97\x51\x17\x7b\x90\xba\x44\x0d\x48\xb1\xf5\x48\xc9\xfb\x79\x7a\x2e\x09\x53\x99\x87\x0a\x73\xaa\x8a\x24\xd9\x03\xef\x59\x30\x5a\x59\x08\x37\x68\xf9\x1f\x58\xb0\xdb\xb1\x5c\x40\x58\x90\x56\x40\xb8\xe6\x50\x80\x24\xc0\x1e\xd8\x40\xdd\x63\xd3\x2c\xf4\xc0\x3a\x70\x96\x90\xb6\xcc\xf5\x18\xec\x50\x2e\x53\x36\x96\x12\xe1\x90\x56\xa5\x13\xdd\xe5\xa4\x90\xdd\x55\xb9\xb3\xeb\xd0\x6a\xb1\xdb\x5e\x4f\xd1\x97\xec\xb2\x87\x1f\x74\x1a\xc0\xc1\xde\x0c\x75\x5c\xbc\xd5\x64\x32\xec\x0b\xb6\x88\xf9\x09\x7f\x44\x86\x9b\x70\x5c\x1e\xd8\x2a\x31\x75\xab\xe6\xa5\x18\x80\x17\xa9\xc2\xf1\xc8\xee\x17\xb6\x7d\x66\x22\x3f\x74\x0b\x15\x63\x90\xd0\x45\x20\x45\xaa\xf2\x1a\xc0\x42\x78\x0f\xd0\x2b\x5e\x41\x20\x84\xce\xca\x74\xd3\x1c\xd2\x6d\x55\xdf\x76\x8a\x5f\x67\x4d\x31\x2d\x3b\x3d\x47\x06\x01\x8b\x9d\x87\xc5\xaa\xaa\x1e\xca\x9f\x12\x4b\x89\x19\x1f\xc9\x69\x94\x43\x29\xa7\xe2\x98\x19\xa8\xf7\xe5\x0c\xd9\xe9\x29\xb2\x67\x61\xbd\x96\xac\x55\xe0\x0f\x66\xf6\xab\x6e\xa1\x9b\x92\xc5\x73\xb0\xc3\x57\xca\x85\x08\x3f\x4d\xd3\xa9\xe5\xd2\xb3\x1f\xce\x83\x99\x43\xa1\x74\xb5\x1c\x84\x2e\xa6\x0c\xc6\xbc\x1c\x04\xc5\xca\x25\x09\x4b\x3a\x1e\xec\xed\xac\xda\x49\xa4\xce\x47\x2d\x15\x87\xbf\xd3\x4a\x50\xbc\x20\x3d\x7b\x34\x99\xd0\xdf\xf0\x8e\x70\x29\xd3\x37\x3e\x6a\x85\x27\x26\x2e\x08\x42\x70\xd8\x47\x83\x1d\x53\x96\x36\x60\xa6\xf3\x2f\x10\x98\x91\x4f\xe8\x86\x11\xde\xec\x58\x4b\xb3\x8d\x84\xc2\x33\x75\x02\xb8\x72\xc6\x6c\x50\xfe\x0e\x0e\xb3\xb1\xad\x22\xd2\xb3\xb4\x85\xa3\xd2\xf4\x68\x4c\x93\xbd\x63\xf5\x0e\x34\xb7\x70\x3a\x46\xf0\x0b\xa1\xfe\x1c\x76\x65\xf1\xa9\x0d\x9d\xc8\x93\xdc\x15\x1c\x72\xd2\x04\x21\x00\xea\x4a\xe7\xb5\x94\x53\xe1\x46\x6c\x4e\x97\xf8\x22\x07\xa0\x21\x46\xb1\x36\x5a\x9a\x07\x3c\x64\x6c\xfb\x96\x16\x9d\x0e\xde\x91\x1d\x6b\xc2\xd2\x22\xf6\x05\xee\xd5\xc0\x9d\xeb\xb9\x16\xe9\x9f\xda\x16\xf3\x7f\xa4\x2c\xc7\xdb\x3e\x4b\xb6\x8d\x59\xa7\xca\xac\x5d\xa9\xb0\xec\x84\xc6\x80\x3d\x50\x3a\xe3\x46\x01\x4c\xc4\x43\x04\x58\x08\x62\x76\x54\xcb\xce\x22\x2b\x31\xec\xbd\xff\x61\x96\xe1\xa8\x43\x67\x19\xf6\x43\x1d\x91\x0d\x8f\x71\x74\xe2\x4c\x08\x88\x0a\x70\xfe\xea\xd2\x07\xa7\xaa\x2e\xbe\x3b\x5c\xb9\x1b\x91\xe9\x19\x4d\x94\x85\x23\x58\x89\x00\x1c\x96\x05\x3c\x84\x6c\x20\xec\x47\x04\xfc\x6e\x62\xc4\x8c\xf9\xeb\x29\x34\x18\xc2\x8a\xc0\xb2\x3c\xc0\x07\x9a\x48\x7f\xaa\x11\xed\x18\x11\xe2\xb4\x75\x51\x2c\xf7\xe2\xaf\xf4\x22\xd1\x89\xaa\x0d\x9b\x6a\xbd\xa1\x79\x55\x3b\x76\x58\x82\x6b\x9b\x57\xcc\x6b\x75\xfc\x8b\x36\x5e\xb3\xae\xd9\x02\xc4\x3d\x88\x32\xee\xb8\xed\xb3\xae\x6f\x9b\x7a\xfd\xe2\xbc\x61\x75\x8b\xed\x28\x7c\x54\xfc\xf4\xec\xa9\xe6\x13\xcb\xe0\x35\xe4\x68\xc9\x57\x55\xff\x7a\x58\x3e\xee\xd2\x35\xc9\x06\x38\x40\x9e\xe5\xe9\xa6\x2d\x6f\x9e\x7f\xfd\xa8\xfb\xfa\x85\x7a\xa9\x25\xa6\xe8\x50\x3b\xb4\x3c\x7b\x9a\xbf\x60\xe9\xb9\x6b\xb6\x24\xd4\xc6\x55\x9a\xdd\x4e\xd6\x97\xd8\xdf\x4e\x20\x31\x7e\x38\xb6\xcb\x1a\x98\x2b\x5b\xc5\x0f\x35\xb8\x70\xb4\xee\xd7\x47\x97\x2d\x61\xfb\x82\x1e\xa4\xf4\x53\x8e\x7b\xce\x33\xa3\x82\x9c\x5e\x94\xb2\xf5\x0d\x88\x88\x19\x9b\xb6\x13\x98\x30\x98\x60\xbe\xb2\x3d\x27\x1d\x06\x3b\x0e\x22\xc3\x29\xc3\xb0\x08\x0b\x45\x57\x2d\x1b\x6f\x55\xad\x45\x01\x9d\x0d\x81\x08\xfb\xae\x51\x27\x42\x6a\x99\x9e\x20\x4d\xa4\x53\x72\x3c\xf5\xd4\x34\x16\xf2\xd4\x9b\x76\x94\x22\x03\x42\xd4\x56\x5d\x98\x84\x28\xe0\x25\x44\xa9\x65\x55\x17\x42\x78\x4a\x37\x1a\x77\xe0\x08\x86\x8e\xa3\x9a\x81\x60\x63\xe3\x84\xfe\x0e\x30\x77\x15\xb5\x1f\x1c\x49\xb4\xdf\x87\x3a\xd8\x6f\x42\xd0\x59\xdf\x88\xad\x49\x27\xf9\x9e\x24\x76\xc4\x1c\x9d\x4a\x83\xd7\x5c\xdc\x69\xdc\x9b\x3a\x25\xad\xca\x2b\xcd\xc4\x6a\x01\x30\x41\x51\xe7\x10\x81\x5f\x5e\x79\xb3\x56\xd4\x5f\xac\xd1\x44\x58\x18\x22\x5e\xdb\x61\x1b\xf1\x1f\xa7\xa7\xef\xdf\x2c\x12\xd7\x9f\xb5\xf9\x4b\x4e\x52\x87\x8c\xe0\xe0\xf4\x46\x66\x28\xe3\x1d\xea\xbc\x15\x52\xdd\xcc\x54\xa8\x09\x5a\x74\x73\x9a\xcc\x47\xe6\x12\x97\x0b\x8a\xcb\x2e\xd0\xa5\xa5\x37\x8c\x64\xcc\xdb\xdc\x4c\xbf\x22\xc4\x3a\x8b\x0e\xf3\xd4\xfd\x3d\x73\x8b\x20\x52\x24\x17\x04\x1d\xb0\xdf\x47\x21\x2a\x04\x09\x7d\x32\x65\x09\xb1\x75\xa4\x6f\x03\x56\xe2\x0f\x73\x03\x4a\x00\x19\xee\x6d\x3d\xa3\xf1\xfa\xa3\x22\x1c\xb4\xa8\xb9\xb1\xd4\xf2\x55\x2a\x8c\x48\xfc\x9f\x3c\x2e\x91\x6d\x14\xc7\xa1\x72\x43\x6d\x1e\xca\x2d\x47\xb2\xe9\x80\xbc\x13\x50\x55\x99\xc8\x05\xa8\x40\xce\xf9\xc7\x91\x83\xee\x2c\x96\xb5\x0d\xed\x0b\xd6\x18\x41\x10\x01\xc3\xeb\x27\x3a\x88\x31\xcc\xb3\xd3\x77\xef\x2e\xaf\x3d\x9f\x64\xca\xaa\x0b\xe2\xe6\x5f\xb9\xf8\x97\xc9\xb8\x2c\x0a\x06\xe3\x43\x40\x54\x04\xe1\xe3\x70\xb4\xc6\x31\xb8\x70\xe3\x5b\xeb\x94\x5c\x37\xd8\xcd\x0d\x8f\x45\x6a\x14\xf1\xf8\x8b\x63\x22\x7e\xf2\x89\x0f\x98\xcf\x89\x59\xe9\x2e\xf9\x7f\x12\x1a\x3a\x03\xd3\x34\xa8\xd9\x5b\xb0\x7d\xb8\x27\x0d\xa0\x29\x26\x86\x4f\x1a\xd8\xd0\x0d\x39\x64\x38\xc2\x7d\x03\xbe\x78\x93\xc2\xbb\x75\xc2\x76\x9c\xa6\x05\x0d\x32\x72\x87\xba\xfa\x75\xc0\x09\xc9\x12\x1c\x9d\xf8\x1c\x56\xb5\xac\xb6\xc2\x3c\xff\xec\x7e\x48\x3e\xa7\x46\xb1\x90\x41\xe7\xf4\xeb\x59\xb7\xe7\x48\x31\xe2\xcd\xdd\xf3\xaf\x49\xe4\x26\x8d\x05\x7f\x9f\xb0\x7d\x40\x53\x79\x51\x0d\x74\x14\x91\x00\xc6\x6e\x63\x5a\x4f\xaa\xf2\x82\x75\xfd\x5b\x33\x21\x8d\xc3\xd6\x51\x66\x91\x8d\x5c\x86\xf0\x46\xe4\xce\x0c\x4b\xc5\x55\xb1\x01\xf4\x62\x3c\x4a\x83\x69\x31\xbb\x66\x72\xbf\x2d\x43\xd4\xa9\x8b\x40\x17\xfa\x9c\xfe\xb5\x15\xc2\x33\x25\x9f\xef\x10\xa4\xc1\xfd\x01\x97\xe9\xfb\xbd\x22\x02\x58\xb1\x8e\xb2\x58\x57\x3d\x89\xc9\x7c\xd7\x02\xca\x2b\xed\x20\xe2\x92\xb8\x7e\x20\x29\xcb\x99\xa9\x6b\xb0\xa8\x58\xd5\x55\x9f\xb1\x55\x7f\x27\x21\xe5\xd4\x6c\xbe\x15\xb1\x22\xc6\xbc\x78\x70\xd3\x0f\xbf\x9c\x9e\x5f\xfc\xb2\xd8\x15\x16\x61\xa2\xf8\xd4\xd0\x92\x00\xa3\x45\x79\x93\x0f\x5b\xb3\x5e\x61\xc2\xc8\x48\x7f\x46\x86\xde\x46\x20\x45\x83\xf0\x77\x27\x67\xa4\xdc\x4f\x78\x63\x39\xdf\xb0\x18\xf9\xed\x11\x9b\xce\xd8\xad\xf2\xc7\x4d\x3b\xe3\x16\x1e\xb6\xf0\xb0\xcf\x3d\x63\x7b\x5d\xaa\x71\x19\x91\x37\x32\xd1\xdb\x12\x16\x15\xef\xae\x4b\x48\x58\x7c\x58\x7a\x9c\xb8\x4d\xdd\xc8\x8f\xd3\xf8\x72\x3b\x94\x23\x22\x17\x3c\x1a\x8d\x5b\x4f\xba\x2c\x17\x7a\x89\x23\x58\x17\x85\x58\x20\x9c\x38\x33\xc9\x9a\x1d\xd9\x2c\xb5\xaa\x36\xe5\xa0\xcc\xb6\x8e\xf8\x50\x8b\x51\x7b\x23\x99\x12\x34\x8a\x08\x35\x88\xaf\xb1\x19\xd2\xfc\xe7\x79\x18\x00\x9e\xc8\xa6\xb0\x9d\xa6\x5b\xe4\xc6\xed\x35\x84\x12\x73\x9c\x68\xbc\xc9\x70\xdf\x24\xc0\x54\x18\xdd\xc1\xec\xad\x60\xfe\xbc\xbf\xcf\xd8\x18\x02\x96\xbc\xbf\x4f\x10\x03\x41\x07\x5a\x86\xf3\x52\x32\xc1\x20\xb7\xd5\x5e\x6e\x2b\x51\x41\x55\x4a\x20\x23\x12\x97\xff\x96\x08\x52\xdc\x0a\x61\xa1\x71\x85\x89\x0b\x88\x11\xff\x04\x7e\xd5\xb3\xc4\x2b\xc6\xd9\xe7\x5f\x67\x4b\xda\xa3\xb7\x5f\x07\x12\x30\x5f\x76\x62\xb1\xf7\x2b\x92\xac\x0e\xea\x80\xfc\x28\xa9\xc4\x7e\xff\x05\xbf\x06\x0e\x8c\x13\x6f\x27\x27\x12\xfd\xc5\x36\xce\x44\xef\xd8\x30\x33\x4a\x58\xe0\x54\xb6\x41\xc2\x66\xc8\x39\x7e\x1d\x78\x96\x22\xbc\x3f\x4f\xff\x9d\x7f\xa5\xaf\xf8\x97\x4e\x85\xb7\xb1\xdb\xa3\x58\xe1\xd1\xc6\x0e\x23\xc5\xc0\x71\x34\xdc\xd2\xef\x69\x09\x2f\x09\xb0\xaf\x71\x25\x06\xc8\x31\xc9\xc9\x7e\x60\x1f\x3a\xaf\xbb\xf5\xf6\x9e\x72\x10\xe0\xcd\x99\x7c\x86\x05\x2d\x38\x03\x78\xd4\x46\xe2\x58\x85\xb2\x88\xbe\x2d\x21\x6f\xd1\x3f\x2d\xcb\x08\x38\xeb\x73\x98\x3c\x05\x88\x48\xee\x3f\xa7\xd7\x94\xa3\x10\x65\x58\x94\x28\x28\xca\xc7\xb7\x7a\xb0\x8d\x3a\x70\x5c\x4e\x10\xc9\x6f\xcb\xae\x27\x14\x41\x7d\x74\x3f\x12\x1e\x63\xd5\x4b\x28\x1f\x52\x89\x06\x9a\x8a\x59\x5b\x92\x09\x8c\x86\x6d\xce\x61\x5b\x1f\xf2\x83\xfc\x24\x4c\xeb\x35\xa0\xd7\x92\x92\x6c\x04\x22\x0b\x28\xc2\x95\x1d\x3c\xce\x75\xa5\xe1\xf7\x96\x4e\x6c\x00\x8b\xe9\x40\xac\x64\x74\x0b\x29\x5d\x8d\xca\x6f\x44\xde\x7f\xc9\xd2\xbe\xe5\xe5\xe0\x5f\xa9\x85\x55\xb8\xfc\x1d\x6d\x7f\xb1\x8f\x5d\x48\xca\x95\x14\x12\xf1\x73\xce\x17\xde\x2c\xcf\x62\x2a\x2f\xf9\xbf\xcb\x25\x82\xd1\xfd\x43\xff\x13\xc5\x3c\xe7\xaa\x5a\x26\xd7\x9e\x7c\x76\x26\x3c\x4e\x0a\xb1\x1c\x93\xc2\x6c\xbf\xcd\x57\xa5\x8b\xe1\x04\x10\xf8\x36\x5f\xb9\x52\x60\x12\xfd\xd8\xf1\xbd\xa4\xf2\x47\xb4\x9d\xe9\x97\x95\xd0\x66\xa0\xb3\xd0\x15\x9d\xf1\xcf\xc2\x0a\x09\xf7\x1c\x15\x68\x63\x88\xfa\x0f\xcb\xe8\xfc\x60\xde\x24\x46\xb1\x77\x2c\x5d\x73\xda\xa4\x8e\x51\x0d\x47\x4d\x21\x31\x8d\x60\x88\xbd\x73\x04\x3a\xa4\x43\x4d\x8e\x20\xf4\x38\xc1\x21\x32\x2d\x59\x70\x50\xad\x23\xeb\x53\x38\xa3\x40\xda\x73\xa0\xd2\x01\x47\x21\x71\x78\x9d\xef\xb2\x50\x6d\x67\xae\x92\xf0\x86\x22\x5b\xde\x6b\x1d\x61\x09\x05\xbb\xba\x8e\x54\xd9\xb1\x3f\x0b\xbc\x52\xab\x5c\xb8\x8c\xb0\x0a\x2f\x15\x1a\x26\x08\x49\xa7\x8f\x3e\x7d\xf7\xb9\xe3\x96\x9d\x39\xe1\xe9\xa3\x4f\xdf\x7f\x26\x86\x8a\x7f\xcc\x51\xad\xf6\xbe\x2d\xef\xaa\x66\xc0\xcd\x3d\x4d\x7a\x82\x41\xfc\xee\x3b\x8e\xd5\xd5\x2c\x59\x3c\x93\xc3\x3d\xe5\xc4\xe5\xab\x66\xdb\x78\xca\xc2\xaf\x31\x80\x08\xfc\x8f\x74\xc1\xbb\xb8\x18\xc4\xe7\x16\xe3\x11\x5c\x19\xf5\x68\x41\x04\xb2\x2c\x2a\x6e\xe7\x17\xfa\x17\x17\x8c\xdc\x36\x71\xa1\x8b\xf7\x92\x01\x22\xea\xcb\xae\x9d\x4c\x5b\x51\xe7\x07\x40\x9d\xc6\x31\x0b\xe6\xe5\x51\x74\x2e\xbb\x00\xa2\x88\xba\x2c\x99\xe5\x54\xb5\x5c\xbb\xe1\x66\xd9\x90\x85\x52\x71\xe9\x68\xa3\xc7\x5d\x0d\xf3\xbd\x7a\x1d\x53\x06\xe9\x43\x6d\x55\xc9\x89\x34\xc8\x24\xe0\xce\x01\x1f\xf1\x1b\x2b\x28\x9e\xe1\x02\x41\xe9\x3c\x27\x18\x03\x14\x72\x5c\x72\xe2\x51\x17\xf5\x4d\x07\xf1\x50\x66\xca\x0a\x89\x09\xd0\xaf\x14\xbf\xc6\x43\x60\xa6\x38\xd7\xb7\xb5\x3c\x9a\x11\x21\x64\xb9\x21\x81\x46\x82\x0a\xe5\xe4\x0d\x4e\x24\xc2\xa8\x3a\xbc\x55\x97\x55\xac\x46\xcd\x4b\x2d\x57\x7d\x16\x3b\xb6\x0d\x10\xaf\x17\x16\xcc\xa8\x25\x61\xa9\x9f\xf4\x39\xcd\x98\xcf\x80\xf4\x1b\xbb\x6d\xf6\x6d\x3c\xc9\x12\x42\x0c\xfe\x87\x05\xee\x9a\x84\x36\x95\x09\x49\x69\x8b\x68\x5c\x73\xfc\xf5\x81\x13\x17\xed\xf6\x78\xb7\x7b\x5a\x14\x4f\xef\xa9\xd1\xc7\x33\xb3\x0e\xe8\xc9\x4d\x5b\x24\x79\x47\x58\xca\xcc\xc6\x84\x35\x77\x6b\xd8\xf2\x16\x32\x43\x38\x58\x25\xe5\x8b\x82\x68\x7f\xec\xb5\xb3\xf0\xb7\x07\xdb\x34\xcd\xad\xdc\x78\x58\x22\xe9\x4b\x48\x85\xb3\x42\xbe\x50\xf9\x3a\x2e\x2d\xca\xfd\xb6\xb9\x37\x6b\xf6\x39\x7e\xa9\x9b\xd8\x40\x96\x79\x57\xad\xc2\x1b\xd1\x3f\x73\xc6\xcc\x2c\x0a\xf6\xb2\xb4\xd9\x3f\xe4\x34\x3a\xc7\xaf\xf4\x7f\x32\x61\x38\x10\x75\xa0\x5e\xda\x25\x98\x2b\x76\xa3\xba\x52\x75\x60\x05\x5d\xa9\xbf\x6d\xda\x97\xfa\x82\x58\xd8\x9b\xb7\x32\x38\x47\xe8\xb1\x2a\xc6\x90\xc6\xfa\x19\x1b\xc8\x9c\xc3\x68\xe2\x13\x9d\xf3\x85\xc6\x21\x5b\x0f\xb0\x28\x37\x14\x17\x0d\xc2\x52\xa7\x26\x2f\x2d\xa0\x64\x0a\xe6\x8c\x36\x3e\x88\x24\x56\xe9\xd8\x24\x59\x8b\x8f\x08\x81\x24\x1c\x70\xc2\x59\x71\xf4\x0a\x71\x54\xb9\x41\xea\xa3\xc7\x11\xca\x0a\x0b\x1f\x07\xcf\x5b\xbf\xb8\x5c\x8f\x50\x32\x8e\xca\xe9\x44\x25\xd6\x90\x18\x71\x8f\x8a\xb1\x27\x77\x97\x2f\xd8\x82\x3c\xd6\xe2\xb9\x9e\x88\x4e\xee\x06\x85\xf8\x57\x6d\xa8\x28\x0b\x49\x31\x8e\x26\x00\xee\x03\x8d\x72\x04\x68\x48\xb9\xac\x57\xe2\xab\xd0\xfa\x79\x14\x8d\x23\x81\x5f\x50\xb3\xd5\xc6\xb5\xcc\x57\xb7\x6e\x44\xb4\xe3\x57\x65\xdb\x23\x0e\x66\x8a\x76\xf6\xc3\xad\x70\xce\x3e\xdb\xbf\x78\x02\x4d\x51\x2e\xdc\x62\x16\xc2\x08\xaa\x9b\x00\x21\xb0\xa4\xb3\x65\xfc\xae\x2a\x06\x22\x6f\x5e\x8c\xc5\xb3\xa7\xfb\x17\x71\x7d\xa2\x08\x58\x0f\x8e\xb6\x31\x5a\x38\x56\x5d\x2a\x44\xef\x73\xa0\x19\x22\x9e\x6e\x7c\x20\x5f\x87\x1e\x8e\xee\xa2\x80\x65\x05\xa4\x6e\x1c\xe7\x0b\x7e\xe0\x29\x4e\xcc\xcc\x87\x67\x17\x60\xea\x73\x30\xec\x3a\xca\x02\xd2\x86\x39\xd9\x68\x76\xa6\x29\x31\x53\x8f\x6c\x24\x3e\xae\xca\x0d\xcd\x2a\xb4\xc7\x87\x17\x9b\x4d\xd3\x19\x73\xa9\x03\x65\xff\x8b\x67\xaa\xa2\x9a\x14\x05\xe6\x73\x16\x64\x1f\xaf\x30\xf2\xfd\x44\x6d\xc5\x0e\xa0\x60\x80\x22\xe4\x1c\x6b\xe7\x6c\xb6\x0d\x35\x72\x07\xad\x20\x7c\xb2\x42\xa0\x5c\xa6\x37\x82\x24\xf4\x23\x1d\x47\xaa\x69\xe9\x61\xd3\x04\xf1\xe8\x18\x54\x8a\xcd\x1a\x0e\x64\x11\xcf\xf5\x20\x47\x88\xe2\x45\x0f\x94\xd1\x49\x63\x9b\xcf\x8e\x1b\xc4\x36\xef\x06\xe2\x2d\xdb\x8a\x16\x1d\x47\x86\xde\x6b\xbf\xbc\xba\xc6\x8d\x61\xe2\x85\xc4\x68\xd6\x4c\xaf\xe9\x5f\x36\x24\x8a\x73\xfc\x20\x5f\x2f\x67\xb7\xee\x3a\x6d\x56\x2b\x76\xe6\x56\xb5\xde\xc8\x3b\x94\xe6\x34\xa9\x8b\xad\x38\x76\x43\xb7\xb8\xf1\x5d\x31\x8f\xa4\xb8\x42\xce\x4c\xa0\xdb\x97\x2b\x92\x5f\x17\xe9\x5b\x3a\xc1\xf9\x5e\xb2\xdc\x5c\x07\xc3\x7c\xd0\x9a\xe2\x66\x02\xb3\x06\x6b\x01\x8b\xe9\x19\xea\x1e\xb8\xb0\x83\x14\xf3\xde\x73\xf0\x98\x68\x2b\x5c\x40\x82\x6c\xb9\xbd\x91\x40\x40\xf6\x1b\x41\x0e\x97\xdb\xd0\x6c\xbb\x96\x4b\xa2\x6c\xf0\x41\x03\xea\xd2\x86\xfb\x0d\x77\x67\x78\x66\xa4\xa1\xb3\x8c\x62\xc1\x1f\xa1\xdf\x7f\x3c\x26\x88\xf9\x36\xae\x37\xc2\x16\xb0\x7c\x90\x6e\xe4\xa2\xd3\x09\xf3\xe2\xfd\xb6\x74\x41\xd2\x66\x02\xdc\xcb\xe5\x26\x3e\xe9\x08\x5f\x88\xad\x35\x10\x39\x3f\x70\x83\x81\x83\x4c\x07\x5d\x0e\x0b\xa9\x01\x42\xb9\x9f\x99\x11\xe9\x81\xcc\x08\x12\x83\xff\x04\xc2\xfb\x55\x01\x64\xce\xd5\x31\x0b\x53\x70\x2f\x07\xbc\x8e\x28\x51\xf7\x14\x5a\x0c\xef\x7c\x0a\xf9\x3e\xb0\x8d\x02\x2a\x8f\x9e\x2c\xc1\x0c\xf5\xae\xd3\x33\xbe\xa8\xf3\x82\xa9\xf7\xd9\x53\x24\xed\x7e\x97\x51\x1e\xbf\x90\x10\x50\x1c\xdf\x7e\x6f\x08\x7f\x38\xfa\xda\x72\x9d\xb7\x85\x85\x2a\x2b\xf5\xb3\x1f\x11\x54\x1e\x46\xa2\xe4\xdb\xae\xb1\x26\x68\xb7\x12\xc8\x2d\x1b\x51\x88\x50\xf8\x7d\x0f\x93\x54\x99\xf3\x17\xb2\xb5\xd8\xc9\x4f\x04\x3f\xec\x79\x0f\xc8\x86\xb2\x7e\x30\xed\x6f\xfe\x74\x75\xf9\xee\x24\xfd\xed\xc9\xe1\x70\x78\xc2\xd5\x9f\x0c\xed\x96\xdd\xe1\x05\x87\x42\xff\x8f\x8b\xb7\x27\x69\xd9\xaf\xbe\x5d\x90\x66\x87\xad\xe1\x15\x2e\xf5\x71\xde\xb0\xef\x95\xc9\x92\xc5\xff\x7f\x7e\xcb\xec\xe5\xc6\x8d\xbe\x46\x11\xde\xbf\x09\x99\x36\x2f\xbb\x59\x1f\x94\x0a\xc4\x0a\xe1\x25\xc6\x92\x04\x6a\xdc\xb8\x43\xc2\x17\x00\xab\xb6\x7c\x1f\x19\x1d\x22\xdc\x20\xbf\x63\x1f\xd1\xb0\x2d\x84\x4e\x8d\xa3\xd1\xec\x14\x65\x65\xf1\xd3\xb8\x25\x98\x16\x71\xf9\xfe\x79\xfa\x27\xd6\x06\x18\xa5\x42\x05\x5c\x64\x54\x00\xe0\x90\x96\xb0\xc3\x52\xbd\x3d\x58\x8e\x0b\xbc\x91\xf7\xbc\xec\x11\x30\x34\x47\x1b\x32\x72\x37\x36\xbf\x9a\xb6\x51\xe9\x5c\xa3\xc6\x5a\xe1\xde\xe2\xba\x8c\xa8\x79\xb4\x07\xf8\x5c\x3a\x8c\xf7\xc1\xf8\x48\xd2\x4d\xe6\xd9\xbd\x6e\xb2\x09\xc7\x57\xc0\x2f\xed\x33\x95\x20\x26\x12\x5d\xd0\x83\x4a\x76\x93\x1e\x24\xae\x21\xd3\x59\x5a\x24\x2f\x62\x1d\xce\x5d\x5e\x7c\x04\x19\xd5\x80\x81\xc4\x24\xc3\x08\xe9\xb6\x24\xe6\x65\xe1\x0e\xe7\xc3\x2c\x8a\x20\xb9\x62\x10\xc4\x8d\xb0\x73\xc8\x1c\x29\x93\xa8\x99\x50\xcc\x90\x56\xcd\xa7\x2d\xbe\xf7\x51\xe1\xf8\x55\x98\x51\x31\x6b\x16\xf2\xec\xd4\x99\xa4\x92\xa4\xa8\x6e\x6e\x16\xcb\xb6\x39\x74\x1c\xc8\x81\xb7\x33\xd8\xb4\xcc\xbf\xd3\x2b\xfc\x16\x90\x7d\xde\x0a\xcf\x94\x84\x64\x8a\x29\x94\xf5\x60\x24\x24\x93\x59\xc7\xe4\xed\x82\x73\x2a\xc1\x73\x01\xfc\x94\x08\x47\x30\x4a\xc9\x42\xaa\xd0\x76\x39\x64\x9c\xca\xba\x3e\x87\xf1\xf7\x8a\x55\x1d\x54\xba\xe2\x1c\x05\xe3\xa4\x61\xd4\xdc\xd9\x6c\xe0\xb0\x98\x52\x9c\x73\xde\xb3\x0d\x6e\x68\x70\x04\x46\x4b\x53\xe1\x20\xf3\x20\xa1\x63\x9c\x20\xcc\x72\xe3\x21\x14\x41\x40\xea\xcf\x6f\xde\xc9\x4f\x18\xb7\x35\xc2\x16\xd6\xed\x97\xec\x66\x34\x93\xf9\x62\xce\x74\x6e\x65\xe2\x82\x10\xf9\xdf\x9e\x24\xc3\x2f\x07\x51\xb4\xf9\x0d\x0c\x06\xfc\xdf\xe5\xd2\x61\xe9\xab\xbd\x6f\xcb\x27\xe3\x6a\x84\x1c\x41\xf5\x15\x12\x2e\x5f\x0d\x71\xfc\xcf\xe5\xe5\x6c\x84\x09\x70\xf8\xa8\xf0\x18\x31\x03\x3c\x91\xe2\x23\x62\x64\x15\x2b\x38\xaa\xf1\x8d\x3a\x04\x75\xf8\x2b\xa7\xa0\x1d\x3c\xef\x65\x10\x7d\xbe\x76\xe1\x24\xf9\x5a\xcc\x91\xbe\x0c\xa2\x93\x45\xf9\x47\x75\xfc\xbd\x53\x53\xd9\xbc\x83\x85\xca\xf1\x80\xce\x2a\xf4\xdb\x50\x26\x3b\x6c\x10\xa8\xdd\x6d\x16\xe3\x85\x70\x66\x51\xc5\x59\x8a\xdf\x0e\xca\x4e\x02\x26\x97\x6c\x57\x04\x87\x81\x10\x50\xb8\x6d\x2f\xf2\xf6\x96\x5f\xd4\x80\xa1\xd6\x1a\x38\xb4\x1a\x99\xcd\xff\xc3\x15\xd3\x97\x5c\xde\x4b\x6a\xd2\x61\x6c\xed\x47\x6d\xc8\xa4\x26\x06\xb9\x0a\x7c\x7a\xc9\x2d\x80\xb7\x92\x92\x27\xd8\xc6\x94\x31\x8d\xab\xa2\xb2\x27\xe3\x75\x0b\xe0\x1d\xa2\xff\x52\xfe\x9f\xff\xf5\xbf\x89\xd9\xef\x49\x49\xed\x11\x33\xa7\xd7\xb5\xfc\xba\x9b\xb7\xd8\xbf\xbb\xf3\x04\xfa\x77\x30\x10\x41\x7f\xaa\x61\xf6\x94\x9a\xd0\x28\x3f\xca\x61\xf4\x7d\xc5\x36\x80\x98\xc8\x21\x4d\x7a\x32\x67\xe3\xf1\xa4\x0d\x23\xaa\x4c\xf5\x7f\x77\x5d\xc4\x16\x17\x8b\x26\x41\xd8\x4a\x74\x62\x22\x50\x73\x01\xc0\xe5\x3e\x03\xe9\x2c\x9f\xfd\x95\x44\xb7\x10\xd1\x75\x44\x88\x90\x1e\xc6\x10\xf6\x8a\xc9\x6f\xfa\x02\x99\x88\xe4\x72\xff\x99\x59\x8b\x0b\x12\x91\x4b\x3e\x12\x02\xea\x1a\x09\x3b\x7a\xdc\x59\x1c\xa8\x5e\x8d\x47\xa4\xe5\x4c\x30\x6e\x18\x60\x4a\x12\xb9\x5a\x06\xe5\xf2\x92\xda\x44\xa3\x07\x09\xe1\xef\x34\xfd\xda\x8e\xd9\x22\xd9\x97\xcd\x5e\xae\x44\x20\xc1\xf7\xcb\xf8\x99\x37\x26\x3f\xb1\xa0\xbd\x41\x06\xed\x6b\x64\xe0\xe6\x25\xbc\x8c\xfc\x3f\xc1\x8d\x15\x55\x02\x39\x57\x53\x9a\x3f\xba\x15\xd3\x46\xef\x87\x78\x4f\x2c\x6e\xcb\x45\x0f\x76\x70\xe3\x40\xd4\x8c\x9d\x76\x72\x87\x12\x2b\x83\xdc\x87\xa0\xa3\x78\x96\xc7\x5b\x58\x45\x34\xe4\x9a\xdb\x22\x2e\xa7\xce\x1c\x25\x19\xdc\xe0\xe3\x8b\xf2\x35\x3f\x7d\x63\x58\x76\xdd\x04\x5b\x66\x23\x46\x5c\x5f\x8d\xd7\x8b\xb4\xda\xa1\xff\x49\xe0\xd9\xd3\x59\x75\x5d\xe0\x7e\x40\x1d\x9f\x9d\x6e\x49\x00\xdb\x46\xc2\x22\x1a\x62\xeb\xd8\x4f\x47\x42\x42\xa6\x77\x65\xff\x78\x50\xc8\xb4\x8d\x87\xc3\x42\xfe\x59\xeb\xf1\xfc\x4d\x16\x57\x3c\xbd\xd2\xe2\x8a\xe6\xee\xb6\xfc\x0b\x86\x5a\x22\x29\x1d\xc6\x64\x6f\x1f\xb5\xd4\x6a\x1d\x67\xe8\x3b\x7e\x47\xf9\x8f\xdb\x6b\xa3\xbb\x9d\xbf\xc3\x62\x1b\xcf\x38\x10\x83\xa3\x51\x39\x84\xb0\x41\x20\x8e\x58\x3c\x26\x1d\x7b\xa9\x38\xe2\x19\x63\x19\x7a\x12\xa0\x88\x99\x3e\x58\x25\x0e\x57\x0c\x87\xe9\xd4\x7f\x1f\xe0\x67\x5a\xb2\x04\x2a\x8a\xb9\xe4\xcb\xd1\x8a\x47\xec\x6f\x0f\x85\x2d\x8e\x47\xc9\xbc\xc6\xbd\x22\x18\x0e\xf2\xc1\x1a\xe1\x31\x1b\xdb\xb8\xff\x95\x50\xc6\x79\x1b\x17\x2b\x0e\x07\x53\x75\x71\x28\x1b\xfe\xbc\xc2\xc6\xb7\x36\x0c\x5f\xe2\xb5\xf4\x0c\xd7\x63\x6e\xc0\xe3\x80\xfd\x78\xd0\x1c\xe8\x2c\xdc\x7b\xa1\x17\xdd\xec\x9a\xdc\x28\xdf\xb3\x3e\x44\xe9\xef\x25\xee\xd0\x03\xc9\x6f\x88\x3b\xb3\x25\xe3\xfa\x71\x1f\x71\x00\xa7\xe5\x3a\x33\xe3\x05\x12\x2e\x9f\xb0\xb6\x2a\x11\x4f\x77\x26\x29\x57\xa2\xfe\x5c\xbd\xaf\xed\x07\x21\x77\x71\x9f\xc3\xd2\xe4\x73\xf5\xd4\x53\x5c\x73\x48\x12\x2d\xca\xfd\x9e\x97\x30\x77\x97\xd3\x78\x99\x04\x50\xc5\x4d\x1d\x15\x24\xe4\x1f\xc7\x6d\xc9\xab\x46\x7a\x7a\xbe\x6b\x0e\x89\x1c\x9d\x0b\xbe\x3e\x9a\xca\xdd\x51\xcd\x89\x87\x24\x79\x2c\xa3\x68\xc4\x39\xe6\x40\x62\xba\x04\x98\x4f\xcb\x47\x31\x76\x38\x39\x5c\x74\x9d\x5d\x05\x67\x01\x14\x52\x03\xc2\xa2\x58\xae\x0f\x89\x63\xa1\xad\x42\x80\xf5\xdd\x8a\x24\x1a\xf5\x1b\x42\xfc\x9e\x8e\x79\x9c\x93\xee\x4e\xcc\x7e\x80\x9b\x41\x1c\x3a\x25\xfc\x70\x67\xe3\x90\x87\xd7\xdc\x38\xdc\xab\x7e\x7e\x1c\x21\xc4\xef\x19\x07\xf7\xf2\x94\x1f\x42\xc6\x22\x3e\x34\x1e\x52\x0e\xf5\xa2\x53\x68\x9d\xee\xc6\x43\xf4\x41\x6a\xd7\xc1\x79\x0d\x0f\x4f\x31\x92\x3f\xd8\x7c\x34\x3d\x38\xa5\x44\x1c\x0d\x33\x22\x82\x38\xe2\x66\xa3\xf5\xbf\xbc\xc5\x79\xa5\x51\xd3\x81\x06\x2e\x36\x0f\x36\x77\x0a\xe9\xb8\xbc\x48\x07\x19\xeb\x42\xe5\x3a\x29\xfc\xf2\xc1\x2b\x70\x16\x67\x2f\xf2\x5d\x78\x64\x40\xc0\xb3\x95\x2c\xe4\x5d\x0c\xb7\xc7\x99\xd5\x05\xbd\x4e\x1b\x73\xac\x1a\x50\x8e\x45\x4f\xe1\x8c\x77\x86\xd2\x59\x60\xcc\x62\xa6\x7c\x62\x32\xab\x78\xb3\x0c\x6a\x97\xdf\x47\x0e\x36\xbe\x5f\xc0\x1a\x59\xb4\x6b\x8e\x9f\xd8\xd3\xa1\xf8\xb3\x5a\x1e\x9b\x70\x04\x73\x34\x0e\x64\x11\x6e\xf5\x29\x81\x78\xb2\x5b\xb7\x39\xdb\x1a\x6d\xad\x99\x59\x04\xa4\x80\x06\x7f\x74\xb3\x74\xcf\x7e\x7a\x6e\x00\x0f\x06\x35\xf4\xf8\x21\xa6\xf0\x07\x06\x00\xb6\xf1\xf0\x08\xc0\x16\xe4\xc9\x0c\x1a\x46\xc0\x02\x1e\x1a\x88\xbe\xd7\xf9\xfb\x07\x02\xbe\xf1\x3b\x07\x72\x62\xa3\xd0\x8b\xda\x45\x31\xbb\xff\x1f\x1a\xdf\x48\xdd\x01\x71\x46\x2f\x01\x8c\x08\x3e\x7a\x3b\xdd\x11\x7d\xe0\x6b\xb6\x66\xe1\x60\x50\xdf\xb7\x1e\x67\xbe\xa9\x9a\x96\x10\xaa\x6c\xdd\x87\xfe\xf1\x38\x80\x98\x3d\xb6\x7d\x7b\xaf\x22\x09\x4f\x2e\x8e\x5f\xf6\x17\x1e\x45\x09\x83\xaf\x48\x5e\x87\xf8\x04\xb4\x7f\x3e\xf2\x11\x04\x79\x4b\x56\xdc\x7f\x5d\xf4\x20\xff\xf4\xa2\xfe\x83\x8f\x24\xc4\x8f\x43\x8c\x5f\x09\xe9\xe4\x4a\xca\xda\x64\x39\x7b\xae\x33\xf1\xce\xf1\xab\x7b\xc2\xc1\x0e\x2f\x14\xaf\xf8\x7e\x6c\x53\x57\xe2\x57\xbd\x90\x14\x5f\x91\x66\x53\x8c\xda\x61\xf8\xa6\x94\x0f\x9e\xf3\xb3\x83\x71\x91\x6d\x4c\x2a\x08\x48\x3a\x28\x0f\x2e\xed\x23\xe8\xa9\xb5\x67\x08\x7c\x0b\x18\x09\x4c\x98\x43\x30\x32\x1d\x07\x1a\x1d\xba\xb9\x1e\x33\x76\x84\xa4\xea\x06\x72\x2f\xab\x33\x93\xe0\x9b\xa9\x05\xdf\x4c\x95\xc7\x7b\x4f\x82\x8c\x08\xe7\x61\xc1\xde\x3d\x4f\x14\x65\xc7\x07\x9f\xcf\x47\xb0\x76\x9c\xc5\x11\xda\x51\x46\xbe\x9a\xf4\x22\x9b\x2a\xae\x27\xe1\x5a\x61\x0e\x1b\x13\xd9\x21\x12\xb5\x1e\x5f\xec\x0b\x8b\xe4\xbd\x8b\x28\x4b\x1f\x08\x8d\x67\x22\x36\xd5\x30\x6f\xdb\xac\xf9\xad\x0e\x18\x21\xe3\xe9\xa9\xec\x1c\xb7\x69\x81\x55\x51\x13\x88\x77\x0c\x73\xe0\x37\xe8\xf3\x2e\xae\x8d\x2d\x18\x66\xe8\x45\xaf\x09\x20\xe9\xd4\xf9\x6a\x83\xf9\x2f\xe6\x08\xc9\x54\x63\x47\x4c\xfa\x69\x80\x19\x48\x79\xc4\x35\xb5\x27\x5b\x67\x61\xf8\x6d\x78\xbc\x90\x1b\x94\x72\x7c\x5a\x9d\xe9\xdd\xc7\x46\x6f\x76\x9c\x71\xa6\xdd\x73\x4c\x2f\xb1\xe3\xba\x07\x2b\x05\xa7\x18\x07\xe0\xea\xdd\x4a\xad\x29\x12\xc7\x03\xc7\x99\x6f\x59\x0f\x46\xf5\x0c\xe7\x5e\x57\xeb\xbc\x9c\xc0\xd2\x8d\xb9\x8e\x1d\x91\xfc\xae\x36\x46\xa3\xf4\x10\xae\x99\x3f\x3e\x54\x58\xcf\x38\xdc\x1c\x16\xb9\x68\x90\x11\x5b\x33\x90\x2f\xb4\x30\x1a\xe2\x6c\x13\x7f\x60\x90\xfc\xaa\xf4\x7a\xe5\x5e\xe1\x3d\xe7\x2b\xd8\xed\x92\x03\xdb\xf9\x0c\x2b\xe5\x75\xf4\xa6\x8e\x2d\x70\xf3\xd5\x1f\x1a\x19\x06\xc4\x3a\xf7\x5c\xf3\xc7\xc6\xd6\x96\xdd\x7d\xbd\xca\xf0\x24\x72\xb7\xd1\x10\xbf\x0f\xa5\xd8\xca\x1f\x2f\x28\xef\x69\xae\xb7\x8b\x4a\xdc\x6a\xee\x1e\xcb\x1b\x15\xdf\xac\x28\x1f\x4f\x32\xd3\x11\xf7\x04\x3c\x11\xb5\x4d\x80\x23\xf1\xac\xff\xf6\xc1\x8e\x46\x73\x09\x18\x62\x80\xdb\x16\x43\xe9\xcb\xdf\x35\x83\xc0\x09\x19\x4e\x83\xc9\x40\x77\x3f\x78\x45\xf8\x18\x13\x23\xee\x1b\xbe\x50\xc5\x97\xea\xf9\xa5\x4b\x0d\xa7\xd0\x03\xcd\x9e\xbc\x56\xe3\xd1\x91\x09\x85\xfd\x3e\xb0\x42\x8f\xa3\x51\x7c\x79\x8e\xe1\x21\x24\x8f\xf9\x0f\x7b\x7c\x51\xc5\xbd\xe2\xff\x11\xbf\x43\xa6\x20\xef\x63\x64\xeb\xa6\x6d\x68\x79\x60\x22\xb6\x37\x33\x5e\x59\x5e\x37\x53\x01\x26\xf0\xfb\x6c\xd0\xfb\x16\x56\xe7\x02\xd9\x24\x3f\xf0\xe5\x0b\x5f\xab\x6f\xfa\x7c\x6b\x75\xd8\x02\xb9\x52\xbb\xf5\x35\x17\x58\xad\x53\x2b\x08\x6a\x6a\x9d\x66\xc9\xf1\x74\xa8\xa2\xc0\x97\x9a\x13\xc0\xc2\xcd\xc1\x37\x1e\x08\x5d\xc3\x3e\xe3\xa9\x22\xcc\x5e\xb2\xd3\xb7\xc8\x4e\xaf\x39\x7b\xda\x83\x8d\xca\x55\x1b\x0d\xea\x58\xbd\x9b\xb6\x9c\xd4\x79\xc9\x97\x7f\xc6\xf0\x86\xb9\x4d\x99\xef\x27\x78\x7b\x4d\x99\x13\xac\x01\x72\x8a\x00\xc0\x1e\xc7\x42\x58\xab\x2a\xa0\x58\x85\x35\xde\x50\xd6\x31\x68\x3c\x19\x36\x86\xc7\xb7\x4e\x8e\xd4\xd0\x33\x7b\x3c\x2a\xf5\xd9\x4c\x46\xd5\x2c\xff\x8e\x2f\x83\x28\xf4\xa5\xfc\x0c\xa0\x96\x4d\xd3\xf3\x03\xcc\x7b\x16\xb7\x56\xb7\x0e\x4d\x3f\x5b\x3e\x8b\x5b\xab\xdb\x09\xa6\x04\x7a\x8a\x2a\x81\x3e\x8e\xab\x1d\xdf\x3c\xa4\xbe\xda\x61\xd5\x0f\xb4\x41\x5d\x87\x17\x57\x7c\x8b\xf1\xca\x15\x4c\x7a\x9c\xd4\x0c\x29\x74\x5c\x79\xae\xe7\x15\x09\x11\xe5\x6c\xd7\x67\x5c\xf2\x60\xdf\x93\xba\x61\xe7\x93\xea\x73\x3b\x05\x4f\x42\xb1\xd1\x79\x39\xac\x6e\xcb\x9e\x63\x72\x37\x19\x3c\xcc\x61\x5b\xef\x0d\x2c\xfd\x19\x60\xe9\x6b\x02\x4b\xaf\xe5\xf3\x1e\xd3\x56\xe9\xd0\xd9\x95\x7d\x8e\x48\x81\xa0\x95\x57\x67\xb4\x02\x9c\x5d\xe4\x73\xb5\x60\x9d\xc9\x54\xca\xd6\x5d\xc8\x82\x4f\xd0\x82\x7e\x78\x44\x04\xef\x53\x07\x32\xd7\x1a\xab\x01\x72\xfa\xad\xee\x57\xf2\xde\x11\x2b\x06\x34\x86\x0f\x92\x13\xc0\xe2\x8d\x0c\x82\x35\x1e\x09\xa7\x38\x1e\xcb\x20\xf0\xeb\x98\x51\x0a\x07\xf3\xc0\xc2\xb8\x08\xee\x7d\x3e\x74\xb3\x80\xfb\x5c\x36\xd3\x51\x48\xeb\xde\x00\xad\xe7\x31\x9c\x76\xda\x09\x2a\x85\xad\x88\xa6\x26\xb1\x9b\xfa\xa0\x85\x7d\x7a\x0c\xa1\x9b\xf6\x9c\x05\x3e\x40\x26\xb0\x5f\x7c\x4f\x5f\xc1\x44\x7a\x85\xcc\x2a\x39\x26\x6f\xe1\xb5\x47\x4b\x5b\x19\x2c\x51\x6a\xd3\xd3\xbc\xe8\x71\x7f\xcd\xb3\x0b\x0c\xee\x1a\x96\xe6\x87\xf7\x89\xb4\x45\x08\xa6\x16\xb2\x12\xbf\x9b\xac\x91\x2b\x02\x28\x37\x78\xc5\x93\xb4\x0d\x2b\x43\x69\x70\x5f\x9e\x8a\x1a\x78\x0b\x7d\x22\x98\xdb\xd1\x97\xd3\xec\xc9\x83\xdf\xf9\x78\x9a\x9f\x4d\x80\x63\x38\xba\x63\xec\x56\x5d\x16\xa2\x73\xfc\x62\x42\x3e\x42\x2f\x83\x2b\x86\x23\x50\x78\xbe\xc3\x2f\x05\x04\xee\x47\x43\x39\x1c\x7d\xf8\x42\x89\x06\x4a\x4d\x5a\x08\xea\x04\x9f\x75\xe1\x70\x53\xb9\xee\x31\x87\x22\x6f\x1d\x34\x0c\xb9\x47\xe8\x00\xfd\xa0\x6b\x29\xc6\xc5\xfc\xdb\x98\xff\x5f\x9e\x07\x0d\x07\xe0\x1f\x09\x3d\xd2\xff\xff\x93\x47\x42\xc7\x96\x59\xf7\x4a\x28\x5e\x41\x5c\x20\xf8\x3a\xde\xc7\x91\xe3\x2a\xda\xcf\xa8\x11\xee\x53\x64\xc4\xae\x7c\x64\x79\xb3\xaf\x59\x7c\xc5\x6a\x83\x2d\x3a\xee\x2f\x88\x97\x8f\x7a\x93\x1a\xd3\x97\x38\xe2\x21\x48\xce\xd4\x5b\x24\xf9\x6a\x8d\x48\xf5\xf2\x78\xa9\xd6\xa3\x05\x4c\x12\xea\xa2\xb1\xbc\xc9\x17\x0c\x79\x53\xeb\xd6\x1e\x0d\x39\xde\xdc\xd1\xa8\xa5\x92\x5c\xb7\xb3\x50\xfc\x59\x66\xa2\x80\xc1\x54\x24\x27\xbc\xbe\x2a\x39\xf2\x2a\x1e\x1e\x99\x96\x94\xe6\x4f\xa3\x30\x82\x11\x6b\x33\x71\xd7\x41\xa3\x00\x9a\xe5\x55\xc1\x58\xc6\xf1\x7f\x92\x1b\x7e\xb0\x50\x72\xf4\xdb\x6f\xf8\xec\x9b\xe4\x2c\x11\x3f\x84\x28\x37\x36\x3e\x9d\xbf\xb3\x6e\xfb\xbe\xad\x96\x43\x3f\xff\xde\xa3\x2b\x9d\x40\x9b\xdb\x9f\x69\x37\xfd\x02\x6c\x37\x58\xc3\x57\xc3\x97\xda\x1d\xbd\xe4\x3f\x82\x93\x4b\xba\xa9\xbb\x23\xfe\x12\xbf\xb5\x70\xc7\x3c\x32\xeb\xf8\x13\xa3\x17\xc4\x62\x8a\xf4\xea\x54\x4b\xf0\x85\x37\xb5\x8e\xe0\x43\x70\x47\x57\x81\x21\x27\x5f\x8c\xf3\x45\x8a\x57\x14\x05\xc8\xd5\x77\x23\x7b\x79\xd2\x4f\xde\x4c\xbc\x7e\x7b\x45\xc9\x55\x7b\x2f\x0e\x23\x5d\x17\xf6\x18\xe8\x77\xd5\xec\x21\xed\xd3\x0b\xf7\xe5\xba\x60\xa5\xb5\x49\xfe\x2a\x56\x16\x7c\xf0\x55\x1b\xa7\xf1\x37\xfa\xcd\x17\x35\x98\x2a\xad\xf2\xab\xc3\x7c\x2f\x72\xdf\x59\x3b\xfe\x5c\x1d\x93\xbd\xbe\x2f\xa9\x2b\x30\x39\x8c\x62\xcb\x2d\x0e\x1a\x77\x28\x85\xf4\x1e\x9e\x95\x51\x07\xbf\xf3\x35\xc8\xb0\xad\xe0\x50\x79\x60\xac\xb3\x77\xb9\xe2\xa7\x4c\x42\xc0\x4c\xf6\x9f\x3d\x61\x14\x35\xec\x9c\x4c\xd3\x0a\xd1\x5b\x46\x51\xa5\xf9\x30\x80\x87\x5e\x31\x12\xa3\x80\x29\xe3\xce\xe6\xad\xca\x78\x6c\xfa\x56\xd8\x87\x3e\x9a\x19\x80\xdc\x89\x6b\x2d\x80\xb0\xcf\xfd\x06\x40\xf3\x1f\x6d\x54\x80\x31\x4f\xd1\xec\xd1\xb7\xfc\xa2\x8f\xf8\x59\x4d\xfb\x26\x51\x33\x88\xb6\x8d\x6f\x86\xe9\x1d\x8e\x0f\xc8\x64\x41\xcb\xc0\xe7\x3e\x9c\x19\x14\x69\x47\x5c\x14\x76\x82\x13\x8a\xbf\x22\xf6\xe0\x47\x3e\x0d\xc1\x6c\x72\x5f\x65\xf2\x8e\x45\x50\x07\x06\xff\x15\xc2\x78\xa7\x95\x68\xdc\xd3\x1a\x34\xee\x23\xe0\xe2\x04\x36\x7e\x7e\x85\x5f\xc2\x42\xdc\x88\x39\xb4\x4c\xa9\xc8\x26\x2c\x79\xe3\x47\xd2\x43\x1c\x14\x4b\x4f\x18\xee\xc3\x6b\xb3\xa4\xe1\x3f\x5c\x1b\x76\xcb\x9f\x9c\x0d\x0e\x02\x9f\x1b\x1e\x69\x3e\x37\xfc\xb2\xad\xcf\x9d\xfb\xd4\xec\xb4\xd4\x7b\xe6\xbf\xe1\xd8\x94\xaf\xf7\xf2\xf5\xdd\xee\x6b\x7c\x5f\xf0\xdb\xa0\x46\xf8\x99\xda\x38\x77\xdc\x86\x7e\x15\x6f\xd4\x84\x31\xcb\x68\xcb\x54\xab\x23\x88\x71\x1f\xc7\x8a\x9e\x0d\x05\xfa\xe5\x23\x8b\x7a\xac\x44\x5f\xc5\x1c\x13\xb3\x67\xb6\x8e\x94\x43\x46\x6b\x03\xe3\x90\xf6\xe8\x73\x91\xfa\x89\x22\x8d\x6d\x77\x1f\xe4\xfa\x19\xd9\x7e\x84\xb3\xdf\x82\x1c\x7f\x04\x92\x83\xce\xad\x4a\xfc\xd5\xce\xe9\xe7\x3a\x15\xcc\xde\x2e\x86\x45\x60\xf2\xcc\x31\x4c\x01\xfa\xca\xb1\x31\x06\xb9\x42\xc2\xf1\xdd\xd9\x56\xcd\xdf\x72\xcd\x04\x51\xde\xe9\x5b\xd8\xbb\xdd\xb8\xa3\x2f\x07\x45\x95\xe4\x83\x45\xee\xeb\x24\xd3\xca\x76\x1b\xca\x2d\xa2\xdd\xee\x98\x5d\xc4\x5f\x87\x72\xa0\xc6\xe5\x93\x42\xfc\x1c\x10\xfd\x4c\xdf\xe2\xa7\x5b\x2b\xb9\xb6\x01\x6d\x58\x3e\x97\xae\x17\x39\xa0\x14\x53\x8e\x5b\xa5\xdb\x6a\xcf\xc7\xb2\x7e\x14\x81\x17\x87\x72\x70\x36\xff\x19\x39\x21\x92\x43\xce\x7c\x81\xdf\xf3\x03\x54\xd8\xa9\x14\x18\x97\x1b\x41\x11\x9d\x37\x01\x31\xbd\xfe\xe5\xed\xe5\x08\x72\x66\x83\x6a\xc9\xcc\x86\x8e\x3f\x19\x1b\x6e\x5f\x71\xe5\xb8\x29\xc0\x7d\x33\x3f\x03\x81\x3c\x3a\x01\xa1\x21\xef\x99\x05\xf1\xcc\x36\xa4\xd4\x56\xe4\x7b\xd9\x31\x4a\x67\xf2\x3b\x06\x0a\xde\x48\x13\x28\x7b\x22\x6d\xd2\x6b\x1d\xf6\x59\x8b\x1b\xc2\xf3\x03\x09\x11\x08\xf8\x81\x84\xda\xce\x0e\xcf\xa0\x49\x65\xbd\xab\x0a\x15\x1c\x05\xfe\xbd\x66\x19\xa8\x81\xf8\x96\x0d\x42\x9b\x76\xc3\x24\xc2\xad\x9c\xf4\x76\x86\x5f\xd1\xd2\xe9\x46\xe4\xfd\x22\xb0\x7e\x1b\xf2\xa3\xc9\x52\xc3\x80\xd7\x2b\x87\x18\x33\x28\xbd\x3a\xf3\xaf\xc7\xc1\xf6\x34\x9a\xcc\xb6\xba\x29\x9d\xa5\x4a\x67\xf3\x96\xf2\x22\x60\xfe\xd6\x73\x67\x17\xce\xe4\xb3\x55\xfc\xb5\xd8\xd1\x24\xc2\xa6\x74\x26\x93\x96\xf6\x15\xac\x87\x01\x5e\x24\x63\x1e\xe3\x06\xad\x7c\x3b\x00\x57\xc6\x3d\x66\xb7\xf6\xe1\x86\x60\x87\xf8\x57\xd4\xfd\xf9\xec\x7a\xe7\x73\x79\xb6\x67\x86\xd2\x93\x8b\x61\x70\x72\x59\xb4\xc0\x62\xd5\xca\xf3\x16\xfc\xef\x9a\xfd\xb8\xae\x24\xdc\x7b\x96\xd7\x11\xed\x15\x83\x5c\xb6\xd1\xa4\x87\xf7\xd1\x05\x82\x26\x2b\x98\x79\xce\x27\x06\x28\x7f\x2b\x57\x43\xe0\x56\xf8\x45\x7e\xab\x1d\xcf\x37\xd3\x58\x70\xe0\x50\xe3\xc1\xa1\xf7\x92\x13\xc0\xcc\xbd\x72\x62\x43\x47\x88\xa3\x85\x3a\x1e\xed\xdf\x75\x0f\xf5\x87\xa1\x2c\xe2\xc2\xa2\x1c\xe4\x67\xb6\x95\xbb\x17\xa3\x20\x0c\x83\x0d\xa5\x90\x30\x2f\xfb\x2e\x92\xd3\x5c\xd9\xcc\xc0\xad\xa8\xc1\x07\x8d\xf7\x8b\x00\x16\xa2\x78\xf0\xa0\xaf\x8c\x41\xca\xbf\x14\x62\x95\x7c\x92\x98\x86\xcf\xa3\x27\x1e\xcd\xfc\x18\x84\xd1\x44\xf7\x7f\x1e\xc9\x13\x4d\x72\x49\xca\x2a\x71\x04\x91\x3c\x31\x15\xc0\x3e\xed\xda\xd5\xd3\x47\xe1\xc3\x4e\x6c\x11\xf2\x00\xfc\x10\x14\x17\xfe\xa0\xaf\x3e\xe9\x38\x60\xd4\xa0\x36\xff\xa6\x0f\x46\xc9\xef\xb0\x5d\x31\x7b\x48\xd3\xdd\x7f\x72\xad\xff\x2d\xd1\x60\x0b\xdf\x84\x66\xe0\x39\xe7\x3f\xd2\x90\x7b\x23\x41\xe7\x67\xbf\x47\x78\xc1\x95\x54\x46\x88\xdc\x4d\x1d\x3f\xab\xad\xa8\xc2\xcd\x56\xbe\x89\xe3\xf1\x44\x3f\x1e\x46\x54\xd4\xd4\x04\x51\xcd\x8e\xef\x20\x66\xdf\x67\xfe\xad\x38\x5c\xc2\x93\x82\xaa\xe3\x8f\x0b\xc9\x27\xd6\x49\x40\xfe\xde\xbd\x13\x97\x7c\xea\x9b\x66\xfb\x39\xc9\xd7\x3c\x27\xfa\x9b\xe0\x21\x46\x89\xd7\x45\x4c\x1a\x25\x13\xf9\xc9\xa9\xef\xb8\xe1\xef\x48\x4b\x25\x06\x82\x17\x92\xbe\xdb\x21\x43\xbe\x99\x89\x8c\x0d\x32\xf8\x05\x4f\xfc\x2c\xf0\xb3\xc8\xef\xf1\xeb\x80\x5f\x87\xb2\xbc\x95\xca\xe0\x30\x54\x9d\xb4\xbe\x0d\x72\xee\xf1\x9b\x1f\xfb\xc1\x07\x8b\xd1\x8f\x3e\xab\x65\x3f\xf0\x2e\x93\x7c\xa2\x13\xf9\xf6\x83\xf2\xe5\xf9\xf9\xe7\xfe\x25\xfa\x47\xec\x1f\xbb\xd7\x2c\xa4\x28\x87\xbb\xd7\x2c\x49\x3e\x02\x9b\x20\x5d\x56\x1b\x94\x34\xe5\xf2\x38\x34\x53\x92\x94\xd7\xe6\x87\xcc\x8f\x4b\x53\xc8\xf5\xa3\xd2\x54\xf2\x7f\x03\x00\x00\xff\xff\x31\x89\xdd\xe9\x68\x87\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -787,7 +787,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 34274, mode: os.FileMode(420), modTime: time.Unix(1438594289, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 34664, mode: os.FileMode(420), modTime: time.Unix(1438758818, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index c39fab432..7f9d9908f 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -134,6 +134,7 @@ var ( // I18n settings. Langs, Names []string + dateLangs map[string]string // Other settings. ShowFooterBranding bool @@ -148,6 +149,14 @@ var ( HasRobotsTxt bool ) +func DateLang(lang string) string { + name, ok := dateLangs[lang] + if ok { + return name + } + return "en" +} + func init() { IsWindows = runtime.GOOS == "windows" log.NewLogger(0, "console", `{"level": 0}`) @@ -353,6 +362,7 @@ func NewConfigContext() { Langs = Cfg.Section("i18n").Key("LANGS").Strings(",") Names = Cfg.Section("i18n").Key("NAMES").Strings(",") + dateLangs = Cfg.Section("i18n.datelang").KeysHash() ShowFooterBranding = Cfg.Section("other").Key("SHOW_FOOTER_BRANDING").MustBool() diff --git a/public/css/datepicker3.css b/public/css/datepicker3.css deleted file mode 100644 index aa78b1d4b..000000000 --- a/public/css/datepicker3.css +++ /dev/null @@ -1,790 +0,0 @@ -/*! - * Datepicker for Bootstrap - * - * Copyright 2012 Stefan Petre - * Improvements by Andrew Rowls - * Licensed under the Apache License v2.0 - * http://www.apache.org/licenses/LICENSE-2.0 - * - */ -.datepicker { - padding: 4px; - border-radius: 4px; - direction: ltr; - /*.dow { - border-top: 1px solid #ddd !important; - }*/ -} -.datepicker-inline { - width: 220px; -} -.datepicker.datepicker-rtl { - direction: rtl; -} -.datepicker.datepicker-rtl table tr td span { - float: right; -} -.datepicker-dropdown { - top: 0; - left: 0; -} -.datepicker-dropdown:before { - content: ''; - display: inline-block; - border-left: 7px solid transparent; - border-right: 7px solid transparent; - border-bottom: 7px solid #ccc; - border-top: 0; - border-bottom-color: rgba(0, 0, 0, 0.2); - position: absolute; -} -.datepicker-dropdown:after { - content: ''; - display: inline-block; - border-left: 6px solid transparent; - border-right: 6px solid transparent; - border-bottom: 6px solid #fff; - border-top: 0; - position: absolute; -} -.datepicker-dropdown.datepicker-orient-left:before { - left: 6px; -} -.datepicker-dropdown.datepicker-orient-left:after { - left: 7px; -} -.datepicker-dropdown.datepicker-orient-right:before { - right: 6px; -} -.datepicker-dropdown.datepicker-orient-right:after { - right: 7px; -} -.datepicker-dropdown.datepicker-orient-top:before { - top: -7px; -} -.datepicker-dropdown.datepicker-orient-top:after { - top: -6px; -} -.datepicker-dropdown.datepicker-orient-bottom:before { - bottom: -7px; - border-bottom: 0; - border-top: 7px solid #999; -} -.datepicker-dropdown.datepicker-orient-bottom:after { - bottom: -6px; - border-bottom: 0; - border-top: 6px solid #fff; -} -.datepicker > div { - display: none; -} -.datepicker.days div.datepicker-days { - display: block; -} -.datepicker.months div.datepicker-months { - display: block; -} -.datepicker.years div.datepicker-years { - display: block; -} -.datepicker table { - margin: 0; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.datepicker table tr td, -.datepicker table tr th { - text-align: center; - width: 30px; - height: 30px; - border-radius: 4px; - border: none; -} -.table-striped .datepicker table tr td, -.table-striped .datepicker table tr th { - background-color: transparent; -} -.datepicker table tr td.day:hover, -.datepicker table tr td.day.focused { - background: #eeeeee; - cursor: pointer; -} -.datepicker table tr td.old, -.datepicker table tr td.new { - color: #999999; -} -.datepicker table tr td.disabled, -.datepicker table tr td.disabled:hover { - background: none; - color: #999999; - cursor: default; -} -.datepicker table tr td.today, -.datepicker table tr td.today:hover, -.datepicker table tr td.today.disabled, -.datepicker table tr td.today.disabled:hover { - color: #000000; - background-color: #ffdb99; - border-color: #ffb733; -} -.datepicker table tr td.today:hover, -.datepicker table tr td.today:hover:hover, -.datepicker table tr td.today.disabled:hover, -.datepicker table tr td.today.disabled:hover:hover, -.datepicker table tr td.today:focus, -.datepicker table tr td.today:hover:focus, -.datepicker table tr td.today.disabled:focus, -.datepicker table tr td.today.disabled:hover:focus, -.datepicker table tr td.today:active, -.datepicker table tr td.today:hover:active, -.datepicker table tr td.today.disabled:active, -.datepicker table tr td.today.disabled:hover:active, -.datepicker table tr td.today.active, -.datepicker table tr td.today:hover.active, -.datepicker table tr td.today.disabled.active, -.datepicker table tr td.today.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td.today, -.open .dropdown-toggle.datepicker table tr td.today:hover, -.open .dropdown-toggle.datepicker table tr td.today.disabled, -.open .dropdown-toggle.datepicker table tr td.today.disabled:hover { - color: #000000; - background-color: #ffcd70; - border-color: #f59e00; -} -.datepicker table tr td.today:active, -.datepicker table tr td.today:hover:active, -.datepicker table tr td.today.disabled:active, -.datepicker table tr td.today.disabled:hover:active, -.datepicker table tr td.today.active, -.datepicker table tr td.today:hover.active, -.datepicker table tr td.today.disabled.active, -.datepicker table tr td.today.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td.today, -.open .dropdown-toggle.datepicker table tr td.today:hover, -.open .dropdown-toggle.datepicker table tr td.today.disabled, -.open .dropdown-toggle.datepicker table tr td.today.disabled:hover { - background-image: none; -} -.datepicker table tr td.today.disabled, -.datepicker table tr td.today:hover.disabled, -.datepicker table tr td.today.disabled.disabled, -.datepicker table tr td.today.disabled:hover.disabled, -.datepicker table tr td.today[disabled], -.datepicker table tr td.today:hover[disabled], -.datepicker table tr td.today.disabled[disabled], -.datepicker table tr td.today.disabled:hover[disabled], -fieldset[disabled] .datepicker table tr td.today, -fieldset[disabled] .datepicker table tr td.today:hover, -fieldset[disabled] .datepicker table tr td.today.disabled, -fieldset[disabled] .datepicker table tr td.today.disabled:hover, -.datepicker table tr td.today.disabled:hover, -.datepicker table tr td.today:hover.disabled:hover, -.datepicker table tr td.today.disabled.disabled:hover, -.datepicker table tr td.today.disabled:hover.disabled:hover, -.datepicker table tr td.today[disabled]:hover, -.datepicker table tr td.today:hover[disabled]:hover, -.datepicker table tr td.today.disabled[disabled]:hover, -.datepicker table tr td.today.disabled:hover[disabled]:hover, -fieldset[disabled] .datepicker table tr td.today:hover, -fieldset[disabled] .datepicker table tr td.today:hover:hover, -fieldset[disabled] .datepicker table tr td.today.disabled:hover, -fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover, -.datepicker table tr td.today.disabled:focus, -.datepicker table tr td.today:hover.disabled:focus, -.datepicker table tr td.today.disabled.disabled:focus, -.datepicker table tr td.today.disabled:hover.disabled:focus, -.datepicker table tr td.today[disabled]:focus, -.datepicker table tr td.today:hover[disabled]:focus, -.datepicker table tr td.today.disabled[disabled]:focus, -.datepicker table tr td.today.disabled:hover[disabled]:focus, -fieldset[disabled] .datepicker table tr td.today:focus, -fieldset[disabled] .datepicker table tr td.today:hover:focus, -fieldset[disabled] .datepicker table tr td.today.disabled:focus, -fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus, -.datepicker table tr td.today.disabled:active, -.datepicker table tr td.today:hover.disabled:active, -.datepicker table tr td.today.disabled.disabled:active, -.datepicker table tr td.today.disabled:hover.disabled:active, -.datepicker table tr td.today[disabled]:active, -.datepicker table tr td.today:hover[disabled]:active, -.datepicker table tr td.today.disabled[disabled]:active, -.datepicker table tr td.today.disabled:hover[disabled]:active, -fieldset[disabled] .datepicker table tr td.today:active, -fieldset[disabled] .datepicker table tr td.today:hover:active, -fieldset[disabled] .datepicker table tr td.today.disabled:active, -fieldset[disabled] .datepicker table tr td.today.disabled:hover:active, -.datepicker table tr td.today.disabled.active, -.datepicker table tr td.today:hover.disabled.active, -.datepicker table tr td.today.disabled.disabled.active, -.datepicker table tr td.today.disabled:hover.disabled.active, -.datepicker table tr td.today[disabled].active, -.datepicker table tr td.today:hover[disabled].active, -.datepicker table tr td.today.disabled[disabled].active, -.datepicker table tr td.today.disabled:hover[disabled].active, -fieldset[disabled] .datepicker table tr td.today.active, -fieldset[disabled] .datepicker table tr td.today:hover.active, -fieldset[disabled] .datepicker table tr td.today.disabled.active, -fieldset[disabled] .datepicker table tr td.today.disabled:hover.active { - background-color: #ffdb99; - border-color: #ffb733; -} -.datepicker table tr td.today:hover:hover { - color: #000; -} -.datepicker table tr td.today.active:hover { - color: #fff; -} -.datepicker table tr td.range, -.datepicker table tr td.range:hover, -.datepicker table tr td.range.disabled, -.datepicker table tr td.range.disabled:hover { - background: #eeeeee; - border-radius: 0; -} -.datepicker table tr td.range.today, -.datepicker table tr td.range.today:hover, -.datepicker table tr td.range.today.disabled, -.datepicker table tr td.range.today.disabled:hover { - color: #000000; - background-color: #f7ca77; - border-color: #f1a417; - border-radius: 0; -} -.datepicker table tr td.range.today:hover, -.datepicker table tr td.range.today:hover:hover, -.datepicker table tr td.range.today.disabled:hover, -.datepicker table tr td.range.today.disabled:hover:hover, -.datepicker table tr td.range.today:focus, -.datepicker table tr td.range.today:hover:focus, -.datepicker table tr td.range.today.disabled:focus, -.datepicker table tr td.range.today.disabled:hover:focus, -.datepicker table tr td.range.today:active, -.datepicker table tr td.range.today:hover:active, -.datepicker table tr td.range.today.disabled:active, -.datepicker table tr td.range.today.disabled:hover:active, -.datepicker table tr td.range.today.active, -.datepicker table tr td.range.today:hover.active, -.datepicker table tr td.range.today.disabled.active, -.datepicker table tr td.range.today.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td.range.today, -.open .dropdown-toggle.datepicker table tr td.range.today:hover, -.open .dropdown-toggle.datepicker table tr td.range.today.disabled, -.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover { - color: #000000; - background-color: #f4bb51; - border-color: #bf800c; -} -.datepicker table tr td.range.today:active, -.datepicker table tr td.range.today:hover:active, -.datepicker table tr td.range.today.disabled:active, -.datepicker table tr td.range.today.disabled:hover:active, -.datepicker table tr td.range.today.active, -.datepicker table tr td.range.today:hover.active, -.datepicker table tr td.range.today.disabled.active, -.datepicker table tr td.range.today.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td.range.today, -.open .dropdown-toggle.datepicker table tr td.range.today:hover, -.open .dropdown-toggle.datepicker table tr td.range.today.disabled, -.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover { - background-image: none; -} -.datepicker table tr td.range.today.disabled, -.datepicker table tr td.range.today:hover.disabled, -.datepicker table tr td.range.today.disabled.disabled, -.datepicker table tr td.range.today.disabled:hover.disabled, -.datepicker table tr td.range.today[disabled], -.datepicker table tr td.range.today:hover[disabled], -.datepicker table tr td.range.today.disabled[disabled], -.datepicker table tr td.range.today.disabled:hover[disabled], -fieldset[disabled] .datepicker table tr td.range.today, -fieldset[disabled] .datepicker table tr td.range.today:hover, -fieldset[disabled] .datepicker table tr td.range.today.disabled, -fieldset[disabled] .datepicker table tr td.range.today.disabled:hover, -.datepicker table tr td.range.today.disabled:hover, -.datepicker table tr td.range.today:hover.disabled:hover, -.datepicker table tr td.range.today.disabled.disabled:hover, -.datepicker table tr td.range.today.disabled:hover.disabled:hover, -.datepicker table tr td.range.today[disabled]:hover, -.datepicker table tr td.range.today:hover[disabled]:hover, -.datepicker table tr td.range.today.disabled[disabled]:hover, -.datepicker table tr td.range.today.disabled:hover[disabled]:hover, -fieldset[disabled] .datepicker table tr td.range.today:hover, -fieldset[disabled] .datepicker table tr td.range.today:hover:hover, -fieldset[disabled] .datepicker table tr td.range.today.disabled:hover, -fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover, -.datepicker table tr td.range.today.disabled:focus, -.datepicker table tr td.range.today:hover.disabled:focus, -.datepicker table tr td.range.today.disabled.disabled:focus, -.datepicker table tr td.range.today.disabled:hover.disabled:focus, -.datepicker table tr td.range.today[disabled]:focus, -.datepicker table tr td.range.today:hover[disabled]:focus, -.datepicker table tr td.range.today.disabled[disabled]:focus, -.datepicker table tr td.range.today.disabled:hover[disabled]:focus, -fieldset[disabled] .datepicker table tr td.range.today:focus, -fieldset[disabled] .datepicker table tr td.range.today:hover:focus, -fieldset[disabled] .datepicker table tr td.range.today.disabled:focus, -fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus, -.datepicker table tr td.range.today.disabled:active, -.datepicker table tr td.range.today:hover.disabled:active, -.datepicker table tr td.range.today.disabled.disabled:active, -.datepicker table tr td.range.today.disabled:hover.disabled:active, -.datepicker table tr td.range.today[disabled]:active, -.datepicker table tr td.range.today:hover[disabled]:active, -.datepicker table tr td.range.today.disabled[disabled]:active, -.datepicker table tr td.range.today.disabled:hover[disabled]:active, -fieldset[disabled] .datepicker table tr td.range.today:active, -fieldset[disabled] .datepicker table tr td.range.today:hover:active, -fieldset[disabled] .datepicker table tr td.range.today.disabled:active, -fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active, -.datepicker table tr td.range.today.disabled.active, -.datepicker table tr td.range.today:hover.disabled.active, -.datepicker table tr td.range.today.disabled.disabled.active, -.datepicker table tr td.range.today.disabled:hover.disabled.active, -.datepicker table tr td.range.today[disabled].active, -.datepicker table tr td.range.today:hover[disabled].active, -.datepicker table tr td.range.today.disabled[disabled].active, -.datepicker table tr td.range.today.disabled:hover[disabled].active, -fieldset[disabled] .datepicker table tr td.range.today.active, -fieldset[disabled] .datepicker table tr td.range.today:hover.active, -fieldset[disabled] .datepicker table tr td.range.today.disabled.active, -fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active { - background-color: #f7ca77; - border-color: #f1a417; -} -.datepicker table tr td.selected, -.datepicker table tr td.selected:hover, -.datepicker table tr td.selected.disabled, -.datepicker table tr td.selected.disabled:hover { - color: #ffffff; - background-color: #999999; - border-color: #555555; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.datepicker table tr td.selected:hover, -.datepicker table tr td.selected:hover:hover, -.datepicker table tr td.selected.disabled:hover, -.datepicker table tr td.selected.disabled:hover:hover, -.datepicker table tr td.selected:focus, -.datepicker table tr td.selected:hover:focus, -.datepicker table tr td.selected.disabled:focus, -.datepicker table tr td.selected.disabled:hover:focus, -.datepicker table tr td.selected:active, -.datepicker table tr td.selected:hover:active, -.datepicker table tr td.selected.disabled:active, -.datepicker table tr td.selected.disabled:hover:active, -.datepicker table tr td.selected.active, -.datepicker table tr td.selected:hover.active, -.datepicker table tr td.selected.disabled.active, -.datepicker table tr td.selected.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td.selected, -.open .dropdown-toggle.datepicker table tr td.selected:hover, -.open .dropdown-toggle.datepicker table tr td.selected.disabled, -.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover { - color: #ffffff; - background-color: #858585; - border-color: #373737; -} -.datepicker table tr td.selected:active, -.datepicker table tr td.selected:hover:active, -.datepicker table tr td.selected.disabled:active, -.datepicker table tr td.selected.disabled:hover:active, -.datepicker table tr td.selected.active, -.datepicker table tr td.selected:hover.active, -.datepicker table tr td.selected.disabled.active, -.datepicker table tr td.selected.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td.selected, -.open .dropdown-toggle.datepicker table tr td.selected:hover, -.open .dropdown-toggle.datepicker table tr td.selected.disabled, -.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover { - background-image: none; -} -.datepicker table tr td.selected.disabled, -.datepicker table tr td.selected:hover.disabled, -.datepicker table tr td.selected.disabled.disabled, -.datepicker table tr td.selected.disabled:hover.disabled, -.datepicker table tr td.selected[disabled], -.datepicker table tr td.selected:hover[disabled], -.datepicker table tr td.selected.disabled[disabled], -.datepicker table tr td.selected.disabled:hover[disabled], -fieldset[disabled] .datepicker table tr td.selected, -fieldset[disabled] .datepicker table tr td.selected:hover, -fieldset[disabled] .datepicker table tr td.selected.disabled, -fieldset[disabled] .datepicker table tr td.selected.disabled:hover, -.datepicker table tr td.selected.disabled:hover, -.datepicker table tr td.selected:hover.disabled:hover, -.datepicker table tr td.selected.disabled.disabled:hover, -.datepicker table tr td.selected.disabled:hover.disabled:hover, -.datepicker table tr td.selected[disabled]:hover, -.datepicker table tr td.selected:hover[disabled]:hover, -.datepicker table tr td.selected.disabled[disabled]:hover, -.datepicker table tr td.selected.disabled:hover[disabled]:hover, -fieldset[disabled] .datepicker table tr td.selected:hover, -fieldset[disabled] .datepicker table tr td.selected:hover:hover, -fieldset[disabled] .datepicker table tr td.selected.disabled:hover, -fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover, -.datepicker table tr td.selected.disabled:focus, -.datepicker table tr td.selected:hover.disabled:focus, -.datepicker table tr td.selected.disabled.disabled:focus, -.datepicker table tr td.selected.disabled:hover.disabled:focus, -.datepicker table tr td.selected[disabled]:focus, -.datepicker table tr td.selected:hover[disabled]:focus, -.datepicker table tr td.selected.disabled[disabled]:focus, -.datepicker table tr td.selected.disabled:hover[disabled]:focus, -fieldset[disabled] .datepicker table tr td.selected:focus, -fieldset[disabled] .datepicker table tr td.selected:hover:focus, -fieldset[disabled] .datepicker table tr td.selected.disabled:focus, -fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus, -.datepicker table tr td.selected.disabled:active, -.datepicker table tr td.selected:hover.disabled:active, -.datepicker table tr td.selected.disabled.disabled:active, -.datepicker table tr td.selected.disabled:hover.disabled:active, -.datepicker table tr td.selected[disabled]:active, -.datepicker table tr td.selected:hover[disabled]:active, -.datepicker table tr td.selected.disabled[disabled]:active, -.datepicker table tr td.selected.disabled:hover[disabled]:active, -fieldset[disabled] .datepicker table tr td.selected:active, -fieldset[disabled] .datepicker table tr td.selected:hover:active, -fieldset[disabled] .datepicker table tr td.selected.disabled:active, -fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active, -.datepicker table tr td.selected.disabled.active, -.datepicker table tr td.selected:hover.disabled.active, -.datepicker table tr td.selected.disabled.disabled.active, -.datepicker table tr td.selected.disabled:hover.disabled.active, -.datepicker table tr td.selected[disabled].active, -.datepicker table tr td.selected:hover[disabled].active, -.datepicker table tr td.selected.disabled[disabled].active, -.datepicker table tr td.selected.disabled:hover[disabled].active, -fieldset[disabled] .datepicker table tr td.selected.active, -fieldset[disabled] .datepicker table tr td.selected:hover.active, -fieldset[disabled] .datepicker table tr td.selected.disabled.active, -fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active { - background-color: #999999; - border-color: #555555; -} -.datepicker table tr td.active, -.datepicker table tr td.active:hover, -.datepicker table tr td.active.disabled, -.datepicker table tr td.active.disabled:hover { - color: #ffffff; - background-color: #428bca; - border-color: #357ebd; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.datepicker table tr td.active:hover, -.datepicker table tr td.active:hover:hover, -.datepicker table tr td.active.disabled:hover, -.datepicker table tr td.active.disabled:hover:hover, -.datepicker table tr td.active:focus, -.datepicker table tr td.active:hover:focus, -.datepicker table tr td.active.disabled:focus, -.datepicker table tr td.active.disabled:hover:focus, -.datepicker table tr td.active:active, -.datepicker table tr td.active:hover:active, -.datepicker table tr td.active.disabled:active, -.datepicker table tr td.active.disabled:hover:active, -.datepicker table tr td.active.active, -.datepicker table tr td.active:hover.active, -.datepicker table tr td.active.disabled.active, -.datepicker table tr td.active.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td.active, -.open .dropdown-toggle.datepicker table tr td.active:hover, -.open .dropdown-toggle.datepicker table tr td.active.disabled, -.open .dropdown-toggle.datepicker table tr td.active.disabled:hover { - color: #ffffff; - background-color: #3276b1; - border-color: #285e8e; -} -.datepicker table tr td.active:active, -.datepicker table tr td.active:hover:active, -.datepicker table tr td.active.disabled:active, -.datepicker table tr td.active.disabled:hover:active, -.datepicker table tr td.active.active, -.datepicker table tr td.active:hover.active, -.datepicker table tr td.active.disabled.active, -.datepicker table tr td.active.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td.active, -.open .dropdown-toggle.datepicker table tr td.active:hover, -.open .dropdown-toggle.datepicker table tr td.active.disabled, -.open .dropdown-toggle.datepicker table tr td.active.disabled:hover { - background-image: none; -} -.datepicker table tr td.active.disabled, -.datepicker table tr td.active:hover.disabled, -.datepicker table tr td.active.disabled.disabled, -.datepicker table tr td.active.disabled:hover.disabled, -.datepicker table tr td.active[disabled], -.datepicker table tr td.active:hover[disabled], -.datepicker table tr td.active.disabled[disabled], -.datepicker table tr td.active.disabled:hover[disabled], -fieldset[disabled] .datepicker table tr td.active, -fieldset[disabled] .datepicker table tr td.active:hover, -fieldset[disabled] .datepicker table tr td.active.disabled, -fieldset[disabled] .datepicker table tr td.active.disabled:hover, -.datepicker table tr td.active.disabled:hover, -.datepicker table tr td.active:hover.disabled:hover, -.datepicker table tr td.active.disabled.disabled:hover, -.datepicker table tr td.active.disabled:hover.disabled:hover, -.datepicker table tr td.active[disabled]:hover, -.datepicker table tr td.active:hover[disabled]:hover, -.datepicker table tr td.active.disabled[disabled]:hover, -.datepicker table tr td.active.disabled:hover[disabled]:hover, -fieldset[disabled] .datepicker table tr td.active:hover, -fieldset[disabled] .datepicker table tr td.active:hover:hover, -fieldset[disabled] .datepicker table tr td.active.disabled:hover, -fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover, -.datepicker table tr td.active.disabled:focus, -.datepicker table tr td.active:hover.disabled:focus, -.datepicker table tr td.active.disabled.disabled:focus, -.datepicker table tr td.active.disabled:hover.disabled:focus, -.datepicker table tr td.active[disabled]:focus, -.datepicker table tr td.active:hover[disabled]:focus, -.datepicker table tr td.active.disabled[disabled]:focus, -.datepicker table tr td.active.disabled:hover[disabled]:focus, -fieldset[disabled] .datepicker table tr td.active:focus, -fieldset[disabled] .datepicker table tr td.active:hover:focus, -fieldset[disabled] .datepicker table tr td.active.disabled:focus, -fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus, -.datepicker table tr td.active.disabled:active, -.datepicker table tr td.active:hover.disabled:active, -.datepicker table tr td.active.disabled.disabled:active, -.datepicker table tr td.active.disabled:hover.disabled:active, -.datepicker table tr td.active[disabled]:active, -.datepicker table tr td.active:hover[disabled]:active, -.datepicker table tr td.active.disabled[disabled]:active, -.datepicker table tr td.active.disabled:hover[disabled]:active, -fieldset[disabled] .datepicker table tr td.active:active, -fieldset[disabled] .datepicker table tr td.active:hover:active, -fieldset[disabled] .datepicker table tr td.active.disabled:active, -fieldset[disabled] .datepicker table tr td.active.disabled:hover:active, -.datepicker table tr td.active.disabled.active, -.datepicker table tr td.active:hover.disabled.active, -.datepicker table tr td.active.disabled.disabled.active, -.datepicker table tr td.active.disabled:hover.disabled.active, -.datepicker table tr td.active[disabled].active, -.datepicker table tr td.active:hover[disabled].active, -.datepicker table tr td.active.disabled[disabled].active, -.datepicker table tr td.active.disabled:hover[disabled].active, -fieldset[disabled] .datepicker table tr td.active.active, -fieldset[disabled] .datepicker table tr td.active:hover.active, -fieldset[disabled] .datepicker table tr td.active.disabled.active, -fieldset[disabled] .datepicker table tr td.active.disabled:hover.active { - background-color: #428bca; - border-color: #357ebd; -} -.datepicker table tr td span { - display: block; - width: 23%; - height: 54px; - line-height: 54px; - float: left; - margin: 1%; - cursor: pointer; - border-radius: 4px; -} -.datepicker table tr td span:hover { - background: #eeeeee; -} -.datepicker table tr td span.disabled, -.datepicker table tr td span.disabled:hover { - background: none; - color: #999999; - cursor: default; -} -.datepicker table tr td span.active, -.datepicker table tr td span.active:hover, -.datepicker table tr td span.active.disabled, -.datepicker table tr td span.active.disabled:hover { - color: #ffffff; - background-color: #428bca; - border-color: #357ebd; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.datepicker table tr td span.active:hover, -.datepicker table tr td span.active:hover:hover, -.datepicker table tr td span.active.disabled:hover, -.datepicker table tr td span.active.disabled:hover:hover, -.datepicker table tr td span.active:focus, -.datepicker table tr td span.active:hover:focus, -.datepicker table tr td span.active.disabled:focus, -.datepicker table tr td span.active.disabled:hover:focus, -.datepicker table tr td span.active:active, -.datepicker table tr td span.active:hover:active, -.datepicker table tr td span.active.disabled:active, -.datepicker table tr td span.active.disabled:hover:active, -.datepicker table tr td span.active.active, -.datepicker table tr td span.active:hover.active, -.datepicker table tr td span.active.disabled.active, -.datepicker table tr td span.active.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td span.active, -.open .dropdown-toggle.datepicker table tr td span.active:hover, -.open .dropdown-toggle.datepicker table tr td span.active.disabled, -.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover { - color: #ffffff; - background-color: #3276b1; - border-color: #285e8e; -} -.datepicker table tr td span.active:active, -.datepicker table tr td span.active:hover:active, -.datepicker table tr td span.active.disabled:active, -.datepicker table tr td span.active.disabled:hover:active, -.datepicker table tr td span.active.active, -.datepicker table tr td span.active:hover.active, -.datepicker table tr td span.active.disabled.active, -.datepicker table tr td span.active.disabled:hover.active, -.open .dropdown-toggle.datepicker table tr td span.active, -.open .dropdown-toggle.datepicker table tr td span.active:hover, -.open .dropdown-toggle.datepicker table tr td span.active.disabled, -.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover { - background-image: none; -} -.datepicker table tr td span.active.disabled, -.datepicker table tr td span.active:hover.disabled, -.datepicker table tr td span.active.disabled.disabled, -.datepicker table tr td span.active.disabled:hover.disabled, -.datepicker table tr td span.active[disabled], -.datepicker table tr td span.active:hover[disabled], -.datepicker table tr td span.active.disabled[disabled], -.datepicker table tr td span.active.disabled:hover[disabled], -fieldset[disabled] .datepicker table tr td span.active, -fieldset[disabled] .datepicker table tr td span.active:hover, -fieldset[disabled] .datepicker table tr td span.active.disabled, -fieldset[disabled] .datepicker table tr td span.active.disabled:hover, -.datepicker table tr td span.active.disabled:hover, -.datepicker table tr td span.active:hover.disabled:hover, -.datepicker table tr td span.active.disabled.disabled:hover, -.datepicker table tr td span.active.disabled:hover.disabled:hover, -.datepicker table tr td span.active[disabled]:hover, -.datepicker table tr td span.active:hover[disabled]:hover, -.datepicker table tr td span.active.disabled[disabled]:hover, -.datepicker table tr td span.active.disabled:hover[disabled]:hover, -fieldset[disabled] .datepicker table tr td span.active:hover, -fieldset[disabled] .datepicker table tr td span.active:hover:hover, -fieldset[disabled] .datepicker table tr td span.active.disabled:hover, -fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover, -.datepicker table tr td span.active.disabled:focus, -.datepicker table tr td span.active:hover.disabled:focus, -.datepicker table tr td span.active.disabled.disabled:focus, -.datepicker table tr td span.active.disabled:hover.disabled:focus, -.datepicker table tr td span.active[disabled]:focus, -.datepicker table tr td span.active:hover[disabled]:focus, -.datepicker table tr td span.active.disabled[disabled]:focus, -.datepicker table tr td span.active.disabled:hover[disabled]:focus, -fieldset[disabled] .datepicker table tr td span.active:focus, -fieldset[disabled] .datepicker table tr td span.active:hover:focus, -fieldset[disabled] .datepicker table tr td span.active.disabled:focus, -fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus, -.datepicker table tr td span.active.disabled:active, -.datepicker table tr td span.active:hover.disabled:active, -.datepicker table tr td span.active.disabled.disabled:active, -.datepicker table tr td span.active.disabled:hover.disabled:active, -.datepicker table tr td span.active[disabled]:active, -.datepicker table tr td span.active:hover[disabled]:active, -.datepicker table tr td span.active.disabled[disabled]:active, -.datepicker table tr td span.active.disabled:hover[disabled]:active, -fieldset[disabled] .datepicker table tr td span.active:active, -fieldset[disabled] .datepicker table tr td span.active:hover:active, -fieldset[disabled] .datepicker table tr td span.active.disabled:active, -fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active, -.datepicker table tr td span.active.disabled.active, -.datepicker table tr td span.active:hover.disabled.active, -.datepicker table tr td span.active.disabled.disabled.active, -.datepicker table tr td span.active.disabled:hover.disabled.active, -.datepicker table tr td span.active[disabled].active, -.datepicker table tr td span.active:hover[disabled].active, -.datepicker table tr td span.active.disabled[disabled].active, -.datepicker table tr td span.active.disabled:hover[disabled].active, -fieldset[disabled] .datepicker table tr td span.active.active, -fieldset[disabled] .datepicker table tr td span.active:hover.active, -fieldset[disabled] .datepicker table tr td span.active.disabled.active, -fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active { - background-color: #428bca; - border-color: #357ebd; -} -.datepicker table tr td span.old, -.datepicker table tr td span.new { - color: #999999; -} -.datepicker th.datepicker-switch { - width: 145px; -} -.datepicker thead tr:first-child th, -.datepicker tfoot tr th { - cursor: pointer; -} -.datepicker thead tr:first-child th:hover, -.datepicker tfoot tr th:hover { - background: #eeeeee; -} -.datepicker .cw { - font-size: 10px; - width: 12px; - padding: 0 2px 0 5px; - vertical-align: middle; -} -.datepicker thead tr:first-child th.cw { - cursor: default; - background-color: transparent; -} -.input-group.date .input-group-addon i { - cursor: pointer; - width: 16px; - height: 16px; -} -.input-daterange input { - text-align: center; -} -.input-daterange input:first-child { - border-radius: 3px 0 0 3px; -} -.input-daterange input:last-child { - border-radius: 0 3px 3px 0; -} -.input-daterange .input-group-addon { - width: auto; - min-width: 16px; - padding: 4px 5px; - font-weight: normal; - line-height: 1.428571429; - text-align: center; - text-shadow: 0 1px 0 #fff; - vertical-align: middle; - background-color: #eeeeee; - border: solid #cccccc; - border-width: 1px 0; - margin-left: -5px; - margin-right: -5px; -} -.datepicker.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - float: left; - display: none; - min-width: 160px; - list-style: none; - background-color: #ffffff; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 5px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - -webkit-background-clip: padding-box; - -moz-background-clip: padding; - background-clip: padding-box; - *border-right-width: 2px; - *border-bottom-width: 2px; - color: #333333; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 13px; - line-height: 1.428571429; -} -.datepicker.dropdown-menu th, -.datepicker.dropdown-menu td { - padding: 4px 5px; -} diff --git a/public/css/gogs.min.css b/public/css/gogs.min.css index 1158fefa6..3d634bd27 100644 --- a/public/css/gogs.min.css +++ b/public/css/gogs.min.css @@ -1 +1 @@ -@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons)format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -87px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%;padding:.7em 0}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .ui.secondary.menu{height:30px}.following.bar .column .menu{margin-top:0}.following.bar .brand{float:left;margin-right:5px}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .user.avatar{padding:0;margin-top:1px}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;opacity:1!important;text-align:center}.ui.left{float:left}.ui.right{float:right}footer{margin-top:40px!important;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .fa{width:16px;text-align:center;color:#428bca}footer .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.text-error{color:#d95c5c!important}.img-1{width:2px;height:2px}.img-2{width:4px;height:4px}.img-3{width:6px;height:6px}.img-4{width:8px;height:8px}.img-5{width:10px;height:10px}.img-6{width:12px;height:12px}.img-7{width:14px;height:14px}.img-8{width:16px;height:16px}.img-9{width:18px;height:18px}.img-10{width:20px;height:20px}.img-11{width:22px;height:22px}.img-12{width:24px;height:24px}.img-13{width:26px;height:26px}.img-14{width:28px;height:28px}.img-15{width:30px;height:30px}.img-16{width:32px;height:32px}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install .attached.header{background:#f0f0f0}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.repository{padding-top:15px;padding-bottom:120px}.repository .head{height:75px;padding-top:20px;background-color:#FCFCFC}.repository .head .mega-octicon{width:30px}.repository .head .fork-flag,.repository .head a{font-weight:300}.repository .head .ui.label{margin-top:5px;vertical-align:top}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .head .button{margin-left:10px}.repository .head .button i{margin-right:5px}.repository .head .num{font-weight:700}.repository .head .octicon{height:5px}.repository .navbar{height:60px;padding-top:20px}.repository .navbar .ui.secondary.menu .item{margin-left:-10px;margin-top:-7px}.repository .navbar .ui.secondary.menu .item>.input .color-picker,.repository .navbar .ui.secondary.menu .item>.input .new-label-input{background-color:#fff;border:1px solid rgba(0,0,0,.15)}.repository .navbar .ui.secondary.menu .item .new-label-input{width:150px}.repository .navbar .ui.secondary.menu .item .color-picker{height:35px;width:auto;padding-left:30px}.repository .navbar .ui.secondary.menu .item .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.repository .navbar .ui.secondary.menu .item.precolors{padding-left:0;padding-right:0;margin-right:10px;width:120px}.repository .navbar .ui.secondary.menu .item.precolors .color{float:left;width:15px;height:15px}.repository .filter.menu .label.color{margin-left:17px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto}.repository .type.item .menu{right:0!important;left:auto!important}.repository .page.buttons{padding-top:15px}.repository .issue.list{clear:both;list-style:none}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .label.list{clear:both;list-style:none}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{clear:both;list-style:none}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.edit-label.modal .color-picker{margin-top:-8px!important;height:35px;width:auto!important;padding-left:30px!important}.edit-label.modal .minicolors-swatch.minicolors-sprite{top:1px;left:10px;width:15px;height:15px}.edit-label.modal .precolors{margin-bottom:-11px!important;padding-left:0!important;padding-right:0!important;margin-right:10px!important;width:120px!important}.edit-label.modal .precolors .color{float:left;margin:0!important;width:15px;height:15px} \ No newline at end of file +@font-face{font-family:octicons;src:url(../fonts/octicons.eot?#iefix&v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('embedded-opentype'),url(../fonts/octicons.woff?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('woff'),url(../fonts/octicons.ttf?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6)format('truetype'),url(../fonts/octicons.svg?v=345f8bad9c5003db196d08f05e7f030fd2a32ff6#octicons)format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-alignment-align:before{content:'\f08a'}.octicon-alignment-aligned-to:before{content:'\f08e'}.octicon-alignment-unalign:before{content:'\f08b'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beer:before{content:'\f069'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-color-mode:before{content:'\f065'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hourglass:before{content:'\f09e'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-jersey:before{content:'\f019'}.octicon-jump-down:before{content:'\f072'}.octicon-jump-left:before{content:'\f0a5'}.octicon-jump-right:before{content:'\f0a6'}.octicon-jump-up:before{content:'\f073'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-microscope:before{content:'\f089'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-move-down:before{content:'\f0a8'}.octicon-move-left:before{content:'\f074'}.octicon-move-right:before{content:'\f0a9'}.octicon-move-up:before{content:'\f0a7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-playback-fast-forward:before{content:'\f0bd'}.octicon-playback-pause:before{content:'\f0bb'}.octicon-playback-play:before{content:'\f0bf'}.octicon-playback-rewind:before{content:'\f0bc'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-podium:before{content:'\f0af'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-puzzle:before{content:'\f0c0'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-screen-full:before{content:'\f066'}.octicon-screen-normal:before{content:'\f067'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-split:before{content:'\f0c6'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-steps:before{content:'\f0c7'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-versions:before{content:'\f064'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body{font-family:'Helvetica Neue',Arial,Helvetica,sans-serif,'微软雅黑';background-color:#FAFAFA}img{border-radius:3px}.full.height{padding:0;margin:0 0 -87px 0;min-height:100%}.following.bar{z-index:900;left:0;width:100%;padding:.7em 0}.following.bar.light{background-color:#fff;border-bottom:1px solid #DDD;box-shadow:0 2px 3px rgba(0,0,0,.04)}.following.bar .ui.secondary.menu{height:30px}.following.bar .column .menu{margin-top:0}.following.bar .brand{float:left;margin-right:5px}.following.bar .head.link.item{padding-right:0!important}.following.bar .head.link.item .dropdown.icon,.following.bar .head.link.item .menu .octicon{margin-right:5px}.following.bar .user.avatar{padding:0;margin-top:1px}.following.bar .searchbox{background-color:#f4f4f4!important}.following.bar .searchbox:focus{background-color:#e9e9e9!important}.following.bar .octicon{width:16px;opacity:1!important;text-align:center}.ui.left{float:left}.ui.right{float:right}footer{margin-top:40px!important;background-color:#fff;border-top:1px solid #d6d6d6;clear:both;width:100%;color:#888}footer .fa{width:16px;text-align:center;color:#428bca}footer .ui.language.dropdown{z-index:10000}footer .links>*{border-left:1px solid #d6d6d6;padding-left:8px;margin-left:5px}footer .links>:first-child{border-left:none}.hide{display:none}.center{text-align:center}.text-error{color:#d95c5c!important}.img-1{width:2px;height:2px}.img-2{width:4px;height:4px}.img-3{width:6px;height:6px}.img-4{width:8px;height:8px}.img-5{width:10px;height:10px}.img-6{width:12px;height:12px}.img-7{width:14px;height:14px}.img-8{width:16px;height:16px}.img-9{width:18px;height:18px}.img-10{width:20px;height:20px}.img-11{width:22px;height:22px}.img-12{width:24px;height:24px}.img-13{width:26px;height:26px}.img-14{width:28px;height:28px}.img-15{width:30px;height:30px}.img-16{width:32px;height:32px}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.home{padding-bottom:120px}.home .logo{max-width:250px}.home .hero h1,.home .hero h2{font-family:'PT Sans Narrow',sans-serif}.home .hero h1{font-size:7em}.home .hero h2{font-size:4em}.home .hero .octicon{color:#d9453d;font-size:60px;margin-right:10px}.home .hero.header{font-size:24px}.home p.large{font-size:20px}.home .stackable{padding-top:30px}.home a{color:#d9453d}.install{padding-top:45px;padding-bottom:120px}.install .attached.header{background:#f0f0f0}.install form label{text-align:right;width:40%!important}.install form input{width:35%!important}.install form .field{text-align:left}.install form .field .help{margin-left:41%}.install form .field.optional .title{margin-left:38%}.install .ui .checkbox{margin-left:40%!important}.install .ui .checkbox label{width:auto!important}.form .help{color:#999;padding-top:.6em;padding-bottom:.6em;display:inline-block}.repository{padding-top:15px;padding-bottom:120px}.repository .head{height:75px;padding-top:20px;background-color:#FCFCFC}.repository .head .mega-octicon{width:30px}.repository .head .fork-flag,.repository .head a{font-weight:300}.repository .head .ui.label{margin-top:5px;vertical-align:top}.repository .head .fork-flag{margin-left:38px;display:block;font-size:11px;line-height:10px;white-space:nowrap}.repository .head .button{margin-left:10px}.repository .head .button i{margin-right:5px}.repository .head .num{font-weight:700}.repository .head .octicon{height:5px}.repository .navbar{height:60px;padding-top:20px}.repository .navbar .ui.secondary.menu .item{margin-left:-10px;margin-top:-7px}.repository .navbar .ui.secondary.menu .item>.input .color-picker,.repository .navbar .ui.secondary.menu .item>.input .new-label-input{background-color:#fff;border:1px solid rgba(0,0,0,.15)}.repository .navbar .ui.secondary.menu .item.input{margin-right:-7px}.repository .navbar .ui.secondary.menu .item .new-label-input{width:150px}.repository .navbar .ui.secondary.menu .item .color-picker{height:35px;width:auto;padding-left:30px}.repository .navbar .ui.secondary.menu .item .minicolors-swatch.minicolors-sprite{top:10px;left:10px;width:15px;height:15px}.repository .navbar .ui.secondary.menu .item.precolors{padding-left:0;padding-right:0;margin-right:10px;width:120px}.repository .navbar .ui.secondary.menu .item.precolors .color{float:left;width:15px;height:15px}.repository .filter.menu .label.color{margin-left:17px;padding:0 8px}.repository .filter.menu .octicon{float:left;margin-left:-5px;margin-right:-7px}.repository .filter.menu .menu{max-height:300px;overflow-x:auto}.repository .type.item .menu{right:0!important;left:auto!important}.repository .page.buttons{padding-top:15px}.repository .issue.list{clear:both;list-style:none}.repository .issue.list>.item{padding-top:15px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .issue.list>.item .title{color:#444;font-size:15px;font-weight:700;margin:0 6px}.repository .issue.list>.item .title:hover{color:#000}.repository .issue.list>.item .comment{padding-right:10px;color:#666}.repository .issue.list>.item .desc{padding-top:5px;color:#999}.repository .label.list{clear:both;list-style:none}.repository .label.list .item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .label.list .item a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .label.list .item a:hover{color:#000}.repository .label.list .item a.open-issues{margin-right:30px}.repository .milestone.list{clear:both;list-style:none}.repository .milestone.list>.item{padding-top:10px;padding-bottom:10px;border-bottom:1px dashed #AAA}.repository .milestone.list>.item>a{padding-top:5px;padding-right:10px;color:#000}.repository .milestone.list>.item>a:hover{color:#4078c0}.repository .milestone.list>.item .ui.progress{width:40%;padding:0;border:0;margin:0}.repository .milestone.list>.item .ui.progress .bar{height:20px}.repository .milestone.list>.item .meta{color:#999;padding-top:5px}.repository .milestone.list>.item .meta .issue-stats .octicon{padding-left:5px}.repository .milestone.list>.item .meta .overdue{color:red}.repository .milestone.list>.item .operate{margin-top:-15px}.repository .milestone.list>.item .operate>a{font-size:15px;padding-top:5px;padding-right:10px;color:#666}.repository .milestone.list>.item .operate>a:hover{color:#000}.repository .milestone.list>.item .content{padding-top:10px}.repository.new.milestone textarea{height:200px}.edit-label.modal .color-picker{margin-top:-8px!important;height:35px;width:auto!important;padding-left:30px!important}.edit-label.modal .minicolors-swatch.minicolors-sprite{top:1px;left:10px;width:15px;height:15px}.edit-label.modal .precolors{margin-bottom:-11px!important;padding-left:0!important;padding-right:0!important;margin-right:10px!important;width:120px!important}.edit-label.modal .precolors .color{float:left;margin:0!important;width:15px;height:15px} \ No newline at end of file diff --git a/public/css/jquery.datetimepicker.css b/public/css/jquery.datetimepicker.css new file mode 100644 index 000000000..a26fccec4 --- /dev/null +++ b/public/css/jquery.datetimepicker.css @@ -0,0 +1,545 @@ +.xdsoft_datetimepicker { + box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506); + background: #fff; + border-bottom: 1px solid #bbb; + border-left: 1px solid #ccc; + border-right: 1px solid #ccc; + border-top: 1px solid #ccc; + color: #333; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + padding: 8px; + padding-left: 0; + padding-top: 2px; + position: absolute; + z-index: 9999; + -moz-box-sizing: border-box; + box-sizing: border-box; + display: none; +} + +.xdsoft_datetimepicker iframe { + position: absolute; + left: 0; + top: 0; + width: 75px; + height: 210px; + background: transparent; + border: none; +} + +/*For IE8 or lower*/ +.xdsoft_datetimepicker button { + border: none !important; +} + +.xdsoft_noselect { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; +} + +.xdsoft_noselect::selection { background: transparent } +.xdsoft_noselect::-moz-selection { background: transparent } + +.xdsoft_datetimepicker.xdsoft_inline { + display: inline-block; + position: static; + box-shadow: none; +} + +.xdsoft_datetimepicker * { + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0; + margin: 0; +} + +.xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker { + display: none; +} + +.xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active { + display: block; +} + +.xdsoft_datetimepicker .xdsoft_datepicker { + width: 224px; + float: left; + margin-left: 8px; +} + +.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker { + width: 256px; +} + +.xdsoft_datetimepicker .xdsoft_timepicker { + width: 58px; + float: left; + text-align: center; + margin-left: 8px; + margin-top: 0; +} + +.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker { + margin-top: 8px; + margin-bottom: 3px +} + +.xdsoft_datetimepicker .xdsoft_mounthpicker { + position: relative; + text-align: center; +} + +.xdsoft_datetimepicker .xdsoft_label i, +.xdsoft_datetimepicker .xdsoft_prev, +.xdsoft_datetimepicker .xdsoft_next, +.xdsoft_datetimepicker .xdsoft_today_button { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC); +} + +.xdsoft_datetimepicker .xdsoft_label i { + opacity: 0.5; + background-position: -92px -19px; + display: inline-block; + width: 9px; + height: 20px; + vertical-align: middle; +} + +.xdsoft_datetimepicker .xdsoft_prev { + float: left; + background-position: -20px 0; +} +.xdsoft_datetimepicker .xdsoft_today_button { + float: left; + background-position: -70px 0; + margin-left: 5px; +} + +.xdsoft_datetimepicker .xdsoft_next { + float: right; + background-position: 0 0; +} + +.xdsoft_datetimepicker .xdsoft_next, +.xdsoft_datetimepicker .xdsoft_prev , +.xdsoft_datetimepicker .xdsoft_today_button { + background-color: transparent; + background-repeat: no-repeat; + border: 0 none; + cursor: pointer; + display: block; + height: 30px; + opacity: 0.5; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + outline: medium none; + overflow: hidden; + padding: 0; + position: relative; + text-indent: 100%; + white-space: nowrap; + width: 20px; + min-width: 0; +} + +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next { + float: none; + background-position: -40px -15px; + height: 15px; + width: 30px; + display: block; + margin-left: 14px; + margin-top: 7px; +} + +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev { + background-position: -40px 0; + margin-bottom: 7px; + margin-top: 0; +} + +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box { + height: 151px; + overflow: hidden; + border-bottom: 1px solid #ddd; +} + +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div { + background: #f5f5f5; + border-top: 1px solid #ddd; + color: #666; + font-size: 12px; + text-align: center; + border-collapse: collapse; + cursor: pointer; + border-bottom-width: 0; + height: 25px; + line-height: 25px; +} + +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div > div:first-child { + border-top-width: 0; +} + +.xdsoft_datetimepicker .xdsoft_today_button:hover, +.xdsoft_datetimepicker .xdsoft_next:hover, +.xdsoft_datetimepicker .xdsoft_prev:hover { + opacity: 1; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; +} + +.xdsoft_datetimepicker .xdsoft_label { + display: inline; + position: relative; + z-index: 9999; + margin: 0; + padding: 5px 3px; + font-size: 14px; + line-height: 20px; + font-weight: bold; + background-color: #fff; + float: left; + width: 182px; + text-align: center; + cursor: pointer; +} + +.xdsoft_datetimepicker .xdsoft_label:hover>span { + text-decoration: underline; +} + +.xdsoft_datetimepicker .xdsoft_label:hover i { + opacity: 1.0; +} + +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select { + border: 1px solid #ccc; + position: absolute; + right: 0; + top: 30px; + z-index: 101; + display: none; + background: #fff; + max-height: 160px; + overflow-y: hidden; +} + +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect{ right: -7px } +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect{ right: 2px } +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover { + color: #fff; + background: #ff8000; +} + +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option { + padding: 2px 10px 2px 5px; + text-decoration: none !important; +} + +.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current { + background: #33aaff; + box-shadow: #178fe5 0 1px 3px 0 inset; + color: #fff; + font-weight: 700; +} + +.xdsoft_datetimepicker .xdsoft_month { + width: 100px; + text-align: right; +} + +.xdsoft_datetimepicker .xdsoft_calendar { + clear: both; +} + +.xdsoft_datetimepicker .xdsoft_year{ + width: 48px; + margin-left: 5px; +} + +.xdsoft_datetimepicker .xdsoft_calendar table { + border-collapse: collapse; + width: 100%; + +} + +.xdsoft_datetimepicker .xdsoft_calendar td > div { + padding-right: 5px; +} + +.xdsoft_datetimepicker .xdsoft_calendar th { + height: 25px; +} + +.xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th { + width: 14.2857142%; + background: #f5f5f5; + border: 1px solid #ddd; + color: #666; + font-size: 12px; + text-align: right; + vertical-align: middle; + padding: 0; + border-collapse: collapse; + cursor: pointer; + height: 25px; +} +.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th { + width: 12.5%; +} + +.xdsoft_datetimepicker .xdsoft_calendar th { + background: #f1f1f1; +} + +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today { + color: #33aaff; +} + +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default { + background: #ffe9d2; + box-shadow: #ffb871 0 1px 4px 0 inset; + color: #000; +} +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint { + background: #c1ffc9; + box-shadow: #00dd1c 0 1px 4px 0 inset; + color: #000; +} + +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current { + background: #33aaff; + box-shadow: #178fe5 0 1px 3px 0 inset; + color: #fff; + font-weight: 700; +} + +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month, +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled, +.xdsoft_datetimepicker .xdsoft_time_box >div >div.xdsoft_disabled { + opacity: 0.5; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + cursor: default; +} + +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled { + opacity: 0.2; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; +} + +.xdsoft_datetimepicker .xdsoft_calendar td:hover, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div:hover { + color: #fff !important; + background: #ff8000 !important; + box-shadow: none !important; +} + +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current.xdsoft_disabled:hover { + background: #33aaff !important; + box-shadow: #178fe5 0 1px 3px 0 inset !important; + color: #fff !important; +} + +.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover, +.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_disabled:hover { + color: inherit !important; + background: inherit !important; + box-shadow: inherit !important; +} + +.xdsoft_datetimepicker .xdsoft_calendar th { + font-weight: 700; + text-align: center; + color: #999; + cursor: default; +} + +.xdsoft_datetimepicker .xdsoft_copyright { + color: #ccc !important; + font-size: 10px; + clear: both; + float: none; + margin-left: 8px; +} + +.xdsoft_datetimepicker .xdsoft_copyright a { color: #eee !important } +.xdsoft_datetimepicker .xdsoft_copyright a:hover { color: #aaa !important } + +.xdsoft_time_box { + position: relative; + border: 1px solid #ccc; +} +.xdsoft_scrollbar >.xdsoft_scroller { + background: #ccc !important; + height: 20px; + border-radius: 3px; +} +.xdsoft_scrollbar { + position: absolute; + width: 7px; + right: 0; + top: 0; + bottom: 0; + cursor: pointer; +} +.xdsoft_scroller_box { + position: relative; +} + +.xdsoft_datetimepicker.xdsoft_dark { + box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506); + background: #000; + border-bottom: 1px solid #444; + border-left: 1px solid #333; + border-right: 1px solid #333; + border-top: 1px solid #333; + color: #ccc; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box { + border-bottom: 1px solid #222; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div { + background: #0a0a0a; + border-top: 1px solid #222; + color: #999; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label { + background-color: #000; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select { + border: 1px solid #333; + background: #000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover { + color: #000; + background: #007fff; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current { + background: #cc5500; + box-shadow: #b03e00 0 1px 3px 0 inset; + color: #000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button { + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==); +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th { + background: #0a0a0a; + border: 1px solid #222; + color: #999; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th { + background: #0e0e0e; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today { + color: #cc5500; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default { + background: #ffe9d2; + box-shadow: #ffb871 0 1px 4px 0 inset; + color:#000; +} +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint { + background: #c1ffc9; + box-shadow: #00dd1c 0 1px 4px 0 inset; + color:#000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current { + background: #cc5500; + box-shadow: #b03e00 0 1px 3px 0 inset; + color: #000; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover, +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div:hover { + color: #000 !important; + background: #007fff !important; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th { + color: #666; +} + +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright { color: #333 !important } +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a { color: #111 !important } +.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover { color: #555 !important } + +.xdsoft_dark .xdsoft_time_box { + border: 1px solid #333; +} + +.xdsoft_dark .xdsoft_scrollbar >.xdsoft_scroller { + background: #333 !important; +} +.xdsoft_datetimepicker .xdsoft_save_selected { + display: block; + border: 1px solid #dddddd !important; + margin-top: 5px; + width: 100%; + color: #454551; + font-size: 13px; +} +.xdsoft_datetimepicker .blue-gradient-button { + font-family: "museo-sans", "Book Antiqua", sans-serif; + font-size: 12px; + font-weight: 300; + color: #82878c; + height: 28px; + position: relative; + padding: 4px 17px 4px 33px; + border: 1px solid #d7d8da; + background: -moz-linear-gradient(top, #fff 0%, #f4f8fa 73%); + /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(73%, #f4f8fa)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #fff 0%, #f4f8fa 73%); + /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #fff 0%, #f4f8fa 73%); + /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #fff 0%, #f4f8fa 73%); + /* IE10+ */ + background: linear-gradient(to bottom, #fff 0%, #f4f8fa 73%); + /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#f4f8fa',GradientType=0 ); +/* IE6-9 */ +} +.xdsoft_datetimepicker .blue-gradient-button:hover, .xdsoft_datetimepicker .blue-gradient-button:focus, .xdsoft_datetimepicker .blue-gradient-button:hover span, .xdsoft_datetimepicker .blue-gradient-button:focus span { + color: #454551; + background: -moz-linear-gradient(top, #f4f8fa 0%, #FFF 73%); + /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4f8fa), color-stop(73%, #FFF)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #f4f8fa 0%, #FFF 73%); + /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #f4f8fa 0%, #FFF 73%); + /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #f4f8fa 0%, #FFF 73%); + /* IE10+ */ + background: linear-gradient(to bottom, #f4f8fa 0%, #FFF 73%); + /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f8fa', endColorstr='#FFF',GradientType=0 ); + /* IE6-9 */ +} diff --git a/public/js/bootstrap-datepicker.js b/public/js/bootstrap-datepicker.js deleted file mode 100644 index f17de6d1c..000000000 --- a/public/js/bootstrap-datepicker.js +++ /dev/null @@ -1,1671 +0,0 @@ -/* ========================================================= - * bootstrap-datepicker.js - * Repo: https://github.com/eternicode/bootstrap-datepicker/ - * Demo: http://eternicode.github.io/bootstrap-datepicker/ - * Docs: http://bootstrap-datepicker.readthedocs.org/ - * Forked from http://www.eyecon.ro/bootstrap-datepicker - * ========================================================= - * Started by Stefan Petre; improvements by Andrew Rowls + contributors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================= */ - -(function($, undefined){ - - var $window = $(window); - - function UTCDate(){ - return new Date(Date.UTC.apply(Date, arguments)); - } - function UTCToday(){ - var today = new Date(); - return UTCDate(today.getFullYear(), today.getMonth(), today.getDate()); - } - function alias(method){ - return function(){ - return this[method].apply(this, arguments); - }; - } - - var DateArray = (function(){ - var extras = { - get: function(i){ - return this.slice(i)[0]; - }, - contains: function(d){ - // Array.indexOf is not cross-browser; - // $.inArray doesn't work with Dates - var val = d && d.valueOf(); - for (var i=0, l=this.length; i < l; i++) - if (this[i].valueOf() === val) - return i; - return -1; - }, - remove: function(i){ - this.splice(i,1); - }, - replace: function(new_array){ - if (!new_array) - return; - if (!$.isArray(new_array)) - new_array = [new_array]; - this.clear(); - this.push.apply(this, new_array); - }, - clear: function(){ - this.splice(0); - }, - copy: function(){ - var a = new DateArray(); - a.replace(this); - return a; - } - }; - - return function(){ - var a = []; - a.push.apply(a, arguments); - $.extend(a, extras); - return a; - }; - })(); - - - // Picker object - - var Datepicker = function(element, options){ - this.dates = new DateArray(); - this.viewDate = UTCToday(); - this.focusDate = null; - - this._process_options(options); - - this.element = $(element); - this.isInline = false; - this.isInput = this.element.is('input'); - this.component = this.element.is('.date') ? this.element.find('.add-on, .input-group-addon, .btn') : false; - this.hasInput = this.component && this.element.find('input').length; - if (this.component && this.component.length === 0) - this.component = false; - - this.picker = $(DPGlobal.template); - this._buildEvents(); - this._attachEvents(); - - if (this.isInline){ - this.picker.addClass('datepicker-inline').appendTo(this.element); - } - else { - this.picker.addClass('datepicker-dropdown dropdown-menu'); - } - - if (this.o.rtl){ - this.picker.addClass('datepicker-rtl'); - } - - this.viewMode = this.o.startView; - - if (this.o.calendarWeeks) - this.picker.find('tfoot th.today') - .attr('colspan', function(i, val){ - return parseInt(val) + 1; - }); - - this._allow_update = false; - - this.setStartDate(this._o.startDate); - this.setEndDate(this._o.endDate); - this.setDaysOfWeekDisabled(this.o.daysOfWeekDisabled); - - this.fillDow(); - this.fillMonths(); - - this._allow_update = true; - - this.update(); - this.showMode(); - - if (this.isInline){ - this.show(); - } - }; - - Datepicker.prototype = { - constructor: Datepicker, - - _process_options: function(opts){ - // Store raw options for reference - this._o = $.extend({}, this._o, opts); - // Processed options - var o = this.o = $.extend({}, this._o); - - // Check if "de-DE" style date is available, if not language should - // fallback to 2 letter code eg "de" - var lang = o.language; - if (!dates[lang]){ - lang = lang.split('-')[0]; - if (!dates[lang]) - lang = defaults.language; - } - o.language = lang; - - switch (o.startView){ - case 2: - case 'decade': - o.startView = 2; - break; - case 1: - case 'year': - o.startView = 1; - break; - default: - o.startView = 0; - } - - switch (o.minViewMode){ - case 1: - case 'months': - o.minViewMode = 1; - break; - case 2: - case 'years': - o.minViewMode = 2; - break; - default: - o.minViewMode = 0; - } - - o.startView = Math.max(o.startView, o.minViewMode); - - // true, false, or Number > 0 - if (o.multidate !== true){ - o.multidate = Number(o.multidate) || false; - if (o.multidate !== false) - o.multidate = Math.max(0, o.multidate); - else - o.multidate = 1; - } - o.multidateSeparator = String(o.multidateSeparator); - - o.weekStart %= 7; - o.weekEnd = ((o.weekStart + 6) % 7); - - var format = DPGlobal.parseFormat(o.format); - if (o.startDate !== -Infinity){ - if (!!o.startDate){ - if (o.startDate instanceof Date) - o.startDate = this._local_to_utc(this._zero_time(o.startDate)); - else - o.startDate = DPGlobal.parseDate(o.startDate, format, o.language); - } - else { - o.startDate = -Infinity; - } - } - if (o.endDate !== Infinity){ - if (!!o.endDate){ - if (o.endDate instanceof Date) - o.endDate = this._local_to_utc(this._zero_time(o.endDate)); - else - o.endDate = DPGlobal.parseDate(o.endDate, format, o.language); - } - else { - o.endDate = Infinity; - } - } - - o.daysOfWeekDisabled = o.daysOfWeekDisabled||[]; - if (!$.isArray(o.daysOfWeekDisabled)) - o.daysOfWeekDisabled = o.daysOfWeekDisabled.split(/[,\s]*/); - o.daysOfWeekDisabled = $.map(o.daysOfWeekDisabled, function(d){ - return parseInt(d, 10); - }); - - var plc = String(o.orientation).toLowerCase().split(/\s+/g), - _plc = o.orientation.toLowerCase(); - plc = $.grep(plc, function(word){ - return (/^auto|left|right|top|bottom$/).test(word); - }); - o.orientation = {x: 'auto', y: 'auto'}; - if (!_plc || _plc === 'auto') - ; // no action - else if (plc.length === 1){ - switch (plc[0]){ - case 'top': - case 'bottom': - o.orientation.y = plc[0]; - break; - case 'left': - case 'right': - o.orientation.x = plc[0]; - break; - } - } - else { - _plc = $.grep(plc, function(word){ - return (/^left|right$/).test(word); - }); - o.orientation.x = _plc[0] || 'auto'; - - _plc = $.grep(plc, function(word){ - return (/^top|bottom$/).test(word); - }); - o.orientation.y = _plc[0] || 'auto'; - } - }, - _events: [], - _secondaryEvents: [], - _applyEvents: function(evs){ - for (var i=0, el, ch, ev; i < evs.length; i++){ - el = evs[i][0]; - if (evs[i].length === 2){ - ch = undefined; - ev = evs[i][1]; - } - else if (evs[i].length === 3){ - ch = evs[i][1]; - ev = evs[i][2]; - } - el.on(ev, ch); - } - }, - _unapplyEvents: function(evs){ - for (var i=0, el, ev, ch; i < evs.length; i++){ - el = evs[i][0]; - if (evs[i].length === 2){ - ch = undefined; - ev = evs[i][1]; - } - else if (evs[i].length === 3){ - ch = evs[i][1]; - ev = evs[i][2]; - } - el.off(ev, ch); - } - }, - _buildEvents: function(){ - if (this.isInput){ // single input - this._events = [ - [this.element, { - focus: $.proxy(this.show, this), - keyup: $.proxy(function(e){ - if ($.inArray(e.keyCode, [27,37,39,38,40,32,13,9]) === -1) - this.update(); - }, this), - keydown: $.proxy(this.keydown, this) - }] - ]; - } - else if (this.component && this.hasInput){ // component: input + button - this._events = [ - // For components that are not readonly, allow keyboard nav - [this.element.find('input'), { - focus: $.proxy(this.show, this), - keyup: $.proxy(function(e){ - if ($.inArray(e.keyCode, [27,37,39,38,40,32,13,9]) === -1) - this.update(); - }, this), - keydown: $.proxy(this.keydown, this) - }], - [this.component, { - click: $.proxy(this.show, this) - }] - ]; - } - else if (this.element.is('div')){ // inline datepicker - this.isInline = true; - } - else { - this._events = [ - [this.element, { - click: $.proxy(this.show, this) - }] - ]; - } - this._events.push( - // Component: listen for blur on element descendants - [this.element, '*', { - blur: $.proxy(function(e){ - this._focused_from = e.target; - }, this) - }], - // Input: listen for blur on element - [this.element, { - blur: $.proxy(function(e){ - this._focused_from = e.target; - }, this) - }] - ); - - this._secondaryEvents = [ - [this.picker, { - click: $.proxy(this.click, this) - }], - [$(window), { - resize: $.proxy(this.place, this) - }], - [$(document), { - 'mousedown touchstart': $.proxy(function(e){ - // Clicked outside the datepicker, hide it - if (!( - this.element.is(e.target) || - this.element.find(e.target).length || - this.picker.is(e.target) || - this.picker.find(e.target).length - )){ - this.hide(); - } - }, this) - }] - ]; - }, - _attachEvents: function(){ - this._detachEvents(); - this._applyEvents(this._events); - }, - _detachEvents: function(){ - this._unapplyEvents(this._events); - }, - _attachSecondaryEvents: function(){ - this._detachSecondaryEvents(); - this._applyEvents(this._secondaryEvents); - }, - _detachSecondaryEvents: function(){ - this._unapplyEvents(this._secondaryEvents); - }, - _trigger: function(event, altdate){ - var date = altdate || this.dates.get(-1), - local_date = this._utc_to_local(date); - - this.element.trigger({ - type: event, - date: local_date, - dates: $.map(this.dates, this._utc_to_local), - format: $.proxy(function(ix, format){ - if (arguments.length === 0){ - ix = this.dates.length - 1; - format = this.o.format; - } - else if (typeof ix === 'string'){ - format = ix; - ix = this.dates.length - 1; - } - format = format || this.o.format; - var date = this.dates.get(ix); - return DPGlobal.formatDate(date, format, this.o.language); - }, this) - }); - }, - - show: function(){ - if (!this.isInline) - this.picker.appendTo('body'); - this.picker.show(); - this.place(); - this._attachSecondaryEvents(); - this._trigger('show'); - }, - - hide: function(){ - if (this.isInline) - return; - if (!this.picker.is(':visible')) - return; - this.focusDate = null; - this.picker.hide().detach(); - this._detachSecondaryEvents(); - this.viewMode = this.o.startView; - this.showMode(); - - if ( - this.o.forceParse && - ( - this.isInput && this.element.val() || - this.hasInput && this.element.find('input').val() - ) - ) - this.setValue(); - this._trigger('hide'); - }, - - remove: function(){ - this.hide(); - this._detachEvents(); - this._detachSecondaryEvents(); - this.picker.remove(); - delete this.element.data().datepicker; - if (!this.isInput){ - delete this.element.data().date; - } - }, - - _utc_to_local: function(utc){ - return utc && new Date(utc.getTime() + (utc.getTimezoneOffset()*60000)); - }, - _local_to_utc: function(local){ - return local && new Date(local.getTime() - (local.getTimezoneOffset()*60000)); - }, - _zero_time: function(local){ - return local && new Date(local.getFullYear(), local.getMonth(), local.getDate()); - }, - _zero_utc_time: function(utc){ - return utc && new Date(Date.UTC(utc.getUTCFullYear(), utc.getUTCMonth(), utc.getUTCDate())); - }, - - getDates: function(){ - return $.map(this.dates, this._utc_to_local); - }, - - getUTCDates: function(){ - return $.map(this.dates, function(d){ - return new Date(d); - }); - }, - - getDate: function(){ - return this._utc_to_local(this.getUTCDate()); - }, - - getUTCDate: function(){ - return new Date(this.dates.get(-1)); - }, - - setDates: function(){ - var args = $.isArray(arguments[0]) ? arguments[0] : arguments; - this.update.apply(this, args); - this._trigger('changeDate'); - this.setValue(); - }, - - setUTCDates: function(){ - var args = $.isArray(arguments[0]) ? arguments[0] : arguments; - this.update.apply(this, $.map(args, this._utc_to_local)); - this._trigger('changeDate'); - this.setValue(); - }, - - setDate: alias('setDates'), - setUTCDate: alias('setUTCDates'), - - setValue: function(){ - var formatted = this.getFormattedDate(); - if (!this.isInput){ - if (this.component){ - this.element.find('input').val(formatted).change(); - } - } - else { - this.element.val(formatted).change(); - } - }, - - getFormattedDate: function(format){ - if (format === undefined) - format = this.o.format; - - var lang = this.o.language; - return $.map(this.dates, function(d){ - return DPGlobal.formatDate(d, format, lang); - }).join(this.o.multidateSeparator); - }, - - setStartDate: function(startDate){ - this._process_options({startDate: startDate}); - this.update(); - this.updateNavArrows(); - }, - - setEndDate: function(endDate){ - this._process_options({endDate: endDate}); - this.update(); - this.updateNavArrows(); - }, - - setDaysOfWeekDisabled: function(daysOfWeekDisabled){ - this._process_options({daysOfWeekDisabled: daysOfWeekDisabled}); - this.update(); - this.updateNavArrows(); - }, - - place: function(){ - if (this.isInline) - return; - var calendarWidth = this.picker.outerWidth(), - calendarHeight = this.picker.outerHeight(), - visualPadding = 10, - windowWidth = $window.width(), - windowHeight = $window.height(), - scrollTop = $window.scrollTop(); - - var zIndex = parseInt(this.element.parents().filter(function(){ - return $(this).css('z-index') !== 'auto'; - }).first().css('z-index'))+10; - var offset = this.component ? this.component.parent().offset() : this.element.offset(); - var height = this.component ? this.component.outerHeight(true) : this.element.outerHeight(false); - var width = this.component ? this.component.outerWidth(true) : this.element.outerWidth(false); - var left = offset.left, - top = offset.top; - - this.picker.removeClass( - 'datepicker-orient-top datepicker-orient-bottom '+ - 'datepicker-orient-right datepicker-orient-left' - ); - - if (this.o.orientation.x !== 'auto'){ - this.picker.addClass('datepicker-orient-' + this.o.orientation.x); - if (this.o.orientation.x === 'right') - left -= calendarWidth - width; - } - // auto x orientation is best-placement: if it crosses a window - // edge, fudge it sideways - else { - // Default to left - this.picker.addClass('datepicker-orient-left'); - if (offset.left < 0) - left -= offset.left - visualPadding; - else if (offset.left + calendarWidth > windowWidth) - left = windowWidth - calendarWidth - visualPadding; - } - - // auto y orientation is best-situation: top or bottom, no fudging, - // decision based on which shows more of the calendar - var yorient = this.o.orientation.y, - top_overflow, bottom_overflow; - if (yorient === 'auto'){ - top_overflow = -scrollTop + offset.top - calendarHeight; - bottom_overflow = scrollTop + windowHeight - (offset.top + height + calendarHeight); - if (Math.max(top_overflow, bottom_overflow) === bottom_overflow) - yorient = 'top'; - else - yorient = 'bottom'; - } - this.picker.addClass('datepicker-orient-' + yorient); - if (yorient === 'top') - top += height; - else - top -= calendarHeight + parseInt(this.picker.css('padding-top')); - - this.picker.css({ - top: top, - left: left, - zIndex: zIndex - }); - }, - - _allow_update: true, - update: function(){ - if (!this._allow_update) - return; - - var oldDates = this.dates.copy(), - dates = [], - fromArgs = false; - if (arguments.length){ - $.each(arguments, $.proxy(function(i, date){ - if (date instanceof Date) - date = this._local_to_utc(date); - dates.push(date); - }, this)); - fromArgs = true; - } - else { - dates = this.isInput - ? this.element.val() - : this.element.data('date') || this.element.find('input').val(); - if (dates && this.o.multidate) - dates = dates.split(this.o.multidateSeparator); - else - dates = [dates]; - delete this.element.data().date; - } - - dates = $.map(dates, $.proxy(function(date){ - return DPGlobal.parseDate(date, this.o.format, this.o.language); - }, this)); - dates = $.grep(dates, $.proxy(function(date){ - return ( - date < this.o.startDate || - date > this.o.endDate || - !date - ); - }, this), true); - this.dates.replace(dates); - - if (this.dates.length) - this.viewDate = new Date(this.dates.get(-1)); - else if (this.viewDate < this.o.startDate) - this.viewDate = new Date(this.o.startDate); - else if (this.viewDate > this.o.endDate) - this.viewDate = new Date(this.o.endDate); - - if (fromArgs){ - // setting date by clicking - this.setValue(); - } - else if (dates.length){ - // setting date by typing - if (String(oldDates) !== String(this.dates)) - this._trigger('changeDate'); - } - if (!this.dates.length && oldDates.length) - this._trigger('clearDate'); - - this.fill(); - }, - - fillDow: function(){ - var dowCnt = this.o.weekStart, - html = '
'; + } + + for (j = 0; j < 7; j += 1) { + table += ' | ' + options.i18n[options.lang].dayOfWeek[(j + options.dayOfWeekStart) % 7] + ' | '; + } + + table += '
---|---|
' + w + ' | '; + } + } + + table += '' +
+ ' ' + d + ' ' +
+ ' | ';
+
+ if (start.getDay() === options.dayOfWeekStartPrev) {
+ table += '