diff --git a/.travis.yml b/.travis.yml index 41246f6a30..bdb820c0f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,11 +3,9 @@ sudo: false language: go go: -- 1.8 +- 1.8.x go_import_path: github.com/prometheus/prometheus script: - make check_license style test - - diff --git a/CHANGELOG.md b/CHANGELOG.md index 9149f3a818..c748750355 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,72 @@ +## 1.6.1 / 2017-04-19 + +* [BUGFIX] Don't panic if storage has no FPs even after initial wait + +## 1.6.0 / 2017-04-14 + +* [CHANGE] Replaced the remote write implementations for various backends by a + generic write interface with example adapter implementation for various + backends. Note that both the previous and the current remote write + implementations are **experimental**. +* [FEATURE] New flag `-storage.local.target-heap-size` to tell Prometheus about + the desired heap size. This deprecates the flags + `-storage.local.memory-chunks` and `-storage.local.max-chunks-to-persist`, + which are kept for backward compatibility. +* [FEATURE] Add `check-metrics` to `promtool` to lint metric names. +* [FEATURE] Add Joyent Triton discovery. +* [FEATURE] `X-Prometheus-Scrape-Timeout-Seconds` header in HTTP scrape + requests. +* [FEATURE] Remote read interface, including example for InfluxDB. **Experimental.** +* [FEATURE] Enable Consul SD to connect via TLS. +* [FEATURE] Marathon SD supports multiple ports. +* [FEATURE] Marathon SD supports bearer token for authentication. +* [FEATURE] Custom timeout for queries. +* [FEATURE] Expose `buildQueryUrl` in `graph.js`. +* [FEATURE] Add `rickshawGraph` property to the graph object in console + templates. +* [FEATURE] New metrics exported by Prometheus itself: + * Summary `prometheus_engine_query_duration_seconds` + * Counter `prometheus_evaluator_iterations_missed_total` + * Counter `prometheus_evaluator_iterations_total` + * Gauge `prometheus_local_storage_open_head_chunks` + * Gauge `prometheus_local_storage_target_heap_size` +* [ENHANCEMENT] Reduce shut-down time by interrupting an ongoing checkpoint + before starting the final checkpoint. +* [ENHANCEMENT] Auto-tweak times between checkpoints to limit time spent in + checkpointing to 50%. +* [ENHANCEMENT] Improved crash recovery deals better with certain index + corruptions. +* [ENHANCEMENT] Graphing deals better with constant time series. +* [ENHANCEMENT] Retry remote writes on recoverable errors. +* [ENHANCEMENT] Evict unused chunk descriptors during crash recovery to limit + memory usage. +* [ENHANCEMENT] Smoother disk usage during series maintenance. +* [ENHANCEMENT] Targets on targets page sorted by instance within a job. +* [ENHANCEMENT] Sort labels in federation. +* [ENHANCEMENT] Set `GOGC=40` by default, which results in much better memory + utilization at the price of slightly higher CPU usage. If `GOGC` is set by + the user, it is still honored as usual. +* [ENHANCEMENT] Close head chunks after being idle for the duration of the + configured staleness delta. This helps to persist and evict head chunk of + stale series more quickly. +* [ENHANCEMENT] Stricter checking of relabel config. +* [ENHANCEMENT] Cache busters for static web content. +* [ENHANCEMENT] Send Prometheus-specific user-agent header during scrapes. +* [ENHANCEMENT] Improved performance of series retention cut-off. +* [ENHANCEMENT] Mitigate impact of non-atomic sample ingestion on + `histogram_quantile` by enforcing buckets to be monotonic. +* [ENHANCEMENT] Released binaries built with Go 1.8.1. +* [BUGFIX] Send `instance=""` with federation if `instance` not set. +* [BUGFIX] Update to new `client_golang` to get rid of unwanted quantile + metrics in summaries. +* [BUGFIX] Introduce several additional guards against data corruption. +* [BUGFIX] Mark storage dirty and increment + `prometheus_local_storage_persist_errors_total` on all relevant errors. +* [BUGFIX] Propagate storage errors as 500 in the HTTP API. +* [BUGFIX] Fix int64 overflow in timestamps in the HTTP API. +* [BUGFIX] Fix deadlock in Zookeeper SD. +* [BUGFIX] Fix fuzzy search problems in the web-UI auto-completion. + ## 1.5.2 / 2017-02-10 * [BUGFIX] Fix series corruption in a special case of series maintenance where diff --git a/MAINTAINERS.md b/MAINTAINERS.md index c55b0530ef..73e24d439f 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -1,7 +1,7 @@ Maintainers of this repository with their focus areas: -* Björn Rabenstein : Local storage; general code-level issues. -* Brian Brazil : Console templates; semantics of PromQL, service discovery, and relabeling. -* Fabian Reinartz : PromQL parsing and evaluation; implementation of retrieval, alert notification, and service discovery. -* Julius Volz : Remote storage integrations; web UI. +* Björn Rabenstein @beorn7: Local storage; general code-level issues. +* Brian Brazil @brian-brazil: Console templates; semantics of PromQL, service discovery, and relabeling. +* Fabian Reinartz @fabxc: PromQL parsing and evaluation; implementation of retrieval, alert notification, and service discovery. +* Julius Volz @juliusv: Remote storage integrations; web UI. diff --git a/Makefile b/Makefile index 58f16c7d3e..1247bd1f0a 100644 --- a/Makefile +++ b/Makefile @@ -37,9 +37,13 @@ check_license: @./scripts/check_license.sh # TODO(fabxc): example tests temporarily removed. -test: +test-short: @echo ">> running short tests" - @$(GO) test -short $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples) + @$(GO) test $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples) + +test: + @echo ">> running all tests" + @$(GO) test $(pkgs) format: @echo ">> formatting code" diff --git a/README.md b/README.md index d0afa6e4cc..98c469f5c1 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,7 @@ The Makefile provides several targets: * *build*: build the `prometheus` and `promtool` binaries * *test*: run the tests + * *test-short*: run the short tests * *format*: format the source code * *vet*: check the source code for common errors * *assets*: rebuild the static assets diff --git a/circle.yml b/circle.yml index 4f9519a0dd..7e09a2cbed 100644 --- a/circle.yml +++ b/circle.yml @@ -49,6 +49,7 @@ deployment: owner: prometheus commands: - promu crossbuild tarballs + - promu checksum .tarballs - promu release .tarballs - mkdir $CIRCLE_ARTIFACTS/releases/ && cp -a .tarballs/* $CIRCLE_ARTIFACTS/releases/ - docker login -e $DOCKER_EMAIL -u $DOCKER_LOGIN -p $DOCKER_PASSWORD diff --git a/cmd/promtool/main.go b/cmd/promtool/main.go index 4095a1ea14..431d381357 100644 --- a/cmd/promtool/main.go +++ b/cmd/promtool/main.go @@ -24,6 +24,7 @@ import ( "github.com/prometheus/prometheus/config" "github.com/prometheus/prometheus/promql" "github.com/prometheus/prometheus/util/cli" + "github.com/prometheus/prometheus/util/promlint" ) // CheckConfigCmd validates configuration files. @@ -182,6 +183,42 @@ func checkRules(t cli.Term, filename string) (int, error) { return len(rules), nil } +var checkMetricsUsage = strings.TrimSpace(` +usage: promtool check-metrics + +Pass Prometheus metrics over stdin to lint them for consistency and correctness. + +examples: + +$ cat metrics.prom | promtool check-metrics +$ curl -s http://localhost:9090/metrics | promtool check-metrics +`) + +// CheckMetricsCmd performs a linting pass on input metrics. +func CheckMetricsCmd(t cli.Term, args ...string) int { + if len(args) != 0 { + t.Infof(checkMetricsUsage) + return 2 + } + + l := promlint.New(os.Stdin) + problems, err := l.Lint() + if err != nil { + t.Errorf("error while linting: %v", err) + return 1 + } + + for _, p := range problems { + t.Errorf("%s: %s", p.Metric, p.Text) + } + + if len(problems) > 0 { + return 3 + } + + return 0 +} + // VersionCmd prints the binaries version information. func VersionCmd(t cli.Term, _ ...string) int { fmt.Fprintln(os.Stdout, version.Print("promtool")) @@ -201,6 +238,11 @@ func main() { Run: CheckRulesCmd, }) + app.Register("check-metrics", &cli.Command{ + Desc: "validate metrics for correctness", + Run: CheckMetricsCmd, + }) + app.Register("version", &cli.Command{ Desc: "print the version of this binary", Run: VersionCmd, diff --git a/console_libraries/prom.lib b/console_libraries/prom.lib index 57a35b0f76..ff2090760f 100644 --- a/console_libraries/prom.lib +++ b/console_libraries/prom.lib @@ -1,20 +1,19 @@ {{/* vim: set ft=html: */}} {{/* Load Prometheus console library JS/CSS. Should go in */}} {{ define "prom_console_head" }} - - - - - - - - + + + + + + + + - + {{ end }} {{/* Top of all pages. */}} diff --git a/discovery/discovery.go b/discovery/discovery.go index 883b27b860..91d7eb7ab5 100644 --- a/discovery/discovery.go +++ b/discovery/discovery.go @@ -217,11 +217,6 @@ func (ts *TargetSet) UpdateProviders(p map[string]TargetProvider) { } func (ts *TargetSet) updateProviders(ctx context.Context, providers map[string]TargetProvider) { - // Lock for the entire time. This may mean up to 5 seconds until the full initial set - // is retrieved and applied. - // We could release earlier with some tweaks, but this is easier to reason about. - ts.mtx.Lock() - defer ts.mtx.Unlock() // Stop all previous target providers of the target set. if ts.cancelProviders != nil { @@ -233,7 +228,9 @@ func (ts *TargetSet) updateProviders(ctx context.Context, providers map[string]T // (Re-)create a fresh tgroups map to not keep stale targets around. We // will retrieve all targets below anyway, so cleaning up everything is // safe and doesn't inflict any additional cost. + ts.mtx.Lock() ts.tgroups = map[string]*config.TargetGroup{} + ts.mtx.Unlock() for name, prov := range providers { wg.Add(1) @@ -292,9 +289,6 @@ func (ts *TargetSet) updateProviders(ctx context.Context, providers map[string]T // update handles a target group update from a target provider identified by the name. func (ts *TargetSet) update(name string, tgroup *config.TargetGroup) { - ts.mtx.Lock() - defer ts.mtx.Unlock() - ts.setTargetGroup(name, tgroup) select { @@ -304,6 +298,9 @@ func (ts *TargetSet) update(name string, tgroup *config.TargetGroup) { } func (ts *TargetSet) setTargetGroup(name string, tg *config.TargetGroup) { + ts.mtx.Lock() + defer ts.mtx.Unlock() + if tg == nil { return } diff --git a/discovery/triton/triton.go b/discovery/triton/triton.go index b2c0bd9162..c8680a9ecd 100644 --- a/discovery/triton/triton.go +++ b/discovery/triton/triton.go @@ -32,6 +32,7 @@ const ( tritonLabel = model.MetaLabelPrefix + "triton_" tritonLabelMachineId = tritonLabel + "machine_id" tritonLabelMachineAlias = tritonLabel + "machine_alias" + tritonLabelMachineBrand = tritonLabel + "machine_brand" tritonLabelMachineImage = tritonLabel + "machine_image" tritonLabelServerId = tritonLabel + "server_id" namespace = "prometheus" @@ -59,6 +60,7 @@ type DiscoveryResponse struct { Containers []struct { ServerUUID string `json:"server_uuid"` VMAlias string `json:"vm_alias"` + VMBrand string `json:"vm_brand"` VMImageUUID string `json:"vm_image_uuid"` VMUUID string `json:"vm_uuid"` } `json:"containers"` @@ -157,6 +159,7 @@ func (d *Discovery) refresh() (tg *config.TargetGroup, err error) { labels := model.LabelSet{ tritonLabelMachineId: model.LabelValue(container.VMUUID), tritonLabelMachineAlias: model.LabelValue(container.VMAlias), + tritonLabelMachineBrand: model.LabelValue(container.VMBrand), tritonLabelMachineImage: model.LabelValue(container.VMImageUUID), tritonLabelServerId: model.LabelValue(container.ServerUUID), } diff --git a/discovery/triton/triton_test.go b/discovery/triton/triton_test.go index bf89e78063..dbccbef7ed 100644 --- a/discovery/triton/triton_test.go +++ b/discovery/triton/triton_test.go @@ -111,12 +111,14 @@ func TestTritonSDRefreshMultipleTargets(t *testing.T) { { "server_uuid":"44454c4c-5000-104d-8037-b7c04f5a5131", "vm_alias":"server01", + "vm_brand":"lx", "vm_image_uuid":"7b27a514-89d7-11e6-bee6-3f96f367bee7", "vm_uuid":"ad466fbf-46a2-4027-9b64-8d3cdb7e9072" }, { "server_uuid":"a5894692-bd32-4ca1-908a-e2dda3c3a5e6", "vm_alias":"server02", + "vm_brand":"kvm", "vm_image_uuid":"a5894692-bd32-4ca1-908a-e2dda3c3a5e6", "vm_uuid":"7b27a514-89d7-11e6-bee6-3f96f367bee7" }] diff --git a/documentation/examples/remote_storage/example_receiver/README.md b/documentation/examples/remote_storage/example_write_adapter/README.md similarity index 84% rename from documentation/examples/remote_storage/example_receiver/README.md rename to documentation/examples/remote_storage/example_write_adapter/README.md index 3a0be8c0ba..45f3e36857 100644 --- a/documentation/examples/remote_storage/example_receiver/README.md +++ b/documentation/examples/remote_storage/example_write_adapter/README.md @@ -1,4 +1,4 @@ -## Generic Remote Storage Example +## Remote Write Adapter Example This is a simple example of how to write a server to receive samples from the remote storage output. @@ -7,7 +7,7 @@ To use it: ``` go build -./example_receiver +./example_write_adapter ``` ...and then add the following to your `prometheus.yml`: diff --git a/documentation/examples/remote_storage/example_receiver/server.go b/documentation/examples/remote_storage/example_write_adapter/server.go similarity index 100% rename from documentation/examples/remote_storage/example_receiver/server.go rename to documentation/examples/remote_storage/example_write_adapter/server.go diff --git a/documentation/examples/remote_storage/remote_storage_adapter/README.md b/documentation/examples/remote_storage/remote_storage_adapter/README.md new file mode 100644 index 0000000000..f116e09666 --- /dev/null +++ b/documentation/examples/remote_storage/remote_storage_adapter/README.md @@ -0,0 +1,55 @@ +# Remote storage adapter + +This is a write adapter that receives samples via Prometheus's remote write +protocol and stores them in Graphite, InfluxDB, or OpenTSDB. It is meant as a +replacement for the built-in specific remote storage implementations that have +been removed from Prometheus. + +For InfluxDB, this binary is also a read adapter that supports reading back +data through Prometheus via Prometheus's remote read protocol. + +## Building + +``` +go build +``` + +## Running + +Graphite example: + +``` +./remote_storage_adapter -graphite-address=localhost:8080 +``` + +OpenTSDB example: + +``` +./remote_storage_adapter -opentsdb-url=http://localhost:8081/ +``` + +InfluxDB example: + +``` +./remote_storage_adapter -influxdb-url=http://localhost:8086/ -influxdb.database=prometheus -influxdb.retention-policy=autogen +``` + +To show all flags: + +``` +./remote_storage_adapter -h +``` + +## Configuring Prometheus + +To configure Prometheus to send samples to this binary, add the following to your `prometheus.yml`: + +```yaml +# Remote write configuration (for Graphite, OpenTSDB, or InfluxDB). +remote_write: + - url: "http://localhost:9201/write" + +# Remote read configuration (for InfluxDB only at the moment). +remote_read: + - url: "http://localhost:9201/read" +``` diff --git a/documentation/examples/remote_storage/remote_storage_bridge/graphite/client.go b/documentation/examples/remote_storage/remote_storage_adapter/graphite/client.go similarity index 100% rename from documentation/examples/remote_storage/remote_storage_bridge/graphite/client.go rename to documentation/examples/remote_storage/remote_storage_adapter/graphite/client.go diff --git a/documentation/examples/remote_storage/remote_storage_bridge/graphite/client_test.go b/documentation/examples/remote_storage/remote_storage_adapter/graphite/client_test.go similarity index 100% rename from documentation/examples/remote_storage/remote_storage_bridge/graphite/client_test.go rename to documentation/examples/remote_storage/remote_storage_adapter/graphite/client_test.go diff --git a/documentation/examples/remote_storage/remote_storage_bridge/graphite/escape.go b/documentation/examples/remote_storage/remote_storage_adapter/graphite/escape.go similarity index 100% rename from documentation/examples/remote_storage/remote_storage_bridge/graphite/escape.go rename to documentation/examples/remote_storage/remote_storage_adapter/graphite/escape.go diff --git a/documentation/examples/remote_storage/remote_storage_bridge/influxdb/client.go b/documentation/examples/remote_storage/remote_storage_adapter/influxdb/client.go similarity index 97% rename from documentation/examples/remote_storage/remote_storage_bridge/influxdb/client.go rename to documentation/examples/remote_storage/remote_storage_adapter/influxdb/client.go index 26b5d56bd4..edd204abc6 100644 --- a/documentation/examples/remote_storage/remote_storage_bridge/influxdb/client.go +++ b/documentation/examples/remote_storage/remote_storage_adapter/influxdb/client.go @@ -124,10 +124,12 @@ func (c *Client) Read(req *remote.ReadRequest) (*remote.ReadResponse, error) { } resp := remote.ReadResponse{ - Timeseries: make([]*remote.TimeSeries, 0, len(labelsToSeries)), + Results: []*remote.QueryResult{ + {Timeseries: make([]*remote.TimeSeries, 0, len(labelsToSeries))}, + }, } for _, ts := range labelsToSeries { - resp.Timeseries = append(resp.Timeseries, ts) + resp.Results[0].Timeseries = append(resp.Results[0].Timeseries, ts) } return &resp, nil } diff --git a/documentation/examples/remote_storage/remote_storage_bridge/influxdb/client_test.go b/documentation/examples/remote_storage/remote_storage_adapter/influxdb/client_test.go similarity index 100% rename from documentation/examples/remote_storage/remote_storage_bridge/influxdb/client_test.go rename to documentation/examples/remote_storage/remote_storage_adapter/influxdb/client_test.go diff --git a/documentation/examples/remote_storage/remote_storage_bridge/main.go b/documentation/examples/remote_storage/remote_storage_adapter/main.go similarity index 98% rename from documentation/examples/remote_storage/remote_storage_bridge/main.go rename to documentation/examples/remote_storage/remote_storage_adapter/main.go index 7603511bcd..5bcf026621 100644 --- a/documentation/examples/remote_storage/remote_storage_bridge/main.go +++ b/documentation/examples/remote_storage/remote_storage_adapter/main.go @@ -33,9 +33,9 @@ import ( influx "github.com/influxdata/influxdb/client/v2" - "github.com/prometheus/prometheus/documentation/examples/remote_storage/remote_storage_bridge/graphite" - "github.com/prometheus/prometheus/documentation/examples/remote_storage/remote_storage_bridge/influxdb" - "github.com/prometheus/prometheus/documentation/examples/remote_storage/remote_storage_bridge/opentsdb" + "github.com/prometheus/prometheus/documentation/examples/remote_storage/remote_storage_adapter/graphite" + "github.com/prometheus/prometheus/documentation/examples/remote_storage/remote_storage_adapter/influxdb" + "github.com/prometheus/prometheus/documentation/examples/remote_storage/remote_storage_adapter/opentsdb" "github.com/prometheus/prometheus/storage/remote" ) diff --git a/documentation/examples/remote_storage/remote_storage_bridge/opentsdb/client.go b/documentation/examples/remote_storage/remote_storage_adapter/opentsdb/client.go similarity index 100% rename from documentation/examples/remote_storage/remote_storage_bridge/opentsdb/client.go rename to documentation/examples/remote_storage/remote_storage_adapter/opentsdb/client.go diff --git a/documentation/examples/remote_storage/remote_storage_bridge/opentsdb/client_test.go b/documentation/examples/remote_storage/remote_storage_adapter/opentsdb/client_test.go similarity index 100% rename from documentation/examples/remote_storage/remote_storage_bridge/opentsdb/client_test.go rename to documentation/examples/remote_storage/remote_storage_adapter/opentsdb/client_test.go diff --git a/documentation/examples/remote_storage/remote_storage_bridge/opentsdb/tagvalue.go b/documentation/examples/remote_storage/remote_storage_adapter/opentsdb/tagvalue.go similarity index 100% rename from documentation/examples/remote_storage/remote_storage_bridge/opentsdb/tagvalue.go rename to documentation/examples/remote_storage/remote_storage_adapter/opentsdb/tagvalue.go diff --git a/documentation/examples/remote_storage/remote_storage_bridge/opentsdb/tagvalue_test.go b/documentation/examples/remote_storage/remote_storage_adapter/opentsdb/tagvalue_test.go similarity index 100% rename from documentation/examples/remote_storage/remote_storage_bridge/opentsdb/tagvalue_test.go rename to documentation/examples/remote_storage/remote_storage_adapter/opentsdb/tagvalue_test.go diff --git a/documentation/examples/remote_storage/remote_storage_bridge/README.md b/documentation/examples/remote_storage/remote_storage_bridge/README.md deleted file mode 100644 index 4c48a7ddf3..0000000000 --- a/documentation/examples/remote_storage/remote_storage_bridge/README.md +++ /dev/null @@ -1,55 +0,0 @@ -# Remote storage bridge - -This is a bridge that receives samples via Prometheus's remote write -protocol and stores them in Graphite, InfluxDB, or OpenTSDB. It is meant -as a replacement for the built-in specific remote storage implementations -that have been removed from Prometheus. - -For InfluxDB, this bridge also supports reading back data through -Prometheus via Prometheus's remote read protocol. - -## Building - -``` -go build -``` - -## Running - -Graphite example: - -``` -./remote_storage_bridge -graphite-address=localhost:8080 -``` - -OpenTSDB example: - -``` -./remote_storage_bridge -opentsdb-url=http://localhost:8081/ -``` - -InfluxDB example: - -``` -./remote_storage_bridge -influxdb-url=http://localhost:8086/ -influxdb.database=prometheus -influxdb.retention-policy=autogen -``` - -To show all flags: - -``` -./remote_storage_bridge -h -``` - -## Configuring Prometheus - -To configure Prometheus to send samples to this bridge, add the following to your `prometheus.yml`: - -```yaml -# Remote write configuration (for Graphite, OpenTSDB, or InfluxDB). -remote_write: - - url: "http://localhost:9201/write" - -# Remote read configuration (for InfluxDB only at the moment). -remote_read: - - url: "http://localhost:9201/read" -``` \ No newline at end of file diff --git a/notifier/notifier.go b/notifier/notifier.go index dc1b378b26..00fd166d87 100644 --- a/notifier/notifier.go +++ b/notifier/notifier.go @@ -369,13 +369,13 @@ func (n *Notifier) setMore() { } } -// Alertmanagers returns a list Alertmanager URLs. -func (n *Notifier) Alertmanagers() []string { +// Alertmanagers returns a slice of Alertmanager URLs. +func (n *Notifier) Alertmanagers() []*url.URL { n.mtx.RLock() amSets := n.alertmanagers n.mtx.RUnlock() - var res []string + var res []*url.URL for _, ams := range amSets { ams.mtx.RLock() @@ -417,7 +417,7 @@ func (n *Notifier) sendAll(alerts ...*Alert) bool { defer cancel() go func(am alertmanager) { - u := am.url() + u := am.url().String() if err := n.sendOne(ctx, ams.client, u, b); err != nil { log.With("alertmanager", u).With("count", len(alerts)).Errorf("Error sending alerts: %s", err) @@ -465,20 +465,19 @@ func (n *Notifier) Stop() { // alertmanager holds Alertmanager endpoint information. type alertmanager interface { - url() string + url() *url.URL } type alertmanagerLabels struct{ labels.Labels } const pathLabel = "__alerts_path__" -func (a alertmanagerLabels) url() string { - u := &url.URL{ +func (a alertmanagerLabels) url() *url.URL { + return &url.URL{ Scheme: a.Get(model.SchemeLabel), Host: a.Get(model.AddressLabel), Path: a.Get(pathLabel), } - return u.String() } // alertmanagerSet contains a set of Alertmanagers discovered via a group of service @@ -529,7 +528,7 @@ func (s *alertmanagerSet) Sync(tgs []*config.TargetGroup) { seen := map[string]struct{}{} for _, am := range all { - us := am.url() + us := am.url().String() if _, ok := seen[us]; ok { continue } diff --git a/notifier/notifier_test.go b/notifier/notifier_test.go index 07459c8d6b..8155b7a884 100644 --- a/notifier/notifier_test.go +++ b/notifier/notifier_test.go @@ -19,6 +19,7 @@ import ( "io/ioutil" "net/http" "net/http/httptest" + "net/url" "testing" "time" @@ -388,6 +389,10 @@ type alertmanagerMock struct { urlf func() string } -func (a alertmanagerMock) url() string { - return a.urlf() +func (a alertmanagerMock) url() *url.URL { + u, err := url.Parse(a.urlf()) + if err != nil { + panic(err) + } + return u } diff --git a/promql/engine.go b/promql/engine.go index ca930d5f2f..9f37235413 100644 --- a/promql/engine.go +++ b/promql/engine.go @@ -113,6 +113,9 @@ type ( ErrQueryTimeout string // ErrQueryCanceled is returned if a query was canceled during processing. ErrQueryCanceled string + // ErrStorage is returned if an error was encountered in the storage layer + // during query handling. + ErrStorage error ) func (e ErrQueryTimeout) Error() string { return fmt.Sprintf("query timed out in %s", string(e)) } diff --git a/promql/quantile.go b/promql/quantile.go index 91f41566df..dee95d4ee6 100644 --- a/promql/quantile.go +++ b/promql/quantile.go @@ -83,6 +83,8 @@ func bucketQuantile(q float64, buckets buckets) float64 { return math.NaN() } + ensureMonotonic(buckets) + rank := q * buckets[len(buckets)-1].count b := sort.Search(len(buckets)-1, func(i int) bool { return buckets[i].count >= rank }) @@ -105,7 +107,52 @@ func bucketQuantile(q float64, buckets buckets) float64 { return bucketStart + (bucketEnd-bucketStart)*float64(rank/count) } -// qauntile calculates the given quantile of a Vector of samples. +// The assumption that bucket counts increase monotonically with increasing +// upperBound may be violated during: +// +// * Recording rule evaluation of histogram_quantile, especially when rate() +// has been applied to the underlying bucket timeseries. +// * Evaluation of histogram_quantile computed over federated bucket +// timeseries, especially when rate() has been applied. +// +// This is because scraped data is not made available to rule evaluation or +// federation atomically, so some buckets are computed with data from the +// most recent scrapes, but the other buckets are missing data from the most +// recent scrape. +// +// Monotonicity is usually guaranteed because if a bucket with upper bound +// u1 has count c1, then any bucket with a higher upper bound u > u1 must +// have counted all c1 observations and perhaps more, so that c >= c1. +// +// Randomly interspersed partial sampling breaks that guarantee, and rate() +// exacerbates it. Specifically, suppose bucket le=1000 has a count of 10 from +// 4 samples but the bucket with le=2000 has a count of 7 from 3 samples. The +// monotonicity is broken. It is exacerbated by rate() because under normal +// operation, cumulative counting of buckets will cause the bucket counts to +// diverge such that small differences from missing samples are not a problem. +// rate() removes this divergence.) +// +// bucketQuantile depends on that monotonicity to do a binary search for the +// bucket with the φ-quantile count, so breaking the monotonicity +// guarantee causes bucketQuantile() to return undefined (nonsense) results. +// +// As a somewhat hacky solution until ingestion is atomic per scrape, we +// calculate the "envelope" of the histogram buckets, essentially removing +// any decreases in the count between successive buckets. + +func ensureMonotonic(buckets buckets) { + max := buckets[0].count + for i := range buckets[1:] { + switch { + case buckets[i].count > max: + max = buckets[i].count + case buckets[i].count < max: + buckets[i].count = max + } + } +} + +// qauntile calculates the given quantile of a vector of samples. // // The Vector will be sorted. // If 'values' has zero elements, NaN is returned. diff --git a/promql/testdata/histograms.test b/promql/testdata/histograms.test index 2478c34846..b1e76ab63e 100644 --- a/promql/testdata/histograms.test +++ b/promql/testdata/histograms.test @@ -139,3 +139,21 @@ eval instant at 50m histogram_quantile(0.5, rate(request_duration_seconds_bucket {instance="ins2", job="job1"} 0.13333333333333333 {instance="ins1", job="job2"} 0.1 {instance="ins2", job="job2"} 0.11666666666666667 + +# A histogram with nonmonotonic bucket counts. This may happen when recording +# rule evaluation or federation races scrape ingestion, causing some buckets +# counts to be derived from fewer samples. The wrong answer we want to avoid +# is for histogram_quantile(0.99, nonmonotonic_bucket) to return ~1000 instead +# of 1. + +load 5m + nonmonotonic_bucket{le="0.1"} 0+1x10 + nonmonotonic_bucket{le="1"} 0+9x10 + nonmonotonic_bucket{le="10"} 0+8x10 + nonmonotonic_bucket{le="100"} 0+8x10 + nonmonotonic_bucket{le="1000"} 0+9x10 + nonmonotonic_bucket{le="+Inf"} 0+9x10 + +# Nonmonotonic buckets +eval instant at 50m histogram_quantile(0.99, nonmonotonic_bucket) + {} 0.989875 diff --git a/retrieval/scrape.go b/retrieval/scrape.go index d469403789..ac013325b7 100644 --- a/retrieval/scrape.go +++ b/retrieval/scrape.go @@ -184,7 +184,7 @@ func (sp *scrapePool) reload(cfg *config.ScrapeConfig) { for fp, oldLoop := range sp.loops { var ( t = sp.targets[fp] - s = &targetScraper{Target: t, client: sp.client} + s = &targetScraper{Target: t, client: sp.client, timeout: timeout} newLoop = sp.newLoop(sp.ctx, s, func() storage.Appender { return sp.sampleAppender(t) @@ -253,7 +253,7 @@ func (sp *scrapePool) sync(targets []*Target) { uniqueTargets[hash] = struct{}{} if _, ok := sp.targets[hash]; !ok { - s := &targetScraper{Target: t, client: sp.client} + s := &targetScraper{Target: t, client: sp.client, timeout: timeout} l := sp.newLoop(sp.ctx, s, func() storage.Appender { return sp.sampleAppender(t) @@ -354,8 +354,9 @@ type scraper interface { type targetScraper struct { *Target - client *http.Client - req *http.Request + client *http.Client + req *http.Request + timeout time.Duration gzipr *gzip.Reader buf *bufio.Reader @@ -372,13 +373,13 @@ func (s *targetScraper) scrape(ctx context.Context, w io.Writer) error { return err } // Disable accept header to always negotiate for text format. - // req.Header.Add("Accept", acceptHeader) + req.Header.Add("Accept", acceptHeader) req.Header.Add("Accept-Encoding", "gzip") req.Header.Set("User-Agent", userAgentHeader) + req.Header.Set("X-Prometheus-Scrape-Timeout-Seconds", fmt.Sprintf("%f", s.timeout.Seconds())) s.req = req } - resp, err := ctxhttp.Do(ctx, s.client, s.req) if err != nil { return err diff --git a/retrieval/scrape_test.go b/retrieval/scrape_test.go index 94e3d4e449..634b4dd2bc 100644 --- a/retrieval/scrape_test.go +++ b/retrieval/scrape_test.go @@ -435,8 +435,20 @@ func TestScrapeLoopRun(t *testing.T) { } func TestTargetScraperScrapeOK(t *testing.T) { + const ( + configTimeout = 1500 * time.Millisecond + expectedTimeout = "1.500000" + ) + server := httptest.NewServer( http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + timeout := r.Header.Get("X-Prometheus-Scrape-Timeout-Seconds") + if timeout != expectedTimeout { + t.Errorf("Scrape timeout did not match expected timeout") + t.Errorf("Expected: %v", expectedTimeout) + t.Fatalf("Got: %v", timeout) + } + w.Header().Set("Content-Type", `text/plain; version=0.0.4`) w.Write([]byte("metric_a 1\nmetric_b 2\n")) }), @@ -455,7 +467,8 @@ func TestTargetScraperScrapeOK(t *testing.T) { model.AddressLabel, serverURL.Host, ), }, - client: http.DefaultClient, + client: http.DefaultClient, + timeout: configTimeout, } var buf bytes.Buffer diff --git a/util/promlint/promlint.go b/util/promlint/promlint.go new file mode 100644 index 0000000000..8ac1ae8765 --- /dev/null +++ b/util/promlint/promlint.go @@ -0,0 +1,268 @@ +// Copyright 2017 The Prometheus Authors +// 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. + +// Package promlint provides a linter for Prometheus metrics. +package promlint + +import ( + "fmt" + "io" + "sort" + "strings" + + dto "github.com/prometheus/client_model/go" + "github.com/prometheus/common/expfmt" +) + +// A Linter is a Prometheus metrics linter. It identifies issues with metric +// names, types, and metadata, and reports them to the caller. +type Linter struct { + r io.Reader +} + +// A Problem is an issue detected by a Linter. +type Problem struct { + // The name of the metric indicated by this Problem. + Metric string + + // A description of the issue for this Problem. + Text string +} + +// problems is a slice of Problems with a helper method to easily append +// additional Problems to the slice. +type problems []Problem + +// Add appends a new Problem to the slice for the specified metric, with +// the specified issue text. +func (p *problems) Add(mf dto.MetricFamily, text string) { + *p = append(*p, Problem{ + Metric: mf.GetName(), + Text: text, + }) +} + +// New creates a new Linter that reads an input stream of Prometheus metrics. +// Only the text exposition format is supported. +func New(r io.Reader) *Linter { + return &Linter{ + r: r, + } +} + +// Lint performs a linting pass, returning a slice of Problems indicating any +// issues found in the metrics stream. The slice is sorted by metric name +// and issue description. +func (l *Linter) Lint() ([]Problem, error) { + // TODO(mdlayher): support for protobuf exposition format? + d := expfmt.NewDecoder(l.r, expfmt.FmtText) + + var problems []Problem + + var mf dto.MetricFamily + for { + if err := d.Decode(&mf); err != nil { + if err == io.EOF { + break + } + + return nil, err + } + + problems = append(problems, lint(mf)...) + } + + // Ensure deterministic output. + sort.SliceStable(problems, func(i, j int) bool { + if problems[i].Metric < problems[j].Metric { + return true + } + + return problems[i].Text < problems[j].Text + }) + + return problems, nil +} + +// lint is the entry point for linting a single metric. +func lint(mf dto.MetricFamily) []Problem { + fns := []func(mf dto.MetricFamily) []Problem{ + lintHelp, + lintMetricUnits, + lintCounter, + lintHistogramSummaryReserved, + } + + var problems []Problem + for _, fn := range fns { + problems = append(problems, fn(mf)...) + } + + // TODO(mdlayher): lint rules for specific metrics types. + return problems +} + +// lintHelp detects issues related to the help text for a metric. +func lintHelp(mf dto.MetricFamily) []Problem { + var problems problems + + // Expect all metrics to have help text available. + if mf.Help == nil { + problems.Add(mf, "no help text") + } + + return problems +} + +// lintMetricUnits detects issues with metric unit names. +func lintMetricUnits(mf dto.MetricFamily) []Problem { + var problems problems + + unit, base, ok := metricUnits(*mf.Name) + if !ok { + // No known units detected. + return nil + } + + // Unit is already a base unit. + if unit == base { + return nil + } + + problems.Add(mf, fmt.Sprintf("use base unit %q instead of %q", base, unit)) + + return problems +} + +// lintCounter detects issues specific to counters, as well as patterns that should +// only be used with counters. +func lintCounter(mf dto.MetricFamily) []Problem { + var problems problems + + isCounter := mf.GetType() == dto.MetricType_COUNTER + isUntyped := mf.GetType() == dto.MetricType_UNTYPED + hasTotalSuffix := strings.HasSuffix(mf.GetName(), "_total") + + switch { + case isCounter && !hasTotalSuffix: + problems.Add(mf, `counter metrics should have "_total" suffix`) + case !isUntyped && !isCounter && hasTotalSuffix: + problems.Add(mf, `non-counter metrics should not have "_total" suffix`) + } + + return problems +} + +// lintHistogramSummaryReserved detects when other types of metrics use names or labels +// reserved for use by histograms and/or summaries. +func lintHistogramSummaryReserved(mf dto.MetricFamily) []Problem { + // These rules do not apply to untyped metrics. + t := mf.GetType() + if t == dto.MetricType_UNTYPED { + return nil + } + + var problems problems + + isHistogram := t == dto.MetricType_HISTOGRAM + isSummary := t == dto.MetricType_SUMMARY + + n := mf.GetName() + + if !isHistogram && strings.HasSuffix(n, "_bucket") { + problems.Add(mf, `non-histogram metrics should not have "_bucket" suffix`) + } + if !isHistogram && !isSummary && strings.HasSuffix(n, "_count") { + problems.Add(mf, `non-histogram and non-summary metrics should not have "_count" suffix`) + } + if !isHistogram && !isSummary && strings.HasSuffix(n, "_sum") { + problems.Add(mf, `non-histogram and non-summary metrics should not have "_sum" suffix`) + } + + for _, m := range mf.GetMetric() { + for _, l := range m.GetLabel() { + ln := l.GetName() + + if !isHistogram && ln == "le" { + problems.Add(mf, `non-histogram metrics should not have "le" label`) + } + if !isSummary && ln == "quantile" { + problems.Add(mf, `non-summary metrics should not have "quantile" label`) + } + } + } + + return problems +} + +// metricUnits attempts to detect known unit types used as part of a metric name, +// e.g. "foo_bytes_total" or "bar_baz_milligrams". +func metricUnits(m string) (unit string, base string, ok bool) { + ss := strings.Split(m, "_") + + for _, u := range baseUnits { + // Also check for "no prefix". + for _, p := range append(unitPrefixes, "") { + for _, s := range ss { + // Attempt to explicitly match a known unit with a known prefix, + // as some words may look like "units" when matching suffix. + // + // As an example, "thermometers" should not match "meters", but + // "kilometers" should. + if s == p+u { + return p + u, u, true + } + } + } + } + + return "", "", false +} + +// Units and their possible prefixes recognized by this library. More can be +// added over time as needed. +var ( + baseUnits = []string{ + "amperes", + "bytes", + "candela", + "grams", + "kelvin", // Both plural and non-plural form allowed. + "kelvins", + "meters", // Both American and international spelling permitted. + "metres", + "moles", + "seconds", + } + + unitPrefixes = []string{ + "pico", + "nano", + "micro", + "milli", + "centi", + "deci", + "deca", + "hecto", + "kilo", + "kibi", + "mega", + "mibi", + "giga", + "gibi", + "tera", + "tebi", + "peta", + "pebi", + } +) diff --git a/util/promlint/promlint_test.go b/util/promlint/promlint_test.go new file mode 100644 index 0000000000..dec3ed613e --- /dev/null +++ b/util/promlint/promlint_test.go @@ -0,0 +1,497 @@ +// Copyright 2017 The Prometheus Authors +// 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. + +package promlint_test + +import ( + "reflect" + "strings" + "testing" + + "github.com/prometheus/prometheus/util/promlint" +) + +func TestLintNoHelpText(t *testing.T) { + const msg = "no help text" + + tests := []struct { + name string + in string + problems []promlint.Problem + }{ + { + name: "no help", + in: ` +# TYPE go_goroutines gauge +go_goroutines 24 +`, + problems: []promlint.Problem{{ + Metric: "go_goroutines", + Text: msg, + }}, + }, + { + name: "empty help", + in: ` +# HELP go_goroutines +# TYPE go_goroutines gauge +go_goroutines 24 +`, + problems: []promlint.Problem{{ + Metric: "go_goroutines", + Text: msg, + }}, + }, + { + name: "no help and empty help", + in: ` +# HELP go_goroutines +# TYPE go_goroutines gauge +go_goroutines 24 +# TYPE go_threads gauge +go_threads 10 +`, + problems: []promlint.Problem{ + { + Metric: "go_goroutines", + Text: msg, + }, + { + Metric: "go_threads", + Text: msg, + }, + }, + }, + { + name: "OK", + in: ` +# HELP go_goroutines Number of goroutines that currently exist. +# TYPE go_goroutines gauge +go_goroutines 24 +`, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + l := promlint.New(strings.NewReader(tt.in)) + + problems, err := l.Lint() + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + + if want, got := tt.problems, problems; !reflect.DeepEqual(want, got) { + t.Fatalf("unexpected problems:\n- want: %v\n- got: %v", + want, got) + } + }) + } +} + +func TestLintMetricUnits(t *testing.T) { + tests := []struct { + name string + in string + problems []promlint.Problem + }{ + { + name: "amperes", + in: ` +# HELP x_milliamperes Test metric. +# TYPE x_milliamperes untyped +x_milliamperes 10 +`, + problems: []promlint.Problem{{ + Metric: "x_milliamperes", + Text: `use base unit "amperes" instead of "milliamperes"`, + }}, + }, + { + name: "bytes", + in: ` +# HELP x_gigabytes Test metric. +# TYPE x_gigabytes untyped +x_gigabytes 10 +`, + problems: []promlint.Problem{{ + Metric: "x_gigabytes", + Text: `use base unit "bytes" instead of "gigabytes"`, + }}, + }, + { + name: "candela", + in: ` +# HELP x_kilocandela Test metric. +# TYPE x_kilocandela untyped +x_kilocandela 10 +`, + problems: []promlint.Problem{{ + Metric: "x_kilocandela", + Text: `use base unit "candela" instead of "kilocandela"`, + }}, + }, + { + name: "grams", + in: ` +# HELP x_kilograms Test metric. +# TYPE x_kilograms untyped +x_kilograms 10 +`, + problems: []promlint.Problem{{ + Metric: "x_kilograms", + Text: `use base unit "grams" instead of "kilograms"`, + }}, + }, + { + name: "kelvin", + in: ` +# HELP x_nanokelvin Test metric. +# TYPE x_nanokelvin untyped +x_nanokelvin 10 +`, + problems: []promlint.Problem{{ + Metric: "x_nanokelvin", + Text: `use base unit "kelvin" instead of "nanokelvin"`, + }}, + }, + { + name: "kelvins", + in: ` +# HELP x_nanokelvins Test metric. +# TYPE x_nanokelvins untyped +x_nanokelvins 10 +`, + problems: []promlint.Problem{{ + Metric: "x_nanokelvins", + Text: `use base unit "kelvins" instead of "nanokelvins"`, + }}, + }, + { + name: "meters", + in: ` +# HELP x_kilometers Test metric. +# TYPE x_kilometers untyped +x_kilometers 10 +`, + problems: []promlint.Problem{{ + Metric: "x_kilometers", + Text: `use base unit "meters" instead of "kilometers"`, + }}, + }, + { + name: "metres", + in: ` +# HELP x_kilometres Test metric. +# TYPE x_kilometres untyped +x_kilometres 10 +`, + problems: []promlint.Problem{{ + Metric: "x_kilometres", + Text: `use base unit "metres" instead of "kilometres"`, + }}, + }, + { + name: "moles", + in: ` +# HELP x_picomoles Test metric. +# TYPE x_picomoles untyped +x_picomoles 10 +`, + problems: []promlint.Problem{{ + Metric: "x_picomoles", + Text: `use base unit "moles" instead of "picomoles"`, + }}, + }, + { + name: "seconds", + in: ` +# HELP x_microseconds Test metric. +# TYPE x_microseconds untyped +x_microseconds 10 +`, + problems: []promlint.Problem{{ + Metric: "x_microseconds", + Text: `use base unit "seconds" instead of "microseconds"`, + }}, + }, + { + name: "OK", + in: ` +# HELP thermometers_kelvin Test metric with name that looks like "meters". +# TYPE thermometers_kelvin untyped +thermometers_kelvin 0 +`, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + l := promlint.New(strings.NewReader(tt.in)) + + problems, err := l.Lint() + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + + if want, got := tt.problems, problems; !reflect.DeepEqual(want, got) { + t.Fatalf("unexpected problems:\n- want: %v\n- got: %v", + want, got) + } + }) + } +} + +func TestLintCounter(t *testing.T) { + tests := []struct { + name string + in string + problems []promlint.Problem + }{ + { + name: "counter without _total suffix", + in: ` +# HELP x_bytes Test metric. +# TYPE x_bytes counter +x_bytes 10 +`, + problems: []promlint.Problem{{ + Metric: "x_bytes", + Text: `counter metrics should have "_total" suffix`, + }}, + }, + { + name: "gauge with _total suffix", + in: ` +# HELP x_bytes_total Test metric. +# TYPE x_bytes_total gauge +x_bytes_total 10 +`, + problems: []promlint.Problem{{ + Metric: "x_bytes_total", + Text: `non-counter metrics should not have "_total" suffix`, + }}, + }, + { + name: "counter with _total suffix", + in: ` +# HELP x_bytes_total Test metric. +# TYPE x_bytes_total counter +x_bytes_total 10 +`, + }, + { + name: "gauge without _total suffix", + in: ` +# HELP x_bytes Test metric. +# TYPE x_bytes gauge +x_bytes 10 +`, + }, + { + name: "untyped with _total suffix", + in: ` +# HELP x_bytes_total Test metric. +# TYPE x_bytes_total untyped +x_bytes_total 10 +`, + }, + { + name: "untyped without _total suffix", + in: ` +# HELP x_bytes Test metric. +# TYPE x_bytes untyped +x_bytes 10 +`, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + l := promlint.New(strings.NewReader(tt.in)) + + problems, err := l.Lint() + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + + if want, got := tt.problems, problems; !reflect.DeepEqual(want, got) { + t.Fatalf("unexpected problems:\n- want: %v\n- got: %v", + want, got) + } + }) + } +} + +func TestLintHistogramSummaryReserved(t *testing.T) { + tests := []struct { + name string + in string + problems []promlint.Problem + }{ + { + name: "gauge with _bucket suffix", + in: ` +# HELP x_bytes_bucket Test metric. +# TYPE x_bytes_bucket gauge +x_bytes_bucket 10 +`, + problems: []promlint.Problem{{ + Metric: "x_bytes_bucket", + Text: `non-histogram metrics should not have "_bucket" suffix`, + }}, + }, + { + name: "gauge with _count suffix", + in: ` +# HELP x_bytes_count Test metric. +# TYPE x_bytes_count gauge +x_bytes_count 10 +`, + problems: []promlint.Problem{{ + Metric: "x_bytes_count", + Text: `non-histogram and non-summary metrics should not have "_count" suffix`, + }}, + }, + { + name: "gauge with _sum suffix", + in: ` +# HELP x_bytes_sum Test metric. +# TYPE x_bytes_sum gauge +x_bytes_sum 10 +`, + problems: []promlint.Problem{{ + Metric: "x_bytes_sum", + Text: `non-histogram and non-summary metrics should not have "_sum" suffix`, + }}, + }, + { + name: "gauge with le label", + in: ` +# HELP x_bytes Test metric. +# TYPE x_bytes gauge +x_bytes{le="1"} 10 +`, + problems: []promlint.Problem{{ + Metric: "x_bytes", + Text: `non-histogram metrics should not have "le" label`, + }}, + }, + { + name: "gauge with quantile label", + in: ` +# HELP x_bytes Test metric. +# TYPE x_bytes gauge +x_bytes{quantile="1"} 10 +`, + problems: []promlint.Problem{{ + Metric: "x_bytes", + Text: `non-summary metrics should not have "quantile" label`, + }}, + }, + { + name: "histogram with quantile label", + in: ` +# HELP tsdb_compaction_duration Duration of compaction runs. +# TYPE tsdb_compaction_duration histogram +tsdb_compaction_duration_bucket{le="0.005",quantile="0.01"} 0 +tsdb_compaction_duration_bucket{le="0.01",quantile="0.01"} 0 +tsdb_compaction_duration_bucket{le="0.025",quantile="0.01"} 0 +tsdb_compaction_duration_bucket{le="0.05",quantile="0.01"} 0 +tsdb_compaction_duration_bucket{le="0.1",quantile="0.01"} 0 +tsdb_compaction_duration_bucket{le="0.25",quantile="0.01"} 0 +tsdb_compaction_duration_bucket{le="0.5",quantile="0.01"} 57 +tsdb_compaction_duration_bucket{le="1",quantile="0.01"} 68 +tsdb_compaction_duration_bucket{le="2.5",quantile="0.01"} 69 +tsdb_compaction_duration_bucket{le="5",quantile="0.01"} 69 +tsdb_compaction_duration_bucket{le="10",quantile="0.01"} 69 +tsdb_compaction_duration_bucket{le="+Inf",quantile="0.01"} 69 +tsdb_compaction_duration_sum 28.740810936000006 +tsdb_compaction_duration_count 69 +`, + problems: []promlint.Problem{{ + Metric: "tsdb_compaction_duration", + Text: `non-summary metrics should not have "quantile" label`, + }}, + }, + { + name: "summary with le label", + in: ` +# HELP go_gc_duration_seconds A summary of the GC invocation durations. +# TYPE go_gc_duration_seconds summary +go_gc_duration_seconds{quantile="0",le="0.01"} 4.2365e-05 +go_gc_duration_seconds{quantile="0.25",le="0.01"} 8.1492e-05 +go_gc_duration_seconds{quantile="0.5",le="0.01"} 0.000100656 +go_gc_duration_seconds{quantile="0.75",le="0.01"} 0.000113913 +go_gc_duration_seconds{quantile="1",le="0.01"} 0.021754305 +go_gc_duration_seconds_sum 1.769429004 +go_gc_duration_seconds_count 5962 +`, + problems: []promlint.Problem{{ + Metric: "go_gc_duration_seconds", + Text: `non-histogram metrics should not have "le" label`, + }}, + }, + { + name: "histogram OK", + in: ` +# HELP tsdb_compaction_duration Duration of compaction runs. +# TYPE tsdb_compaction_duration histogram +tsdb_compaction_duration_bucket{le="0.005"} 0 +tsdb_compaction_duration_bucket{le="0.01"} 0 +tsdb_compaction_duration_bucket{le="0.025"} 0 +tsdb_compaction_duration_bucket{le="0.05"} 0 +tsdb_compaction_duration_bucket{le="0.1"} 0 +tsdb_compaction_duration_bucket{le="0.25"} 0 +tsdb_compaction_duration_bucket{le="0.5"} 57 +tsdb_compaction_duration_bucket{le="1"} 68 +tsdb_compaction_duration_bucket{le="2.5"} 69 +tsdb_compaction_duration_bucket{le="5"} 69 +tsdb_compaction_duration_bucket{le="10"} 69 +tsdb_compaction_duration_bucket{le="+Inf"} 69 +tsdb_compaction_duration_sum 28.740810936000006 +tsdb_compaction_duration_count 69 +`, + }, + { + name: "summary OK", + in: ` +# HELP go_gc_duration_seconds A summary of the GC invocation durations. +# TYPE go_gc_duration_seconds summary +go_gc_duration_seconds{quantile="0"} 4.2365e-05 +go_gc_duration_seconds{quantile="0.25"} 8.1492e-05 +go_gc_duration_seconds{quantile="0.5"} 0.000100656 +go_gc_duration_seconds{quantile="0.75"} 0.000113913 +go_gc_duration_seconds{quantile="1"} 0.021754305 +go_gc_duration_seconds_sum 1.769429004 +go_gc_duration_seconds_count 5962 +`, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + l := promlint.New(strings.NewReader(tt.in)) + + problems, err := l.Lint() + if err != nil { + t.Fatalf("unexpected error: %v", err) + } + + if want, got := tt.problems, problems; !reflect.DeepEqual(want, got) { + t.Fatalf("unexpected problems:\n- want: %v\n- got: %v", + want, got) + } + }) + } +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/counter.go b/vendor/github.com/prometheus/client_golang/prometheus/counter.go index ee37949ada..72d5256a50 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/counter.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/counter.go @@ -30,16 +30,8 @@ type Counter interface { Metric Collector - // Set is used to set the Counter to an arbitrary value. It is only used - // if you have to transfer a value from an external counter into this - // Prometheus metric. Do not use it for regular handling of a - // Prometheus counter (as it can be used to break the contract of - // monotonically increasing values). - // - // Deprecated: Use NewConstMetric to create a counter for an external - // value. A Counter should never be set. - Set(float64) - // Inc increments the counter by 1. + // Inc increments the counter by 1. Use Add to increment it by arbitrary + // non-negative values. Inc() // Add adds the given value to the counter. It panics if the value is < // 0. diff --git a/vendor/github.com/prometheus/client_golang/prometheus/desc.go b/vendor/github.com/prometheus/client_golang/prometheus/desc.go index 77f4b30e84..1835b16f65 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/desc.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/desc.go @@ -16,20 +16,15 @@ package prometheus import ( "errors" "fmt" - "regexp" "sort" "strings" "github.com/golang/protobuf/proto" + "github.com/prometheus/common/model" dto "github.com/prometheus/client_model/go" ) -var ( - metricNameRE = regexp.MustCompile(`^[a-zA-Z_][a-zA-Z0-9_:]*$`) - labelNameRE = regexp.MustCompile("^[a-zA-Z_][a-zA-Z0-9_]*$") -) - // reservedLabelPrefix is a prefix which is not legal in user-supplied // label names. const reservedLabelPrefix = "__" @@ -78,7 +73,7 @@ type Desc struct { // Help string. Each Desc with the same fqName must have the same // dimHash. dimHash uint64 - // err is an error that occured during construction. It is reported on + // err is an error that occurred during construction. It is reported on // registration time. err error } @@ -103,7 +98,7 @@ func NewDesc(fqName, help string, variableLabels []string, constLabels Labels) * d.err = errors.New("empty help string") return d } - if !metricNameRE.MatchString(fqName) { + if !model.IsValidMetricName(model.LabelValue(fqName)) { d.err = fmt.Errorf("%q is not a valid metric name", fqName) return d } @@ -200,6 +195,6 @@ func (d *Desc) String() string { } func checkLabelName(l string) bool { - return labelNameRE.MatchString(l) && + return model.LabelName(l).IsValid() && !strings.HasPrefix(l, reservedLabelPrefix) } diff --git a/vendor/github.com/prometheus/client_golang/prometheus/doc.go b/vendor/github.com/prometheus/client_golang/prometheus/doc.go index b15a2d3b98..1fdef9edb0 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/doc.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/doc.go @@ -17,7 +17,7 @@ // Pushgateway (package push). // // All exported functions and methods are safe to be used concurrently unless -//specified otherwise. +// specified otherwise. // // A Basic Example // @@ -59,7 +59,7 @@ // // The Handler function provides a default handler to expose metrics // // via an HTTP server. "/metrics" is the usual endpoint for that. // http.Handle("/metrics", promhttp.Handler()) -// http.ListenAndServe(":8080", nil) +// log.Fatal(http.ListenAndServe(":8080", nil)) // } // // @@ -69,7 +69,7 @@ // Metrics // // The number of exported identifiers in this package might appear a bit -// overwhelming. Hovever, in addition to the basic plumbing shown in the example +// overwhelming. However, in addition to the basic plumbing shown in the example // above, you only need to understand the different metric types and their // vector versions for basic usage. // @@ -95,8 +95,8 @@ // SummaryVec, HistogramVec, and UntypedVec are not. // // To create instances of Metrics and their vector versions, you need a suitable -// …Opts struct, i.e. GaugeOpts, CounterOpts, SummaryOpts, -// HistogramOpts, or UntypedOpts. +// …Opts struct, i.e. GaugeOpts, CounterOpts, SummaryOpts, HistogramOpts, or +// UntypedOpts. // // Custom Collectors and constant Metrics // @@ -114,8 +114,8 @@ // Metric instances “on the fly” using NewConstMetric, NewConstHistogram, and // NewConstSummary (and their respective Must… versions). That will happen in // the Collect method. The Describe method has to return separate Desc -// instances, representative of the “throw-away” metrics to be created -// later. NewDesc comes in handy to create those Desc instances. +// instances, representative of the “throw-away” metrics to be created later. +// NewDesc comes in handy to create those Desc instances. // // The Collector example illustrates the use case. You can also look at the // source code of the processCollector (mirroring process metrics), the @@ -129,32 +129,32 @@ // Advanced Uses of the Registry // // While MustRegister is the by far most common way of registering a Collector, -// sometimes you might want to handle the errors the registration might -// cause. As suggested by the name, MustRegister panics if an error occurs. With -// the Register function, the error is returned and can be handled. +// sometimes you might want to handle the errors the registration might cause. +// As suggested by the name, MustRegister panics if an error occurs. With the +// Register function, the error is returned and can be handled. // // An error is returned if the registered Collector is incompatible or // inconsistent with already registered metrics. The registry aims for -// consistency of the collected metrics according to the Prometheus data -// model. Inconsistencies are ideally detected at registration time, not at -// collect time. The former will usually be detected at start-up time of a -// program, while the latter will only happen at scrape time, possibly not even -// on the first scrape if the inconsistency only becomes relevant later. That is -// the main reason why a Collector and a Metric have to describe themselves to -// the registry. +// consistency of the collected metrics according to the Prometheus data model. +// Inconsistencies are ideally detected at registration time, not at collect +// time. The former will usually be detected at start-up time of a program, +// while the latter will only happen at scrape time, possibly not even on the +// first scrape if the inconsistency only becomes relevant later. That is the +// main reason why a Collector and a Metric have to describe themselves to the +// registry. // // So far, everything we did operated on the so-called default registry, as it // can be found in the global DefaultRegistry variable. With NewRegistry, you // can create a custom registry, or you can even implement the Registerer or -// Gatherer interfaces yourself. The methods Register and Unregister work in -// the same way on a custom registry as the global functions Register and -// Unregister on the default registry. +// Gatherer interfaces yourself. The methods Register and Unregister work in the +// same way on a custom registry as the global functions Register and Unregister +// on the default registry. // -// There are a number of uses for custom registries: You can use registries -// with special properties, see NewPedanticRegistry. You can avoid global state, -// as it is imposed by the DefaultRegistry. You can use multiple registries at -// the same time to expose different metrics in different ways. You can use -// separate registries for testing purposes. +// There are a number of uses for custom registries: You can use registries with +// special properties, see NewPedanticRegistry. You can avoid global state, as +// it is imposed by the DefaultRegistry. You can use multiple registries at the +// same time to expose different metrics in different ways. You can use separate +// registries for testing purposes. // // Also note that the DefaultRegistry comes registered with a Collector for Go // runtime metrics (via NewGoCollector) and a Collector for process metrics (via @@ -166,16 +166,20 @@ // The Registry implements the Gatherer interface. The caller of the Gather // method can then expose the gathered metrics in some way. Usually, the metrics // are served via HTTP on the /metrics endpoint. That's happening in the example -// above. The tools to expose metrics via HTTP are in the promhttp -// sub-package. (The top-level functions in the prometheus package are -// deprecated.) +// above. The tools to expose metrics via HTTP are in the promhttp sub-package. +// (The top-level functions in the prometheus package are deprecated.) // // Pushing to the Pushgateway // // Function for pushing to the Pushgateway can be found in the push sub-package. // +// Graphite Bridge +// +// Functions and examples to push metrics from a Gatherer to Graphite can be +// found in the graphite sub-package. +// // Other Means of Exposition // -// More ways of exposing metrics can easily be added. Sending metrics to -// Graphite would be an example that will soon be implemented. +// More ways of exposing metrics can easily be added by following the approaches +// of the existing implementations. package prometheus diff --git a/vendor/github.com/prometheus/client_golang/prometheus/gauge.go b/vendor/github.com/prometheus/client_golang/prometheus/gauge.go index 8b70e5141d..9ab5a3d621 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/gauge.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/gauge.go @@ -27,16 +27,21 @@ type Gauge interface { // Set sets the Gauge to an arbitrary value. Set(float64) - // Inc increments the Gauge by 1. + // Inc increments the Gauge by 1. Use Add to increment it by arbitrary + // values. Inc() - // Dec decrements the Gauge by 1. + // Dec decrements the Gauge by 1. Use Sub to decrement it by arbitrary + // values. Dec() - // Add adds the given value to the Gauge. (The value can be - // negative, resulting in a decrease of the Gauge.) + // Add adds the given value to the Gauge. (The value can be negative, + // resulting in a decrease of the Gauge.) Add(float64) // Sub subtracts the given value from the Gauge. (The value can be // negative, resulting in an increase of the Gauge.) Sub(float64) + + // SetToCurrentTime sets the Gauge to the current Unix time in seconds. + SetToCurrentTime() } // GaugeOpts is an alias for Opts. See there for doc comments. diff --git a/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go b/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go index abc9d4ec40..f96764559b 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/go_collector.go @@ -8,8 +8,9 @@ import ( ) type goCollector struct { - goroutines Gauge - gcDesc *Desc + goroutinesDesc *Desc + threadsDesc *Desc + gcDesc *Desc // metrics to describe and collect metrics memStatsMetrics @@ -19,11 +20,14 @@ type goCollector struct { // go process. func NewGoCollector() Collector { return &goCollector{ - goroutines: NewGauge(GaugeOpts{ - Namespace: "go", - Name: "goroutines", - Help: "Number of goroutines that currently exist.", - }), + goroutinesDesc: NewDesc( + "go_goroutines", + "Number of goroutines that currently exist.", + nil, nil), + threadsDesc: NewDesc( + "go_threads", + "Number of OS threads created", + nil, nil), gcDesc: NewDesc( "go_gc_duration_seconds", "A summary of the GC invocation durations.", @@ -48,7 +52,7 @@ func NewGoCollector() Collector { }, { desc: NewDesc( memstatNamespace("sys_bytes"), - "Number of bytes obtained by system. Sum of all system allocations.", + "Number of bytes obtained from system.", nil, nil, ), eval: func(ms *runtime.MemStats) float64 { return float64(ms.Sys) }, @@ -111,12 +115,12 @@ func NewGoCollector() Collector { valType: GaugeValue, }, { desc: NewDesc( - memstatNamespace("heap_released_bytes_total"), - "Total number of heap bytes released to OS.", + memstatNamespace("heap_released_bytes"), + "Number of heap bytes released to OS.", nil, nil, ), eval: func(ms *runtime.MemStats) float64 { return float64(ms.HeapReleased) }, - valType: CounterValue, + valType: GaugeValue, }, { desc: NewDesc( memstatNamespace("heap_objects"), @@ -213,6 +217,14 @@ func NewGoCollector() Collector { ), eval: func(ms *runtime.MemStats) float64 { return float64(ms.LastGC) / 1e9 }, valType: GaugeValue, + }, { + desc: NewDesc( + memstatNamespace("gc_cpu_fraction"), + "The fraction of this program's available CPU time used by the GC since the program started.", + nil, nil, + ), + eval: func(ms *runtime.MemStats) float64 { return ms.GCCPUFraction }, + valType: GaugeValue, }, }, } @@ -224,9 +236,9 @@ func memstatNamespace(s string) string { // Describe returns all descriptions of the collector. func (c *goCollector) Describe(ch chan<- *Desc) { - ch <- c.goroutines.Desc() + ch <- c.goroutinesDesc + ch <- c.threadsDesc ch <- c.gcDesc - for _, i := range c.metrics { ch <- i.desc } @@ -234,8 +246,9 @@ func (c *goCollector) Describe(ch chan<- *Desc) { // Collect returns the current state of all metrics of the collector. func (c *goCollector) Collect(ch chan<- Metric) { - c.goroutines.Set(float64(runtime.NumGoroutine())) - ch <- c.goroutines + ch <- MustNewConstMetric(c.goroutinesDesc, GaugeValue, float64(runtime.NumGoroutine())) + n, _ := runtime.ThreadCreateProfile(nil) + ch <- MustNewConstMetric(c.threadsDesc, GaugeValue, float64(n)) var stats debug.GCStats stats.PauseQuantiles = make([]time.Duration, 5) diff --git a/vendor/github.com/prometheus/client_golang/prometheus/http.go b/vendor/github.com/prometheus/client_golang/prometheus/http.go index 67ee5ac794..d74fb4881e 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/http.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/http.go @@ -62,7 +62,7 @@ func giveBuf(buf *bytes.Buffer) { // // Deprecated: Please note the issues described in the doc comment of // InstrumentHandler. You might want to consider using promhttp.Handler instead -// (which is non instrumented). +// (which is not instrumented). func Handler() http.Handler { return InstrumentHandler("prometheus", UninstrumentedHandler()) } @@ -172,6 +172,9 @@ func nowSeries(t ...time.Time) nower { // httputil.ReverseProxy is a prominent example for a handler // performing such writes. // +// - It has additional issues with HTTP/2, cf. +// https://github.com/prometheus/client_golang/issues/272. +// // Upcoming versions of this package will provide ways of instrumenting HTTP // handlers that are more flexible and have fewer issues. Please prefer direct // instrumentation in the meantime. @@ -190,6 +193,7 @@ func InstrumentHandlerFunc(handlerName string, handlerFunc func(http.ResponseWri SummaryOpts{ Subsystem: "http", ConstLabels: Labels{"handler": handlerName}, + Objectives: map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001}, }, handlerFunc, ) @@ -245,34 +249,52 @@ func InstrumentHandlerFuncWithOpts(opts SummaryOpts, handlerFunc func(http.Respo }, instLabels, ) + if err := Register(reqCnt); err != nil { + if are, ok := err.(AlreadyRegisteredError); ok { + reqCnt = are.ExistingCollector.(*CounterVec) + } else { + panic(err) + } + } opts.Name = "request_duration_microseconds" opts.Help = "The HTTP request latencies in microseconds." reqDur := NewSummary(opts) + if err := Register(reqDur); err != nil { + if are, ok := err.(AlreadyRegisteredError); ok { + reqDur = are.ExistingCollector.(Summary) + } else { + panic(err) + } + } opts.Name = "request_size_bytes" opts.Help = "The HTTP request sizes in bytes." reqSz := NewSummary(opts) + if err := Register(reqSz); err != nil { + if are, ok := err.(AlreadyRegisteredError); ok { + reqSz = are.ExistingCollector.(Summary) + } else { + panic(err) + } + } opts.Name = "response_size_bytes" opts.Help = "The HTTP response sizes in bytes." resSz := NewSummary(opts) - - regReqCnt := MustRegisterOrGet(reqCnt).(*CounterVec) - regReqDur := MustRegisterOrGet(reqDur).(Summary) - regReqSz := MustRegisterOrGet(reqSz).(Summary) - regResSz := MustRegisterOrGet(resSz).(Summary) + if err := Register(resSz); err != nil { + if are, ok := err.(AlreadyRegisteredError); ok { + resSz = are.ExistingCollector.(Summary) + } else { + panic(err) + } + } return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { now := time.Now() delegate := &responseWriterDelegator{ResponseWriter: w} - out := make(chan int) - urlLen := 0 - if r.URL != nil { - urlLen = len(r.URL.String()) - } - go computeApproximateRequestSize(r, out, urlLen) + out := computeApproximateRequestSize(r) _, cn := w.(http.CloseNotifier) _, fl := w.(http.Flusher) @@ -290,30 +312,44 @@ func InstrumentHandlerFuncWithOpts(opts SummaryOpts, handlerFunc func(http.Respo method := sanitizeMethod(r.Method) code := sanitizeCode(delegate.status) - regReqCnt.WithLabelValues(method, code).Inc() - regReqDur.Observe(elapsed) - regResSz.Observe(float64(delegate.written)) - regReqSz.Observe(float64(<-out)) + reqCnt.WithLabelValues(method, code).Inc() + reqDur.Observe(elapsed) + resSz.Observe(float64(delegate.written)) + reqSz.Observe(float64(<-out)) }) } -func computeApproximateRequestSize(r *http.Request, out chan int, s int) { - s += len(r.Method) - s += len(r.Proto) - for name, values := range r.Header { - s += len(name) - for _, value := range values { - s += len(value) +func computeApproximateRequestSize(r *http.Request) <-chan int { + // Get URL length in current go routine for avoiding a race condition. + // HandlerFunc that runs in parallel may modify the URL. + s := 0 + if r.URL != nil { + s += len(r.URL.String()) + } + + out := make(chan int, 1) + + go func() { + s += len(r.Method) + s += len(r.Proto) + for name, values := range r.Header { + s += len(name) + for _, value := range values { + s += len(value) + } } - } - s += len(r.Host) + s += len(r.Host) - // N.B. r.Form and r.MultipartForm are assumed to be included in r.URL. + // N.B. r.Form and r.MultipartForm are assumed to be included in r.URL. - if r.ContentLength != -1 { - s += int(r.ContentLength) - } - out <- s + if r.ContentLength != -1 { + s += int(r.ContentLength) + } + out <- s + close(out) + }() + + return out } type responseWriterDelegator struct { diff --git a/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go b/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go index e31e62e78d..94b2553e14 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/process_collector.go @@ -19,10 +19,10 @@ type processCollector struct { pid int collectFn func(chan<- Metric) pidFn func() (int, error) - cpuTotal Counter - openFDs, maxFDs Gauge - vsize, rss Gauge - startTime Gauge + cpuTotal *Desc + openFDs, maxFDs *Desc + vsize, rss *Desc + startTime *Desc } // NewProcessCollector returns a collector which exports the current state of @@ -44,40 +44,45 @@ func NewProcessCollectorPIDFn( pidFn func() (int, error), namespace string, ) Collector { + ns := "" + if len(namespace) > 0 { + ns = namespace + "_" + } + c := processCollector{ pidFn: pidFn, collectFn: func(chan<- Metric) {}, - cpuTotal: NewCounter(CounterOpts{ - Namespace: namespace, - Name: "process_cpu_seconds_total", - Help: "Total user and system CPU time spent in seconds.", - }), - openFDs: NewGauge(GaugeOpts{ - Namespace: namespace, - Name: "process_open_fds", - Help: "Number of open file descriptors.", - }), - maxFDs: NewGauge(GaugeOpts{ - Namespace: namespace, - Name: "process_max_fds", - Help: "Maximum number of open file descriptors.", - }), - vsize: NewGauge(GaugeOpts{ - Namespace: namespace, - Name: "process_virtual_memory_bytes", - Help: "Virtual memory size in bytes.", - }), - rss: NewGauge(GaugeOpts{ - Namespace: namespace, - Name: "process_resident_memory_bytes", - Help: "Resident memory size in bytes.", - }), - startTime: NewGauge(GaugeOpts{ - Namespace: namespace, - Name: "process_start_time_seconds", - Help: "Start time of the process since unix epoch in seconds.", - }), + cpuTotal: NewDesc( + ns+"process_cpu_seconds_total", + "Total user and system CPU time spent in seconds.", + nil, nil, + ), + openFDs: NewDesc( + ns+"process_open_fds", + "Number of open file descriptors.", + nil, nil, + ), + maxFDs: NewDesc( + ns+"process_max_fds", + "Maximum number of open file descriptors.", + nil, nil, + ), + vsize: NewDesc( + ns+"process_virtual_memory_bytes", + "Virtual memory size in bytes.", + nil, nil, + ), + rss: NewDesc( + ns+"process_resident_memory_bytes", + "Resident memory size in bytes.", + nil, nil, + ), + startTime: NewDesc( + ns+"process_start_time_seconds", + "Start time of the process since unix epoch in seconds.", + nil, nil, + ), } // Set up process metric collection if supported by the runtime. @@ -90,12 +95,12 @@ func NewProcessCollectorPIDFn( // Describe returns all descriptions of the collector. func (c *processCollector) Describe(ch chan<- *Desc) { - ch <- c.cpuTotal.Desc() - ch <- c.openFDs.Desc() - ch <- c.maxFDs.Desc() - ch <- c.vsize.Desc() - ch <- c.rss.Desc() - ch <- c.startTime.Desc() + ch <- c.cpuTotal + ch <- c.openFDs + ch <- c.maxFDs + ch <- c.vsize + ch <- c.rss + ch <- c.startTime } // Collect returns the current state of all metrics of the collector. @@ -117,26 +122,19 @@ func (c *processCollector) processCollect(ch chan<- Metric) { } if stat, err := p.NewStat(); err == nil { - c.cpuTotal.Set(stat.CPUTime()) - ch <- c.cpuTotal - c.vsize.Set(float64(stat.VirtualMemory())) - ch <- c.vsize - c.rss.Set(float64(stat.ResidentMemory())) - ch <- c.rss - + ch <- MustNewConstMetric(c.cpuTotal, CounterValue, stat.CPUTime()) + ch <- MustNewConstMetric(c.vsize, GaugeValue, float64(stat.VirtualMemory())) + ch <- MustNewConstMetric(c.rss, GaugeValue, float64(stat.ResidentMemory())) if startTime, err := stat.StartTime(); err == nil { - c.startTime.Set(startTime) - ch <- c.startTime + ch <- MustNewConstMetric(c.startTime, GaugeValue, startTime) } } if fds, err := p.FileDescriptorsLen(); err == nil { - c.openFDs.Set(float64(fds)) - ch <- c.openFDs + ch <- MustNewConstMetric(c.openFDs, GaugeValue, float64(fds)) } if limits, err := p.NewLimits(); err == nil { - c.maxFDs.Set(float64(limits.OpenFiles)) - ch <- c.maxFDs + ch <- MustNewConstMetric(c.maxFDs, GaugeValue, float64(limits.OpenFiles)) } } diff --git a/vendor/github.com/prometheus/client_golang/prometheus/registry.go b/vendor/github.com/prometheus/client_golang/prometheus/registry.go index 32a3986b06..8c6b5bd8ee 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/registry.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/registry.go @@ -152,38 +152,6 @@ func MustRegister(cs ...Collector) { DefaultRegisterer.MustRegister(cs...) } -// RegisterOrGet registers the provided Collector with the DefaultRegisterer and -// returns the Collector, unless an equal Collector was registered before, in -// which case that Collector is returned. -// -// Deprecated: RegisterOrGet is merely a convenience function for the -// implementation as described in the documentation for -// AlreadyRegisteredError. As the use case is relatively rare, this function -// will be removed in a future version of this package to clean up the -// namespace. -func RegisterOrGet(c Collector) (Collector, error) { - if err := Register(c); err != nil { - if are, ok := err.(AlreadyRegisteredError); ok { - return are.ExistingCollector, nil - } - return nil, err - } - return c, nil -} - -// MustRegisterOrGet behaves like RegisterOrGet but panics instead of returning -// an error. -// -// Deprecated: This is deprecated for the same reason RegisterOrGet is. See -// there for details. -func MustRegisterOrGet(c Collector) Collector { - c, err := RegisterOrGet(c) - if err != nil { - panic(err) - } - return c -} - // Unregister removes the registration of the provided Collector from the // DefaultRegisterer. // @@ -201,25 +169,6 @@ func (gf GathererFunc) Gather() ([]*dto.MetricFamily, error) { return gf() } -// SetMetricFamilyInjectionHook replaces the DefaultGatherer with one that -// gathers from the previous DefaultGatherers but then merges the MetricFamily -// protobufs returned from the provided hook function with the MetricFamily -// protobufs returned from the original DefaultGatherer. -// -// Deprecated: This function manipulates the DefaultGatherer variable. Consider -// the implications, i.e. don't do this concurrently with any uses of the -// DefaultGatherer. In the rare cases where you need to inject MetricFamily -// protobufs directly, it is recommended to use a custom Registry and combine it -// with a custom Gatherer using the Gatherers type (see -// there). SetMetricFamilyInjectionHook only exists for compatibility reasons -// with previous versions of this package. -func SetMetricFamilyInjectionHook(hook func() []*dto.MetricFamily) { - DefaultGatherer = Gatherers{ - DefaultGatherer, - GathererFunc(func() ([]*dto.MetricFamily, error) { return hook(), nil }), - } -} - // AlreadyRegisteredError is returned by the Register method if the Collector to // be registered has already been registered before, or a different Collector // that collects the same metrics has been registered before. Registration fails @@ -294,7 +243,7 @@ func (r *Registry) Register(c Collector) error { }() r.mtx.Lock() defer r.mtx.Unlock() - // Coduct various tests... + // Conduct various tests... for desc := range descChan { // Is the descriptor valid at all? @@ -447,7 +396,7 @@ func (r *Registry) Gather() ([]*dto.MetricFamily, error) { // Drain metricChan in case of premature return. defer func() { - for _ = range metricChan { + for range metricChan { } }() @@ -683,7 +632,7 @@ func (s metricSorter) Less(i, j int) bool { return s[i].GetTimestampMs() < s[j].GetTimestampMs() } -// normalizeMetricFamilies returns a MetricFamily slice whith empty +// normalizeMetricFamilies returns a MetricFamily slice with empty // MetricFamilies pruned and the remaining MetricFamilies sorted by name within // the slice, with the contained Metrics sorted within each MetricFamily. func normalizeMetricFamilies(metricFamiliesByName map[string]*dto.MetricFamily) []*dto.MetricFamily { diff --git a/vendor/github.com/prometheus/client_golang/prometheus/summary.go b/vendor/github.com/prometheus/client_golang/prometheus/summary.go index bce05bf9a0..82b885019b 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/summary.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/summary.go @@ -54,6 +54,9 @@ type Summary interface { } // DefObjectives are the default Summary quantile values. +// +// Deprecated: DefObjectives will not be used as the default objectives in +// v0.10 of the library. The default Summary will have no quantiles then. var ( DefObjectives = map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001} @@ -113,9 +116,15 @@ type SummaryOpts struct { ConstLabels Labels // Objectives defines the quantile rank estimates with their respective - // absolute error. If Objectives[q] = e, then the value reported - // for q will be the φ-quantile value for some φ between q-e and q+e. - // The default value is DefObjectives. + // absolute error. If Objectives[q] = e, then the value reported for q + // will be the φ-quantile value for some φ between q-e and q+e. The + // default value is DefObjectives. It is used if Objectives is left at + // its zero value (i.e. nil). To create a Summary without Objectives, + // set it to an empty map (i.e. map[float64]float64{}). + // + // Deprecated: Note that the current value of DefObjectives is + // deprecated. It will be replaced by an empty map in v0.10 of the + // library. Please explicitly set Objectives to the desired value. Objectives map[float64]float64 // MaxAge defines the duration for which an observation stays relevant @@ -183,7 +192,7 @@ func newSummary(desc *Desc, opts SummaryOpts, labelValues ...string) Summary { } } - if len(opts.Objectives) == 0 { + if opts.Objectives == nil { opts.Objectives = DefObjectives } diff --git a/vendor/github.com/prometheus/client_golang/prometheus/timer.go b/vendor/github.com/prometheus/client_golang/prometheus/timer.go new file mode 100644 index 0000000000..f4cac5a0a6 --- /dev/null +++ b/vendor/github.com/prometheus/client_golang/prometheus/timer.go @@ -0,0 +1,74 @@ +// Copyright 2016 The Prometheus Authors +// 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. + +package prometheus + +import "time" + +// Observer is the interface that wraps the Observe method, which is used by +// Histogram and Summary to add observations. +type Observer interface { + Observe(float64) +} + +// The ObserverFunc type is an adapter to allow the use of ordinary +// functions as Observers. If f is a function with the appropriate +// signature, ObserverFunc(f) is an Observer that calls f. +// +// This adapter is usually used in connection with the Timer type, and there are +// two general use cases: +// +// The most common one is to use a Gauge as the Observer for a Timer. +// See the "Gauge" Timer example. +// +// The more advanced use case is to create a function that dynamically decides +// which Observer to use for observing the duration. See the "Complex" Timer +// example. +type ObserverFunc func(float64) + +// Observe calls f(value). It implements Observer. +func (f ObserverFunc) Observe(value float64) { + f(value) +} + +// Timer is a helper type to time functions. Use NewTimer to create new +// instances. +type Timer struct { + begin time.Time + observer Observer +} + +// NewTimer creates a new Timer. The provided Observer is used to observe a +// duration in seconds. Timer is usually used to time a function call in the +// following way: +// func TimeMe() { +// timer := NewTimer(myHistogram) +// defer timer.ObserveDuration() +// // Do actual work. +// } +func NewTimer(o Observer) *Timer { + return &Timer{ + begin: time.Now(), + observer: o, + } +} + +// ObserveDuration records the duration passed since the Timer was created with +// NewTimer. It calls the Observe method of the Observer provided during +// construction with the duration in seconds as an argument. ObserveDuration is +// usually called with a defer statement. +func (t *Timer) ObserveDuration() { + if t.observer != nil { + t.observer.Observe(time.Since(t.begin).Seconds()) + } +} diff --git a/vendor/github.com/prometheus/client_golang/prometheus/untyped.go b/vendor/github.com/prometheus/client_golang/prometheus/untyped.go index 5faf7e6e3e..065501d38f 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/untyped.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/untyped.go @@ -20,6 +20,11 @@ package prometheus // no type information is implied. // // To create Untyped instances, use NewUntyped. +// +// Deprecated: The Untyped type is deprecated because it doesn't make sense in +// direct instrumentation. If you need to mirror an external metric of unknown +// type (usually while writing exporters), Use MustNewConstMetric to create an +// untyped metric instance on the fly. type Untyped interface { Metric Collector diff --git a/vendor/github.com/prometheus/client_golang/prometheus/value.go b/vendor/github.com/prometheus/client_golang/prometheus/value.go index a944c37754..ff75ce5851 100644 --- a/vendor/github.com/prometheus/client_golang/prometheus/value.go +++ b/vendor/github.com/prometheus/client_golang/prometheus/value.go @@ -19,6 +19,7 @@ import ( "math" "sort" "sync/atomic" + "time" dto "github.com/prometheus/client_model/go" @@ -43,7 +44,7 @@ var errInconsistentCardinality = errors.New("inconsistent label cardinality") // ValueType. This is a low-level building block used by the library to back the // implementations of Counter, Gauge, and Untyped. type value struct { - // valBits containst the bits of the represented float64 value. It has + // valBits contains the bits of the represented float64 value. It has // to go first in the struct to guarantee alignment for atomic // operations. http://golang.org/pkg/sync/atomic/#pkg-note-BUG valBits uint64 @@ -80,6 +81,10 @@ func (v *value) Set(val float64) { atomic.StoreUint64(&v.valBits, math.Float64bits(val)) } +func (v *value) SetToCurrentTime() { + v.Set(float64(time.Now().UnixNano()) / 1e9) +} + func (v *value) Inc() { v.Add(1) } diff --git a/vendor/vendor.json b/vendor/vendor.json index 5bdef5e3d6..51cba62d66 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -603,10 +603,10 @@ "revisionTime": "2016-06-15T09:26:46Z" }, { - "checksumSHA1": "KkB+77Ziom7N6RzSbyUwYGrmDeU=", + "checksumSHA1": "d2irkxoHgazkTuLIvJGiYwagl8o=", "path": "github.com/prometheus/client_golang/prometheus", - "revision": "c5b7fccd204277076155f10851dad72b76a49317", - "revisionTime": "2016-08-17T15:48:24Z" + "revision": "08fd2e12372a66e68e30523c7642e0cbc3e4fbde", + "revisionTime": "2017-04-01T10:34:46Z" }, { "checksumSHA1": "DvwvOlPNAgRntBzt3b3OSRMS2N4=", @@ -615,10 +615,10 @@ "revisionTime": "2015-02-12T10:17:44Z" }, { - "checksumSHA1": "jG8qYuDUuaZeflt4JxBBdyQBsXw=", + "checksumSHA1": "Wtpzndm/+bdwwNU5PCTfb4oUhc8=", "path": "github.com/prometheus/common/expfmt", - "revision": "dd2f054febf4a6c00f2343686efb775948a8bff4", - "revisionTime": "2017-01-08T23:12:12Z" + "revision": "49fee292b27bfff7f354ee0f64e1bc4850462edf", + "revisionTime": "2017-02-20T10:38:46Z" }, { "checksumSHA1": "GWlM3d2vPYyNATtTFgftS10/A9w=", @@ -633,10 +633,10 @@ "revisionTime": "2017-01-08T23:12:12Z" }, { - "checksumSHA1": "vopCLXHzYm+3l5fPKOf4/fQwrCM=", + "checksumSHA1": "0LL9u9tfv1KPBjNEiMDP6q7lpog=", "path": "github.com/prometheus/common/model", - "revision": "3007b6072c17c8d985734e6e19b1dea9174e13d3", - "revisionTime": "2017-02-19T00:35:58+01:00" + "revision": "49fee292b27bfff7f354ee0f64e1bc4850462edf", + "revisionTime": "2017-02-20T10:38:46Z" }, { "checksumSHA1": "ZbbESWBHHcPUJ/A5yrzKhTHuPc8=", diff --git a/web/api/v1/api.go b/web/api/v1/api.go index 9cbcf8eebb..3c771fc389 100644 --- a/web/api/v1/api.go +++ b/web/api/v1/api.go @@ -19,6 +19,7 @@ import ( "fmt" "math" "net/http" + "net/url" "strconv" "time" @@ -50,6 +51,7 @@ const ( errorCanceled = "canceled" errorExec = "execution" errorBadData = "bad_data" + errorInternal = "internal" ) var corsHeaders = map[string]string{ @@ -73,7 +75,7 @@ type targetRetriever interface { } type alertmanagerRetriever interface { - Alertmanagers() []string + Alertmanagers() []*url.URL } type response struct { @@ -194,6 +196,8 @@ func (api *API) query(r *http.Request) (interface{}, *apiError) { return nil, &apiError{errorCanceled, res.Err} case promql.ErrQueryTimeout: return nil, &apiError{errorTimeout, res.Err} + case promql.ErrStorage: + return nil, &apiError{errorInternal, res.Err} } return nil, &apiError{errorExec, res.Err} } @@ -362,7 +366,7 @@ func (api *API) dropSeries(r *http.Request) (interface{}, *apiError) { } // TODO(fabxc): temporarily disabled - panic("disabled") + return nil, &apiError{errorExec, fmt.Errorf("temporarily disabled")} // numDeleted := 0 // for _, s := range r.Form["match[]"] { @@ -442,8 +446,8 @@ func (api *API) alertmanagers(r *http.Request) (interface{}, *apiError) { urls := api.alertmanagerRetriever.Alertmanagers() ams := &AlertmanagerDiscovery{ActiveAlertmanagers: make([]*AlertmanagerTarget, len(urls))} - for i := range urls { - ams.ActiveAlertmanagers[i] = &AlertmanagerTarget{URL: urls[i]} + for i, url := range urls { + ams.ActiveAlertmanagers[i] = &AlertmanagerTarget{URL: url.String()} } return ams, nil @@ -474,6 +478,8 @@ func respondError(w http.ResponseWriter, apiErr *apiError, data interface{}) { code = 422 case errorCanceled, errorTimeout: code = http.StatusServiceUnavailable + case errorInternal: + code = http.StatusInternalServerError default: code = http.StatusInternalServerError } diff --git a/web/api/v1/api_test.go b/web/api/v1/api_test.go index 19aa9ca020..d7a3aa97a1 100644 --- a/web/api/v1/api_test.go +++ b/web/api/v1/api_test.go @@ -41,9 +41,9 @@ func (f targetRetrieverFunc) Targets() []*retrieval.Target { return f() } -type alertmanagerRetrieverFunc func() []string +type alertmanagerRetrieverFunc func() []*url.URL -func (f alertmanagerRetrieverFunc) Alertmanagers() []string { +func (f alertmanagerRetrieverFunc) Alertmanagers() []*url.URL { return f() } @@ -79,8 +79,12 @@ func TestEndpoints(t *testing.T) { } }) - ar := alertmanagerRetrieverFunc(func() []string { - return []string{"http://alertmanager.example.com:8080/api/v1/alerts"} + ar := alertmanagerRetrieverFunc(func() []*url.URL { + return []*url.URL{{ + Scheme: "http", + Host: "alertmanager.example.com:8080", + Path: "/api/v1/alerts", + }} }) api := &API{ @@ -430,15 +434,27 @@ func TestEndpoints(t *testing.T) { // }{2}, // }, { // endpoint: api.targets, - // response: []*Target{ - // &Target{ - // DiscoveredLabels: nil, - // Labels: nil, - // ScrapeUrl: "http://example.com:8080/metrics", - // Health: "unknown", + // response: &TargetDiscovery{ + // ActiveTargets: []*Target{ + // { + // DiscoveredLabels: model.LabelSet{}, + // Labels: model.LabelSet{}, + // ScrapeURL: "http://example.com:8080/metrics", + // Health: "unknown", + // }, // }, // }, // }, + { + endpoint: api.alertmanagers, + response: &AlertmanagerDiscovery{ + ActiveAlertmanagers: []*AlertmanagerTarget{ + { + URL: "http://alertmanager.example.com:8080/api/v1/alerts", + }, + }, + }, + }, } for _, test := range tests { diff --git a/web/ui/bindata.go b/web/ui/bindata.go index 58e0002bc3..d93722cc95 100644 --- a/web/ui/bindata.go +++ b/web/ui/bindata.go @@ -226,7 +226,7 @@ func webUiTemplatesRulesHtml() (*asset, error) { return a, nil } -var _webUiTemplatesStatusHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x54\xc1\x8e\xda\x30\x10\xbd\xe7\x2b\x5c\xdf\x43\xa4\x3d\x1b\x4b\x65\xa9\xaa\x5e\x57\xa5\x7b\x36\xf1\x80\x47\x0d\x63\x34\x36\xb4\x2b\xcb\xff\x5e\x25\x10\x48\xa4\x65\xa1\xca\xa1\xbd\x40\x5e\xe6\xe9\xbd\xf1\x73\x66\x52\xb2\xb0\x41\x02\x21\x1d\x18\x2b\x73\x56\x9f\xca\x52\x10\xfe\x16\x65\xa9\x53\x02\xb2\x39\x17\xc5\x95\x55\x7b\x8a\x40\x51\xe6\x5c\x08\xa1\x2c\x1e\x45\xdd\x98\x10\xe6\x5d\xc1\x20\x01\x97\x9b\xe6\x80\x56\xea\x42\x08\x21\x94\x7b\x12\x68\xe7\x92\x0f\x14\x71\x07\x52\xbf\x9c\x1e\xc4\x37\xda\x78\xde\x99\x88\x9e\x54\xe5\x9e\xce\xec\x68\xd6\x0d\xf4\x8a\x27\xd0\xfd\x96\xb5\x27\x0b\x14\xc0\x9e\xf1\xda\xb3\x05\xbe\xc0\x10\x19\xf7\x17\xe4\xfc\x11\xf8\xdc\x40\x2b\xba\xf6\xf6\xad\x47\x2d\xe6\x2b\x68\xa1\xd3\xab\x7d\xdb\x93\xaa\xa2\x1b\x57\xac\x4e\x69\xb6\x40\x8e\x6e\xb6\xfa\xfe\x9c\xb3\xaa\xa2\x1d\x08\x55\x43\xa5\x77\x64\x5f\x3d\xff\x44\xda\x8a\x25\x32\xd4\xd1\xf3\xdb\x0d\x87\xe7\xd7\xe5\x47\xda\xaa\x1a\x9c\x40\x55\xdd\x19\x75\x31\x8a\x77\x7d\xc0\xc6\xe2\x35\x52\xa9\x17\xed\x9b\xff\x2a\x65\x11\x6a\xbf\x87\xb9\x64\xff\x4b\xea\x1f\xc0\xa1\x6b\xea\xdd\x40\xce\xd5\xfe\xff\x6f\x83\x1f\x39\xbd\xc0\x11\x1f\xb0\xea\x69\x93\xbc\x16\x6c\xa8\x76\x77\x9c\x4e\xa4\x69\x3e\xed\xe5\xae\x02\xf0\x3d\xab\x9e\x37\xdd\x6d\x69\xe2\xad\x01\x19\xb9\xb5\xbc\x49\x6e\x5f\xfd\x63\xdf\xc6\x85\x37\x71\x74\x4c\x03\x1c\x77\x86\xcc\x16\x38\x48\xfd\x79\x08\xff\xed\xcc\x74\x3b\xe4\x0b\xd9\xbd\x47\x8a\xe3\x34\xc6\x89\xa6\xc4\x86\xb6\x20\x66\xa3\xe6\xbb\x0d\x7d\x23\xf2\x2e\xc9\x8f\xaf\xa9\xdf\xfd\x77\x82\x54\x95\xc5\xa3\x2e\x7a\xf6\x9f\x00\x00\x00\xff\xff\x94\xfe\x26\xaf\x4f\x06\x00\x00") +var _webUiTemplatesStatusHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x55\xc1\x8e\xdb\x20\x14\xbc\xfb\x2b\x5e\x39\xae\xea\x20\xed\xb1\x22\x48\xcd\xa6\x6a\x2b\xf5\x50\xa5\x4d\xf7\x4c\xcc\x4b\x40\x75\x20\x02\x92\x6d\x84\xf8\xf7\x0a\x27\x76\x6c\x29\xbb\xd9\xca\x87\xee\x25\x61\x60\x34\xf3\x98\x07\x38\x46\x89\x6b\x6d\x10\x88\x42\x21\x49\x4a\xec\x5d\x59\x82\xd1\x7f\xa0\x2c\x79\x8c\x68\x64\x4a\x45\x71\x61\x55\xd6\x04\x34\x81\xa4\x54\x00\x30\xa9\x0f\x50\xd5\xc2\xfb\x69\xb3\x20\xb4\x41\x57\xae\xeb\xbd\x96\x84\x17\x00\x00\x4c\xdd\x83\x96\x53\xe2\xf6\x26\xe8\x2d\x12\xbe\x38\x0d\xe0\xab\x59\x5b\xb7\x15\x41\x5b\xc3\xa8\xba\x3f\xb3\x83\x58\xd5\xd8\x2a\x9e\x40\xf3\x5b\x56\xd6\x48\x34\x1e\xe5\x19\xaf\xac\x93\xe8\x3a\xe8\x83\xd3\xbb\x0e\x29\x7b\x40\x77\x2e\x20\x8b\xae\xac\x3c\xb6\x28\x63\x77\x01\x19\x2a\xbe\xdc\xe5\x9a\x18\x0d\x6a\xb8\x22\x79\x8c\x93\x99\x76\x41\x4d\x96\x3f\x1f\x52\x62\x34\xc8\x9e\x10\xed\x2b\x5d\x91\x7d\xb4\xee\xb7\x36\x1b\x98\x6b\x87\x55\xb0\xee\xf8\x8c\xc3\xc3\xe3\xfc\x25\x6d\x46\x7b\x3b\x60\xb4\xd9\x23\x2f\x06\xf1\xae\xf6\xba\x96\xfa\x12\x29\xe1\xb3\x3c\xf3\xa6\x52\x06\x5f\xd9\x1d\x4e\x89\xb3\x4f\x84\xff\x42\xe7\x9b\xa2\xae\x06\x72\x5e\x6d\xff\xff\x35\xf8\x81\xd3\x02\x0f\xfa\x15\x56\x2d\x6d\x94\xd7\xcc\x09\x53\xa9\x1b\x4e\x27\xd2\x38\x9f\xdc\xdc\xa5\x47\x77\xcb\xaa\xe5\x8d\x77\x9b\x8b\xf0\xdc\x05\x19\xb8\x65\xde\x28\xb7\xcf\xf6\x75\x67\xa3\xe3\x8d\xbc\x3a\xa2\x46\x17\xb6\xc2\x88\x0d\x3a\x4f\xf8\xc7\x3e\xfc\xbf\x77\xa6\x79\x43\x3e\x19\xb9\xb3\xda\x84\x61\x1a\xc3\x44\x63\x74\xc2\x6c\x10\x26\x83\xe2\x9b\x17\xfa\xaa\x70\x8c\xf4\x0e\xfa\x5c\x58\x2e\xbe\x79\x10\xf5\x93\x38\x7a\x50\xe2\x80\xf0\xa3\x52\xb8\xc5\xf7\xf0\xc5\xfa\x00\xc2\x48\xf8\x2e\x72\x9f\x30\xc0\x1d\xed\x09\x77\x5d\x39\xf1\x53\xfa\x40\x29\x13\xa0\x1c\xae\xa7\x64\x38\x1d\xe3\x24\x8b\xa5\x44\x78\x37\x64\x54\x64\x90\xb5\x5f\x3e\x33\xed\x87\xe8\x46\x57\x19\x95\xfa\xc0\x8b\x96\xfd\x37\x00\x00\xff\xff\x3e\x79\x94\x2b\xdc\x06\x00\x00") func webUiTemplatesStatusHtmlBytes() ([]byte, error) { return bindataRead( @@ -241,7 +241,7 @@ func webUiTemplatesStatusHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/ui/templates/status.html", size: 1615, mode: os.FileMode(420), modTime: time.Unix(1481727016, 0)} + info := bindataFileInfo{name: "web/ui/templates/status.html", size: 1756, mode: os.FileMode(420), modTime: time.Unix(1493279723, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -261,7 +261,7 @@ func webUiTemplatesTargetsHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/ui/templates/targets.html", size: 2275, mode: os.FileMode(420), modTime: time.Unix(1491298465, 0)} + info := bindataFileInfo{name: "web/ui/templates/targets.html", size: 2275, mode: os.FileMode(420), modTime: time.Unix(1493279721, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -286,7 +286,7 @@ func webUiStaticCssAlertsCss() (*asset, error) { return a, nil } -var _webUiStaticCssGraphCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x6d\x8f\xdb\x36\x0c\xfe\x9e\x5f\xc1\xdd\x61\x40\x3b\xc4\x86\x9d\x26\xbb\xab\x83\x16\xd8\xb7\xfd\x87\xa1\x30\x68\x8b\x76\x84\x93\x25\x43\x62\x5e\x6e\x43\xff\xfb\x20\x29\x4e\xec\xbc\x6d\x05\x7a\x77\x39\x40\x21\xc5\x87\x7c\x48\x3e\x76\x65\xc4\x3b\xfc\x33\x03\xe8\xd0\xb6\x52\x17\x90\xad\x67\xdf\x67\xb3\x94\x76\xa8\x4a\xc7\xc8\x2e\x58\x1b\xa3\x39\x71\xf2\x6f\x2a\x20\xcf\xfb\x43\xf4\x69\x2d\xf6\x9b\x72\x6f\xb1\xef\xc9\x8e\x82\x24\x6c\xfa\x02\xf2\xc5\xc4\x2f\xd8\x7b\xe3\x24\x4b\xa3\x0b\xb0\xa4\x90\xe5\x8e\xd6\x33\x00\x45\x0d\x17\xb0\xcc\xbc\x3f\x40\x27\x75\xb2\x21\xd9\x6e\xc2\x77\xd9\x31\xc8\x33\x0a\x51\x9e\x03\x4d\x80\x06\x9f\x54\xe3\x2e\x61\xac\xdc\xff\x71\xf9\x0a\x4a\xc2\x57\xc0\x98\x17\x0a\x21\x75\x5b\xc0\xaa\x3f\x8c\x9c\x19\xab\xa4\x47\x4d\xc1\xa7\x32\x56\x90\x4d\x62\xb2\x79\x7f\x00\x67\x94\x14\xf0\x2c\x84\x58\x9f\xcd\x36\x26\x7e\xd7\x5e\x19\x66\xd3\xdd\x72\x18\xe7\x30\xe6\xcd\xed\xda\x31\x7e\xac\xe7\x7c\x1b\x11\x1f\xc2\x4f\xed\x37\xe0\x83\x83\x87\x53\xd4\x92\x16\x01\x4b\x48\xd7\x2b\x7c\x2f\x40\x6a\x25\x35\x25\x95\x32\xf5\x9b\x0f\xb3\x23\xcb\xb2\x46\x95\xa0\x92\xad\x2e\x80\x4d\xbf\x1e\x0f\x4f\xf8\x5d\x66\xd3\x09\x41\x4b\xf8\xa0\xfd\x61\xb6\x1a\xec\xa4\x7a\x2f\xe0\x0f\x2b\x51\xcd\xe1\x4f\x52\x3b\xf2\x48\x73\x70\xa8\x5d\xe2\xc8\xca\x66\x8c\xe4\x1b\x95\xc5\xff\x11\xea\xbd\xc4\x83\x8c\x9d\x37\x3b\xb2\x8d\x32\xfb\x02\x36\x52\x08\xd2\xeb\x09\x34\x56\xce\xa8\x2d\x07\xe8\x81\xcc\xc8\x50\xa4\x26\xf3\x87\xbd\x14\xbc\x29\x2e\x2b\x81\x54\x10\xa3\x54\x90\x4a\xa6\x2e\xc5\xda\x97\x10\x20\x03\x4b\xc3\xd4\xe6\xe9\x92\xba\x49\x4b\xb3\x74\xe5\xbf\x09\x2c\x63\x45\xea\xce\x52\x5d\xc6\xc9\x1f\xa0\x0f\xa7\xd2\xed\x91\xeb\xb8\x15\x8d\x32\xc8\x05\x84\x21\x58\x3f\x6a\xe3\xb1\xbc\xfc\xb8\x72\x27\xc0\x61\x05\x8f\x24\x2f\xfa\x43\xf8\x64\xf0\x1a\x0c\xdf\x67\x33\xa9\xfb\x2d\xff\xc5\x92\x15\x7d\xf9\xed\x5b\xb1\xf1\x5c\x17\xd8\xf0\x51\x00\x6a\xa3\x99\x34\x17\x80\xcc\xf6\x43\x70\xfb\x18\x4b\xa8\x8d\x6e\x64\x0b\xe1\xfe\x1c\x86\xa3\x23\x45\x35\x87\xab\xa7\x24\x16\xe3\x24\x92\x51\x5b\x46\x61\x02\x8b\xb7\x46\xf5\xe4\xe5\x8c\xa2\x92\xb1\x52\x34\x91\xb7\x30\x31\x11\x60\x44\x7f\x96\xbe\x1e\xfb\x73\x4c\x48\x63\x47\x5f\x9e\xa4\x76\x64\xb9\xec\x88\xad\xac\x9f\xc6\xaa\x72\xca\x6a\xe8\x90\x40\xa6\x5e\xd6\x6f\x47\x1e\xc6\xad\xcd\x7a\x0e\x3e\x91\xba\x18\x99\xb4\x28\xc3\xf9\xe9\xdb\x1c\xc6\x06\x8b\xba\xa5\xc1\x34\x46\x8c\xba\x93\xe4\x13\x72\x8e\xeb\x9e\x9c\x06\x85\xac\x35\xf6\x4a\xd2\x2e\x7a\x1a\x5d\x2b\xd6\x73\x48\x1b\x63\xbb\xc4\x77\xcd\x1a\x35\x87\x3b\xf2\x38\x88\x0b\x0a\xb9\x75\xa7\x56\xf4\xd6\x74\xc4\x1b\xda\xba\x98\x6f\xd9\x5a\xb3\xed\x1f\xeb\xc7\x90\x85\x9f\xb4\x21\xb3\xf3\xba\xe2\x96\xcd\xa3\xd8\xe9\x88\x9d\x6b\x6e\x3e\x7d\x1e\x4a\xbb\x93\x99\x2f\xf9\xb2\x3b\xe7\xce\xdf\xbd\x75\x86\x3b\xad\xcd\xc5\xde\x2c\x3e\xc7\xf3\x89\xf3\xdf\xfd\x63\x64\x71\x35\x66\xf9\xf2\xd6\x96\xa7\xcb\xc5\xeb\xea\x25\x5f\x7e\x5a\x87\x05\x52\xc6\x16\xf0\xbc\x5a\xad\x82\x28\x61\xfd\xe6\xd3\xd0\x22\x19\x2c\x4d\xd3\x5c\x58\x64\x87\x2d\x15\xa0\x8d\xa6\xb3\xd4\x4f\x34\xbe\xae\x6b\x6f\x49\xf6\x54\xbd\x49\x4e\x2a\x73\x48\xdc\x06\x85\xe7\xdc\xcf\x38\x43\x16\xbc\xfd\xc7\xb6\x15\x7e\xc8\xe6\x10\xff\xd2\xec\x65\xf5\x31\x06\xfd\xe1\x2b\x03\x1a\x5b\xd4\x83\xf8\x1e\x27\x29\xd4\x02\x84\x8e\x12\xa9\x13\xb3\x65\x48\xf3\x95\x9b\xdf\x48\xf0\xca\x29\x44\x36\x3f\x12\xf4\x3f\x82\xfd\xac\x48\x8f\x46\xc8\xab\x43\x79\x35\x47\x8b\xd3\xdb\x4d\x4a\x87\xde\x92\x73\xd2\xe8\x6b\xb7\x3c\xcb\x7e\x85\x5f\x64\xd7\x1b\xcb\xa8\xf9\x86\x36\xe6\xb7\xe2\x8c\xa4\x75\xc0\x0b\x5b\x77\x33\x52\xdc\xa0\x97\xe9\x73\xdb\xcb\x02\x4a\x4d\x16\x52\x2b\xeb\x37\xb7\xc1\x7d\x39\x7a\x49\xb8\x31\x9b\x8b\xf0\xb3\xbe\x23\x19\xff\x06\x00\x00\xff\xff\xe4\x08\x14\x6d\x6c\x0a\x00\x00") +var _webUiStaticCssGraphCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xff\x8e\xa3\x36\x10\xfe\x3f\x4f\x31\xdd\x55\xa5\xbb\x2a\x20\x48\x37\xb7\x7b\x44\x77\x52\xff\xeb\x3b\x54\x27\x34\xc0\x40\xac\x35\x36\xb2\x27\x3f\xb6\xd5\xbd\x7b\x65\x1b\x08\x6c\x48\xda\x93\x6e\x37\x89\x64\x66\x3c\xdf\x78\xbe\x99\xcf\x14\xba\x7a\x83\x7f\x56\x00\x2d\x9a\x46\xa8\x0c\x92\xdd\xea\xfb\x6a\x15\xd3\x11\x65\x6e\x19\xd9\x7a\x6b\xad\x15\x47\x56\xfc\x4d\x19\xa4\x69\x77\x0e\x3e\x8d\xc1\x6e\x9f\x9f\x0c\x76\x1d\x99\x49\x90\x88\x75\x97\x41\xba\x99\xf9\x79\x7b\xa7\xad\x60\xa1\x55\x06\x86\x24\xb2\x38\xd2\x6e\x05\x20\xa9\xe6\x0c\x9e\x12\xe7\x0f\xd0\x0a\x15\xed\x49\x34\x7b\xff\x2c\xe9\x83\x3c\x62\x55\xe5\x97\x40\x33\xa0\xc1\x27\x56\x78\x8c\x18\x0b\xfb\x7f\x5c\xbe\x82\x14\xf0\x15\x30\xe4\x85\x55\x25\x54\x93\xc1\xb6\x3b\x4f\x9c\x19\x8b\xa8\x43\x45\xde\xa7\xd0\xa6\x22\x13\x85\x64\xd3\xee\x0c\x56\x4b\x51\xc1\x63\x55\x55\xbb\x8b\xd9\x84\xc4\x6f\xda\x0b\xcd\xac\xdb\x25\x87\x69\x0e\xd3\xba\xd9\x63\x33\xc5\x0f\xe7\xb9\xec\x46\xc4\xbb\xf0\x73\xfb\x02\xbc\x77\x70\x70\x92\x1a\x52\x95\xc7\xaa\x84\xed\x24\xbe\x65\x20\x94\x14\x8a\xa2\x42\xea\xf2\xd5\x85\x39\x92\x61\x51\xa2\x8c\x50\x8a\x46\x65\xc0\xba\xdb\x4d\x9b\xc7\xff\x7f\x4a\xe6\x1d\x82\x86\xf0\x0e\xfd\xbe\xb7\x6a\x6c\x85\x7c\xcb\xe0\x0f\x23\x50\xae\xe1\x4f\x92\x47\x72\x48\x6b\xb0\xa8\x6c\x64\xc9\x88\x7a\x8a\xe4\x88\x4a\xfc\xef\x66\x44\x7b\xcb\xf1\x2c\x02\xf9\xfa\x48\xa6\x96\xfa\x94\xc1\x51\x58\x51\x48\x0f\x74\x81\xc7\xc2\x6a\x79\x60\xff\x74\x28\x68\xa8\x52\x28\x4f\xe2\x16\x27\x51\xf1\x7e\xe8\xcb\x49\xfc\x81\x90\x05\x8c\x0b\x6b\x71\x45\x8c\x42\x42\x2c\x98\xda\x18\x4b\x77\x58\xbf\xcb\xd7\x73\xe8\xef\x34\x7e\xa2\x76\x46\x7e\x12\x6f\xdd\x13\xcf\x07\x16\x24\x6f\x8c\xdf\xfb\x38\xf3\x99\x9c\xa3\x0f\xab\xdc\x9e\x90\xcb\x30\x3f\xb5\xd4\xc8\x19\xf8\x76\xd9\xdd\x23\xbc\x2f\x42\xda\x0f\xe7\x08\x38\x0c\x6b\x4f\xc7\xc6\x11\xe1\x29\x79\xf1\x86\xef\xab\x95\x50\xdd\x81\xff\x62\xc1\x92\xbe\xfc\xf6\x2d\xdb\xbb\x72\x65\x58\x73\x2f\x15\xa5\x56\x4c\x8a\x33\x40\x66\xf3\xc1\xbb\x7d\x0c\x47\x28\xb5\xaa\x45\x03\x7e\xff\x1a\x86\xa5\x25\x49\x25\xfb\xad\x63\x12\x9b\x69\x12\xd1\x84\xbc\x49\x18\x5f\xc5\xa5\xa6\x1e\xbd\xac\x96\x94\x33\x16\x92\x66\x42\xe8\x3b\x2c\x00\x4c\xca\x9f\xc4\x2f\x3d\x3f\x7d\x42\x0a\x5b\xfa\xf2\x20\x94\x25\xc3\x79\x4b\x6c\x44\xf9\x30\xd5\x9f\x31\xab\x81\xa1\x0a\x99\x3a\x51\xbe\xf6\x75\x98\x52\x9b\x74\xec\x7d\x42\xe9\x42\x64\x52\x55\xee\xd7\x0f\xdf\xd6\x30\x35\x18\x54\x0d\x0d\xa6\x29\x62\x50\xa8\x28\x9d\x15\xa7\x17\x86\x68\x6c\x14\x32\x46\x9b\x2b\xf1\x7b\xc7\x69\x70\x2d\x58\xad\x21\xae\xb5\x69\x23\xc7\x9a\xd1\x72\x0d\x37\x84\x74\x90\x21\xac\xc4\xc1\x8e\x54\x74\x46\xb7\xc4\x7b\x3a\xd8\x90\x6f\xde\x18\x7d\xe8\xee\x2b\xcd\x90\x85\xeb\xb4\x21\xb3\xcb\xc4\xe1\x81\xf5\xbd\xd8\xf1\xa4\x3a\xd7\xb5\xd9\x7e\x1e\x8e\x76\x23\x33\x77\xe4\xf7\xec\x5c\x98\xbf\xb9\xeb\x02\x37\x8e\xcd\xbb\xb9\xd9\x7c\x0e\xeb\xb1\xe6\x9f\xdc\x85\xb3\xb9\x6a\xb3\xf4\x69\x69\xca\xe3\xa7\xcd\xcb\xf6\x39\x7d\xfa\x7d\xe7\x07\x48\x6a\x93\xc1\xe3\x76\xbb\xf5\xd2\x85\xe5\xab\x4b\x43\x55\xd1\x60\xa9\xeb\xfa\x9d\x45\xb4\xd8\x50\x06\x4a\x2b\xba\x5c\x0a\xb3\xdb\xa0\x2c\x4b\x67\x89\x4e\x54\xbc\x0a\x8e\x0a\x7d\x8e\xec\x1e\x2b\x57\x73\xd7\xe3\x0c\x89\xf7\x76\x5f\xd3\x14\xf8\x21\x59\x43\xf8\xc4\xc9\xf3\xf6\x63\x08\xfa\xc3\x5b\x06\x34\x36\xa8\x06\x89\xee\x3b\xc9\x9f\x05\x08\x2d\x45\x42\x45\xfa\xc0\x10\xa7\x5b\xbb\x5e\x48\xf0\xca\xc9\x47\xd6\x3f\x12\xf4\x3f\x82\xfd\xac\x48\xf7\x5a\xc8\xa9\x43\x7e\xd5\x47\x9b\xf1\x3d\x28\xa6\x73\x67\xc8\x5a\xa1\xd5\xb5\x5b\x9a\x24\xbf\xc2\x2f\xa2\xed\xb4\x61\x54\xbc\xa0\x8d\xe9\x52\x9c\x89\xb4\x0e\x78\x7e\xea\x16\x23\x85\x09\x7a\x9e\xdf\xf0\x4e\x16\x50\x28\x32\x10\x1b\x51\xbe\xda\x3d\x9e\xf2\xc9\xeb\xc4\x42\x6f\x6e\xfc\xdf\xee\x86\x64\xfc\x1b\x00\x00\xff\xff\xda\xef\xe5\xef\x96\x0a\x00\x00") func webUiStaticCssGraphCssBytes() ([]byte, error) { return bindataRead( @@ -301,7 +301,7 @@ func webUiStaticCssGraphCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/ui/static/css/graph.css", size: 2668, mode: os.FileMode(420), modTime: time.Unix(1461244866, 0)} + info := bindataFileInfo{name: "web/ui/static/css/graph.css", size: 2710, mode: os.FileMode(420), modTime: time.Unix(1493279723, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -406,7 +406,7 @@ func webUiStaticJsAlertsJs() (*asset, error) { return a, nil } -var _webUiStaticJsGraphJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x3d\xfd\x77\xdb\x36\x92\xbf\xfb\xaf\x98\xb0\x79\x11\x55\xcb\x94\x9d\xee\xf6\x76\x65\xcb\xbd\x34\x1f\x9b\xec\xe6\x6b\x1d\xb7\xdb\x3e\xc7\xeb\x07\x91\x90\x88\x98\x22\xb9\x00\x68\x5b\x4d\xf4\xbf\xdf\xc3\x00\x20\x01\x92\xb2\xd4\xf6\x6e\xdf\xdd\xbb\xfe\x20\x87\xf8\x18\x0c\x06\x83\xc1\x7c\x01\xbd\x21\x1c\xde\xf3\x62\x49\x65\x4a\x2b\x01\x53\xf7\xe3\xcb\x17\xf8\xbc\x3e\xde\x53\x4d\x16\x9c\x94\xe9\x39\x5d\x96\x19\x91\xf4\x78\x0f\xcb\x3e\x3c\x7f\xfa\xee\xed\x33\x98\xc2\xd1\xe1\xe1\xe1\xf1\xde\x5e\xd3\x33\xfa\x8b\x6a\x0e\x53\x98\x57\x79\x2c\x59\x91\x87\x34\xa3\x4b\x9a\xcb\x11\x14\xa5\xfa\x16\x23\x48\x49\x9e\x64\xf4\x69\x4a\xf2\x05\xb5\x5f\x67\x74\x59\xdc\xd0\x21\x7c\xde\x03\x90\x29\x13\x11\xcd\x60\x0a\xa6\xef\xb1\x2d\x44\x5c\x5e\x9e\xbf\x79\x0d\x53\xc8\xab\x2c\xab\x2b\x0c\x6c\x98\xda\x51\xea\x1a\x77\x30\x98\x7a\x63\xb7\xda\x68\x14\x5c\xd4\x35\x3a\xe0\xa1\x18\xaa\x1e\x43\xd5\x75\x5d\xf7\xe7\x2c\xbe\x16\x29\xb9\xb5\x73\xf7\x50\x4b\x88\x24\x30\x85\x8b\xcb\xe3\x3d\x5b\xc4\x72\x26\x19\xc9\xd8\x2f\x34\x1c\x1e\xef\xad\x7b\x08\x18\x49\xb6\xa4\x2f\x48\x2c\x0b\xae\x26\xa5\xd0\x08\x56\xc1\x04\xbe\x3d\x84\xaf\xf5\xcf\xe3\x3f\xc0\xd7\xf0\xcd\xb7\x7f\x1c\xa9\xaa\xdb\x6e\xd5\x7f\x60\x45\xd2\xaa\xc0\xc2\xb4\x29\xc4\xef\x25\x7e\xe3\x3f\x45\x30\x81\xa3\x7e\x8c\x84\xa4\xe5\x8f\x24\xab\xa8\x42\xe8\x42\x35\x3e\x12\xc1\x08\x82\xa3\x43\xfd\x67\xa9\x7e\xff\x88\xbf\x47\xfa\xcf\x37\x87\xfa\x2b\x55\xbf\x8f\xf1\xf7\x5b\xfc\x3d\xd2\x1f\x47\x09\x56\x24\x01\x0e\x7d\x74\x8b\x5f\xf8\xfb\x07\xfc\xfd\x13\xfe\x1e\xad\xb0\x7c\x15\xec\x5d\xf6\xa1\x95\x57\x4b\xfc\x87\xc2\xaa\x8f\x15\xa3\x92\x17\xb2\x90\xab\x92\x3a\x64\xef\x2e\xb2\xe2\x6a\x41\xb3\x39\x4c\x71\x89\xd4\xea\xa9\xcf\x88\x25\xde\xc6\x68\x0f\xba\xbf\x8f\xab\x3a\x1e\xc3\x07\x2a\x21\xa1\x73\x52\x65\xd2\xf2\x60\x64\x81\xd8\x6f\x04\x66\xc0\x1e\xb7\x2b\xb9\x62\xc9\x2b\x96\x97\x95\xb4\xad\xfa\xaa\xbe\x7c\x41\x8a\xaa\xee\x6c\x0e\xa1\xd7\x4e\x92\x19\x4c\xa7\x53\xa8\xf2\x84\xce\x59\x4e\x13\xcb\xc0\xdd\x56\x70\x84\x2c\x6c\x90\x7f\xc6\xc9\xad\xde\xe8\x10\x17\xb9\xe4\x45\x26\x80\xe4\x09\x7e\x10\x96\x53\x0e\x73\x5e\x2c\xe1\x25\xee\x83\x19\xe1\x02\xa4\x11\x08\xd1\x9e\x21\x5e\xb3\x03\xf5\x90\x83\x92\xc8\xf4\x3d\xa7\x73\x76\x37\x98\xc0\xfb\x27\xe7\x2f\xaf\xde\x9f\x3d\x7f\xf1\xea\xa7\x91\xae\x9e\x55\x2c\x4b\x7e\xa4\x5c\xb0\x22\x1f\x4c\xe0\xfb\x1f\x5e\xbd\x7e\x76\xf5\xe3\xf3\xb3\x0f\xaf\xde\xbd\xb5\x9b\xeb\xd3\xdf\x2b\xca\x57\x11\xbd\x93\x34\x4f\xc2\x5a\x7e\xb8\xb3\x19\xd6\x74\x74\x65\xc3\xc3\xf0\x4d\x25\x24\x89\x53\x1a\x71\x9a\x27\x94\x87\x9e\x14\xab\x65\xd1\xb0\xe9\x4e\xb3\x88\x94\xa5\x1a\xc7\x87\x36\xb4\x0b\xfc\x17\x2a\x81\xd3\x39\xe5\x34\x8f\xa9\x00\x59\x00\xc9\x32\x90\x29\x05\x96\x4b\xca\xa9\x90\x2c\x5f\x58\x89\x25\x80\xe5\x58\xd7\x10\x55\xd3\x91\xe4\x89\x06\x37\x63\x79\x02\xf4\x86\xe6\xd2\x88\x17\x8e\xfc\x52\x4b\xdc\x7f\x70\x85\x0e\xb7\xac\x40\xb3\x68\xce\xf2\x24\x0c\xbe\xc2\xda\xab\x5b\x5d\x1d\xc0\xbe\x65\xa8\x66\x2a\xff\x52\x54\x7b\x51\xf0\x25\x4c\x3d\x58\x06\x82\xae\xbf\x9a\x17\x7c\x19\xe8\xd9\xe9\x11\xee\x4a\xde\xdf\x41\xd2\x3b\x49\x38\x25\x17\x39\x59\xd2\xa9\x6a\x77\x19\x38\x84\xbb\x2b\x79\x74\x4d\x57\x25\xa7\x42\x84\x8d\xd8\xb7\xbc\x37\x1e\xc3\x73\x45\x20\xb8\x25\x02\xb0\x11\x4d\xe0\x96\xc9\xb4\xa8\x24\x92\x48\xa4\x6c\x2e\xe1\x9a\xae\x22\x6c\xaf\xb8\x9a\x46\xb7\x29\x8b\x53\x98\x4e\xe1\xe8\x1b\x78\xf4\x08\x1e\xd0\x08\x9b\xfd\x8d\xae\x2c\xdc\xf6\x64\x23\x51\xcd\x96\x4c\x86\x88\x99\xfa\x8f\x46\x25\x47\x02\x3f\xd3\xdb\xd2\xd6\x20\xd3\x23\x5e\x4f\x2a\x59\x1c\x70\x2a\x94\x44\x50\x98\xa8\x89\x82\x9a\x29\x14\x39\xe0\x76\xd3\x28\x21\x7f\xcf\xe7\x82\x4a\x23\x1e\x22\xfd\xf5\x92\xb2\x45\x2a\xe1\x40\x97\xc5\x19\xa3\xb9\x29\x3b\xae\xfb\x69\xf0\xe7\x86\x84\xfe\xc1\xd8\x4c\x05\xe0\xa1\xfa\x8e\x62\x21\xc2\x41\x8a\x20\x06\x23\x18\x90\x4a\x16\x83\x76\x29\xcd\x22\x11\xf3\x22\xcb\xcc\xf0\xfb\x06\x37\x3b\x3d\xfd\xe7\xa1\x3e\xa8\xa2\x22\x0f\x07\xd7\x74\x55\x95\x7a\x42\x83\x91\x27\xf9\x5a\xe8\x99\xc3\x0d\xd6\xfa\x80\x6b\x2d\x72\x8c\xa7\xa6\xde\x1f\xee\x39\xea\x30\x11\x4a\xaa\x57\xae\x0c\x6b\xd6\x47\x33\x13\x62\xa1\x39\xc9\x11\x6b\x2e\x43\xa9\x8d\x7b\x4d\x93\xef\x65\xbe\x09\x86\x6d\x72\x35\x93\x79\xb7\xe3\x0e\x23\x9b\x96\xee\xa8\x2c\x17\x94\xcb\x37\x54\x72\x16\x6f\x82\x20\x68\x46\x63\x03\x42\xb7\xbf\x5a\x62\x07\x17\x10\xa7\x73\x4e\x45\xfa\x4a\xf1\xfc\x0d\xc9\x76\x81\x65\xba\x5c\xba\xdb\x31\x2e\x72\x51\x64\xf4\x1c\x85\x75\xdf\x2e\x36\x0d\x82\x96\x04\x54\x1d\x60\x43\x17\x2d\x3a\x6a\x61\xe4\x0e\x27\xc9\x4c\xf4\xf7\x22\x17\x4a\x83\x39\x90\xc5\x62\x91\xd1\xe9\x40\x92\xd9\xc0\x9d\xae\xea\x18\xd1\x7f\x75\x0e\xa2\xa1\xfa\x09\x03\x91\x16\xb7\xed\xd6\x45\xae\xcb\xf3\x68\x86\x4d\x03\x87\x27\x6b\xb1\xa1\xf6\x8e\x24\x7c\x81\x7b\xee\x61\x48\x23\xfd\x61\x98\xbc\xe7\x40\xd3\xf5\x51\x49\x38\xcd\x65\x38\x8c\x58\x9e\xd0\xbb\xd0\x6d\xef\xf2\xac\xad\x50\xd2\xe6\x61\x18\x7c\xa5\x04\xa9\x81\x40\xa4\xe4\x61\x40\x38\x23\x07\xf6\x30\x0c\x86\xc3\x28\x25\xe2\x69\x46\x84\x08\x03\x4e\xb3\x82\x24\xc1\xb0\x25\x89\xb4\xfc\xc1\x23\xab\x11\x35\x7a\x17\x69\x91\x7f\x46\x65\xc5\x73\x50\x5a\xa4\x80\x79\x11\x57\x02\x66\x24\xbe\x56\x47\x09\x0a\x5f\x96\x0b\x49\x49\x02\xc5\x1c\x34\x2c\x75\xa2\x44\x7d\x0c\x1a\xcd\x70\x69\xae\xe9\x2a\x29\x6e\x73\xa5\x1f\x71\x84\xdd\x4b\xc9\x66\x03\xe3\x98\x1e\x49\xb0\xf8\x86\x64\xa1\xff\x35\x34\x6d\x34\xd4\x0d\x92\x74\x3d\x6c\xce\x0e\xce\x8b\x0d\x87\x87\xae\x0b\x86\x51\xca\x12\x43\xf5\x86\x59\x9f\x68\x91\xb8\x99\x57\x95\x50\x6a\x73\xb8\xdd\x51\x35\x04\xaf\x8b\xd3\x7a\xf5\xe4\x8e\x89\x8d\xad\x57\x57\xe4\x8e\x09\xa7\x79\x46\x17\x34\x4f\x36\xa0\xa3\x2b\x5d\x61\x53\xb2\x3c\xa7\x9b\x26\x6d\x6a\xdd\x63\xf2\x86\x64\x1f\x24\x91\x1b\x76\x19\xd6\x5f\x09\xd5\xc0\x3b\x94\xf3\xe4\x19\x91\xb4\xbf\x8f\x23\xd0\x68\x9e\x74\x05\xa9\xe9\xac\x2c\x10\xaa\xec\x89\x92\xc5\xd7\x94\x87\x9a\x2b\xb2\x22\x26\x19\x9d\xc0\x80\xe6\x03\xad\x92\x29\x85\x80\xc8\x09\x0c\x7e\xfe\xf9\xe7\x9f\x0f\xde\xbc\x39\x78\xf6\x0c\x5e\xbe\x9c\x2c\x97\xa6\x5e\x16\x45\x36\x23\xfc\x7d\x46\x62\xd4\x71\x26\x30\x98\x15\x52\x16\xb6\x5e\xb0\x84\x7e\xbf\xfa\xc0\x12\x3a\x01\xc9\x2b\x6a\x4a\xd3\xe2\xf6\xbc\x48\xc8\xea\xfb\x4a\xca\x22\x6f\x57\x3d\xcd\x28\xe1\xdd\xc2\x42\x38\x40\xf4\x39\xd4\xd1\x76\xeb\x39\xfb\x8c\xde\x4c\x9a\x84\x03\xf5\xcf\x73\xb6\xa4\xef\x71\xea\x83\x21\xd2\x62\x13\x18\xad\x11\xb7\xe0\x28\x61\x95\x94\xe6\xec\x0b\x5a\xa7\x67\xcf\xbe\x77\x4f\xcd\xd6\x51\x60\x0f\xd0\x2e\x88\xaa\x54\x78\x9d\xe9\xe6\x16\x48\xbd\xf1\xc5\x87\xfa\x60\xeb\x98\xa6\x66\x87\xba\xe7\x9f\xde\xc1\x68\x08\x0c\x8e\x06\xc6\x52\xb5\x26\x8e\x5c\x65\x14\xc1\xe9\xe3\xb5\x03\x4f\x35\x62\x71\x51\x1f\xbd\xcd\x61\xac\x99\x6e\x10\x2d\xb2\x55\x99\xaa\x26\x03\x47\x84\xfa\x88\x86\x1d\xd1\xd8\x40\x21\x49\x62\xc4\xe8\x4c\xe6\x07\x25\x67\x4b\xc2\x57\x41\xad\xb4\x29\xc0\x4e\x9b\x7a\xb0\x83\x38\xa5\xf1\x75\xab\x1d\x47\x8b\xbc\xd3\xb4\xca\xb1\x31\x4d\x6c\xf3\x35\xd0\x4c\xd0\x8d\x28\x79\x60\x7e\x1d\x56\x9d\xa1\xee\xc7\xcc\x9b\xc4\xda\x9a\x39\xde\xa2\x84\xce\xca\x3b\x38\xc6\x19\x8b\xaf\xc3\xce\x72\xf5\xd1\x5e\xe9\xcb\x8d\xc8\xfb\xeb\x87\x77\x6f\x9b\xd5\x18\x8f\xe1\xd5\xdc\x31\x4c\x94\x4e\x6e\x46\x19\x61\x71\xc1\xd9\x82\xe5\x24\x03\x41\x39\xa3\x02\xd0\x7b\xb1\x28\x24\x2c\x2b\x49\x24\x4d\x1a\x38\xa1\x50\x02\x24\x19\xa2\xa1\x78\x4b\x21\xa7\x34\x51\x47\x19\xa7\x4a\x33\x91\xbc\x8a\x25\x30\xa9\x0d\x47\x0f\xb2\xc2\x08\xe1\x46\xee\x7a\x18\x37\x89\xd6\x12\x38\xc9\x85\x12\x47\xcf\xd4\x26\x6e\xcd\xa5\x21\x1e\x74\xd9\xbe\x43\x8b\xef\x60\x70\x38\x80\x89\xda\x09\xf6\xdc\x6b\x53\xbb\x06\xa4\x77\x21\x1a\xf6\x61\xad\x00\x77\x8c\x2a\x6b\x67\x74\xd6\xa2\xa5\xb6\x39\xfc\x62\x15\x06\x67\x2c\xab\xab\xdd\xdf\xaa\x47\xa5\x30\x1b\x7e\x4e\x32\x41\x5b\x4a\xba\x39\x74\xea\x93\xb6\x8b\xba\x3e\x37\x66\x28\x89\xad\x1a\x1b\x5f\xa1\x1e\x7e\x19\x0c\x7b\x98\xcc\xaa\x1e\x31\xa7\x44\xd0\x33\xa3\x39\xb9\x83\xde\x07\x3c\xa1\x3b\x00\x4f\x68\x0f\xf0\x5d\x51\xa7\x79\xb2\x0b\xe2\xcf\xf3\xe4\x57\xa2\xbd\x05\xb0\x45\xda\x01\xdc\xab\xa7\xf5\x48\xfc\x96\xf2\xa5\xed\x00\x55\x17\x70\x5a\xaa\xb3\x35\x18\xc1\x67\x65\x89\x4e\x7a\xe0\xa1\x68\x1f\xc1\xb2\x50\x87\x6c\x30\xa3\xf3\x82\xd3\x60\xdd\xd1\xe8\xac\xa2\xa7\xf6\x29\xa7\xf8\xc5\xf2\x45\xc3\xd1\xda\x30\x55\x22\x4a\x1f\x03\x3d\xca\x85\xb5\x4c\x54\x23\xa3\x54\xd4\x3d\x36\x49\x23\x73\xe8\xa1\x9b\xf4\x1e\x76\xb5\x94\x2a\x8b\xb2\xca\x88\xa4\xaf\x70\x86\x64\x96\x51\x3d\x4b\x61\x98\xb7\x16\x6e\x8e\x5e\xea\x8e\xd4\xd9\x1d\xeb\x7e\xcf\x65\xe3\x01\xdc\x38\xe2\x4e\x0e\xc1\x87\x11\xf9\x44\xee\x42\x2b\x4b\xd5\x20\x45\x32\x81\xe0\x2f\xcf\xcf\x83\x91\x29\xac\x78\xe6\x79\xbb\x60\x1f\x82\x31\x29\xd9\xf8\xe6\x68\x9c\x91\x19\xcd\xc6\x57\x57\x8a\xb2\x57\x57\xe3\x1b\x74\xa6\xd6\x3d\x95\x00\x3c\x5f\x95\x6a\x5d\x3f\x89\x22\xaf\xcb\x45\x15\xc7\x54\x88\x49\x83\xa0\xaa\x1e\xa1\xb3\x42\x29\x94\x95\x70\xdd\x08\x8a\x66\xaa\x5e\x49\x45\x59\x09\x78\x30\x9d\x42\x60\x40\x04\x6e\x43\x4b\xc3\xb4\xb8\x7d\xae\x34\xf4\x30\xc0\x3f\xa0\x64\x10\xcb\x17\x40\x6e\x08\xcb\x14\x85\x40\x9b\xb8\xe2\x41\x73\xc4\x35\x0b\xdb\x94\xac\xeb\x7f\x29\xca\x2d\x6b\xb2\x22\x32\x6a\x6e\x4d\xd3\x79\xc1\x21\x44\x45\x03\x7d\xb6\xc0\xe0\xc4\x76\x88\x32\x9a\x2f\x64\x7a\x0c\x6c\x7f\xbf\x07\x5b\x77\x2f\x5c\x1c\x5e\xd6\x3a\x1c\x49\x92\x30\xa7\xb7\xf0\x0e\xbf\x43\x03\xec\x82\x5d\x8e\xa0\xf9\xf7\x70\xe8\x62\xbb\xe7\x01\x9e\x57\xbf\xfc\xb2\x3a\xa3\xa2\xca\x64\xed\xc1\xd4\xff\xa1\xa0\x98\xa0\x4b\x7f\xe4\x4d\x5f\xb5\xed\x96\x2f\x49\x39\x81\xcf\xeb\x8d\x03\x21\x2b\x2b\x5e\x24\x29\x25\x49\xe8\xcd\xb0\xa8\x78\x4c\x27\x16\x63\x17\x2a\x93\x74\x29\x26\x10\x90\x2c\x0b\xfc\xd1\x64\x9c\x52\xee\xf0\x86\x6a\xe9\x13\xce\x1e\xfa\xb7\x14\x52\x72\x43\x0d\xe6\xb8\x08\x71\xc5\x95\xb1\xac\xe7\x38\x02\x71\xcd\x4a\xaf\x63\xbd\x01\x1d\xf2\x68\xc9\x89\x7c\x85\x5e\x2f\xfc\x6c\x8f\xd8\xa5\xaa\xe9\xe6\x76\x3a\xde\xd6\x65\x49\x4a\xb5\x18\xeb\xad\x0d\xb9\x5d\x38\x2c\x8c\xe6\x2c\x93\x94\x87\xcd\x48\x91\x91\xac\xe1\x18\xc6\x8b\x11\x0c\x06\xc3\x9a\x2f\x46\x1d\xcc\x01\x4a\xae\xec\xa2\x13\x21\x79\x91\x2f\x4e\x07\xa3\x6e\x83\x42\x28\xeb\xe7\x64\x6c\x9b\xb4\x5a\xac\x87\x3b\xa2\x1c\xcd\x0b\xfe\x9c\xc4\x69\x23\x4a\x79\x97\x94\xfd\x94\xb9\xe0\x91\xd5\xa8\x2e\x61\x0a\xbc\x3d\x62\x1b\x07\x87\x11\xa1\x91\xcb\x8a\x5d\x80\xe5\xbd\x23\xb8\xfd\xd7\xa3\x3d\x8f\x53\xb9\xec\x70\x9d\x68\x63\x8e\x85\x91\x6a\xdb\x4c\x8f\x8c\x66\xdd\x09\x5a\x51\xd0\x3b\xcd\xd9\x65\x24\xe2\x82\x53\x38\xe8\xaf\x27\xa6\xbe\x3d\x7f\x3b\x41\xb4\x83\x0e\xe1\x3b\x20\x91\x36\x79\x9f\x16\xcb\x92\x70\x1a\xce\x86\x30\x01\xd6\x22\x52\x8b\x68\x0e\x95\xc4\x66\x72\xa4\x6c\x91\x66\x6c\x91\x7a\x34\x81\xde\xad\x68\x00\x3e\x0c\x07\x27\x09\xbb\x39\x1d\x58\xf7\x7d\x7b\x56\xaa\xef\x65\x24\x24\x57\xa2\x78\x5f\xb1\x1a\x36\x1f\xfa\x38\xf4\xa1\x3d\x1e\xc3\x79\xca\x04\xaa\xe3\x18\xa5\x48\x31\xac\x01\x64\x2e\x29\x07\x22\x25\x89\x53\x05\x14\xfd\xdd\x56\x0e\x41\x99\x55\x0b\x96\x8f\x80\x08\x60\xd2\x85\x55\xc8\x94\xf2\x5b\x26\x28\xcc\x38\x25\xd7\xa2\xd5\xcf\xce\x96\x64\x4c\xae\xa2\x1e\x51\xe7\xb9\x9c\x1c\xa4\xd1\x2b\x34\xe9\xda\x9f\xf0\xbb\x0e\xa6\xb5\x75\x17\x6c\xd1\x03\x16\x54\xbe\xab\xe3\x55\xdb\x0f\xfe\x56\x7c\xab\x31\xa7\x75\x21\xfa\xbb\x6d\x54\x14\x20\x70\xfc\xda\x46\x5a\x07\xb5\x93\xc1\x16\x08\x49\xcb\x76\x09\xda\x2c\xc1\x1e\xc0\xe5\x66\x05\x58\x77\x19\x46\xd4\x93\x1a\xe8\xeb\x1c\xd9\xe0\x93\x6b\xcb\x2b\x5d\xa3\x09\xa4\x47\xea\xd3\x71\x7c\x46\x2c\x7f\xc2\x39\x59\x85\xaa\x7c\xe4\x4d\x67\x08\xa7\x53\x38\x6c\x96\x05\xc3\x32\x06\x0a\x6a\x2e\xe6\xa8\x86\x53\xb7\x15\x58\x3a\xa1\xfa\x78\xe9\x8c\x8c\x7d\xea\x75\xf2\xbc\xa3\x75\x27\x1b\x83\x6a\x29\x7d\x6e\x0b\xed\xeb\x6d\xbb\x7f\xb5\x76\x8a\x5b\xab\x8e\xff\x6f\x53\x05\x09\x17\xf4\x59\xc5\x09\x6e\x56\x87\x0b\x70\xf5\xce\xe9\x9d\x6c\xd8\x01\x8b\xce\x9e\xc3\x14\x94\x92\x71\x46\x17\xcf\xef\xca\x30\xf8\x67\x78\x71\x78\xf0\xe7\xcb\xfd\x61\x78\xb1\xba\x4d\xd2\xa5\xb8\xdc\x1f\x3e\xd4\xbc\x88\x2a\x10\x9e\xcd\x8a\x2d\x6a\x88\x11\x96\x85\x06\x5c\xed\xd5\x7a\x60\x9a\xea\x78\x0c\xaa\x55\x48\x1b\x55\x67\xaa\x2c\xb1\x1f\x4c\xe1\x9b\x96\xeb\xe7\xdb\x43\xeb\xb7\x52\xa3\x22\x99\x61\x0a\x38\xbd\x57\xb9\xb4\x00\x2e\x8e\x2e\x6b\xcc\xaa\x9c\xa9\xc3\xd2\xd6\x3c\xbe\x74\xc8\xa7\xfb\x7f\xdd\x0d\x79\x3b\x09\x09\x17\x0a\xc0\xe5\x56\x0a\x7b\x56\xe3\xce\xfb\x0c\x89\xf3\x81\xc6\x45\x9e\xd4\xbe\x5b\x6f\xad\xc2\x56\xa0\xc9\x71\x58\xf7\x29\x96\xf7\xe4\x31\xf4\x29\x9b\x8a\xe6\x1e\x0a\x27\x7d\x28\xdc\x03\x14\x15\x4d\xdf\xd5\xd4\xc2\x75\x4b\xe7\x63\x67\xc3\x6d\xb0\x7e\xe0\x1e\xff\x40\xa3\x89\xbb\x1a\xfa\x7a\x17\xeb\xc8\xb3\xc4\xff\xfd\x0b\xb6\x7d\xa5\xe0\x00\x8e\xd4\xaa\x9e\xea\xd5\x3d\x38\xd8\xb8\x6a\xa7\xff\x7f\x56\x6d\x41\xe5\xf3\x3a\x4a\xb0\x7d\xc9\x50\xe0\x78\xb1\x85\x2f\x5f\xc0\x2b\xf0\xb1\xe6\x36\x68\xb5\xc4\xb0\x9a\x95\x35\xae\xdf\x79\x17\x97\xfb\x6e\x67\x32\xff\xf0\xeb\x26\xa3\x8a\x12\xdd\x58\x7b\xd5\xea\xee\x4e\xa4\x49\x34\x85\xaa\xed\xd0\x91\x76\x09\xa6\xb4\x6d\x41\x4c\xf4\xe2\x84\xa0\xee\x4d\x1d\xda\x85\x2c\x06\xa1\x1d\x25\xe9\xf3\xbc\x27\x06\xb0\x81\x2c\x39\xbd\x35\x28\x9b\xa5\xb3\x04\x72\x89\x6c\xb6\xa1\x69\x8b\x66\xf4\xce\xfb\x17\xc6\xf0\x78\x04\x03\xa1\x77\xdc\xa0\x97\xde\x06\xb0\x53\xe7\xb3\xfe\x8e\x02\xe9\x7f\x7a\xde\xa2\x9a\x49\x4e\x62\xf9\xbf\x6a\xf2\x4e\xeb\xdd\xd3\xd5\xe2\x8c\x12\xae\xd5\xe6\x61\x6b\xb7\x77\xe4\x51\x23\x69\xd6\x7b\x6d\x17\xb2\xd2\xbe\xc3\x9e\xe0\x65\x44\x97\xa5\x5c\x85\x43\x27\xa0\x44\xb8\x54\x7c\x6d\x94\x23\x4d\x5d\x45\x6f\x55\x18\x0e\xff\x3b\x4e\x09\x93\x46\x53\x64\x95\xd1\xd5\x36\x6b\xc6\x36\xbd\xc3\x2a\xd7\x97\xc1\xd0\x84\xc3\xbe\x7c\x81\x37\x44\xa6\xd1\x92\xdc\x85\xf8\x8f\x79\x56\x14\xdc\x3f\x35\xc6\xf0\xf8\x8f\x87\xc3\x11\x1c\xd5\xc3\x36\xf1\xd7\x8e\x7c\x81\xb1\xcd\x7e\x75\xa4\x3e\x22\xf5\x53\xca\x3d\x3f\xa5\x2d\x8c\xc8\x4c\x19\xc3\x43\x57\x5f\xab\x78\x66\xc7\x32\x5e\x3a\xfb\x59\x12\x4e\x96\x4d\x3e\x5d\x80\x50\x82\x49\x5b\x39\xb6\x41\xa4\x8d\xc9\x80\xb5\x76\xae\x01\x46\xb8\x62\x4a\x31\x37\x53\x3b\xf0\xd6\xe6\xd8\x6d\xaa\xc3\xe1\xa6\xe1\xb1\x0f\x84\x96\x4a\xb3\xad\x57\x45\xd7\x56\x3c\x53\x07\x79\xbf\xfb\x53\xa7\x9d\xe1\x60\x81\x71\x58\xeb\x19\xbb\xec\xdd\xe3\xdb\x74\x93\x37\x70\x93\x9c\x51\x51\x16\xb9\xa0\xdd\xc6\xc7\x9a\x16\x5e\xbc\xcf\x60\x2c\x35\x8f\x36\xfc\x6a\x97\x6f\x37\xbc\x7f\x33\xc6\x4f\x75\x40\x68\x3b\xce\xbe\xc9\xf7\x53\xaa\x0c\xa1\x0d\x1e\xe7\x16\xff\xeb\x84\x15\x5d\x19\x0c\x3d\x4f\x74\xc5\xb3\x6d\xfe\x65\x55\x3e\x31\x54\xfa\x77\xfb\x9c\xb1\x17\xba\x02\x76\xf4\x2d\x1b\xa8\x61\xed\x55\xf6\x49\xb9\xcd\xcb\x70\x97\xf2\x91\x62\xda\xb2\x8d\xbe\x2a\x53\xc6\x55\x80\x5b\xb4\x85\x34\x0a\x02\xee\x79\xd8\x54\x9f\xbb\x94\x47\xdc\x2c\x2b\xc6\x34\x1f\xf4\xa5\xde\xda\xff\x28\x57\x0b\xda\xee\xa3\x27\xef\xb9\x96\xfc\x58\x75\xbb\xb3\x26\xb1\x32\x26\xbd\x4e\x5b\xdd\xfa\xf4\x8e\xc6\x15\x66\xa8\x1a\x87\x76\x00\xfb\x0a\xec\xb0\x4b\xe5\x9a\x7a\x71\xb1\x2c\x33\x2a\xe9\xce\x04\x9c\x6e\x20\xe0\xfd\xb1\x82\xa4\x31\xc2\xfb\x4e\x10\x38\x68\x36\xed\xb1\xd7\x51\x16\x92\x64\xaa\xf8\x83\x8e\x55\xf7\x90\x17\xc3\xcc\xc6\xd7\x6a\xac\xbd\x96\x93\xaa\x3e\xd9\x52\xb9\xcc\xc2\xe0\x75\x41\x12\x50\xb2\x42\x53\xa8\xc6\x6d\x1f\x82\xa5\x80\x93\x19\x87\xf1\x29\x9c\xd5\x62\x4f\xb7\x72\x0e\xa7\x7d\x08\x6c\x33\x55\x13\x9c\x2b\x1c\x11\xa0\x89\xa8\xeb\x1e\x2d\xd4\x87\x2d\xac\xda\x91\xdc\x86\x6c\x3b\x38\xb7\xea\xb5\x77\xa5\xd4\x52\x2c\xb6\x68\xab\xaa\x47\xa4\x36\x13\xb6\x6d\x95\x5b\x7d\x60\xcb\xd0\x8d\xfa\xf1\x5b\xc7\x1e\x0c\xda\x43\x5b\x1a\x6c\x19\xda\x4b\xa1\xd9\x41\x61\x72\x8f\x4c\xb5\x3c\x45\x25\x5f\x3d\xb3\x6c\x7b\xcb\xf2\xa4\xb8\xd5\xd3\x39\xd7\x95\xed\x96\xb5\xcc\x66\xad\x44\xcf\x3e\xad\xa6\x95\x07\xd4\xa8\x36\xa8\x9f\x59\x08\xbe\xff\xa7\x4e\x99\xb4\x43\xc2\xd4\xe2\x25\xf4\xde\x50\x58\xf5\xc7\x60\x7b\x2c\xcc\xde\x3c\x23\x35\x87\x51\x33\x83\xaf\xcd\xc5\x9e\xed\xd4\xd6\x59\xf5\xaf\xc9\x8c\x66\xde\x61\x88\x21\x4e\xd1\x90\x1c\xbf\x3f\xa0\x1b\x5b\x98\x4b\x30\x8e\xd5\x8f\xb5\xc0\x72\x70\xbb\x69\xa2\xe8\x2a\x25\x91\x6d\xbc\xd4\x91\x29\x2e\xd4\xa8\xac\x44\x1a\x06\x36\x5a\xa3\x36\x97\xee\xbb\x0f\x41\x1d\xa0\x31\xe2\x4e\xc4\xa4\xa4\x2f\xcf\xdf\xbc\x36\x78\x5e\xe0\x9f\x3a\x30\xb8\xf6\x6d\xdb\xcc\xce\x2e\x38\x49\xd8\x0d\xc4\x19\x11\x62\xfa\x31\xd0\xc5\x1f\x83\x66\x28\x8b\xc9\xa7\x82\xe5\x61\x70\x32\xe3\xa7\xc1\x50\x0f\x9f\xb0\x9b\xd3\x60\x2b\x31\xb5\x1f\xfb\xbc\x38\x17\x6f\xb5\xb7\x76\x23\x39\xa5\x6d\x61\x6a\x22\x4b\x1c\xa5\xde\x0e\x06\x38\xea\xe7\xe0\xf8\x3e\xe2\x6f\xa5\xfe\x76\xf2\xf7\xd0\xbf\x26\xf9\xf4\x63\x50\xd3\xc5\xd2\x57\x95\x7f\x0c\x6a\x2f\x3d\x4a\x7f\xf5\x63\x66\xb3\x3f\xed\x23\xe3\x48\xd3\x70\x1d\x38\xe6\xba\xee\xb0\x9b\x6b\xf7\x47\xe3\x08\xad\x69\x89\x9e\xcd\x86\x94\x7a\xc7\x62\xd3\x17\x59\x41\xa4\xa9\xb7\x9b\x92\x89\xb7\xe4\xad\x2a\x1b\x3a\xf7\x18\x82\xfd\x57\xf9\x3c\x18\x41\x70\x60\xfe\xe2\x37\xdc\xb2\x2c\x83\x19\xd5\xc0\x12\xb5\x9d\x0a\x78\x4b\xde\xc2\x6c\xe5\xc2\x1f\x46\x70\x9e\x52\x0b\x2a\x26\xf9\x40\xaa\x4e\x98\x7a\x41\x93\x11\x88\x02\x73\x1f\x41\xa6\x74\x09\x44\xc0\x82\x94\x02\xc2\xbc\xca\xb2\x61\xe4\x7a\x62\xec\xe5\xb2\xb5\xe7\xb4\xdd\x4a\x14\x2f\xa7\xaa\xad\xbf\xde\x6b\x51\x97\x24\xa3\x52\x5a\x03\xef\xcc\xdc\x75\x8b\x9e\x16\x59\xc1\xa3\xf7\xba\xb2\xb1\x36\x51\x33\xd3\x27\xae\xd2\x36\x91\x87\x96\x44\x72\x76\x17\xf8\x22\xaa\xd1\x50\x4c\xdc\x9d\x09\xc8\x0b\x09\xc5\x1c\x74\x7b\x0c\x33\x3d\x80\xf7\x19\x25\x82\x02\xc5\x3b\x24\x04\xe2\x82\x73\x1a\x4b\xcc\x98\xa6\x42\xb0\x22\x8f\x02\x3f\xd7\x44\xf3\xf9\xba\x71\x0f\x11\x9b\x86\xc0\xeb\x00\x5b\x23\x37\xa5\x68\x87\x4b\x8e\xeb\x2f\xcd\xc5\x4d\xbc\x44\x0a\xb3\x57\xd1\xb0\xc2\xa5\xa9\x37\x85\x09\xb4\x04\x22\x26\x19\xe1\xc1\xb1\x2b\xaa\x84\x13\xc6\x6e\xe9\x77\x36\x3e\xd3\x88\x26\xa4\x8e\x2f\x12\x9a\x81\x9b\x1c\x86\x1a\x70\x5d\xe7\x26\xc6\x19\x52\xb8\xa3\x4c\xf0\x77\xe4\x75\x9f\x98\xbf\xbe\x2d\x20\x85\x8e\xd6\x08\x9f\x52\xce\x06\x72\xd5\x3a\x4f\xd3\xbb\x9b\xe8\x08\xc2\xc5\xe1\xa5\x1b\x36\x5f\x4d\x9c\xb3\x11\x77\xa6\x86\x76\x71\x74\xd9\x84\x34\xeb\x38\xff\x7a\xd8\x68\xa0\x99\xd2\xdf\x0d\x07\x46\xf8\x19\xea\x1e\xeb\x26\xf9\xad\x66\x49\xad\x4c\x45\xbf\x50\x5e\xbc\x60\x59\x16\xaa\xe9\xb4\xdc\x7d\x64\x47\x45\xa2\x73\x8d\xf5\x5e\x87\x6a\x9d\xc1\x68\x1d\xd5\xd6\xf0\xf6\xcf\x73\xbc\x03\x80\x97\x4c\x49\xbe\x02\xc9\x49\x4c\x85\xe2\x77\x92\x03\xbd\x63\xfa\x02\x19\xca\x83\xc8\xcf\x49\x6f\xbc\x2e\xce\x70\x4d\x42\x7b\x9c\xb2\x2c\xe1\x34\x0f\x87\x3d\x31\xb9\xa6\x6d\x2b\x33\x0b\x2b\x30\x45\xde\xab\x58\xb7\x73\xed\x4d\xac\xda\x9c\x7f\x81\x4e\xb2\x3f\xb5\x01\xe9\xe3\x76\xb2\x7d\xab\xb9\xc9\xb2\xef\xb6\x6f\xd0\xef\x5c\xbb\xdb\xd6\x08\x87\x6a\x5c\x50\x34\x4f\x8c\x03\x6a\xa3\x8f\x46\x51\xfe\x69\x91\xdf\x50\x2e\x41\x16\xf0\xc3\xdb\x57\x3f\xa1\x4e\x2e\x24\x59\x96\xf6\xda\x9d\x63\x87\xec\xee\x07\xfc\xf2\x05\xbe\xf9\xd6\x8c\x70\x94\xda\x1b\xa0\x51\x8f\x77\xcc\xa2\x79\x50\x0f\x54\x4f\x13\x39\xa7\x93\x0a\x22\x9c\x93\xe7\x3d\x49\x30\xf8\x6d\xb2\x72\x6f\x99\x4c\x81\xe5\x37\x4c\xb0\x59\x46\x21\x50\xa2\x28\xd0\x3b\x4f\x00\xd1\xd7\xea\xe2\x22\x9f\xb3\x45\xc5\x69\x02\x77\x07\x6a\x11\x60\x56\x54\x79\x42\x10\x00\xcd\x45\xc5\xa9\xb0\xe0\x65\x4a\xa4\xe6\x3c\x01\x84\x53\x48\x98\x28\x33\xb2\x32\x17\xf5\x80\xc0\x9c\xdd\x35\x70\x90\x0a\xde\x6d\x95\x9c\x94\x25\x26\x15\x14\x38\x74\x1d\xa2\xaf\xe1\xab\x89\xdb\x6e\xd8\xa4\xc9\xff\x45\x86\x46\x12\x5c\x1c\x5e\x46\x77\x70\xda\x50\xcd\x89\xc8\x68\x1a\x55\x39\xde\x02\x0c\x3f\xdf\x4d\x9a\x56\x23\x30\xf9\x59\x6b\x2f\x37\xd8\x81\x2b\xbc\xbd\x79\x00\x47\x6a\x9c\x13\xbb\x22\x9d\x51\x50\xa3\x51\x43\x98\x06\xbd\x03\x34\xd7\x7a\xde\x16\xb7\x10\x73\x4a\xa4\xbe\x44\xa8\x0e\x49\x7f\x13\x77\xae\x87\xbb\xc7\xa8\x4e\x37\xd6\x18\x98\x58\xf9\xc4\x61\xfe\x5a\x90\xea\xeb\x7f\x93\xc6\x89\xe9\x6c\x6c\x34\x16\xf5\x6d\xc0\x70\x38\x52\x2c\x6f\x24\xe8\x2d\x4b\x64\x7a\x4f\x9f\x7f\xa8\x7a\x34\xb1\xff\x74\x38\x82\xc7\x75\x3f\xad\xde\x53\x3e\xe9\xc9\x2e\xff\xce\xa4\x2a\x04\x30\x81\x20\x63\x39\xb5\x2e\x27\x34\x23\xca\x22\x23\xc6\x30\x56\x75\x84\x1b\x3f\x93\x35\x7e\x6b\x7e\xd7\xc5\x4b\xa6\x5a\x92\x4a\x16\xc1\xc8\x4f\x4f\xbd\x33\xf2\xa4\x4b\xac\x08\x65\x16\x3a\x07\x3e\x6b\x4a\x4f\xfa\xe8\xec\xc0\x5a\x6d\x81\xf5\xb3\xa1\xff\x46\x60\x1a\xd9\x82\x33\x9a\xcb\x7a\x7a\x74\x6e\x73\x37\x24\x8b\xaf\x5f\x98\xdb\x33\x35\xfc\x17\xec\x4e\xaa\x3d\x16\xbd\xad\x96\x33\xca\x23\x7d\xbd\xe6\x6f\x6f\xbe\x3f\x1f\xf5\x2c\x36\xa2\x68\x16\xdb\xcd\x91\xf5\xd0\xb0\x97\x99\x9b\x99\xa5\xc5\x0d\xe5\xcf\xa8\x24\x2c\xeb\x9f\xdf\xcb\xa6\xc1\x6e\x93\xd4\x68\xfa\xe9\x5d\x7a\xf1\x46\x70\x37\x02\x27\xd5\xcf\x09\xbe\x0d\x4e\x44\x49\x72\x2b\xf3\x55\x61\x80\xb9\x4d\xb5\x3f\xe7\x0e\xbe\x46\x49\x3c\x8c\x64\xf1\xc3\xf9\x53\xad\xea\x87\x43\x9d\xda\xa4\xfa\x9e\x0e\x8e\x1d\xb0\xe2\x96\xc8\x38\xed\x02\xc6\x79\x5c\xe9\xda\x40\x67\xf2\x4f\x83\x19\x89\xaf\x17\x5c\xc9\xb6\x03\xa3\x2f\xe8\xb4\x2a\xd4\x05\xb0\x44\x0d\xa3\x8e\xa0\xee\x40\x71\x91\x4b\x9a\xe3\x65\x55\x3d\xe4\x3e\x98\xd9\x46\x7d\x16\x16\x4a\x58\x6d\x66\x4d\xc0\x35\x39\x57\x66\x26\x26\x1f\xf0\xd8\x0b\xe6\x6a\x2a\xa9\x06\x33\x8e\x64\xb1\xa3\x3a\x45\xc6\x4f\xd0\x58\xd5\x3e\x1a\x5d\xc1\x83\xfa\xa9\xbd\xb1\xd6\xb3\xf0\xaf\xb1\xae\x57\xb0\xe8\x6e\xb5\x64\xb9\x97\x21\x9c\xd1\x9c\x34\xb7\xfe\x21\xbf\xa7\x29\xb9\x61\x05\xb7\x7a\xd8\x4b\xdb\x21\x84\x9d\x58\x4f\xe3\x35\x31\x7f\xfd\xc1\x45\x4a\xb3\x1b\x75\xc4\xec\x34\xf2\x39\x5e\x56\xdd\x8d\xe1\x37\x8d\xea\xfa\xf0\xeb\x2b\xa3\x5b\xdd\x22\x82\xfd\xf2\x5b\x74\x47\x5f\x74\x3d\x68\x59\x17\x3d\x92\xa0\x3e\xdd\xeb\xe0\xc0\x6f\x95\xf5\xde\xed\x81\x4d\xe2\x66\x87\x3c\x84\x9e\x00\xcd\x96\x30\x49\x3f\x4d\x94\x92\x6c\xb0\x30\x97\x8e\x04\x94\x04\x5f\x0d\x70\xef\x24\xcd\x0b\x6e\x6f\x2e\x19\xcd\x05\x4d\x68\xe7\x22\x92\x20\x37\x74\xcf\xa8\x37\xce\xf5\xa3\x27\x7f\x7d\xf2\x13\x58\x27\xb1\x52\x47\x0a\x9e\x50\xae\x6f\x2e\x1d\xd4\x56\x32\x30\xa9\x0d\x79\x67\x4c\x0d\xec\x36\xa5\x5a\x85\xa9\x04\xe5\x4a\x53\x52\x8a\x8e\xce\x8b\x44\x7c\xdc\x3b\xbb\xf5\xad\x25\x63\x81\x7a\x1a\x5f\xff\x6d\x27\x34\xc7\xb7\xda\x15\xbd\x76\xf4\xdb\x02\xd1\x2c\x0b\x96\x4b\x01\x73\x25\x11\x5b\xb6\x71\x57\xc1\x3f\x27\x33\xff\xb2\x9a\x7b\x0b\xc9\xf1\x19\xd6\xb7\xa2\x76\xe2\x82\x56\xd0\xab\x95\x37\x41\x76\xe2\x03\x1d\xcf\x6e\xae\x53\xdd\x8f\xa5\x4b\x69\xed\x21\xb1\x2e\xb3\xef\x8b\x64\x65\x49\xed\x80\xf3\x6f\xd1\x5f\xe1\x65\x10\x90\xb3\x22\x31\xd7\xfe\xb0\x9f\x17\xee\x16\xb7\x4c\xc6\x69\xe8\x84\x14\xce\x57\xa5\xd1\x1e\x63\x22\x28\x04\x37\x34\x96\x05\x0f\x26\xb5\xfe\xd9\x0d\x3f\xf8\x2b\x68\x87\x31\xd6\x4d\x70\x22\xf9\xe9\x89\x4c\x94\xdd\xab\xce\xaa\xe9\xe0\xf1\xe0\xf4\x84\x9d\xe6\x7a\x61\x4f\xc6\xec\xf4\x64\x2c\x13\xf5\xc3\x4f\x9b\xac\xd7\x76\xca\x50\x7f\x22\x5c\x4f\x28\xc4\xbf\x65\x81\x6b\x00\x53\xb7\xe1\x05\xbb\x74\x4f\xcb\xda\xfd\xd8\xe7\xa3\xa8\x5d\x14\xc7\xf7\x4d\xed\xb4\xe5\x88\xd5\x20\x8d\xbb\x54\x4d\xcd\x34\x31\x2e\x88\x8b\xa3\xcb\xa6\xca\x9d\xb5\x9e\x27\xe6\x24\x1f\xd7\xf4\x37\x7e\xa6\xff\xc3\xf4\xbf\xf9\xed\xf4\xbf\x69\xd3\xbf\x4e\x07\x3d\xa7\x77\x4a\xc3\x09\x6a\xa7\x54\x8d\xde\x27\x8d\xde\x27\x38\x81\x1b\xeb\xf3\xb1\xb8\x7d\xf2\x6f\xe0\x34\x90\xf6\xa7\x75\xe3\x8b\x4f\x97\x66\x85\xe0\x3f\xd5\xaa\xb9\xe5\x87\x7a\xe5\x66\x7c\x7c\x1a\xb4\x93\xdc\x7e\x17\x6b\x38\x98\xec\xcc\x19\xc6\x2b\xa7\x39\xa3\x7f\x74\xdd\xc4\x1b\xc9\x5d\x89\x4d\x8c\xd8\x1e\x08\x35\xdb\xfb\x07\xc2\x26\xde\x40\xce\xac\xfd\x31\x87\x5b\x06\x35\xfe\x86\x49\xef\x79\xf0\x43\x2e\xaa\xb2\x2c\xb8\xa4\x89\xc9\xeb\x45\x8f\x6a\x07\xc8\xd6\xa3\x9d\x6f\x78\x19\xad\xef\x8e\x5c\xfb\xf9\x24\xcf\xb9\xe4\xe8\x54\x67\xfd\xc5\xbe\xaa\x55\x5f\xa6\x70\xfd\xa3\x48\xbe\x06\x01\x9a\x4b\x26\x57\x6f\xf4\x5d\x21\x9c\x58\xf0\x28\x98\x40\xf0\x88\x2c\xcb\x63\x9b\x5c\x7f\x82\x25\x99\xac\x0b\x4e\xb1\x60\x51\x17\x0c\x82\xc1\x04\x06\x8f\xfe\x55\x15\xf2\xd8\xdc\xf8\x09\x06\x81\x2a\xfa\xea\x9b\x3f\xd7\x25\x63\x5d\x72\xf7\xf8\xc5\xf1\xa0\xbe\x57\x6f\x94\x7c\x63\xd3\x18\xf4\x9a\x2b\x47\x17\x8f\x4e\x4e\x83\xc1\xc7\xf1\xe5\x78\x31\x72\x6e\x87\x88\x56\x82\x65\x3d\x8d\x0b\x71\x69\x5d\x9b\x6b\x6f\x55\xde\x93\xbe\xac\xdc\xe6\x5d\x3c\x1b\xe3\x69\x2d\xa6\xea\xd6\x7a\x04\xad\x7f\x25\x11\x48\x73\x2d\x02\x01\xa3\x0f\xec\x87\xb3\xd7\x8d\xef\xd1\x6d\xd5\x2b\x53\xbd\x06\xda\x95\xb2\x6e\xa2\xa5\x5e\xad\x75\x79\xe1\x50\x24\x49\xb4\x56\x0e\xe6\x85\x3d\xe4\xa6\xe0\x2b\x92\x24\x57\xe6\x65\x0f\x73\xef\xd4\x6b\xae\x9f\x42\x51\x45\x23\xf8\xbc\x1e\x76\x35\x94\xd6\xfc\xed\x8c\xba\x34\x50\xb3\x33\x01\xd6\xac\x88\xd1\xcc\x8f\x04\x25\x5c\xbf\x43\x15\x04\xad\x05\xb3\x61\x06\x43\x3d\x4c\xab\x78\x6f\x73\xb6\xfa\xe1\x44\xa2\x9a\x69\xfe\x08\x8f\x86\x91\x28\x33\x26\xc3\xc1\xa3\x41\x9d\x6d\xd6\xc0\x78\x49\xb3\xb2\x36\xb3\xda\x93\xf9\x7b\xab\x59\xe8\xfa\xb8\xdb\x30\xf4\x84\x9b\x2e\x22\x74\x30\xdd\x4a\x2d\x4b\x65\x97\x5a\xf6\xed\x34\x9f\x71\xba\xb8\x6a\x95\x11\x49\xf6\xb0\x7e\xb7\xcc\x79\x7c\xc8\x38\x55\xcc\xab\x6e\x5a\x60\xaa\x95\xd5\x0a\xe7\x0f\x67\xaf\x9b\xa5\x1d\x3a\xd5\x5a\x9e\xb4\xd6\x7e\xb8\x07\x30\x6c\x1e\x58\xd4\xfb\x41\x73\x5f\xe3\x52\x7e\x68\x96\x77\x68\xec\xb4\x6e\xf0\xdc\xfa\xc9\x6b\x2b\xae\x79\x07\x40\xd1\x69\x3c\x86\xb7\xef\xce\x9f\x4f\x5a\x37\xac\x66\x14\xae\x69\x29\xf1\x1e\xdd\x2a\x8f\xb5\xcf\x74\x5c\x49\x96\x8d\x85\xe4\xf6\x6f\x5c\xe4\x37\xd1\xa2\x98\x20\xdc\xd7\x2c\xbf\x7e\x51\xf0\xe7\x75\x10\xeb\x9e\x35\xa8\xe9\xd1\xbf\x6d\x71\x39\xb5\xf0\xb1\xbb\xd6\x4c\xdf\x8b\xde\x2c\xf4\xde\xc2\x9b\x42\x6e\xc4\xab\xb5\xeb\x35\x05\x9a\xfb\x51\x36\x5a\xf0\xbb\xd9\xd3\x01\xf1\x6e\xf6\x89\xc6\x4a\x08\x75\x78\x75\x41\x73\xca\x89\xd4\xec\xaa\x9b\x79\x02\xc7\xe2\xef\xc5\xfb\x1e\x46\x98\xbc\x16\x3a\xb0\x6d\x66\x83\x7e\x02\x4d\x07\x94\x1f\x99\x77\x75\x52\x26\x64\xc1\x57\xc8\x1c\xca\x04\xa1\xe1\xe7\xf5\x08\x82\x60\x04\x3a\xb6\xf1\x9d\x3a\x90\x1d\xa2\x6e\xdd\x23\x0e\x43\xba\x2b\xa4\xf9\xae\x47\x46\xbb\x4b\x64\xae\xaa\x36\x9d\x86\xf0\xd9\x4c\x6b\x81\x6e\x00\x6c\xd7\x93\xf4\xd3\x4b\xe9\x16\x83\xec\xd2\xa5\x2d\x19\xff\xee\x89\xb1\x1a\x9a\x2b\x33\x6a\xce\x43\xc3\x99\x26\x7e\x17\x9c\x9d\x9e\xd6\xab\xfc\x86\x64\x2c\xe9\x11\x3b\xfa\x56\xa8\x2b\xb6\x74\x37\x2a\x63\xbb\xd4\x2f\x78\xb1\x7c\xa7\x07\x30\x00\xba\xc3\x8d\xe0\x70\x47\xca\x44\xcd\xe8\xda\x51\x0b\x53\x18\xff\x73\xf1\x31\xd9\xff\x18\x45\xfb\xd3\x68\xff\xe1\xf8\xd7\x11\xab\x67\x86\x2e\xbd\x90\x23\xcf\xab\x32\xa3\x86\x5e\x66\x9a\x4e\x79\x67\xed\x9b\xba\xd6\x49\xf3\xab\x27\x17\x49\x2a\xa4\x0b\xef\xb8\x3f\x73\x6c\xeb\x24\xef\x5b\x8f\x0d\xec\x31\xd2\x2c\xfb\xaa\x91\x33\xea\x5c\x75\x1a\x34\x4a\x43\xa3\x33\xf4\x1f\xa9\x25\xbe\x1e\xfa\x6e\xae\xa4\x2d\xc2\xf3\xae\x8f\x23\x34\xfd\xc0\x68\xe8\x0c\x69\xcf\xd2\x1c\xbd\xee\xef\xe6\x7a\xd0\x17\x05\x57\x50\xec\x26\x75\xd1\xd9\x79\x19\x9a\x0a\x9d\x43\x2d\xfe\xc1\x64\x1a\x76\x90\x34\xc4\xae\xd3\x0d\x0d\x05\xee\xc3\x67\x3b\x25\xb6\x4d\x42\xe9\x12\x31\x0d\x0f\x47\xf7\xcc\x5b\x8b\xbf\x5e\x50\xdd\x42\xff\xf0\xd8\x89\x26\xb5\x6e\xd3\x21\x89\xa1\x85\xfb\xa6\x8e\x7f\xa5\xb6\xd1\x35\x9d\xdd\xfd\x6e\xfe\x2e\x37\xa7\x70\x17\xbf\x7a\x9d\x35\x90\x27\x71\x5c\x2d\xab\x8c\x48\xcc\x3c\xdc\x41\x98\x6c\xe0\x58\xd8\x37\xc9\xff\x1d\xb0\x75\xec\xb1\x79\x78\xb6\x7d\xe9\xd4\x69\xfd\xab\xb7\xda\xe6\xc9\x6f\x17\xc3\xde\xcd\x64\xf0\x99\xbb\x1d\x54\x96\xee\x22\x36\xbd\x95\xa5\xfd\x24\x4f\x6c\xd2\x94\xd4\x2b\xaa\x15\xd4\xe9\xc0\x39\xc0\x9b\xe6\xf5\x5b\xdb\x6e\xdf\x8b\x43\x7d\x77\xd9\x6d\x6c\x81\x26\x34\x2e\x12\xfa\xc3\xd9\xab\xa7\xc5\xb2\x2c\x72\x9a\x5b\x5a\x7a\x00\x8e\x2e\x1b\xd3\xe9\xe3\xbe\xb2\x99\x02\x08\x86\x43\x03\x55\xed\x24\x17\x85\x29\x04\x92\xcc\x9c\xdc\x34\x7f\xc8\xfa\x16\xac\x53\xac\x5f\xc5\x91\x64\x06\x4c\x60\xcc\x72\x41\xb9\x71\x1c\xb8\x0a\xe9\x45\x33\xcc\x65\x3d\xd5\x1f\xed\x25\xe6\x75\xcf\xf2\x77\xef\x1c\x6f\x5b\xf4\xb6\x1c\x73\x97\xda\x51\xd4\xcc\x28\xc1\x42\x69\x26\xcc\xb0\x69\x10\x75\x13\x0b\xb7\x8d\xd7\xa3\x5e\x75\x34\x96\x96\xa6\x55\x73\x59\x69\x31\xec\x97\xc0\xcc\x13\xbe\xbe\x9a\xa7\xd9\x52\x7f\x46\xd7\x74\x25\xbc\x91\x86\x5d\x26\xbd\x6e\x5e\xf9\x75\x20\x5d\x18\x14\xf6\xe1\x9a\xae\x2e\xad\xae\x6a\xa0\x5c\xa8\xb2\x26\x25\xc8\x35\x86\x74\xef\x96\x43\x41\x99\xc1\x46\x89\xd6\x97\x2c\x3e\x50\x59\x95\x26\x98\x12\x93\x38\xa5\x13\xfd\x68\x51\xb3\xd8\xde\x65\x8c\xde\x77\x7e\x84\x24\x92\xc5\xe3\x4f\x62\xac\x8d\x9d\xfa\x91\xec\xd4\x3e\x9c\xfd\xdd\xcd\x54\x2d\xa2\xf7\xda\xb5\x09\x90\x77\xae\x5c\x60\xf6\x12\x7c\xb6\x2f\x4d\x78\x2f\x58\x1b\x37\xa1\xf5\xab\xd5\xaf\x5d\x23\xc3\x37\x79\x4f\x76\xcb\x30\xf1\x8c\x96\x9c\xc6\x44\x52\x6d\xcf\xa1\x49\xef\xe7\x72\x25\x8c\xd3\x58\x9e\x17\x6f\xd8\x42\xf1\x48\x52\x5b\xfd\xd0\x77\x2b\x01\xff\xe7\x01\xda\x21\xd1\x63\x03\x84\x4e\x42\x3b\x32\xa5\x26\xb7\xef\x06\x5c\x37\x5e\x0e\x34\xad\xce\x53\x2a\x28\xc8\xdb\xc2\xdc\x73\x11\xfd\x78\xe3\x7b\x73\xbd\xe8\x0e\x15\x14\xc2\x29\x90\x24\xa1\x09\x14\x79\xb6\x42\x57\xe7\x8c\xc4\xd7\xb7\x84\x27\x78\xa1\x81\x48\x36\x63\x19\x93\x2b\x65\xb9\x15\x59\xa2\x79\xc4\x84\xbd\x23\x87\x41\x7a\x49\xb6\xd1\x51\x90\x12\x91\xde\xa3\xd9\x34\xef\x5f\xd9\xc3\x4f\x4b\xc3\xe4\x05\x27\x8b\xa5\x8e\x40\xf7\xc8\xc7\xbe\x51\x74\x74\x82\xaf\xea\xc5\xc0\x8b\x0e\x66\xe1\x7d\xa0\xe6\x4c\x0e\x8f\x86\x5a\xe8\x25\xbc\x28\x31\x50\xa5\xe0\xc0\x57\x78\x53\x2a\xc6\xb0\x77\xe8\x64\xc1\x74\x51\x6e\xb4\x74\xae\xc4\xdf\xda\xd9\x47\x1b\xf8\xa6\x16\x1b\xbf\x6f\x9a\x3d\x06\xea\xef\x99\x6d\xbf\x68\x6a\x7b\xa5\x3c\xcd\xa7\xf0\xc5\x61\x73\x6e\xd6\xf2\xb0\x47\x2c\xab\x36\xae\xb8\x2b\x76\x91\x74\xf7\xcb\xba\xa2\x25\xe6\xc0\x7b\xa3\xbb\x9e\x18\xde\x19\xeb\x37\x87\x5b\x44\x56\x98\x8f\x5b\x06\x2f\x2e\xed\xc3\x50\x6d\xd6\xe1\xf1\xde\x7f\x05\x00\x00\xff\xff\x0d\x9a\xa6\x4d\x20\x64\x00\x00") +var _webUiStaticJsGraphJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x3d\xfd\x77\xdb\x36\x92\xbf\xfb\xaf\x98\xb0\x79\x11\x59\xcb\x94\x9d\xee\xf6\x76\x65\xcb\xbd\x34\x1f\x9b\xec\xe6\x6b\x1d\xb7\xdb\x3e\xc7\xeb\x07\x91\x90\x88\x98\x22\xb9\x00\x64\x5b\x4d\xf4\xbf\xdf\xc3\x00\x20\x01\x92\xb2\xd4\xf6\x6e\xdf\xdd\xbb\xfe\x20\x87\xf8\x18\x0c\x06\x83\xc1\x7c\x01\xbd\x21\x1c\xde\xf3\x72\x41\x65\x46\x97\x02\x26\xee\xc7\x97\x2f\xf0\x79\x7d\xbc\xa7\x9a\xcc\x39\xa9\xb2\x73\xba\xa8\x72\x22\xe9\xf1\x1e\x96\x7d\x78\xfe\xf4\xdd\xdb\x67\x30\x81\xa3\xc3\xc3\xc3\xe3\xbd\xbd\xa6\x67\xfc\x17\xd5\x1c\x26\x30\x5b\x16\x89\x64\x65\x11\xd2\x9c\x2e\x68\x21\x87\x50\x56\xea\x5b\x0c\x21\x23\x45\x9a\xd3\xa7\x19\x29\xe6\xd4\x7e\x9d\xd1\x45\x79\x43\x23\xf8\xbc\x07\x20\x33\x26\x62\x9a\xc3\x04\x4c\xdf\x63\x5b\x88\xb8\xbc\x3c\x7f\xf3\x1a\x26\x50\x2c\xf3\xbc\xae\x30\xb0\x61\x62\x47\xa9\x6b\xdc\xc1\x60\xe2\x8d\xdd\x6a\xa3\x51\x70\x51\xd7\xe8\x80\x87\x62\xa8\x7a\x44\xaa\xeb\xba\xee\xcf\x59\x72\x2d\x32\x72\x6b\xe7\xee\xa1\x96\x12\x49\x60\x02\x17\x97\xc7\x7b\xb6\x88\x15\x4c\x32\x92\xb3\x5f\x68\x18\x1d\xef\xad\x7b\x08\x18\x4b\xb6\xa0\x2f\x48\x22\x4b\xae\x26\xa5\xd0\x08\x56\xc1\x18\xbe\x3d\x84\xaf\xf5\xcf\xe3\x3f\xc0\xd7\xf0\xcd\xb7\x7f\x1c\xaa\xaa\xdb\x6e\xd5\x7f\x60\x45\xda\xaa\xc0\xc2\xac\x29\xc4\xef\x05\x7e\xe3\x3f\x45\x30\x86\xa3\x7e\x8c\x84\xa4\xd5\x8f\x24\x5f\x52\x85\xd0\x85\x6a\x7c\x24\x82\x21\x04\x47\x87\xfa\xcf\x42\xfd\xfe\x11\x7f\x8f\xf4\x9f\x6f\x0e\xf5\x57\xa6\x7e\x1f\xe3\xef\xb7\xf8\x7b\xa4\x3f\x8e\x52\xac\x48\x03\x1c\xfa\xe8\x16\xbf\xf0\xf7\x0f\xf8\xfb\x27\xfc\x3d\x5a\x61\xf9\x2a\xd8\xbb\xec\x43\xab\x58\x2e\xf0\x1f\x0a\xab\x3e\x56\x8c\x2b\x5e\xca\x52\xae\x2a\xea\x90\xbd\xbb\xc8\x8a\xab\x05\xcd\x67\x30\xc1\x25\x52\xab\xa7\x3e\x63\x96\x7a\x1b\xa3\x3d\xe8\xfe\x3e\xae\xea\x68\x04\x1f\xa8\x84\x94\xce\xc8\x32\x97\x96\x07\x63\x0b\xc4\x7e\x23\x30\x03\xf6\xb8\x5d\xc9\x15\x4b\x5e\xb1\xa2\x5a\x4a\xdb\xaa\xaf\xea\xcb\x17\xa4\xa8\xea\xce\x66\x10\x7a\xed\x24\x99\xc2\x64\x32\x81\x65\x91\xd2\x19\x2b\x68\x6a\x19\xb8\xdb\x0a\x8e\x90\x85\x0d\xf2\xcf\x38\xb9\xd5\x1b\x1d\x92\xb2\x90\xbc\xcc\x05\x90\x22\xc5\x0f\xc2\x0a\xca\x61\xc6\xcb\x05\xbc\xc4\x7d\x30\x25\x5c\x80\x34\x02\x21\xde\x33\xc4\x6b\x76\xa0\x1e\x72\x50\x11\x99\xbd\xe7\x74\xc6\xee\x06\x63\x78\xff\xe4\xfc\xe5\xd5\xfb\xb3\xe7\x2f\x5e\xfd\x34\xd4\xd5\xd3\x25\xcb\xd3\x1f\x29\x17\xac\x2c\x06\x63\xf8\xfe\x87\x57\xaf\x9f\x5d\xfd\xf8\xfc\xec\xc3\xab\x77\x6f\xed\xe6\xfa\xf4\xf7\x25\xe5\xab\x98\xde\x49\x5a\xa4\x61\x2d\x3f\xdc\xd9\x44\x35\x1d\x5d\xd9\xf0\x30\x7c\xb3\x14\x92\x24\x19\x8d\x39\x2d\x52\xca\x43\x4f\x8a\xd5\xb2\x28\x6a\xba\xd3\x3c\x26\x55\xa5\xc6\xf1\xa1\x45\x76\x81\xff\x42\x25\x70\x3a\xa3\x9c\x16\x09\x15\x20\x4b\x20\x79\x0e\x32\xa3\xc0\x0a\x49\x39\x15\x92\x15\x73\x2b\xb1\x04\xb0\x02\xeb\x1a\xa2\x6a\x3a\x92\x22\xd5\xe0\xa6\xac\x48\x81\xde\xd0\x42\x1a\xf1\xc2\x91\x5f\x6a\x89\xfb\x0f\xae\xd0\xe1\x96\x15\x68\x1e\xcf\x58\x91\x86\xc1\x57\x58\x7b\x75\xab\xab\x03\xd8\xb7\x0c\xd5\x4c\xe5\x5f\x8a\x6a\x2f\x4a\xbe\x80\x89\x07\xcb\x40\xd0\xf5\x57\xb3\x92\x2f\x02\x3d\x3b\x3d\xc2\x5d\xc5\xfb\x3b\x48\x7a\x27\x09\xa7\xe4\xa2\x20\x0b\x3a\x51\xed\x2e\x03\x87\x70\x77\x15\x8f\xaf\xe9\xaa\xe2\x54\x88\xb0\x11\xfb\x96\xf7\x46\x23\x78\xae\x08\x04\xb7\x44\x00\x36\xa2\x29\xdc\x32\x99\x95\x4b\x89\x24\x12\x19\x9b\x49\xb8\xa6\xab\x18\xdb\x2b\xae\xa6\xf1\x6d\xc6\x92\x0c\x26\x13\x38\xfa\x06\x1e\x3d\x82\x07\x34\xc6\x66\x7f\xa3\x2b\x0b\xb7\x3d\xd9\x58\x2c\xa7\x0b\x26\x43\xc4\x4c\xfd\x47\xe3\x8a\x23\x81\x9f\xe9\x6d\x69\x6b\x90\xe9\x11\xaf\x27\x4b\x59\x1e\x70\x2a\x94\x44\x50\x98\xa8\x89\x82\x9a\x29\x94\x05\xe0\x76\xd3\x28\x21\x7f\xcf\x66\x82\x4a\x23\x1e\x62\xfd\xf5\x92\xb2\x79\x26\xe1\x40\x97\x25\x39\xa3\x85\x29\x3b\xae\xfb\x69\xf0\xe7\x86\x84\xfe\xc1\xd8\x4c\x05\xe0\xa1\xfa\x8e\x13\x21\xc2\x41\x86\x20\x06\x43\x18\x90\xa5\x2c\x07\xed\x52\x9a\xc7\x22\xe1\x65\x9e\x9b\xe1\xf7\x0d\x6e\x76\x7a\xfa\xcf\x43\x7d\x50\xc5\x65\x11\x0e\xae\xe9\x6a\x59\xe9\x09\x0d\x86\x9e\xe4\x6b\xa1\x67\x0e\x37\x58\xeb\x03\xae\xb5\xc8\x09\x9e\x9a\x7a\x7f\xb8\xe7\xa8\xc3\x44\x28\xa9\x5e\xb9\x32\xac\x59\x1f\xcd\x4c\x88\x85\xe6\x24\x47\xac\xb9\x0c\xa5\x36\xee\x35\x4d\xbf\x97\xc5\x26\x18\xb6\xc9\xd5\x54\x16\xdd\x8e\x3b\x8c\x6c\x5a\xba\xa3\xb2\x42\x50\x2e\xdf\x50\xc9\x59\xb2\x09\x82\xa0\x39\x4d\x0c\x08\xdd\xfe\x6a\x81\x1d\x5c\x40\x9c\xce\x38\x15\xd9\x2b\xc5\xf3\x37\x24\xdf\x05\x96\xe9\x72\xe9\x6e\xc7\xa4\x2c\x44\x99\xd3\x73\x14\xd6\x7d\xbb\xd8\x34\x08\x5a\x12\x50\x75\x80\x0d\x5d\xb4\xe8\xa8\x85\x91\x3b\x9c\x24\x53\xd1\xdf\x8b\x5c\x28\x0d\xe6\x40\x96\xf3\x79\x4e\x27\x03\x49\xa6\x03\x77\xba\xaa\x63\x4c\xff\xd5\x39\x88\x22\xf5\x13\x06\x22\x2b\x6f\xdb\xad\xcb\x42\x97\x17\xf1\x14\x9b\x06\x0e\x4f\xd6\x62\x43\xed\x1d\x49\xf8\x1c\xf7\xdc\xc3\x90\xc6\xfa\xc3\x30\x79\xcf\x81\xa6\xeb\xe3\x8a\x70\x5a\xc8\x30\x8a\x59\x91\xd2\xbb\xd0\x6d\xef\xf2\xac\xad\x50\xd2\xe6\x61\x18\x7c\xa5\x04\xa9\x81\x40\xa4\xe4\x61\x40\x38\x23\x07\xf6\x30\x0c\xa2\x28\xce\x88\x78\x9a\x13\x21\xc2\x80\xd3\xbc\x24\x69\x10\xb5\x24\x91\x96\x3f\x78\x64\x35\xa2\x46\xef\x22\x2d\xf2\xcf\xa8\x5c\xf2\x02\x94\x16\x29\x60\x56\x26\x4b\x01\x53\x92\x5c\xab\xa3\x04\x85\x2f\x2b\x84\xa4\x24\x85\x72\x06\x1a\x96\x3a\x51\xe2\x3e\x06\x8d\xa7\xb8\x34\xd7\x74\x95\x96\xb7\x85\xd2\x8f\x38\xc2\xee\xa5\x64\xb3\x81\x71\x4c\x8f\x24\x58\x7c\x43\xf2\xd0\xff\x8a\x4c\x1b\x0d\x75\x83\x24\x5d\x47\xcd\xd9\xc1\x79\xb9\xe1\xf0\xd0\x75\x41\x14\x67\x2c\x35\x54\x6f\x98\xf5\x89\x16\x89\x9b\x79\x55\x09\xa5\x36\x87\xdb\x1d\x55\x43\xf0\xba\x38\xad\x57\x4f\xee\x98\xd8\xd8\x7a\x75\x45\xee\x98\x70\x9a\xe7\x74\x4e\x8b\x74\x03\x3a\xba\xd2\x15\x36\x15\x2b\x0a\xba\x69\xd2\xa6\xd6\x3d\x26\x6f\x48\xfe\x41\x12\xb9\x61\x97\x61\xfd\x95\x50\x0d\xbc\x43\xb9\x48\x9f\x11\x49\xfb\xfb\x38\x02\x8d\x16\x69\x57\x90\x9a\xce\xca\x02\xa1\xca\x9e\xa8\x58\x72\x4d\x79\xa8\xb9\x22\x2f\x13\x92\xd3\x31\x0c\x68\x31\xd0\x2a\x99\x52\x08\x88\x1c\xc3\xe0\xe7\x9f\x7f\xfe\xf9\xe0\xcd\x9b\x83\x67\xcf\xe0\xe5\xcb\xf1\x62\x61\xea\x65\x59\xe6\x53\xc2\xdf\xe7\x24\x41\x1d\x67\x0c\x83\x69\x29\x65\x69\xeb\x05\x4b\xe9\xf7\xab\x0f\x2c\xa5\x63\x90\x7c\x49\x4d\x69\x56\xde\x9e\x97\x29\x59\x7d\xbf\x94\xb2\x2c\xda\x55\x4f\x73\x4a\x78\xb7\xb0\x14\x0e\x10\x7d\x0e\x75\xb4\xdd\x7a\xce\x3e\xa3\x37\x93\x26\xe1\x40\xfd\xf3\x9c\x2d\xe8\x7b\x9c\xfa\x20\x42\x5a\x6c\x02\xa3\x35\xe2\x16\x1c\x25\xac\xd2\xca\x9c\x7d\x41\xeb\xf4\xec\xd9\xf7\xee\xa9\xd9\x3a\x0a\xec\x01\xda\x05\xb1\xac\x14\x5e\x67\xba\xb9\x05\x52\x6f\x7c\xf1\xa1\x3e\xd8\x3a\xa6\xa9\xd9\xa1\xee\xf9\xa7\x77\x30\x1a\x02\x83\xa3\x81\xb1\x54\xad\x89\x23\x57\x39\x45\x70\xfa\x78\xed\xc0\x53\x8d\x58\x52\xd6\x47\x6f\x73\x18\x6b\xa6\x1b\xc4\xf3\x7c\x55\x65\xaa\xc9\xc0\x11\xa1\x3e\xa2\x61\x47\x34\x36\x50\x48\x9a\x1a\x31\x3a\x95\xc5\x41\xc5\xd9\x82\xf0\x55\x50\x2b\x6d\x0a\xb0\xd3\xa6\x1e\xec\x20\xc9\x68\x72\xdd\x6a\xc7\xd1\x22\xef\x34\x5d\x16\xd8\x98\xa6\xb6\xf9\x1a\x68\x2e\xe8\x46\x94\x3c\x30\xbf\x0e\xab\xce\x50\xf7\x63\xe6\x4d\x62\x6d\xcd\x1c\x6f\x51\x42\x67\xe5\x1d\x1c\x93\x9c\x25\xd7\x61\x67\xb9\xfa\x68\xaf\xf4\xe5\x46\xe4\xfd\xf5\xc3\xbb\xb7\xcd\x6a\x8c\x46\xf0\x6a\xe6\x18\x26\x4a\x27\x37\xa3\x0c\xb1\xb8\xe4\x6c\xce\x0a\x92\x83\xa0\x9c\x51\x01\xe8\xbd\x98\x97\x12\x16\x4b\x49\x24\x4d\x1b\x38\xa1\x50\x02\x24\x8d\xd0\x50\xbc\xa5\x50\x50\x9a\xaa\xa3\x8c\x53\xa5\x99\x48\xbe\x4c\x24\x30\xa9\x0d\x47\x0f\xb2\xc2\x08\xe1\xc6\xee\x7a\x18\x37\x89\xd6\x12\x38\x29\x84\x12\x47\xcf\xd4\x26\x6e\xcd\xa5\x21\x1e\x74\xd9\xbe\x43\x8b\xef\x60\x70\x38\x80\xb1\xda\x09\xf6\xdc\x6b\x53\xbb\x06\xa4\x77\x21\x1a\xf6\x61\xad\x00\x77\x8c\x2a\x6b\x67\x74\xd6\xa2\xa5\xb6\x39\xfc\x62\x15\x06\x67\x2c\xab\xab\xdd\xdf\xaa\x47\xa5\x30\x1b\x7e\x46\x72\x41\x5b\x4a\xba\x39\x74\xea\x93\xb6\x8b\xba\x3e\x37\xa6\x28\x89\xad\x1a\x9b\x5c\xa1\x1e\x7e\x19\x44\x3d\x4c\x66\x55\x8f\x84\x53\x22\xe8\x99\xd1\x9c\xdc\x41\xef\x03\x9e\xd2\x1d\x80\xa7\xb4\x07\xf8\xae\xa8\xd3\x22\xdd\x05\xf1\xe7\x45\xfa\x2b\xd1\xde\x02\xd8\x22\xed\x00\xee\xd5\xd3\x7a\x24\x7e\x4b\xf9\xd2\x76\x80\xaa\x0b\x38\xad\xd4\xd9\x1a\x0c\xe1\xb3\xb2\x44\xc7\x3d\xf0\x50\xb4\x0f\x61\x51\xaa\x43\x36\x98\xd2\x59\xc9\x69\xb0\xee\x68\x74\x56\xd1\x53\xfb\x94\x53\xfc\x62\xc5\xbc\xe1\x68\x6d\x98\x2a\x11\xa5\x8f\x81\x1e\xe5\xc2\x5a\x26\xaa\x91\x51\x2a\xea\x1e\x9b\xa4\x91\x39\xf4\xd0\x4d\x7a\x0f\xbb\x5a\x4a\x55\x65\xb5\xcc\x89\xa4\xaf\x70\x86\x64\x9a\x53\x3d\x4b\x61\x98\xb7\x16\x6e\x8e\x5e\xea\x8e\xd4\xd9\x1d\xeb\x7e\xcf\x65\xe3\x01\xdc\x38\xe2\x4e\x0e\xc1\x87\x31\xf9\x44\xee\x42\x2b\x4b\xd5\x20\x65\x3a\x86\xe0\x2f\xcf\xcf\x83\xa1\x29\x5c\xf2\xdc\xf3\x76\xc1\x3e\x04\x23\x52\xb1\xd1\xcd\xd1\x28\x27\x53\x9a\x8f\xae\xae\x14\x65\xaf\xae\x46\x37\xe8\x4c\xad\x7b\x2a\x01\x78\xbe\xaa\xd4\xba\x7e\x12\x65\x51\x97\x8b\x65\x92\x50\x21\xc6\x0d\x82\xaa\x7a\x88\xce\x0a\xa5\x50\x2e\x85\xeb\x46\x50\x34\x53\xf5\x4a\x2a\xca\xa5\x80\x07\x93\x09\x04\x06\x44\xe0\x36\xb4\x34\xcc\xca\xdb\xe7\x4a\x43\x0f\x03\xfc\x03\x4a\x06\xb1\x62\x0e\xe4\x86\xb0\x5c\x51\x08\xb4\x89\x2b\x1e\x34\x47\x5c\xb3\xb0\x4d\xc9\xba\xfe\x97\xa2\xdc\xa2\x26\x2b\x22\xa3\xe6\xd6\x34\x9d\x95\x1c\x42\x54\x34\xd0\x67\x0b\x0c\x4e\x6c\x87\x38\xa7\xc5\x5c\x66\xc7\xc0\xf6\xf7\x7b\xb0\x75\xf7\xc2\xc5\xe1\x65\xad\xc3\x91\x34\x0d\x0b\x7a\x0b\xef\xf0\x3b\x34\xc0\x2e\xd8\xe5\x10\x9a\x7f\x47\x91\x8b\xed\x9e\x07\x78\xb6\xfc\xe5\x97\xd5\x19\x15\xcb\x5c\xd6\x1e\x4c\xfd\x1f\x0a\x8a\x31\xba\xf4\x87\xde\xf4\x55\xdb\x6e\xf9\x82\x54\x63\xf8\xbc\xde\x38\x10\xb2\xb2\xe2\x45\x92\x51\x92\x86\xde\x0c\xcb\x25\x4f\xe8\xd8\x62\xec\x42\x65\x92\x2e\xc4\x18\x02\x92\xe7\x81\x3f\x9a\x4c\x32\xca\x1d\xde\x50\x2d\x7d\xc2\xd9\x43\xff\x96\x42\x46\x6e\xa8\xc1\x1c\x17\x21\x59\x72\x65\x2c\xeb\x39\x0e\x41\x5c\xb3\xca\xeb\x58\x6f\x40\x87\x3c\x5a\x72\x22\x5f\xa1\xd7\x0b\x3f\xdb\x23\x76\xa9\x6a\xba\xb9\x9d\x8e\xb7\x75\x59\x90\x4a\x2d\xc6\x7a\x6b\x43\x6e\x17\x0e\x0b\xe3\x19\xcb\x25\xe5\x61\x33\x52\x6c\x24\x6b\x38\x82\xd1\x7c\x08\x83\x41\x54\xf3\xc5\xb0\x83\x39\x40\xc5\x95\x5d\x74\x22\x24\x2f\x8b\xf9\xe9\x60\xd8\x6d\x50\x0a\x65\xfd\x9c\x8c\x6c\x93\x56\x8b\x75\xb4\x23\xca\xf1\xac\xe4\xcf\x49\x92\x35\xa2\x94\x77\x49\xd9\x4f\x99\x0b\x1e\x5b\x8d\xea\x12\x26\xc0\xdb\x23\xb6\x71\x70\x18\x11\x1a\xb9\xac\xd8\x05\x58\xd1\x3b\x82\xdb\x7f\x3d\xdc\xf3\x38\x95\xcb\x0e\xd7\x89\x36\xe6\x58\x18\xab\xb6\xcd\xf4\xc8\x70\xda\x9d\xa0\x15\x05\xbd\xd3\x9c\x5e\xc6\x22\x29\x39\x85\x83\xfe\x7a\x62\xea\xdb\xf3\xb7\x13\x44\x3b\xe8\x10\xbe\x03\x12\x6b\x93\xf7\x69\xb9\xa8\x08\xa7\xe1\x34\x82\x31\xb0\x16\x91\x5a\x44\x73\xa8\x24\x36\x93\x23\x63\xf3\x2c\x67\xf3\xcc\xa3\x09\xf4\x6e\x45\x03\xf0\x61\x38\x38\x49\xd9\xcd\xe9\xc0\xba\xef\xdb\xb3\x52\x7d\x2f\x63\x21\xb9\x12\xc5\xfb\x8a\xd5\xb0\x79\xe4\xe3\xd0\x87\xf6\x68\x04\xe7\x19\x13\xa8\x8e\x63\x94\x22\xc3\xb0\x06\x90\x99\xa4\x1c\x88\x94\x24\xc9\x14\x50\xf4\x77\x5b\x39\x04\x55\xbe\x9c\xb3\x62\x08\x44\x00\x93\x2e\xac\x52\x66\x94\xdf\x32\x41\x61\xca\x29\xb9\x16\xad\x7e\x76\xb6\x24\x67\x72\x15\xf7\x88\x3a\xcf\xe5\xe4\x20\x8d\x5e\xa1\x71\xd7\xfe\x84\xdf\x75\x30\xad\xad\xbb\x60\x8b\x1e\x30\xa7\xf2\x5d\x1d\xaf\xda\x7e\xf0\xb7\xe2\x5b\x8d\x39\xad\x0b\xd1\xdf\x6d\xa3\xa2\x00\x81\xe3\xd7\x36\xd2\x3a\xa8\x9d\x0c\xb6\x40\x48\x5a\xb5\x4b\xd0\x66\x09\xf6\x00\x2e\x37\x2b\xc0\xba\x4b\x14\x53\x4f\x6a\xa0\xaf\x73\x68\x83\x4f\xae\x2d\xaf\x74\x8d\x26\x90\x1e\xab\x4f\xc7\xf1\x19\xb3\xe2\x09\xe7\x64\x15\xaa\xf2\xa1\x37\x9d\x08\x4e\x27\x70\xd8\x2c\x0b\x86\x65\x0c\x14\xd4\x5c\xcc\x51\x0d\xa7\x6e\x2b\xb0\x74\x42\xf5\xf1\xd2\x19\x19\xfb\xd4\xeb\xe4\x79\x47\xeb\x4e\x36\x06\xd5\x52\xfa\xdc\x16\xda\xd7\xdb\x76\xff\x6a\xed\x14\xb7\x56\x1d\xff\xdf\xa6\x0a\x12\x2e\xe8\xb3\x25\x27\xb8\x59\x1d\x2e\xc0\xd5\x3b\xa7\x77\xb2\x61\x07\x2c\x3a\x7b\x0e\x13\x50\x4a\xc6\x19\x9d\x3f\xbf\xab\xc2\xe0\x9f\xe1\xc5\xe1\xc1\x9f\x2f\xf7\xa3\xf0\x62\x75\x9b\x66\x0b\x71\xb9\x1f\x3d\xd4\xbc\x88\x2a\x10\x9e\xcd\x8a\x2d\x6a\x88\x31\x96\x85\x06\x5c\xed\xd5\x7a\x60\x9a\xea\x78\x0c\xaa\x55\x48\x1b\x55\x67\xaa\x2c\xb1\x1f\x4c\xe0\x9b\x96\xeb\xe7\xdb\x43\xeb\xb7\x52\xa3\x22\x99\x61\x02\x38\xbd\x57\x85\xb4\x00\x2e\x8e\x2e\x6b\xcc\x96\x05\x53\x87\xa5\xad\x79\x7c\xe9\x90\x4f\xf7\xff\xba\x1b\xf2\x76\x12\x12\x2e\x14\x80\xcb\xad\x14\xf6\xac\xc6\x9d\xf7\x19\x12\xe7\x03\x4d\xca\x22\xad\x7d\xb7\xde\x5a\x85\xad\x40\x93\xe3\xb0\xee\x53\x2c\xef\xc9\x63\xe8\x53\x36\x15\xcd\x3d\x14\x4e\xfa\x50\xb8\x07\x28\x2a\x9a\xbe\xab\xa9\x85\xeb\x96\xce\xc7\xce\x86\xdb\x60\xfd\xc0\x3d\xfe\x81\x46\x13\x77\x35\xf4\xf5\x2e\xd6\x91\x67\x89\xff\xfb\x17\x6c\xfb\x4a\xc1\x01\x1c\xa9\x55\x3d\xd5\xab\x7b\x70\xb0\x71\xd5\x4e\xff\xff\xac\xda\x9c\xca\xe7\x75\x94\x60\xfb\x92\xa1\xc0\xf1\x62\x0b\x5f\xbe\x80\x57\xe0\x63\xcd\x6d\xd0\x6a\x81\x61\x35\x2b\x6b\x5c\xbf\xf3\x2e\x2e\xf7\xdd\xce\x64\xfe\xe1\xd7\x4d\x46\x15\xa5\xba\xb1\xf6\xaa\xd5\xdd\x9d\x48\x93\x68\x0a\x55\xdb\xc8\x91\x76\x29\xa6\xb4\x6d\x41\x4c\xf4\xe2\x84\xa0\xee\x4d\x1d\xda\x85\x2c\x06\xa1\x1d\x25\xe9\xf3\xa2\x27\x06\xb0\x81\x2c\x05\xbd\x35\x28\x9b\xa5\xb3\x04\x72\x89\x6c\xb6\xa1\x69\x8b\x66\xf4\xce\xfb\x17\x46\xf0\x78\x08\x03\xa1\x77\xdc\xa0\x97\xde\x06\xb0\x53\xe7\xb3\xfe\x8e\x02\xe9\x7f\x7a\xde\x62\x39\x95\x9c\x24\xf2\x7f\xd5\xe4\x9d\xd6\xbb\xa7\xab\x25\x39\x25\x5c\xab\xcd\x51\x6b\xb7\x77\xe4\x51\x23\x69\xd6\x7b\x6d\x17\xb2\xd2\xbe\xc3\x9e\xe0\x65\x4c\x17\x95\x5c\x85\x91\x13\x50\x22\x5c\x2a\xbe\x36\xca\x91\xa6\xae\xa2\xb7\x2a\x0c\xa3\xff\x8e\x53\xc2\xa4\xd1\x94\xf9\xd2\xe8\x6a\x9b\x35\x63\x9b\xde\x61\x95\xeb\xcb\x20\x32\xe1\xb0\x2f\x5f\xe0\x0d\x91\x59\xbc\x20\x77\x21\xfe\x63\x96\x97\x25\xf7\x4f\x8d\x11\x3c\xfe\xe3\x61\x34\x84\xa3\x7a\xd8\x26\xfe\xda\x91\x2f\x30\xb2\xd9\xaf\x8e\xd4\x47\xa4\x7e\xca\xb8\xe7\xa7\xb4\x85\x31\x99\x2a\x63\x38\x72\xf5\xb5\x25\xcf\xed\x58\xc6\x4b\x67\x3f\x2b\xc2\xc9\xa2\xc9\xa7\x0b\x10\x4a\x30\x6e\x2b\xc7\x36\x88\xb4\x31\x19\xb0\xd6\xce\x35\xc0\x18\x57\x4c\x29\xe6\x66\x6a\x07\xde\xda\x1c\xbb\x4d\x75\x38\xdc\x34\x3c\xf6\x81\xd0\x4a\x69\xb6\xf5\xaa\xe8\xda\x25\xcf\xd5\x41\xde\xef\xfe\xd4\x69\x67\x38\x58\x60\x1c\xd6\x7a\xc6\x2e\x7b\xf7\xf8\x36\xdd\xe4\x0d\xdc\x24\x67\x54\x54\x65\x21\x68\xb7\xf1\xb1\xa6\x85\x17\xef\x33\x18\x4b\xcd\xa3\x0d\xbf\xda\xe5\xdb\x0d\xef\xdf\x8c\xf1\x53\x1d\x10\xda\x8e\xb3\x6f\xf2\xfd\x94\x29\x43\x68\x83\xc7\xb9\xc5\xff\x3a\x61\x45\x57\x06\x91\xe7\x89\x5e\xf2\x7c\x9b\x7f\x59\x95\x8f\x0d\x95\xfe\xdd\x3e\x67\xec\x85\xae\x80\x1d\x7d\xcb\x06\x6a\x58\x7b\x95\x7d\x52\x6e\xf3\x32\xdc\x65\x7c\xa8\x98\xb6\x6a\xa3\xaf\xca\x94\x71\x15\xe0\x16\x6d\x21\x8d\x82\x80\x7b\x1e\x36\xd5\xe7\x2e\xe3\x31\x37\xcb\x8a\x31\xcd\x07\x7d\xa9\xb7\xf6\x3f\xca\xd5\x82\xb6\xfb\xe8\xc9\x7b\xae\x25\x3f\x56\xdd\xee\xac\x49\xac\x8c\x49\xaf\xd3\x56\xb7\x3e\xbd\xa3\xc9\x12\x33\x54\x8d\x43\x3b\x80\x7d\x05\x36\xea\x52\xb9\xa6\x5e\x52\x2e\xaa\x9c\x4a\xba\x33\x01\x27\x1b\x08\x78\x7f\xac\x20\x6d\x8c\xf0\xbe\x13\x04\x0e\x9a\x4d\x7b\xec\x75\x94\xa5\x24\xb9\x2a\xfe\xa0\x63\xd5\x93\xee\x9a\xe8\xb0\x72\x6b\x61\xbe\xeb\x2e\x03\x86\xa3\x8d\x4f\xd6\xd8\x1a\x63\x38\x3c\x6e\x39\xb4\xea\x53\x30\x93\x8b\x3c\x0c\x5e\x97\x24\x05\x25\x57\x34\x35\xeb\x79\xec\x43\xb0\x10\x70\x32\xe5\x30\x3a\x85\xb3\x5a\x44\xea\x56\xce\x41\xb6\x0f\x81\x6d\xa6\x6a\x82\x73\x35\x1f\x04\x68\xa2\xef\xba\x47\x6b\x9a\x51\x0b\xab\x76\xd4\xb7\x21\xf1\x0e\x8e\xb0\x9a\x4f\x5c\x89\xb6\x10\xf3\x2d\x9a\xad\xea\x11\xab\x8d\x87\x6d\x5b\xe5\x56\x77\xd8\x32\x74\xa3\xaa\xfc\xd6\xb1\x07\x83\xf6\xd0\x96\x06\x5b\x86\xf6\xd2\x6d\x76\x50\xae\xdc\xe3\x55\x2d\x4f\xb9\x94\xaf\x9e\x59\x16\xbf\x65\x45\x5a\xde\xea\xe9\x9c\xeb\xca\x76\xcb\x5a\xbe\xb3\x56\x52\x68\x9f\x06\xd4\xca\x19\x6a\xd4\x20\xd4\xe5\x2c\x04\xdf\x57\x54\xa7\x57\xda\x21\x61\x62\xf1\x12\x7a\x1f\x29\xac\xfa\xe3\xb5\x3d\xd6\x68\x6f\x4e\x92\x9a\xc3\xb0\x99\xc1\xd7\xe6\x12\xd0\x76\x6a\xeb\x0c\xfc\xd7\x64\x4a\x73\xef\xe0\xc4\x70\xa8\x68\x48\x8e\xdf\x1f\xd0\xe5\x2d\xcc\x85\x19\xc7\x43\x80\xb5\xc0\x0a\x70\xbb\x69\xa2\xe8\x2a\x25\xbd\x6d\x6c\xd5\x91\x3f\x2e\xd4\xb8\x5a\x8a\x2c\x0c\x6c\x64\x47\x6d\x2e\xdd\x77\x1f\x82\x3a\x98\x63\x44\xa3\x48\x48\x45\x5f\x9e\xbf\x79\x6d\xf0\xbc\xc0\x3f\x75\x10\x71\xed\xdb\xc1\xb9\x9d\x5d\x70\x92\xb2\x1b\x48\x72\x22\xc4\xe4\x63\xa0\x8b\x3f\x06\xcd\x50\x16\x93\x4f\x25\x2b\xc2\xe0\x64\xca\x4f\x83\x48\x0f\x9f\xb2\x9b\xd3\x60\x2b\x31\xb5\xcf\xfb\xbc\x3c\x17\x6f\xb5\x67\x77\x23\x39\xa5\x6d\x61\x6a\x62\x4b\x1c\xa5\x0a\x0f\x06\x38\xea\xe7\xe0\xf8\x3e\xe2\x6f\xa5\xfe\x76\xf2\xf7\xd0\xbf\x26\xf9\xe4\x63\x50\xd3\xc5\xd2\x57\x95\x7f\x0c\x6a\x8f\x3e\x9e\x14\xea\xc7\xcc\x66\x7f\xd2\x47\xc6\xa1\xa6\xe1\x3a\x70\x4c\x7b\xdd\x61\x37\x37\xf0\x8f\xc6\x69\x5a\xd3\x12\xbd\xa0\x0d\x29\xf5\x8e\xc5\xa6\x2f\xf2\x92\x48\x53\x6f\x37\x25\x13\x6f\xc9\x5b\x55\x16\x39\x77\x1e\x82\xfd\x57\xc5\x2c\x18\x42\x70\x60\xfe\xe2\x37\xdc\xb2\x3c\x87\x29\xd5\xc0\x52\xb5\x9d\x4a\x78\x4b\xde\xc2\x74\xe5\xc2\x8f\x62\x38\xcf\xa8\x05\x95\x90\x62\x20\x55\x27\x4c\xd3\xa0\xe9\x10\x44\x89\x79\x92\x20\x33\xba\x00\x22\x60\x4e\x2a\x01\x61\xb1\xcc\xf3\x28\x76\xbd\x36\xf6\x22\xda\xda\x73\xf0\x6e\x25\x8a\x97\x7f\xd5\xd6\x75\xef\xb5\xbe\x2b\x92\x53\x29\xad\x31\x78\x66\xee\xc5\xc5\x4f\xcb\xbc\xe4\xf1\x7b\x5d\xd9\x58\xa6\xa8\xc5\xe9\x53\x57\x69\xa6\xc8\x43\x0b\x22\x39\xbb\x0b\x7c\x11\xd5\x68\x33\x26\x46\xcf\x04\x14\xa5\x84\x72\x06\xba\x3d\x86\xa4\x1e\xc0\xfb\x9c\x12\x41\x81\xe2\x7d\x13\x02\x49\xc9\x39\x4d\x24\x66\x57\x53\x21\x58\x59\xc4\x81\x9f\x97\xa2\xf9\x7c\xdd\xb8\x92\x88\x4d\x59\xe0\x75\x30\xae\x91\x9b\x52\xb4\x43\x2b\xc7\xf5\x97\xe6\xe2\x26\xb6\x22\x85\xd9\xab\x68\x84\xe1\xd2\xd4\x9b\xc2\x04\x65\x02\x91\x90\x9c\xf0\xe0\xd8\x15\x55\xc2\x09\x79\xb7\x74\x41\x1b\xcb\x69\x44\x13\x52\xc7\x17\x09\xcd\xc0\x4d\xbe\x43\x0d\xb8\xae\x73\x93\xe8\x0c\x29\xdc\x51\xc6\xf8\x3b\xf4\xba\x8f\xcd\x5f\xdf\x6e\x90\x42\x47\x76\x84\x4f\x29\x67\x03\xb9\x2a\xa0\xa7\x15\xde\x8d\x75\xb4\xe1\xe2\xf0\xd2\x0d\xb1\xaf\xc6\xce\xd9\x88\x3b\x53\x43\xbb\x38\xba\x6c\xc2\x9f\x75\x4e\xc0\x3a\x6a\xb4\xd5\x5c\xe9\xfa\x86\x03\x63\xfc\x0c\x75\x8f\x75\x93\x28\x57\xb3\xa4\x56\xa6\xe2\x5f\x28\x2f\x5f\xb0\x3c\x0f\xd5\x74\x5a\xae\x41\xb2\xa3\x22\xd1\xb9\xf2\x7a\xaf\xf3\xb5\xce\x76\xb4\x8a\xa6\x35\xd2\xfd\xf3\x1c\xef\x0b\xe0\x85\x54\x52\xac\x40\x72\x92\x50\xa1\xf8\x9d\x14\x40\xef\x98\xbe\x6c\x86\xf2\x20\xf6\xf3\xd7\x1b\x0f\x8d\x33\x5c\x93\xfc\x9e\x64\x2c\x4f\x39\x2d\xc2\xa8\x27\x7e\xd7\xb4\x6d\x65\x71\x61\x05\xa6\xd3\x7b\x15\xeb\x76\x5e\xbe\x89\x6b\x9b\xf3\x2f\xd0\x09\xf9\xa7\x36\x78\x7d\xdc\x4e\xcc\x6f\x35\x37\x19\xf9\xdd\xf6\x0d\xfa\x9d\x2b\x7a\xdb\x1a\xe1\x50\x8d\xbb\x8a\x16\xa9\x71\x56\x6d\xf4\xe7\x28\xca\x3f\x2d\x8b\x1b\xca\x25\xc8\x12\x7e\x78\xfb\xea\x27\xd4\xc9\x85\x24\x8b\xca\x5e\xd1\x73\x6c\x96\xdd\x7d\x86\x5f\xbe\xc0\x37\xdf\x9a\x11\x8e\x32\x7b\x5b\x34\xee\xf1\xa4\x59\x34\x0f\xea\x81\xea\x69\x22\xe7\x74\xd2\x46\x84\x73\xf2\xbc\x27\x29\x06\xca\x4d\x06\xef\x2d\x93\x19\xb0\xe2\x86\x09\x36\xcd\x29\x04\x4a\x14\x05\x7a\xe7\x09\x20\xfa\x0a\x5e\x52\x16\x33\x36\x5f\x72\x9a\xc2\xdd\x81\x5a\x04\x98\x96\xcb\x22\x25\x08\x80\x16\x62\xc9\xa9\xb0\xe0\x65\x46\xa4\xe6\x3c\x01\x84\x53\x48\x99\xa8\x72\xb2\x32\x97\xfa\x80\xc0\x8c\xdd\x35\x70\x90\x0a\xde\xcd\x96\x82\x54\x15\x26\x20\x94\x38\x74\x1d\xce\xaf\xe1\xab\x89\xdb\x6e\xd8\xa4\xc9\x15\x46\x86\x46\x12\x5c\x1c\x5e\xc6\x77\x70\xda\x50\xcd\x89\xde\x68\x1a\x2d\x0b\xbc\x31\x18\x7e\xbe\x1b\x37\xad\x86\x60\x72\xb9\xd6\x5e\x1e\xb1\x03\x57\x78\x7b\xf3\x00\x8e\xd4\x38\x27\x76\x45\x3a\xa3\xa0\x46\xa3\x86\x30\x0d\x7a\x07\x68\xae\x00\xbd\x2d\x6f\x21\xe1\x94\x48\x7d\xe1\x50\x1d\x92\xfe\x26\xee\x5c\x25\x77\x8f\x51\x9d\x9a\xac\x31\x30\x71\xf5\xb1\xc3\xfc\xb5\x20\xd5\x57\x05\xc7\x8d\xc3\xd3\xd9\xd8\x68\x2c\xea\x9b\x83\x61\x34\x54\x2c\x6f\x24\xe8\x2d\x4b\x65\x76\x4f\x9f\x7f\xa8\x7a\x34\xc7\xff\x74\x38\x84\xc7\x75\x3f\xad\xde\x53\x3e\xee\xc9\x44\xff\xce\xa4\x35\x04\x30\x86\x20\x67\x05\xb5\xee\x29\x34\x23\xaa\x32\x27\xc6\x30\x56\x75\x84\x1b\x9f\x94\x35\x7e\x6b\x7e\xd7\xc5\x0b\xa6\x5a\x92\xa5\x2c\x83\xa1\x47\xd4\x17\xac\x48\x31\x0b\x5d\x50\xc3\x99\x03\x01\x0b\x72\x37\x5a\xb0\xc2\x06\xe3\x99\xda\xaa\xaf\x8a\x19\x2b\x98\x5c\x35\x21\xfa\x3b\x98\xc0\x81\x5b\x7c\xcf\x1e\x93\x8d\x09\x6e\xb8\xa0\x29\xd9\xd0\x45\x95\xbe\x2f\x59\x93\x92\x61\x99\xad\xae\x88\x57\x70\x82\xd8\x3d\x7a\x04\x6e\xe1\x83\xb6\xce\x60\x28\x00\x13\xb7\x59\x9f\x4b\xa5\x0d\xfe\x14\xa7\xb9\x13\x78\x24\xc7\x3d\xe0\xdd\x6b\xa1\x98\x9c\xa0\xf0\x99\x4c\x54\x47\x3f\x05\xd8\x65\xe2\x58\x83\x55\xbf\xfb\xfa\xd6\x79\x7f\x2b\x9c\x9b\xfa\x3d\x30\x77\xd3\x5d\xe5\x67\x0b\xd8\xf0\x30\x3e\xfa\x5a\xbb\xf5\xc9\x54\x84\xaa\xf0\x40\xc1\x8a\xa2\x68\xa7\x01\xb7\xf4\x5f\xdb\xe3\xe3\xce\x1c\x5c\xdd\x5d\x19\xe3\xe1\x88\x1e\xab\xcf\x9a\x07\xc7\x7d\x1b\xda\xc9\xbf\x5e\x6d\x81\xf5\xb3\xd9\xe8\x1b\x81\xe9\x5d\x51\x72\x46\x0b\x59\xef\x23\x3a\xb3\x09\x45\x92\x25\xd7\x2f\xcc\x95\xae\x1a\xfe\x0b\x76\x27\x95\x30\x8f\xdf\x2e\x17\x53\xca\x63\x7d\xe7\xeb\x6f\x6f\xbe\x3f\x1f\xf6\x48\x15\x44\xd1\x48\x15\x37\x71\xdb\x27\xa4\xb9\x61\xdf\xcc\x2c\x2b\x6f\x28\x7f\x46\x25\x61\x79\xff\xfc\x5e\x36\x0d\x76\x9b\xa4\x46\xd3\xcf\x39\xd4\x52\x62\x08\x77\x43\x70\xf2\x4f\x9d\x88\xf0\xe0\x44\x54\xa4\xb0\xca\x85\x2a\x0c\x30\xe1\xae\x76\x32\xde\xc1\xd7\x78\xe4\x47\xb1\x2c\x7f\x38\x7f\xaa\x6d\xca\x30\xd2\xf9\x76\xaa\xef\xe9\xe0\xd8\x01\x2b\x6e\x89\x4c\xb2\x2e\x60\x9c\xc7\x95\xae\x0d\xf4\xf5\x92\x49\x30\x25\xc9\xf5\x9c\xab\x43\xf4\xc0\x28\xa6\x3a\xd7\x0f\x85\x05\x96\xa8\x61\x94\xae\xd3\x1d\x28\x29\x0b\x49\x0b\xbc\x41\xad\x87\xdc\x07\x33\xdb\xb8\xcf\x94\xc7\xa3\x5c\xdb\xf3\x63\x70\x7d\x1b\x2b\x33\x13\x93\xa4\x7a\xec\x65\x18\x68\x2a\xa9\x06\x53\x8e\x64\xb1\xa3\x3a\x45\xc6\x21\xd5\xb8\x6f\x7c\x34\xba\x27\x1c\x1a\x42\xf6\x1a\x65\xcf\xc2\xbf\xc6\xba\xde\x13\x4c\x77\xab\x8f\xb0\x7b\x19\xc2\x19\xcd\xc9\xbd\xec\x1f\xf2\x7b\x9a\x91\x1b\x56\x72\xab\xf0\xbf\xb4\x1d\x42\xd8\x89\xf5\x34\x5e\x63\xf3\xd7\x1f\x5c\x64\x34\xbf\x51\xba\xcc\x4e\x23\x9f\xe3\x0d\xea\xdd\x18\x7e\xd3\xa8\x6e\x60\xa9\xbe\xc7\xbc\xd5\xff\x26\xd8\x2f\xbf\xc5\x48\xf1\x45\xd7\x83\x96\x19\xdb\x23\x09\x6a\x35\xb2\x8e\x58\xfd\x56\xa5\x62\xbd\x59\x6e\x37\xe2\x66\x87\xe4\x98\x9e\xa8\xe1\x96\xd8\x5d\x3f\x4d\x94\x35\x66\xb0\x30\x37\xe1\x04\x54\x04\x9f\xb2\x70\x2f\xca\xcd\x4a\x6e\xaf\xd3\x19\x15\x19\x7d\x35\xce\xed\x38\x41\x6e\xe8\x9e\xd1\xa3\x9d\x3b\x71\x4f\xfe\xfa\xe4\x27\xb0\x11\x09\xa5\xf7\x96\x3c\xa5\x5c\x5f\xa7\x3b\xa8\xdd\x31\xc0\xa4\xf6\x18\x39\x63\x6a\x60\xb7\x19\xd5\xba\xf2\x52\x50\xae\x54\x72\xa5\x51\xeb\x64\x5d\xc4\xc7\xbd\x48\x5e\x5f\xa5\x33\xae\x0e\x4f\xed\xe9\xbf\x82\x87\x7e\x9f\xad\x06\x6c\xaf\xc3\xe6\x6d\x89\x68\x56\x4a\xa3\x10\x30\x53\x12\xb1\xe5\x84\xe9\x5a\x92\xe7\x64\xea\xdf\xa0\x74\xaf\xc6\x39\xce\xe9\xfa\xaa\xde\x4e\x5c\xd0\x8a\xc4\xb6\x92\x79\xc8\x4e\x7c\xa0\x93\x2c\x9a\x3b\x7e\xf7\x63\xe9\x52\x5a\xbb\xe2\xac\x6f\xf6\xfb\x32\x5d\x59\x52\x3b\xe0\xfc\xa7\x1d\xae\xf0\x86\x12\xc8\x69\x99\x9a\xbb\xa8\xd8\xcf\xcb\xc1\x10\xb7\x4c\x26\x59\xe8\xc4\xaf\xce\x57\x95\x31\x53\x12\x22\x28\x04\x37\x34\x91\x25\x0f\xc6\x7b\xae\x72\xd8\x8a\x75\x79\x2b\x68\x87\x31\x66\x74\x70\x22\xf9\xe9\x89\x4c\x21\x29\x73\x75\x56\x4d\x06\x8f\x07\xa7\x27\xec\xb4\xd0\x0b\x7b\x32\x62\xa7\x27\x23\x99\xaa\x1f\x7e\xda\xa4\x62\xb7\xf3\xd8\xfa\xb3\x33\xbb\xb8\xb4\xae\xfe\xe0\x1a\x18\xad\xd4\x34\xbc\x60\x97\xee\x69\x59\xfb\xb9\xfb\x9c\x61\xb5\x2f\xec\xf8\xbe\xa9\x9d\xb6\x3c\xfe\x1a\xa4\xf1\xcb\xab\xa9\x99\x26\xc6\xd7\x75\x71\x74\xd9\x54\xb9\xb3\xd6\xf3\xc4\x44\xf9\xe3\x9a\xfe\xc6\xa1\xf9\x7f\x98\xfe\x37\xbf\x9d\xfe\x37\x6d\xfa\xd7\x39\xca\xe7\xf4\x4e\x69\x38\x41\xed\xfd\xac\xd1\xfb\xa4\xd1\xfb\x04\x27\x70\x63\x9d\x8b\x16\xb7\x4f\xfe\xb5\xb0\x06\xd2\xfe\xa4\x6e\x7c\xf1\xe9\xd2\xac\x10\xfc\xa7\x5a\x35\xb7\xfc\x50\xaf\xdc\x94\x8f\x4e\x83\x76\xe6\xe5\xef\x62\x0d\x07\x93\x9d\x39\xc3\xb8\x7f\x35\x67\xf4\x8f\xae\x9b\x78\x23\xb9\x2b\xb1\x89\x11\xdb\x03\xa1\x66\x7b\xff\x40\xd8\xc4\x1b\xc8\x99\xb5\x3f\x66\xb4\x65\x50\xe3\xd8\x1a\xf7\x9e\x07\x3f\x14\x62\x59\x55\x25\x97\x34\x35\xc9\xe6\xe8\xba\xef\x00\xd9\x7a\xb4\xf3\x0d\xcf\xf5\xf5\x5d\xdc\x6c\xbf\xe9\xe5\x79\x31\x1d\x9d\xea\xac\xbf\xd8\x57\xb5\xea\x1b\x3e\xae\x23\x1e\xc9\xd7\x20\x40\x0b\xc9\xe4\xea\x8d\xbe\xc0\x86\x13\x0b\x1e\x05\x63\x08\x1e\x91\x45\x75\x6c\x6f\x7c\x9c\x60\x49\x2e\xeb\x82\x53\x2c\x98\xd7\x05\x83\x60\x30\x86\xc1\xa3\x7f\x2d\x4b\x79\x6c\xae\xa1\x05\x83\x40\x15\x7d\xf5\xcd\x9f\xeb\x92\x91\x2e\xb9\x7b\xfc\xe2\x78\x50\x3f\xf6\x60\x94\x7c\x63\xd3\x18\xf4\x9a\x7b\x70\x17\x8f\x4e\x4e\x83\xc1\xc7\xd1\xe5\x68\x3e\x74\xae\x2c\x89\x56\xd6\x6f\x3d\x8d\x0b\x71\x69\x4d\xff\xb5\xb7\x2a\xef\x49\x5f\xaa\x78\xf3\x58\xa3\x0d\x26\xb6\x16\x53\x75\x6b\xbd\xcc\xd7\xbf\x92\x08\xa4\xb9\xab\x83\x80\xd1\xd9\xfa\xc3\xd9\xeb\xc6\xc9\xed\xb6\xea\x95\xa9\x5e\x03\xed\xb3\x5b\x37\xa6\xbd\x57\x6b\x9d\x38\x38\x14\x49\x53\xad\x95\x83\x79\xf6\x11\xb9\x29\xf8\x8a\xa4\xe9\x95\x79\x6e\xc6\x5c\x86\xf6\x9a\xeb\xf7\x79\x54\xd1\x10\x3e\xaf\xa3\xae\x86\xd2\x9a\xbf\x9d\x51\x97\x06\x6a\x76\x26\x92\x9f\x97\x09\x9a\xf9\xb1\xa0\x84\xeb\xc7\xd1\x82\xa0\xb5\x60\x36\x9e\x65\xa8\x87\xb9\x3e\xef\x6d\x22\x61\x3f\x9c\x58\x2c\xa7\x9a\x3f\xc2\xa3\x28\x16\x55\xce\x64\x38\x78\x34\xa8\x53\x20\x1b\x18\x2f\x69\x5e\xd5\x66\x56\x7b\x32\x7f\x6f\x35\x0b\xdd\x60\x4a\x1b\x86\x9e\x70\xd3\x45\x84\x0e\xa6\x5b\xa9\x65\xa9\xec\x52\xcb\x3e\xe8\xe7\x33\x4e\x17\x57\xad\x32\x22\xc9\x1e\xd6\x8f\xe9\x39\x2f\x62\x19\xa7\x8a\x79\x6a\x50\x0b\x4c\xb5\xb2\x5a\xe1\xfc\xe1\xec\x75\xb3\xb4\x91\x53\xad\xe5\x49\x6b\xed\xa3\x3d\x80\xa8\x79\xf5\x53\xef\x07\xcd\x7d\x4d\xec\xe2\xa1\x59\xde\xc8\xd8\x69\xdd\x2c\x0d\x1b\x90\xa9\xad\xb8\xe6\x71\x0a\x45\xa7\xd1\x08\xde\xbe\x3b\x7f\x3e\x6e\x5d\xfb\x9b\x52\xb8\xa6\x95\xc4\xcb\x9d\xab\x22\xd1\xce\xf9\xd1\x52\xb2\x7c\x24\x24\xb7\x7f\x93\xb2\xb8\x89\xe7\xe5\x18\xe1\xbe\x66\xc5\xf5\x8b\x92\x3f\xaf\xa3\xa5\xf7\xac\x41\x4d\x8f\xfe\x6d\x8b\xcb\xa9\x85\x8f\xdd\xb5\x66\xfa\x5e\x98\x70\xae\xf7\x16\x5e\x5f\x73\x43\xab\xad\x5d\xaf\x29\xd0\x5c\xda\xb3\x61\xa9\xdf\xcd\x9e\x0e\x88\x77\xd3\x4f\x34\x51\x42\xa8\xc3\xab\x73\x5a\x50\x4e\xa4\x66\x57\xdd\xcc\x13\x38\x16\x7f\x2f\xb0\xfc\x30\xc6\x8c\xca\xd0\x81\x6d\x53\x68\xf4\xbb\x7c\x3a\x73\xe1\x91\x79\xec\x29\x63\x42\x96\x7c\x85\xcc\xa1\x4c\x10\x1a\x7e\x5e\x0f\x21\x08\x86\xa0\x83\x68\xdf\xa9\x03\xd9\x21\xea\xd6\x3d\xe2\x30\xa4\xbb\x42\x9a\xef\x7a\x64\xb4\xbb\x44\xe6\xfe\x74\xd3\x29\x82\xcf\x66\x5a\x73\x74\x03\x60\xbb\x9e\xec\xb2\x5e\x4a\xb7\x18\x64\x97\x2e\x6d\xc9\xf8\x77\x4f\x8c\xd5\xd0\x5c\x99\x51\x73\x1e\x1a\xce\x34\xf5\xbb\xe0\xec\xf4\xb4\x5e\x15\x37\x24\x67\x69\x8f\xd8\xd1\x57\x95\x5d\xb1\xa5\xbb\x51\x99\xd8\xa5\x7e\xc1\xcb\xc5\x3b\x3d\x80\x01\xd0\x1d\x6e\x08\x87\x3b\x52\x26\x6e\x46\xd7\x8e\x5a\x98\xc0\xe8\x9f\xf3\x8f\xe9\xfe\xc7\x38\xde\x9f\xc4\xfb\x0f\x47\xbf\x8e\x58\x3d\x33\x74\xe9\x85\x1c\x79\xbe\xac\x72\x1b\xc1\x30\xd3\x74\xca\x3b\x6b\xdf\xd4\xb5\x4e\x9a\x5f\x3d\xb9\x58\x52\x21\x5d\x78\xc7\xfd\x29\x8a\x5b\x27\x79\xdf\x7a\x6c\x60\x8f\xa1\x66\xd9\x57\x8d\x9c\x51\xe7\xaa\xd3\xa0\x51\x1a\x1a\x9d\xa1\xff\x48\xad\xf0\x49\xdb\x77\x33\x25\x6d\x11\x9e\xf7\xa6\x01\x42\xd3\xaf\xde\x86\xce\x90\xf6\x2c\x2d\xd0\xeb\xfe\x6e\xa6\x07\x7d\x51\x72\x05\xc5\x6e\x52\x17\x9d\x9d\x97\xa1\xa9\xd0\x89\xfd\xe2\x1f\x4c\x66\x61\x07\x49\x43\x6c\x6b\x47\xd9\x8c\xc6\xfb\xf0\xd9\x4e\x89\x6d\x93\x50\xba\x44\x42\xc3\xc3\xe1\x3d\xf3\xd6\xe2\xaf\x17\x54\xb7\xd0\x3f\x3c\x76\xa2\x49\xad\xdb\x74\x48\x62\x68\xe1\x3e\xf4\xe4\xdf\xf3\x6e\x74\x4d\x67\x77\xbf\x9b\xbd\x2b\xcc\x29\xdc\xc5\xaf\x5e\x67\x0d\xe4\x49\x92\x2c\x17\xcb\x9c\x48\x4c\x71\xdd\x41\x98\x6c\xe0\x58\xd8\x37\x37\x52\x3a\x60\xeb\x20\x77\xf3\x1a\x72\xfb\x26\xb4\xd3\xfa\x57\x6f\xb5\xcd\x93\xdf\x2e\x86\xbd\xeb\xf2\xe0\x33\x77\x27\xb2\xea\x2e\x62\xd3\x5b\x59\xda\x4f\x8a\xd4\x66\xe7\x49\xbd\xa2\x5a\x41\x9d\x0c\x9c\x03\xbc\x69\x5e\x3f\x00\xef\xf6\xbd\x38\xd4\x17\xea\xdd\xc6\x16\x68\x4a\x93\x32\xa5\x3f\x9c\xbd\x7a\x5a\x2e\xaa\xb2\xa0\x85\xa5\xa5\x07\xe0\xe8\xb2\x31\x9d\x3e\xee\x2b\x9b\x29\x80\x20\x8a\x0c\x54\xb5\x93\x5c\x14\x26\x10\x48\x32\x75\x92\x20\xfd\x21\xeb\xab\xd9\x4e\xb1\x7e\xaa\x49\x92\x29\x30\x81\xc1\xf1\x39\xe5\xc6\x71\xe0\x2a\xa4\x17\xcd\x30\x97\xf5\x54\x7f\xb4\x37\xeb\xd7\x3d\xcb\xdf\xbd\x08\xbf\x6d\xd1\xdb\x72\xcc\x5d\x6a\x47\x51\x33\xa3\x04\x73\xa5\x99\x30\xc3\xa6\x41\xdc\xcd\x60\xdd\x36\x5e\x8f\x7a\xd5\xd1\x58\x5a\x9a\x56\xcd\x65\x95\xc5\xb0\x5f\x02\x33\x4f\xf8\xfa\x6a\x9e\x66\x4b\xfd\x19\x5f\xd3\x95\xf0\x46\x8a\xba\x4c\x7a\xdd\x3c\x3d\xed\x40\xba\x30\x28\xec\xc3\x35\x5d\x5d\x5a\x5d\xd5\x40\xb9\x50\x65\x4d\xc8\xdc\x35\x86\x74\xef\x96\x43\x41\x99\xc1\x46\x89\xd6\x37\x7f\x3e\x50\xb9\xac\x4c\x30\x25\x21\x49\x46\xc7\xfa\x25\xad\x66\xb1\xbd\x1b\x42\xbd\x8f\x4f\x09\x49\x24\x4b\x46\x9f\xc4\x48\x1b\x3b\xf5\xcb\xed\x99\x7d\xcd\xfd\xbb\x9b\x89\x5a\x44\xef\x09\x76\x93\x89\xd1\xb9\x07\x84\x69\x72\xf0\xd9\x3e\x7f\xe2\x3d\xab\x6e\xdc\x84\xd6\xaf\x56\x3f\xc1\x8e\x0c\xdf\x24\xd8\xd9\x2d\xc3\xc4\x33\x5a\x71\x9a\x10\x49\xb5\x3d\x87\x26\xbd\x9f\x34\x98\x32\x4e\x13\x79\x5e\xbe\x61\x73\xc5\x23\x69\x6d\xf5\x43\xdf\x55\x19\xfc\x3f\x5a\x68\x87\x44\x8f\x0d\x10\x3a\x37\x27\x90\x29\x35\xb9\x7d\x37\xe0\xba\xf1\x72\xa0\x69\x75\x9e\x51\x41\x41\xde\x96\xe6\xf2\x95\xe8\xc7\x1b\xd3\x4f\x7a\xd1\x8d\x14\x14\xc2\x29\x90\x34\xa5\x29\x94\x45\xbe\x42\x57\xe7\x94\x24\xd7\xb7\x84\xa7\x78\xcb\x86\x48\x36\x65\x39\x93\x2b\x65\xb9\x95\x79\xaa\x79\xc4\x84\xbd\x63\x87\x41\x7a\x49\xb6\xd1\x51\x90\x11\x91\xdd\xa3\xd9\x34\x8f\xb2\xd9\xc3\x4f\x4b\xc3\xf4\x05\x27\xf3\x85\x8e\x40\xf7\xc8\xc7\xbe\x51\x74\x74\x82\xaf\xea\xc5\xc0\x5b\x35\x66\xe1\x7d\xa0\xe6\x4c\x0e\x8f\x22\x2d\xf4\x52\x5e\x56\x18\xa8\x52\x70\xe0\x2b\xcc\xfc\x48\x30\xec\x1d\x3a\xe9\x56\x5d\x94\x1b\x2d\x9d\x2b\xf1\xb7\x76\xf6\xd1\x06\xbe\xa9\xc5\xc6\xef\x9b\x66\x8f\x81\xfa\x7b\x66\xdb\x2f\x9a\xda\x5e\x29\x4f\xf3\x29\x7d\x71\xd8\x9c\x9b\xb5\x3c\xec\x11\xcb\xaa\x8d\x2b\xee\xca\x5d\x24\xdd\xfd\xb2\xae\x6c\x89\x39\x3f\x43\xa8\x9e\x18\x5e\x64\xec\x37\x87\x5b\x44\x56\x98\x8f\x5a\x06\x2f\x2e\xed\xc3\x50\x6d\xd6\xe8\x78\xef\xbf\x02\x00\x00\xff\xff\x3c\x55\x84\xb5\xb5\x66\x00\x00") func webUiStaticJsGraphJsBytes() ([]byte, error) { return bindataRead( @@ -421,7 +421,7 @@ func webUiStaticJsGraphJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/ui/static/js/graph.js", size: 25632, mode: os.FileMode(420), modTime: time.Unix(1491298467, 0)} + info := bindataFileInfo{name: "web/ui/static/js/graph.js", size: 26293, mode: os.FileMode(420), modTime: time.Unix(1493279723, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -446,7 +446,7 @@ func webUiStaticJsGraph_templateHandlebar() (*asset, error) { return a, nil } -var _webUiStaticJsProm_consoleJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x3c\x7f\x77\xdb\xb8\x91\xff\xe7\x53\x4c\xd8\x36\xa4\x2c\x99\x94\x93\xdd\xbd\xab\x1c\x25\x2f\x9b\x1f\x1b\xdf\x25\x4e\x2e\x71\xda\x6e\x15\x9d\x1f\x2c\x42\x12\x62\x8a\x64\x01\xc8\x96\x9a\xf8\xbb\xdf\xc3\x00\x20\x01\x8a\x52\x64\xf7\xba\xf7\xae\xf9\x83\x31\x81\xc1\x60\x7e\x61\x30\x18\x0c\x95\x1c\xdc\x83\x03\x78\xb5\xcc\x27\x92\x15\xb9\x00\x59\xc0\x82\x5c\x52\x60\x12\x28\x11\x8c\x72\xd5\x72\xcd\x99\xa4\x50\xf2\x62\x41\xe5\x9c\x2e\x05\x4c\x8a\x5c\x14\x19\x15\x3d\x10\xcb\xc9\x5c\x61\x20\x02\x66\x9c\x94\x73\x11\xdf\x03\x85\x32\xb9\x77\xef\x3d\x2f\x16\xcf\x35\x20\x0c\xe1\xeb\xcd\xb1\xd7\x14\x9f\x2e\x17\x17\x94\xbf\x2a\xf8\x82\x48\x49\xb9\x01\xd9\x01\x11\x97\x9c\x4e\xd9\x8a\x8a\x9f\xd9\x0c\x86\x30\x0a\x2e\x83\x1e\x04\x6f\xd5\xe3\x17\xf5\x38\x53\x8f\xf7\xea\xf1\x52\x3d\xfe\xaa\x1e\xbf\x06\xe3\xbd\x71\x1e\xf5\x1f\xfe\xa0\xf1\x32\x44\x8c\xcf\x5f\xf0\x79\x86\xcf\xf7\xf8\x7c\x89\xcf\xbf\xe2\xf3\x57\xb6\x2f\xfe\x8f\x0b\x92\x65\x88\x7d\xa1\x06\x2e\xd5\x23\x57\x8f\x52\x3d\xa6\xea\x41\xd4\xe3\xef\xea\xb1\x56\x58\x3d\xb4\xe7\x42\x72\x56\x9e\x71\xc2\x32\x96\xcf\xfe\x4a\x79\x01\x43\x98\x1a\xad\x45\xab\x0e\x7c\xbd\x07\x00\xc0\xa6\x10\xad\x62\x96\xa7\x74\xf5\x6e\x1a\x05\x34\xe8\xc0\x70\x08\x87\x47\xb6\x1f\x20\x49\xe0\x44\x86\x02\xf2\x42\x82\x20\x53\xaa\xd4\x8b\xb8\xd5\x58\xa6\x7a\xc4\x84\xd1\x5c\xb2\x29\x9b\x28\x20\xa2\x26\x88\xcd\x60\x4e\xe5\x92\xe7\xb0\x8a\x39\x2d\x33\x32\xa1\x51\xf2\x39\x7e\xda\x3f\xf8\x7d\xd2\x83\x30\xec\x1c\x23\xd4\xcd\x3d\x17\xf2\xf8\x9e\x52\x7b\x92\xc0\xeb\xe5\x82\xe4\xec\xef\x14\x08\xe4\x28\xa2\x78\xa7\xd8\xe6\x16\x7c\x93\xcb\x2b\xc2\x15\x7a\x18\xc2\x2e\x04\xe7\x16\x43\x84\xf4\xac\x7a\x3b\xa1\x1d\x2b\xe8\x21\xfc\xde\x2a\xed\xc1\x51\xbf\xdf\x47\xde\x57\x30\x54\x84\x8d\xfa\xe3\x63\x43\xa6\x86\x34\xcd\x47\xd8\xac\x34\xf4\x96\xc8\x79\x4c\x2e\x84\xe2\xe8\x31\x54\xca\xa9\xa4\x2b\x8b\x97\xab\xb2\xc8\x95\x16\x48\x16\x3d\xea\x40\xd7\x60\x52\x08\x94\x7c\x0d\xe4\x6e\x03\x89\x14\xa2\x57\x6c\x45\xd3\xe8\x51\xc7\xc5\xb1\x4d\x23\x3d\x48\x8b\x3c\x94\xb0\x14\x14\x16\x2c\xcb\x58\xb2\x60\x13\x5e\x24\x54\x4e\x62\xb0\x4c\xef\xa7\xb6\xd3\x02\x85\xf3\xde\xf2\xdf\xd4\xe1\xf7\xa5\xb0\x07\x6f\xef\x39\x9d\x30\xa1\xb0\x3e\xea\x74\xac\x68\x7e\x13\xeb\x18\x8d\x6f\xab\xf6\x7f\x8e\xc6\xe0\x9a\xc9\x39\xa0\xdf\x22\x02\xe4\x9c\xc2\x05\x11\xb4\x07\x9c\xc8\xb9\xf2\xdc\x73\x92\x23\x9d\xfb\x29\xcd\xf8\xbf\xdf\x78\xbd\xa9\x59\x5d\xa9\x3e\xfc\xe1\x5f\x64\x31\x69\xbc\x2c\x9f\x01\xc9\x81\xae\xc8\x44\x02\xa7\x25\xa7\x82\xe6\xd6\xab\xee\xa3\x95\x97\x38\xf2\xff\x91\x1b\x34\xf2\xd4\xca\x83\x6e\xa5\xae\xef\xec\xff\x35\xa9\x1e\xb3\x3d\x70\x89\x82\xc6\xa4\x53\x32\x91\x05\xaf\x05\x52\xd9\x48\x10\x58\xfb\x58\xc1\x70\x38\x84\xbe\xb5\x8b\xe4\x00\x5e\x14\x6a\x63\x9b\xb3\x7c\x16\xab\x38\x05\xe0\x06\x68\x26\xe8\x86\x35\x3d\x19\xd6\xe6\x34\x2d\x38\x44\x6a\x06\x36\xec\x1f\x03\x83\xc7\x2e\x59\x71\x46\xf3\x99\x9c\xc3\x83\x07\xd0\x18\xaf\xe9\x3b\x86\x6e\x97\xd5\x5b\xf0\x0a\x92\xaa\xc7\x34\x55\x74\x3b\x58\x47\x6c\x5c\xef\xa8\x86\xc4\xef\x11\x83\x62\xd9\x42\xce\x63\x38\xda\x20\xe4\xe0\xbb\x84\x20\x46\x9f\x94\x5a\xc7\xa3\x4a\x3d\x46\xbf\x9e\x82\xcf\xd8\x82\x3e\x2f\x72\xc9\x8b\xcc\x55\xa9\x9e\x3f\x2d\x26\xcb\x05\xcd\x65\x3c\xa3\xf2\x65\x46\xd5\x9f\x3f\xaf\x4f\xd2\x28\x50\x51\xe6\x39\x86\x92\xe7\xe9\x92\xe3\x42\x39\x17\x73\xce\xf2\xcb\xa0\x13\x17\xf9\x24\x63\x93\x4b\x18\x82\x9c\x33\x11\xa7\x74\xc2\x29\x11\xf4\x85\x01\x8c\x2f\x58\x9e\x46\xaa\x0b\x2d\xf1\x56\x73\xcc\x78\x71\xbd\x39\x03\xcb\xff\xe1\x19\x24\x5b\xd0\xf3\x0b\x32\xd9\x41\xff\xcb\x3c\xbd\x2b\xe2\x69\xc1\xaf\x09\x4f\xb7\x53\x7e\x37\xdc\x9c\x4e\x39\x15\xf3\xf3\x8b\xa5\x94\x45\xbe\x89\xdd\xf4\x37\x30\x6b\xa6\x8c\xa8\x0c\x6a\x18\xde\x4a\x0f\x41\x8d\x88\xe6\xe9\xed\x70\xa0\x40\x68\x9e\x06\x5b\x89\x89\x8b\x9c\xe5\xe5\x52\x56\x0a\x60\xa2\x24\x72\xd2\xca\x47\x3d\xfd\x3f\x7f\x94\x11\xe7\x9f\x48\xb6\xa4\xb7\xe3\xd9\x57\xd4\xf9\x95\xc2\xa0\xf8\xaf\x76\x08\xec\x7e\xc3\xc4\x6d\x11\xb2\x5c\x52\x7e\x45\x32\xa1\xa5\xe9\x20\x3b\xb1\x3d\x78\x9c\x79\x37\xc5\xc3\xcb\x11\x1e\x6b\x7e\xc4\xe7\x91\xf9\x6f\x1e\xa0\xdb\xd8\x74\x57\x4d\x44\xc6\x63\x79\xee\x49\x0d\xc8\x98\x4b\xb4\xb2\x67\x69\xc5\x13\x05\x19\x0b\xcc\x91\x23\x63\x4d\xf3\x14\x54\x7e\x68\x5a\x68\x6f\x63\xda\x11\x1b\xd7\x18\x24\x5d\x49\xe5\xad\xb4\xe8\x5b\x40\x8f\x4d\x5c\x51\x09\x34\x26\x65\x49\xf3\xf4\xf9\x9c\x65\x69\x94\x31\x13\x82\x6e\xb3\x3c\xd4\x4c\x63\xb7\x76\x3c\x64\x5c\xf2\x42\x16\x72\x5d\x52\xa5\x1c\x0c\x27\xac\xcf\x89\x36\xb6\x62\x77\xdc\x39\xcb\x99\x0a\x6d\xd0\x76\xea\x69\x3b\x76\xff\xbb\xbf\xe7\x40\x9a\xa7\xaa\xf7\xb4\xb8\xb6\x1a\x68\xda\xf3\x1d\x38\x20\xd2\x04\x1e\x00\x39\xbd\x06\x7c\xbf\x1d\x3d\x70\xa0\x23\x0b\x23\xdd\x66\x10\xe1\x22\x50\xcb\xff\x15\xee\x66\xca\x32\x15\x0f\xc1\x3a\x18\xc0\x4f\x7d\x38\xd0\x8f\x87\x3f\xc0\x01\x3c\xfa\xe9\x47\x15\xdb\x04\xd7\x9b\x5d\xff\x86\x1d\x69\xa3\x03\x1b\xe7\x75\x23\xbe\x2f\xf0\x1d\xff\x14\xc1\x00\x8e\x76\x12\x26\x24\x2d\x35\x57\x6a\xc5\xa8\x31\x47\x7d\xb1\x65\xd1\x3c\xea\xdb\xb5\xd3\x83\xe0\x21\x3e\x7f\xc2\xe7\x91\x7e\x39\x4a\xb1\x23\x0d\x70\xee\xa3\x6b\x7c\xc3\xe7\x0f\xf8\xfc\x77\x7c\x1e\xad\xb1\x7d\x1d\xdc\x6b\x26\x12\xda\x15\x76\x2e\xa8\x7c\x4d\xc4\x7c\x73\x9f\x56\xcb\xd0\xda\x94\x5d\x5d\x25\xe1\xf5\x8e\x18\x6d\xb7\xf6\xca\x71\x58\x5d\x9a\xf1\xca\xfb\xe4\x29\x1a\x43\x07\x12\xd4\xaf\x82\xbc\x66\x79\x5a\x5c\xc7\x59\x31\xd1\x5b\xed\x5c\x13\x14\xfc\xae\x9c\xc8\x49\x00\x5d\xa0\xf9\xa4\x48\xe9\xa7\x0f\x27\xcf\x8b\x85\x0e\xe9\xa3\xff\xf8\xf8\xee\x34\x56\xd1\x7a\x3e\x63\xd3\xb5\xb6\xb5\xaf\x96\x98\x41\x45\x79\xcf\x92\x30\xb0\x7f\xdc\x28\x8b\xda\xa5\x34\xdf\x1c\xdb\x05\x63\x28\x6c\x23\xdc\xb2\x8e\x82\x10\x76\x31\xaa\x9e\x2a\x3d\x13\x22\x63\x61\xc7\x0f\x50\xaf\xec\x7c\xc8\x1a\x8a\x3a\x4a\xe9\x06\xe3\x88\x49\x2c\x2f\x34\xef\xd1\x8f\x1d\xb3\x42\xdc\x38\xb1\x42\xe5\x48\xe4\xd1\x4f\xfd\xbe\x23\x8d\xfe\x8d\x3d\x06\x29\xf2\xae\xfc\xa5\xb7\x49\x56\xdd\x55\xaf\xe7\x8e\xd2\xa7\x6a\xf4\x94\xd9\x1c\x71\x5a\x5c\x2b\xf5\xf3\x25\x6d\x9c\xbb\xac\x80\x6e\xa2\xce\x5e\xa6\xea\x19\x9f\xab\x16\xcb\xe3\x19\x5d\xc9\x4d\xdb\xfd\xf0\xd2\xd0\xfc\x81\xce\x5e\xae\xca\x28\xf8\xef\x68\xd4\x3f\xfc\xe3\xb8\xdb\x89\x46\xeb\xeb\x74\xbe\x10\xe3\xa7\x9d\xdf\xd7\x7b\xdd\x42\x6d\xd5\x28\x3c\x17\x6f\x8c\xcd\x51\x8d\xb4\x76\xb3\x66\x40\x07\xbe\x5a\xce\x94\xa8\x8f\xab\xa4\x84\xf5\x9e\x48\xff\x49\x2e\x23\x33\x60\x74\x34\xae\x26\x5d\xe6\x4c\x6d\x3e\xb6\xe7\xe1\x18\xbe\x7d\x83\x50\x84\xc7\x0d\x71\xc1\xc1\x56\x27\xec\x38\xc1\x91\x42\xd7\x72\xf0\xda\x6f\xd7\x69\x13\x6d\x2d\x56\x85\x1a\xbd\x99\xbf\xc3\x5f\xd2\x35\xb0\x7c\x1f\xe2\xac\x5d\x21\xa2\xb8\x5c\x8a\x79\x34\xda\x87\xa7\x4b\xba\x1e\xf7\xd4\x3c\xe3\x2a\xe5\xa3\x51\x88\x82\xcb\xa8\xa2\x98\xf4\xe0\xc2\x51\xc5\x85\x3a\x8a\x1e\x02\x19\xf5\xc7\xc7\x70\xd3\xf1\xa3\x12\x18\x82\x89\x4b\x34\xa6\x96\x60\x44\x69\xb8\xf2\x82\x7f\xd0\x70\x23\x36\x56\x58\xbd\xc5\x5b\xa9\xa9\x86\x4e\x5c\xe8\x0e\x74\xeb\xd7\xa3\xf6\x43\x95\x1d\xb9\xaf\xe2\x9a\x47\x94\xdd\x3e\xfc\x23\x9d\x14\x79\x2a\xee\xe4\xca\xdb\x44\xf6\xfd\x3d\xaf\x92\x27\xeb\x76\xdb\xe4\x69\x29\x7a\xdc\x46\xd1\xf7\xd1\xab\x20\xae\x16\xbf\x8d\xfe\x6e\x89\xe0\xd8\x1d\x6e\x03\xf5\xa8\x6a\xd6\x9a\x71\xb5\xb5\x9f\x6a\x9a\xe7\xd3\xdf\x48\x35\x7b\xeb\x04\x0e\xe1\x48\xa9\xf1\x89\x56\xe7\xe1\xe1\x2e\xfd\x3c\xf9\xd7\xd3\x8f\x43\xc8\x76\x77\xb7\x33\x9a\xaf\x17\xab\x01\xb4\x91\x54\xf4\x9d\xf0\xc2\x73\xbc\x26\x1a\xda\x34\x0f\xa5\x87\x2d\x61\xf8\x70\x08\x61\xd8\xc8\x76\xe6\xcb\x2c\x73\x13\xe1\x29\x91\xf4\x3d\xe1\xb2\xb2\xa9\x26\x9a\x58\x94\x19\x93\x51\x32\x3a\x84\xc1\x38\xe9\xd4\x4e\x48\x91\x13\x7f\x3a\x7b\x1e\x55\x28\x46\xfd\x71\xaf\x46\x38\x3a\x52\xfe\xf4\xc8\x6d\x79\xe8\xf5\x3f\xf2\xde\x7e\x18\xdf\x46\x1c\xef\xf8\xc7\x1d\x32\xb1\x8c\xb5\x45\x93\x76\x37\x56\xfd\x0d\xd9\xa8\x26\x2b\x1b\x33\xbc\x0e\x61\x2a\xf5\x89\x1a\x19\xe2\x70\x76\x5e\xf5\x5e\x87\x3a\xb7\xde\x56\x1b\xbc\xd4\x14\x62\x20\x59\x2c\xf1\xd0\x62\xe7\xf8\x74\xf6\xfc\xb5\x6a\x8a\x30\x6d\xd7\x87\xa7\x10\xf6\x43\xe8\xb6\xf5\x0f\x5a\x1a\xab\x20\x86\xe5\x4b\x49\x1b\x88\xdf\xea\xc6\x1d\xa8\x6b\x88\x41\x6b\x73\x8b\x50\x3e\x9d\x3d\x7f\xb5\xcc\xb2\x5f\x29\xe1\x91\xda\xe4\x82\x43\x15\xb0\x47\xee\xe8\x22\x97\xf3\xa8\xd3\x3d\xaa\xbb\x9d\x5e\x73\x18\xe8\x42\x00\x01\x74\xcd\xb2\xd6\x52\xe9\x42\x30\x50\xd0\x86\x99\x7d\x05\x2f\x5a\x4d\xa8\x16\x7b\x23\x4f\x10\x61\x22\xa3\x35\x8f\x63\xd7\xba\xb5\xb6\xfa\x68\x5b\x99\xc8\x1d\x97\xbe\x93\xa3\xdb\xb4\xf3\x24\x81\x13\xd3\x5f\x9f\xc0\x1e\xfe\xf8\x07\xe0\x24\x9f\x51\x78\x00\x93\x22\xbf\xa2\x5c\xc2\x02\x6f\xed\x45\xdc\x62\xc3\x95\x85\x5b\xda\xdd\xa5\x85\xf2\xbe\xdd\x56\x63\x4e\xe3\xc9\x0f\xd0\x71\x72\x6c\x8e\x3f\xbe\xdd\xbe\xd8\xca\xf7\x6d\x79\x38\xfc\xbf\xe1\xc1\x24\x82\xb6\xd0\xdf\x62\x3e\x61\xd8\x6a\x29\x77\x17\xa2\x19\xf1\xcf\x0b\x2a\xcc\xd1\x7d\x97\xa3\xc5\xee\xe1\x10\x77\x1e\xeb\x70\xf5\x90\xb6\xf3\xa1\xf5\xbf\x1b\x81\xa4\x1f\x47\x56\x99\xc8\x19\x13\x92\xaf\xdb\x02\x48\x35\x18\xa1\x1a\xe1\x4e\x63\x68\x95\xb6\xc3\x66\xc5\x3d\x59\xd4\x1c\x3b\xfb\xb7\x11\x53\x0b\x70\x7d\xe2\x55\x7c\xb9\x07\x5c\x0d\xe6\x47\x23\xfb\x46\x1e\xe7\x8d\x04\x23\x0c\xcd\xe6\xbd\x9f\x67\xfb\xb0\x69\x7c\x7e\xd0\x52\x05\x0e\x1b\x13\xdd\x6f\x68\xcb\x24\x2f\x26\x19\x25\xdc\x02\xb5\x0f\x35\xe1\x56\x3b\xda\xa1\x17\x7c\x78\xe7\xa5\xfb\x43\xd0\xce\xd5\x09\x2e\xdb\x17\xc9\x7d\x2f\xa8\xf1\x73\xe3\x91\x57\x5f\xb2\xb7\x89\x7b\xf9\xd0\xed\xc4\x1b\x29\x08\x2a\x7d\x19\xb4\x24\xed\x7b\x1b\x13\x1f\xd4\x97\x9f\x37\x3b\x32\xfa\x8d\x14\xb3\x7f\xce\x4b\x12\xc0\x24\x7d\x31\x05\x92\x65\xa6\x96\xaa\x07\x4b\x41\x53\xb8\x58\x83\x3a\x02\x2b\x87\xaf\x4c\xa1\x51\x83\xd1\x30\x79\x73\x28\xf7\x40\x10\xe2\x05\x9d\x92\x65\x26\x6d\x6e\x94\xae\x4a\x3e\x40\xa5\xf5\x6c\x61\xd0\xcb\x55\xc9\xa9\x10\x4a\x67\xb2\x30\xe6\x0d\xcf\x49\x0e\x17\x14\x08\x64\x86\x3c\x9d\x71\xc2\xed\x26\x2f\x52\xda\xc0\xf1\xe2\xdd\x5b\x6c\x56\x18\xb0\x46\xc8\x2c\xd3\x65\x9e\x52\x6e\xeb\x88\xdc\x7f\x49\x02\xaf\x8b\x6b\xc8\x8a\x7c\x86\x15\x0c\x1a\x9c\x09\x28\xae\x28\xef\x01\xcb\x41\x68\x31\xab\xc1\x75\x1e\xeb\x96\xe9\xf0\x5e\xfb\xcc\x67\x73\xaa\xce\xe3\x2b\x14\x6f\x3d\x3b\x55\x5a\x25\x52\xcd\x58\x65\xca\xf6\x9d\xd1\x0c\xe8\x61\x42\x33\x95\x73\x47\x3e\x8a\x55\xca\x66\x73\x14\x63\x3d\x5b\xca\xae\x7a\x40\x57\x93\x6c\x99\x32\x25\x04\x26\x33\x2a\x80\xe4\x29\x64\x74\x46\x0d\xe7\x2d\xc4\x57\x0a\x95\x05\x90\xa5\x2c\x0e\x53\x2a\xe9\xc4\xd6\x6b\xcd\x71\xa6\x01\x3c\xec\xf7\xff\xe1\xc9\x17\x2c\x1f\x40\xa0\xe6\x08\x2c\xae\xb7\x2c\x67\x8b\xe5\x02\x7e\x3d\x24\x2b\x26\x74\x5a\xaa\x07\xa9\x43\x52\x56\x5c\x53\x21\x55\x90\x47\x74\x37\x62\x22\xab\x01\xda\xc2\x94\xe5\x34\xed\x21\x26\xb2\xfa\x0e\xa6\x39\x9b\xcd\x37\x51\x71\xaa\x4c\x8a\xf2\x01\x84\x19\xcb\x69\xd8\xd3\x1a\x5d\x97\x54\x71\x68\x17\x50\x51\xea\xba\x46\xc2\xa9\x81\x43\xe6\x42\xc2\x29\x09\xd1\x86\xc9\xa2\x69\xc3\x7f\x9e\x13\xa9\xe6\x9d\xa8\x95\x58\x66\x85\x14\x3e\x3d\x92\xaf\x51\x56\x05\xa4\x45\xbb\x6a\x04\x56\x4a\x2a\x20\x15\xe7\x14\x39\xb9\xc8\xe8\x16\x2d\x9e\x4c\x81\x98\x35\xd5\x03\x26\xc3\x2c\xc3\x02\x2c\x39\x27\x32\x86\xd1\x08\x32\x72\x41\x33\x18\x8f\xe1\x9a\x65\x99\x5a\x89\x98\xf4\x65\x72\x29\x69\xba\x0b\xa5\xdd\x18\x0c\xce\x0b\x8a\xec\xd0\x54\xd7\x0c\x11\x58\x90\x52\xc9\xe9\x92\xae\x91\x27\x9d\x86\xdd\xb2\x4c\x94\xc4\xc4\xbc\x58\x66\xa9\x8d\xfb\x95\x01\x29\xc9\xa9\xa1\x4b\xb1\x8d\xb7\x6d\xbe\x23\xb1\xc4\x89\x1e\x50\x32\x99\x03\xd5\x1e\xb2\x1d\x8b\x65\x9c\x94\x65\xc6\x68\x8a\x1a\x98\x53\xad\x18\x98\xf2\x62\x81\xaf\x93\x82\x73\x2a\xca\x22\x57\x76\xdc\x8e\xc8\xcc\x62\x17\x80\xf2\x80\x48\x99\xa2\x7e\x75\xa6\x2c\x7f\x00\x81\x5a\xbc\x41\xcf\x75\x10\xb8\x26\xec\xa0\x15\x28\x2b\x55\x23\xd6\x9f\x72\x26\xc5\x00\x02\x1f\x5a\x67\x46\x0d\xf4\xba\x86\xb6\xf8\x77\xe0\xae\xa1\x93\x04\x74\x79\x8c\x0a\x95\x4c\x7d\xac\x0a\x9a\x1c\x7c\xcf\x56\x4c\x54\xc5\x33\x83\x9d\x95\x3a\xb6\xb0\xa6\xb7\x13\xb3\xb9\x2d\x98\x2b\xbf\x0b\x29\x95\x84\x65\x38\xd1\x6b\xd5\x70\xcb\x99\xb0\x68\xa9\xb7\x11\x0b\xfd\x62\x22\xb6\x2a\x68\xd1\x31\x96\xde\xf0\xeb\x24\x72\x33\x85\xec\x6d\x5f\x6e\x14\x71\x3f\x42\x58\x83\xa5\x8e\x1b\x74\xc3\xe8\x72\xdc\x88\x0e\x3d\x44\xa3\xcb\x46\xfe\x15\xe3\x92\x75\x49\x8b\x29\xd8\xd8\x4f\x59\xc8\x70\x08\x81\xb6\xdb\x2a\x82\xf1\xba\x61\xe4\xbc\x8e\x8f\xb7\x22\xc3\xe5\xe2\x20\x83\x6f\xdf\x60\x0b\x84\x95\x4f\xe0\x86\xbb\xba\xd7\x64\xdc\xdb\x93\xb1\x0e\x21\x6d\x41\xb3\x76\x76\x3a\xd9\xee\x4c\xe9\x05\x56\x1e\x29\x08\xef\x5f\x6b\xeb\x7e\x7d\x8f\x41\x16\xc2\xa9\x60\x40\x6f\x9c\x9e\xa3\x93\xae\xa3\xc1\x24\x81\xff\xa4\xb4\x04\x02\x9c\x4e\x29\xa7\xf9\x84\x82\x28\xd0\xbd\xc1\x74\xc9\xb1\x4e\x71\x59\xaa\x83\xb4\x80\x88\xc6\xb3\x18\x48\x6e\xcb\x8e\x45\x07\x26\xda\x83\x2c\x48\x4a\x35\x32\x15\x0b\xa9\x55\x26\x28\x57\xaa\x97\x73\xca\x38\x48\xba\x28\x33\x85\xa2\x3a\x03\x73\x36\xb9\x14\x73\x72\x6d\x2d\xce\x92\xb3\xeb\x98\x81\x72\x31\x75\x19\x6a\xb2\x03\x25\x90\x03\x38\x53\xce\x1b\x32\xb2\x2e\x96\x72\xa0\x9b\xbe\x99\xe5\x0c\xdf\x40\x4f\x00\xdf\x6c\x87\xf9\xf7\xcd\x38\x94\xba\x23\xd1\xfb\xed\x37\x78\x83\xfb\xaa\xe9\x48\xcc\x31\x4b\xe2\x24\xdb\x8b\x1d\xb0\xdf\xa4\x27\x70\x33\x99\x64\x44\x88\x53\xad\x25\xaf\x06\x06\x01\x15\x9c\xd5\x64\x91\x52\xaf\x52\x01\x21\xaa\xf3\x9d\xe4\xbb\x66\xe5\xee\x94\x1e\x12\x5e\x61\xd0\xa2\x38\x4b\x77\xe1\xb1\x25\x39\xdc\x43\x62\x47\x36\x50\xbd\x60\x57\x7b\xe0\xb2\x83\x5b\x30\xbe\x60\x57\x0e\xc8\x0b\x76\xb5\x55\x5a\x6b\xf4\xbf\x81\x0f\xec\x87\xe9\x46\x8c\x46\xe1\x5d\xb0\x2b\x47\xbb\x7f\x78\x0a\x01\x44\x01\x74\xc1\x6b\x8e\x25\x67\x0b\x9d\xcf\xea\x04\xa0\xbc\xbe\xb6\x29\x7d\x8e\x56\x53\xdf\x45\x5e\xee\xe8\x3a\x73\x60\x1a\x7c\x1e\xad\xfd\x6b\x3e\x83\x0d\x60\x0c\x4d\x6b\xee\xf0\x75\x03\x48\x87\x90\x35\x94\x7e\xd7\x8c\xfc\x43\x66\xd3\xe0\x6b\x97\x18\x2a\xdb\x58\xdd\xd9\xcc\x56\xae\x99\xd9\x97\xad\x26\xb1\xaa\x4d\xa2\x82\x6d\xb5\x08\xdd\xfb\xbf\x20\x8d\x2a\x97\xf1\x86\xe5\x97\x77\x61\xd0\x19\xbc\x89\xf0\xd9\x0e\x7c\x44\xa3\x73\xc6\xb7\xe3\x7d\xe6\x83\x3d\xdb\x2a\xbc\x8c\xe5\x97\x41\x03\xd6\x17\x5e\xd0\x6d\xf6\xcf\x39\x9d\xb6\x66\x71\xc4\x59\xf1\x31\x23\x62\x8e\x2e\xf6\xd3\x87\x37\x91\xb3\xbd\x55\x7c\xea\x53\xca\x5d\xa4\x66\x47\xd6\x2b\x49\xb7\xec\x76\x3f\x29\xbb\xd2\xd8\xec\xf0\xad\x4b\xa9\x02\xd8\x58\xc2\xd5\x3c\xda\x29\x98\xdc\x03\x49\xd3\x97\x57\x34\x97\x6f\x98\x90\x34\xa7\x3c\x0a\x39\x15\xec\xef\xea\x60\xd3\xc8\xef\xa9\xe8\x22\x6a\xd9\x75\x9b\xa9\x9d\x3a\xdd\xa1\xa0\x5a\x46\x38\x3b\xff\x8d\x93\xe1\x70\x7c\xd5\xae\xb4\xe4\x2f\x3a\x4d\x56\xe7\xb4\x30\xf3\xf2\x27\x93\xee\xac\x68\x36\x59\xd7\xaf\x75\x1d\x84\xad\x82\x78\x95\x15\x44\x46\x75\xbe\x51\xc5\x4c\x4c\x9c\x92\x53\xd5\x56\x85\x73\x49\x02\x41\xf7\x24\xc7\x2a\xc3\x43\xf3\x3f\xbe\x57\x07\x03\x44\x96\x02\xcb\x65\x01\xa7\xe4\x54\xc5\x08\x0e\xfe\x4e\xac\x22\x6d\x8b\x6a\x42\xf2\x50\xaa\x41\x68\x62\xea\x08\x2a\x0a\x75\xb6\xb9\x56\xa1\xc4\x02\x3f\x63\x23\xa5\x80\x08\xe5\x18\x6f\xbb\x5c\xab\x8b\x31\xf6\x10\x0b\x15\x13\x52\xd2\xd7\x67\x6f\xdf\xb8\x62\xd1\x51\x60\x2d\x17\x9a\x4b\x26\xd7\x6f\x49\x69\xf2\x33\x00\xc1\x83\x60\x00\xc1\x03\xb2\x28\x8f\x03\x7d\x30\x0b\x1e\x63\x4b\x26\xab\x86\x27\xd8\x30\xab\x1a\xc2\x20\x1c\x40\xf8\xe0\x6f\xcb\x42\x1e\x87\x06\x26\x0c\x54\xd3\xef\x1e\xfd\xb1\x6a\x49\x74\xcb\xea\xe1\xab\xe3\x50\x71\x84\xfa\x36\x3c\x69\xba\xea\x2f\xbc\x46\x0f\x1e\x3f\x09\xc2\xcf\xc9\x38\x99\xd5\x86\x08\x91\x68\x5c\xaf\x55\xe4\x8f\x84\x8e\x81\xf7\x31\x18\x6d\x8c\x8d\xfb\x19\x52\xcb\x44\xd0\x6c\x6a\xd2\x7a\xd5\x57\x20\x24\xa3\xb2\xba\xbd\xfb\x60\xb6\xb9\xf8\x79\x91\x15\x3c\x7e\xaf\x3b\xeb\x0b\x30\x41\x39\xa3\xb6\x4e\xe5\x9e\x39\x75\x31\x51\x59\x0e\xa6\xd7\x8a\x1c\xf4\x4a\x8b\xb7\x05\xb3\xea\xbf\xe3\x7b\xb6\xa6\x56\x05\xc5\xaf\x96\xf9\xa4\xae\x7f\xa9\x32\x9a\x7e\x20\xef\xaf\x46\x35\x74\x32\x2f\x0a\x81\x1c\x7b\xee\x4e\x37\x9f\x1a\xbc\xb5\x20\xb6\x47\xfa\xee\x6c\xbb\xc3\x7d\xa4\x54\xc7\xb6\x66\xf6\xce\x77\x3f\x2b\x68\x9f\x07\x0f\x0f\xad\xf3\x38\x87\x9d\xe6\x80\x11\x1b\xb7\x9d\xa0\x5a\xa8\xab\x6c\x80\xf5\x60\x41\x25\x67\x13\x17\xb8\xfd\x3b\x1d\x2c\x52\x2e\x0b\x15\xfb\x2b\xe9\x6d\x28\x61\xc4\xc6\x15\xb2\xe3\x0a\xd7\x8d\x5b\x14\xcc\x3a\x55\x8f\x27\x8d\x16\x0a\x5b\xb0\xd7\x63\x9d\xa3\xa4\x36\xb4\x5f\xa8\xc4\xa3\x0a\xda\x10\xfa\x26\xf5\xc6\x31\xa4\xd2\x67\xef\xd8\xb3\xd2\x37\x34\x47\xb9\xbb\x47\x61\xaa\x35\x41\xe1\x31\xa2\xa9\xa4\x4f\x6b\xe9\xb7\x69\x4d\xc1\x8e\xe8\x38\xc6\x31\x9c\x8a\x65\x26\xdb\x15\xa7\x67\x1e\x55\x04\x74\xbb\xe3\xca\xfd\xd8\x7f\x0a\xc9\xa0\x0d\xe5\x88\x8d\x63\x53\xe4\xb7\x20\x65\xad\x3f\xb7\x06\xee\xeb\x6a\x00\xba\x74\x60\x3d\xc0\xe5\xec\xee\x12\x11\x16\xbf\xdd\x1c\xc3\x4d\xc7\x4f\x3c\x4d\xd4\x6a\x1e\xd8\xb5\x1e\xe3\x6b\xd4\x80\xd1\x79\x3b\x8d\xb2\xf6\xb0\x51\xa5\xb2\x11\x1d\x47\x5b\x88\x36\x06\x51\x21\xbc\xf1\xf3\x00\x7a\xd3\xc4\x0b\x11\xf4\x58\xf5\x6d\xd7\x7d\x2d\x28\x23\x4b\x77\x61\x53\xce\x0b\x7e\x46\x57\x72\x9f\xd0\x01\x6a\x70\x2f\x92\x0a\x9d\x48\x0a\x21\xc2\x26\xb4\x1f\x4b\x85\xa7\x05\x5e\x0c\x18\x2f\xa7\x45\x4e\xd3\xd0\xb9\xea\xb0\xa1\xbc\x1b\x83\x54\xe8\x3a\xc7\x8e\x07\xb7\x5b\x5b\x92\xc0\x07\x6a\x93\xf5\xee\x35\x9b\xe7\x6f\xb5\x60\x5c\x43\xa9\x97\x22\xe6\xe7\x83\x8c\xe5\x94\xf0\xc0\x55\x9a\xc9\x87\x7b\x84\x15\xd3\xa9\xa0\xf2\xcf\xaa\xc7\x05\xb5\xd9\x6b\x77\xc9\xe9\x36\x17\xca\x24\xf4\x7c\x94\x3d\xcf\x67\xd8\x1c\xb1\x8b\xc8\xb6\xba\x90\x98\x98\x76\x81\x16\x64\xe5\xf5\xb3\xbc\xd1\xcf\xbc\x4b\x05\xad\x83\x81\xf9\xdf\x6c\x80\xb6\xb8\xe3\x8a\xf2\x17\x98\x50\x6b\x15\x63\xfc\xba\x06\xa8\x44\x8a\xcc\x0c\xf4\x7f\x76\x9e\x22\xd7\x9a\x19\x6c\x06\x84\xd6\x0e\x57\x6f\x30\x5d\x6c\xcb\x7d\xcc\xc5\x53\xfd\xb9\x87\xf8\x79\xfd\xdc\x5a\x5c\x14\xac\xce\x31\xbb\x1c\x74\xcc\x67\x96\x35\x1e\x26\xe9\x62\x5f\x2c\x0a\xb6\x81\x02\x3f\xbc\x43\x52\x5c\x05\x43\x17\xbc\xc6\x37\x74\x2a\x6d\x09\x82\x9d\xc4\xe9\x79\x62\xae\xa0\xfc\x2e\x8d\xe9\xdb\x37\xd7\xf4\x24\x5d\x34\xe6\x71\x9a\xee\x3e\x8b\xbf\xff\x18\xd2\x71\xc1\xea\xcf\x3f\x52\xff\xcb\x19\xd4\xf3\xf9\x34\x63\x65\x49\xd3\xc0\xd9\x6f\x0c\x85\x77\x18\xb9\xb1\x23\xb5\x90\xc1\xe9\xa2\xb8\xa2\x77\xa4\xe4\x36\x83\x6f\xac\xbb\xb4\xf6\xb8\x76\xb2\xc2\x95\x45\xae\x5d\xa9\x55\xb7\x05\xf5\xba\x69\xe4\x93\x15\x7c\xd7\x07\xc0\x0c\x4a\xb5\xaf\x3a\xe7\x12\x6f\x55\x61\x02\xbc\x7d\x3d\xa9\x9e\xf8\xd7\x9d\x4b\x49\xb2\xc9\xa5\xa6\xc1\x5f\xd5\x7e\x5a\xdd\x9b\x70\xf5\x9d\x09\xb1\xc4\x61\xdb\x9c\x37\x8d\x03\x6b\x3b\x1e\x9d\x1a\xdc\x49\xb8\xef\xf2\xaa\x93\x64\x35\x05\x52\x69\x3c\x9c\xde\xb8\xd6\x1b\x2d\xda\xe0\xeb\x96\x6d\x49\x53\x84\xdb\x23\x8c\xaf\xb7\xca\xcd\x5a\x94\xeb\x39\xcb\x28\x78\xa9\xab\x38\x23\x42\xe2\x56\xe4\x7d\x69\x64\x7b\xb5\x49\x6e\x66\xbc\x9c\x61\x76\xaf\x72\x91\x57\xa2\xd8\x82\xbe\xee\xdf\x98\xa0\x6d\xa8\x7f\x99\xdf\x9a\x4d\xfe\xae\x5c\x56\x73\x2e\xda\xae\xe3\x9b\x80\x17\x4b\x96\xa5\xff\xb5\xa4\x7c\xfd\x89\x7b\x9f\xca\x62\xa6\xa3\xfe\xb8\xd9\xa9\x70\x30\xa9\x77\x1b\x13\x3f\x3b\x7b\x7d\xfe\xfe\xc3\xcb\x57\x27\x7f\x81\x2e\x04\x09\x29\x59\x72\x75\x94\xfc\x4d\xa1\x3c\xc7\x72\xb1\xa7\xf8\xf7\xd0\xd6\xd6\xb5\x7c\x49\xa3\xe7\xea\x9a\x93\xa7\x90\xb4\x1c\x62\x5a\x33\x76\x2a\xd9\xb7\xed\xdc\xce\x30\xc2\x25\x8e\x8b\xca\xaa\x72\xe6\xd0\x41\x82\x29\xd1\x07\x34\x4f\x0d\x72\x03\xf3\x7d\x61\x6e\xaf\x76\xaa\x02\xe0\x2f\x3a\x00\xfe\x62\x8f\x2d\x28\xff\x2a\xee\xfd\x52\xc7\xbd\x75\xef\xe8\xcb\x38\x26\x17\x05\x97\x91\xf7\x03\x12\x24\xcb\xaa\x7b\x0c\x7a\x0d\xcf\x38\x27\xeb\x68\xcb\x91\xcb\xa9\xff\x33\xfa\xde\x6f\x08\x6a\x94\xe2\x6d\xe5\x39\xa7\x7f\x5b\x52\x21\x85\xaf\x60\xef\x60\xb7\xa5\xfc\x7e\xeb\x39\xb0\xf1\x25\x65\xe3\x0b\x2c\xbf\xb6\xe9\xb8\x02\x5b\xf2\x2a\x76\xf0\x8c\x72\x83\x93\xfa\xe8\x83\xae\x71\xce\x0d\xdf\x7f\x79\xfb\xe6\xb5\x94\xe5\x07\xcd\x90\xad\xd9\x59\xcd\x79\x5c\x94\x34\x8f\xc2\x19\x95\x61\x4f\x4d\xd3\xc3\x6f\x81\x9c\x7e\x7d\x79\x2b\x28\x5e\xe0\x0f\x21\xfc\x22\x8a\x3c\x74\x86\xe7\x18\xb6\x7a\xbf\x0d\x30\xe7\xea\xf8\xd6\x48\x76\x35\xe3\x76\xb8\x5b\x84\x7e\xdb\x18\x7d\x47\x94\xfe\x12\x09\xcf\x0a\x82\x15\x16\xca\xae\x42\xaf\x9e\x7d\x9f\x18\x1d\xec\x4f\x2e\xc5\x59\x31\x8b\x5a\x50\xa2\x75\x84\x8d\xad\xd4\xd7\x14\xb4\xd9\x5b\xdf\xf6\x25\x09\x14\x39\xae\x05\x98\x51\x29\x80\xe4\x6b\xc0\xd7\xaa\xfc\xa4\x6d\xa1\x35\x31\x7a\xeb\x6c\xe7\x5a\xab\x23\x0a\xef\x38\x6e\x94\xea\x2a\x5e\xb1\xb9\x4b\xef\x2a\xd8\xdc\xe4\xcc\xff\x2c\x47\x9f\xc8\x0b\x89\xbf\xc5\x81\xc2\xbb\xa0\xd3\x82\x53\xa4\x0f\xc4\x72\x32\xa1\xc2\xa9\xb3\x71\x3f\x28\xa8\x03\x1f\x53\x79\xae\xdc\x82\x6b\xb1\xc7\x9b\x59\x90\x2a\x1d\x1b\x14\x17\x5f\xe8\x44\x7a\x79\x0f\x83\xc2\xf9\xbe\xcf\xb3\x7f\x57\xe9\x37\xdb\x14\x77\x38\x84\x23\x0b\x64\xbd\x15\xa6\x5a\x4c\xae\xea\x36\x92\xf1\x9c\xd7\xc8\x89\xe2\xbd\xec\xb1\x9d\xe5\x56\xca\x13\x2a\x9c\xf1\x4a\xef\xd0\x12\x90\xd0\xd5\x9c\x57\x57\xcb\x18\x18\x69\x6b\x3e\x59\xcc\x76\xac\x50\xb6\x98\x99\xf4\x7b\x05\x1d\x0b\x3e\x81\x61\x63\x0f\x0c\x13\x21\x89\x64\x93\x84\x2d\x66\x09\xf9\x42\x56\x87\x6a\x00\xe5\xf1\x8c\x4d\x9f\x5e\x0d\xd5\x42\xf9\xf9\xd3\xc9\x9b\x17\xe7\x7f\x7a\xf9\xe1\xe3\xc9\xbb\xd3\x06\x4a\x92\xe1\xca\x7d\xa3\x5b\xe2\x38\x0e\x1b\x00\xdb\x5c\x82\x01\x09\x37\xee\xd2\xbc\x9b\x87\x0a\x4f\xa7\x2a\xfe\xfb\x58\x55\xf5\x60\x9a\x48\xd7\x43\x16\x53\x08\xf1\x84\x16\xe2\xe2\x73\xaa\x81\x1a\x25\x80\x8d\x3c\x98\xbb\x5a\x72\xb2\xa0\x7e\x42\x4d\x7f\xca\x0f\x43\x48\xa2\xf8\xe0\x69\xe7\xf3\xe8\xf3\xe8\xb3\x38\x88\x3e\x5f\x77\x3b\xdd\xcf\xe2\xe0\xf3\xf8\xf3\x18\x3b\x92\xd9\x71\x05\x2d\x96\x5a\x22\xc8\x98\x09\xbb\x16\x66\x3f\xe6\x34\xa6\x2b\x3a\xc1\x99\x3a\x75\x5a\xd8\x0c\x31\x7f\x74\xf5\x57\x8d\xa3\xa3\xb1\xfa\x13\xa9\x19\xe9\x96\x87\xe3\x71\xd5\xfb\xc8\xab\x9f\xb8\xaf\xc7\x36\x3f\x72\xa9\x6a\x12\x9c\xdf\x9a\x51\x70\x95\x2c\x7f\x61\x57\x34\xaf\x73\x6f\x36\x2f\x62\x6b\x07\x9e\xbd\x3f\xb1\xbf\xce\xa3\xdc\x01\x29\x4b\x5e\x94\x9c\x11\x49\x2b\xa9\x29\x2c\xb2\xb0\x40\x65\x56\x48\x9c\xb6\x59\x79\xb9\x99\xb7\x6d\xcf\x65\x27\x09\xfc\xbc\xb6\x25\x64\x3d\x53\xdf\xa5\x66\xcb\x32\x23\x0b\x5d\x99\xd1\x48\x30\x3b\xc8\x20\xf2\x53\xa2\xa6\x3e\x43\x37\xc6\xe7\xe7\xea\xfd\xfc\x5c\x05\x57\x5f\x83\x46\xd6\x58\x9b\x0c\xcb\x37\x92\xaa\x4a\xc4\xd8\xe9\x7c\x47\xdc\xef\x3d\xc4\x9f\x8c\x0b\xce\xcf\x3d\x9f\x35\x29\x72\xc9\xf2\x25\x6d\x3a\x26\xa4\xa3\x3b\x34\x93\x74\x21\x18\x86\x41\xad\x60\x6c\x55\xda\x0d\xc2\x5e\xe0\x56\x99\x38\xaa\x54\xbd\x37\xd8\x89\x69\xb8\x7b\xb6\x82\xad\xc8\xb3\x35\x14\x39\x35\xa8\xaf\x08\x67\x54\xf4\xaa\xda\xb8\xba\x0e\xb0\xe2\xb1\xfa\x52\xfb\xeb\xcd\x6f\x9a\x44\xdd\x94\xf4\xee\xbc\xa3\x23\x56\x5d\xc4\x54\x8d\x73\xd8\xe8\xf8\xc9\x07\xa7\xc7\x4a\xd5\xf2\xe9\x2b\xa4\x0d\x74\xb4\x93\x1e\x03\xa4\x10\x1e\xb5\x65\xb3\x51\x27\xf8\x35\xd1\x32\x93\x0c\x11\x63\x0a\xa2\xe5\xf3\xdf\x56\x46\x9c\x7a\xad\x77\xb8\x19\xc6\x97\x74\x2d\xa2\x4d\x32\x3b\xf6\xab\xc4\x27\xe0\xfc\x60\x61\x73\x56\x9d\x8a\xc7\x11\x9d\xcd\xfa\xad\x0d\x68\x83\x72\xe8\xfc\x96\x53\xcb\xf2\x8a\x9a\xaa\x31\x06\x6a\x1d\x55\x03\xeb\xa8\x3f\xb6\xb5\x63\x0d\x4f\x64\x71\x37\x7c\x51\x5d\x01\x49\xab\x1a\x6b\xd1\x83\x92\x17\xe9\x72\xa2\x9d\x81\xa9\x0f\x52\x11\xb8\x92\xa7\x9c\xd3\x45\x5b\x9d\x77\xf3\x52\xbc\x79\x5c\x14\xde\x47\x72\x64\x53\x47\x8e\x85\x23\x7c\xdb\x89\x01\xed\x04\xe5\xfc\x35\x54\x40\xe1\x40\xc3\xe2\x75\x4a\x28\xc9\x45\x38\x80\xfe\x4d\xa7\xc1\x7b\x73\x07\x46\x7a\x7f\x17\xee\xf5\xc3\x0d\xe8\x2b\x3b\xc7\xf7\x94\xd8\xfe\x27\x00\x00\xff\xff\x4f\x22\xda\x59\x93\x54\x00\x00") +var _webUiStaticJsProm_consoleJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x3c\x7f\x77\xdb\xb8\x91\xff\xe7\x53\x4c\xd8\x36\xa4\x2c\x99\x94\x93\xdd\xbd\xab\x1c\x65\x5f\x36\x71\x36\xb9\x4b\xbc\xb9\xc4\x69\xbb\x55\x74\x7e\xb0\x08\x49\x88\x29\x92\x05\x20\x5b\x6a\xe2\xef\x7e\x0f\x03\x80\x04\x28\x4a\x96\xdd\xeb\xde\xbb\xe6\x0f\xc6\x04\x06\x83\xc1\xfc\xc2\x60\x30\x54\x72\xf0\x00\x0e\xe0\xd5\x32\x9f\x48\x56\xe4\x02\x64\x01\x0b\x72\x49\x81\x49\xa0\x44\x30\xca\x55\xcb\x35\x67\x92\x42\xc9\x8b\x05\x95\x73\xba\x14\x30\x29\x72\x51\x64\x54\xf4\x40\x2c\x27\x73\x85\x81\x08\x98\x71\x52\xce\x45\xfc\x00\x14\xca\xe4\xc1\x83\xf7\xbc\x58\xbc\xd0\x80\x30\x84\xaf\x37\xc7\x5e\x53\x7c\xba\x5c\x5c\x50\xfe\xaa\xe0\x0b\x22\x25\xe5\x06\x64\x07\x44\x5c\x72\x3a\x65\x2b\x2a\x7e\x62\x33\x18\xc2\x28\xb8\x0c\x7a\x10\xbc\x53\x8f\x9f\xd5\xe3\x4c\x3d\xde\xab\xc7\x89\x7a\xfc\x55\x3d\x7e\x0d\xc6\x7b\xe3\x3c\xea\x3f\xfe\x4e\xe3\x65\x88\x18\x9f\x3f\xe3\xf3\x0c\x9f\xef\xf1\x79\x82\xcf\xbf\xe2\xf3\x57\xb6\x2f\xfe\x8f\x0b\x92\x65\x88\x7d\xa1\x06\x2e\xd5\x23\x57\x8f\x52\x3d\xa6\xea\x41\xd4\xe3\xef\xea\xb1\x56\x58\x3d\xb4\xe7\x42\x72\x56\x9e\x71\xc2\x32\x96\xcf\xfe\x4a\x79\x01\x43\x98\x1a\xa9\x45\xab\x0e\x7c\x7d\x00\x00\xc0\xa6\x10\xad\x62\x96\xa7\x74\xf5\xcb\x34\x0a\x68\xd0\x81\xe1\x10\x0e\x8f\x6c\x3f\x40\x92\xc0\x1b\x19\x0a\xc8\x0b\x09\x82\x4c\xa9\x12\x2f\xe2\x56\x63\x99\xea\x11\x13\x46\x73\xc9\xa6\x6c\xa2\x80\x88\x9a\x20\x36\x83\x39\x95\x4b\x9e\xc3\x2a\xe6\xb4\xcc\xc8\x84\x46\xc9\xe7\xf8\xc7\xfe\xc1\xef\x93\x1e\x84\x61\xe7\x18\xa1\x6e\x1e\xb8\x90\xc7\x0f\x94\xd8\x93\x04\x5e\x2f\x17\x24\x67\x7f\xa7\x40\x20\x47\x16\xc5\x3b\xd9\x36\xb7\xe0\x9b\xab\xbc\x22\x5c\xa1\x87\x21\xec\x42\x70\x6e\x31\x44\x48\xcf\xaa\xb7\x13\xda\xd1\x82\x1e\xc2\xef\x2d\xd2\x1e\x1c\xf5\xfb\x7d\x5c\xfb\x0a\x86\x8a\xb0\x51\x7f\x7c\x6c\xc8\xd4\x90\xa6\xf9\x08\x9b\x95\x84\xde\x11\x39\x8f\xc9\x85\x50\x2b\x7a\x0a\x95\x70\x2a\xee\xca\xe2\x64\x55\x16\xb9\x92\x02\xc9\xa2\x27\x1d\xe8\x1a\x4c\x0a\x81\xe2\xaf\x81\xdc\xad\x20\x91\x42\xf4\x8a\xad\x68\x1a\x3d\xe9\xb8\x38\xb6\x49\xa4\x07\x69\x91\x87\x12\x96\x82\xc2\x82\x65\x19\x4b\x16\x6c\xc2\x8b\x84\xca\x49\x0c\x76\xd1\xfb\x89\xed\xb4\x40\xe6\xbc\xb7\xeb\x6f\xca\xf0\x76\x2e\xec\xb1\xb6\xf7\x9c\x4e\x98\x50\x58\x9f\x74\x3a\x96\x35\xbf\x89\x76\x8c\xc6\x77\x15\xfb\x3f\x47\x62\x70\xcd\xe4\x1c\xd0\x6f\x11\x01\x72\x4e\xe1\x82\x08\xda\x03\x4e\xe4\x5c\x79\xee\x39\xc9\x91\xce\xfd\x84\x66\xfc\xdf\x6f\x6c\x6f\x6a\x56\x97\xab\x8f\xbf\xfb\x17\x31\x26\x8d\x97\xe5\x33\x20\x39\xd0\x15\x99\x48\xe0\xb4\xe4\x54\xd0\xdc\x7a\xd5\x7d\xa4\x72\x82\x23\xff\x1f\xb9\x41\xc3\x4f\x2d\x3c\xe8\x56\xe2\xba\x65\xff\xaf\x49\xf5\x16\xdb\x03\x97\x28\x68\x4c\x3a\x25\x13\x59\xf0\x9a\x21\x95\x8e\x04\x81\xd5\x8f\x15\x0c\x87\x43\xe8\x5b\xbd\x48\x0e\xe0\x65\xa1\x36\xb6\x39\xcb\x67\xb1\x8a\x53\x00\x6e\x80\x66\x82\x6e\x68\xd3\xb3\x61\xad\x4e\xd3\x82\x43\xa4\x66\x60\xc3\xfe\x31\x30\x78\xea\x92\x15\x67\x34\x9f\xc9\x39\x3c\x7a\x04\x8d\xf1\x9a\xbe\x63\xe8\x76\x59\xbd\x05\xaf\x20\xa9\x7a\x4c\x53\x45\xb7\x83\x75\xc4\xc6\xf5\x8e\x6a\x48\xbc\x8d\x18\x64\xcb\x16\x72\x9e\xc2\xd1\x06\x21\x07\xb7\x12\x82\x18\x7d\x52\x6a\x19\x8f\x2a\xf1\x18\xf9\x7a\x02\x3e\x63\x0b\xfa\xa2\xc8\x25\x2f\x32\x57\xa4\x7a\xfe\xb4\x98\x2c\x17\x34\x97\xf1\x8c\xca\x93\x8c\xaa\x3f\x7f\x5a\xbf\x49\xa3\x40\x45\x99\xe7\x18\x4a\x9e\xa7\x4b\x8e\x86\x72\x2e\xe6\x9c\xe5\x97\x41\x27\x2e\xf2\x49\xc6\x26\x97\x30\x04\x39\x67\x22\x4e\xe9\x84\x53\x22\xe8\x4b\x03\x18\x5f\xb0\x3c\x8d\x54\x17\x6a\xe2\x9d\xe6\x98\xf1\xe2\x7a\x73\x06\x96\xff\xc3\x33\x48\xb6\xa0\xe7\x17\x64\xb2\x83\xfe\x93\x3c\xbd\x2f\xe2\x69\xc1\xaf\x09\x4f\xb7\x53\x7e\x3f\xdc\x9c\x4e\x39\x15\xf3\xf3\x8b\xa5\x94\x45\xbe\x89\xdd\xf4\x37\x30\xeb\x45\x19\x56\x19\xd4\x30\xbc\x93\x1c\x82\x1a\x11\xcd\xd3\xbb\xe1\x40\x86\xd0\x3c\x0d\xb6\x12\x13\x17\x39\xcb\xcb\xa5\xac\x04\xc0\x44\x49\xe4\xa4\x75\x1d\xf5\xf4\xff\xfc\x51\x86\x9d\x7f\x22\xd9\x92\xde\x6d\xcd\xbe\xa0\xce\xaf\x14\x06\xb5\xfe\x6a\x87\xc0\xee\xb7\x4c\xdc\x15\x21\xcb\x25\xe5\x57\x24\x13\x9a\x9b\x0e\xb2\x37\xb6\x07\x8f\x33\xbf\x4c\xf1\xf0\x72\x84\xc7\x9a\xef\xf1\x79\x64\xfe\x9b\x07\xe8\x36\x36\xdd\x55\x13\x91\xf1\x58\x9e\x7b\x52\x03\x32\xe6\x12\xad\xf4\x59\x5a\xf6\x44\x41\xc6\x02\x73\xe4\xc8\x58\x53\x3d\x05\x95\x1f\x9a\x1a\xda\xdb\x98\x76\xc4\xc6\x35\x06\x49\x57\x52\x79\x2b\xcd\xfa\x16\xd0\x63\x13\x57\x54\x0c\x8d\x49\x59\xd2\x3c\x7d\x31\x67\x59\x1a\x65\xcc\x84\xa0\xdb\x34\x0f\x25\xd3\xd8\xad\x1d\x0f\x19\x97\xbc\x90\x85\x5c\x97\x54\x09\x07\xc3\x09\xeb\x73\xa2\x8d\xad\xd8\x1d\x77\xce\x72\xa6\x42\x1b\xd4\x9d\x7a\xda\x8e\xdd\xff\x1e\xee\x39\x90\xe6\xa9\xea\x3d\x2d\xae\xad\x04\x9a\xfa\x7c\x8f\x15\x10\x69\x02\x0f\x80\x9c\x5e\x03\xbe\xdf\x8d\x1e\x38\xd0\x91\x85\xe1\x6e\x33\x88\x70\x11\x28\xf3\x7f\x85\xbb\x99\xd2\x4c\xb5\x86\x60\x1d\x0c\xe0\x87\x3e\x1c\xe8\xc7\xe3\xef\xe0\x00\x9e\xfc\xf0\xbd\x8a\x6d\x82\xeb\xcd\xae\x7f\xc3\x8e\xb4\xd1\x81\x8d\xf3\xba\x11\xdf\x17\xf8\x8e\x7f\x8a\x60\x00\x47\x3b\x09\x13\x92\x96\x7a\x55\xca\x62\xd4\x98\xa3\xbe\xd8\x62\x34\x4f\xfa\xd6\x76\x7a\x10\x3c\xc6\xe7\x0f\xf8\x3c\xd2\x2f\x47\x29\x76\xa4\x01\xce\x7d\x74\x8d\x6f\xf8\xfc\x0e\x9f\xff\x8e\xcf\xa3\x35\xb6\xaf\x83\x07\xcd\x44\x42\xbb\xc0\xce\x05\x95\xaf\x89\x98\x6f\xee\xd3\xca\x0c\xad\x4e\x59\xeb\x2a\x09\xaf\x77\xc4\x68\xbb\xb6\x57\x8e\xc3\xca\xd2\x8c\x57\xde\x27\x4f\x51\x19\x3a\x90\xa0\x7c\x15\xe4\x35\xcb\xd3\xe2\x3a\xce\x8a\x89\xde\x6a\xe7\x9a\xa0\xe0\x77\xe5\x44\x4e\x02\xe8\x02\xcd\x27\x45\x4a\x3f\x7d\x78\xf3\xa2\x58\xe8\x90\x3e\xfa\x8f\x8f\xbf\x9c\xc6\x2a\x5a\xcf\x67\x6c\xba\xd6\xba\xf6\xd5\x12\x33\xa8\x28\xef\x59\x12\x06\xf6\x8f\x1b\xa5\x51\xbb\x84\xe6\xab\x63\x3b\x63\x0c\x85\x6d\x84\xdb\xa5\x23\x23\x84\x35\x46\xd5\x53\xa5\x67\x42\x5c\x58\xd8\xf1\x03\xd4\x2b\x3b\x1f\x2e\x0d\x59\x1d\xa5\x74\x63\xe1\x88\x49\x2c\x2f\xf4\xda\xa3\xef\x3b\xc6\x42\xdc\x38\xb1\x42\xe5\x70\xe4\xc9\x0f\xfd\xbe\xc3\x8d\xfe\x8d\x3d\x06\x29\xf2\xae\x7c\xd3\xdb\x24\xab\xee\xaa\xed\xb9\xa3\xe4\xa9\x1a\x3d\x61\x36\x47\x9c\x16\xd7\x4a\xfc\x7c\x49\x1b\xe7\x2e\xcb\xa0\x9b\xa8\xb3\x97\xaa\x7a\xca\xe7\x8a\xc5\xae\xf1\x8c\xae\xe4\xa6\xee\x7e\x38\x31\x34\x7f\xa0\xb3\x93\x55\x19\x05\xff\x1d\x8d\xfa\x87\x7f\x1c\x77\x3b\xd1\x68\x7d\x9d\xce\x17\x62\xfc\x63\xe7\xf7\xf5\x5e\xb7\x50\x5b\x35\x32\xcf\xc5\x1b\x63\x73\x54\x23\xad\xdd\xac\x19\xd0\x81\xaf\x76\x65\x8a\xd5\xc7\x55\x52\xc2\x7a\x4f\xa4\xff\x4d\x2e\x23\x33\x60\x74\x34\xae\x26\x5d\xe6\x4c\x6d\x3e\xb6\xe7\xf1\x18\xbe\x7d\x83\x50\x84\xc7\x0d\x76\xc1\xc1\x56\x27\xec\x38\xc1\x91\x42\xd7\x72\xf0\xda\x6f\xd7\x69\x63\x6d\xcd\x56\x85\x1a\xbd\x99\xbf\xc3\x5f\xd2\x35\xb0\x7c\x1f\xe2\xac\x5e\x21\xa2\xb8\x5c\x8a\x79\x34\xda\x67\x4d\x97\x74\x3d\xee\xa9\x79\xc6\x55\xca\x47\xa3\x10\x05\x97\x51\x45\x31\xe9\xc1\x85\x23\x8a\x0b\x75\x14\x3d\x04\x32\xea\x8f\x8f\xe1\xa6\xe3\x47\x25\x30\x04\x13\x97\x68\x4c\x2d\xc1\x88\x92\x70\xe5\x05\xff\xa0\xe1\x46\x6c\xac\xb0\x7a\xc6\x5b\x89\xa9\x86\x4e\x5c\xe8\x0e\x74\xeb\xd7\xa3\xf6\x43\x95\x1d\xb9\xaf\xe0\x9a\x47\x94\xdd\x3e\xfc\x23\x9d\x14\x79\x2a\xee\xe5\xca\xdb\x58\x76\xfb\x9e\x57\xf1\x93\x75\xbb\x6d\xfc\xb4\x14\x3d\x6d\xa3\xe8\x76\xf4\x2a\x88\xab\xd9\x6f\xa3\xbf\x3b\x22\x38\x76\x87\xdb\x40\x3d\xaa\x9a\xb5\x64\x5c\x69\xed\x27\x9a\xe6\xf9\xf4\x37\x12\xcd\xde\x32\x81\x43\x38\x52\x62\x7c\xa6\xc5\x79\x78\xb8\x4b\x3e\xcf\xfe\xf5\xe4\xe3\x10\xb2\xdd\xdd\xed\x8c\xe6\x6b\x63\x35\x80\x36\x92\x8a\x6e\x09\x2f\x3c\xc7\x6b\xa2\xa1\x4d\xf5\x50\x72\xd8\x12\x86\x0f\x87\x10\x86\x8d\x6c\x67\xbe\xcc\x32\x37\x11\x9e\x12\x49\xdf\x13\x2e\x2b\x9d\x6a\xa2\x89\x45\x99\x31\x19\x25\xa3\x43\x18\x8c\x93\x4e\xed\x84\x14\x39\xf1\xa7\xb3\x17\x51\x85\x62\xd4\x1f\xf7\x6a\x84\xa3\x23\xe5\x4f\x8f\xdc\x96\xc7\x5e\xff\x13\xef\xed\xbb\xf1\x5d\xd8\xf1\x0b\xff\xb8\x83\x27\x76\x61\x6d\xd1\xa4\xdd\x8d\x55\x7f\x83\x37\xaa\xc9\xf2\xc6\x0c\xaf\x43\x98\x4a\x7c\xa2\x46\x86\x38\x9c\x9d\x57\xbd\xd7\xa1\xce\x9d\xb7\xd5\xc6\x5a\x6a\x0a\x31\x90\x2c\x96\x78\x68\xb1\x73\x7c\x3a\x7b\xf1\x5a\x35\x45\x98\xb6\xeb\xc3\x8f\x10\xf6\x43\xe8\xb6\xf5\x0f\x5a\x1a\xab\x20\x86\xe5\x4b\x49\x1b\x88\xdf\xe9\xc6\x1d\xa8\x6b\x88\x41\x6b\x73\x0b\x53\x3e\x9d\xbd\x78\xb5\xcc\xb2\x5f\x29\xe1\x91\xda\xe4\x82\x43\x15\xb0\x47\xee\xe8\x22\x97\xf3\xa8\xd3\x3d\xaa\xbb\x9d\x5e\x73\x18\xe8\x42\x00\x01\x74\x8d\x59\x6b\xae\x74\x21\x18\x28\x68\xb3\x98\x7d\x19\x2f\x5a\x55\xa8\x66\x7b\x23\x4f\x10\x61\x22\xa3\x35\x8f\x63\x6d\xdd\x6a\x5b\x7d\xb4\xad\x54\xe4\x9e\xa6\xef\xe4\xe8\x36\xf5\x3c\x49\xe0\x8d\xe9\xaf\x4f\x60\x8f\xbf\xff\x03\x70\x92\xcf\x28\x3c\x82\x49\x91\x5f\x51\x2e\x61\x81\xb7\xf6\x22\x6e\xd1\xe1\x4a\xc3\x2d\xed\xae\x69\x21\xbf\xef\xb6\xd5\x98\xd3\x78\xf2\x1d\x74\x9c\x1c\x9b\xe3\x8f\xef\xb6\x2f\xb6\xae\xfb\xae\x6b\x38\xfc\xbf\x59\x83\x49\x04\x6d\xa1\xbf\x45\x7d\xc2\xb0\x55\x53\xee\xcf\x44\x33\xe2\x9f\x17\x54\x98\xa3\xfb\x2e\x47\x8b\xdd\xc3\x21\xee\x3c\xd6\xe1\xea\x21\x6d\xe7\x43\xeb\x7f\x37\x02\x49\x3f\x8e\xac\x32\x91\x33\x26\x24\x5f\xb7\x05\x90\x6a\x30\x42\x35\xc2\x9d\xc6\xd0\x2a\x6d\x87\xcd\x6a\xf5\x64\x51\xaf\xd8\xd9\xbf\x0d\x9b\x5a\x80\xeb\x13\xaf\x5a\x97\x7b\xc0\xd5\x60\x7e\x34\xb2\x6f\xe4\x71\xde\x48\x30\xc2\xd0\x6c\xde\xfb\x79\xb6\x0f\x9b\xca\xe7\x07\x2d\x55\xe0\xb0\x31\xd1\xc3\x86\xb4\x4c\xf2\x62\x92\x51\xc2\x2d\x50\xfb\x50\x13\x6e\xb5\xa3\x1d\x7a\xc1\x87\x77\x5e\x7a\x38\x04\xed\x5c\x9d\xe0\xb2\xdd\x48\x1e\x7a\x41\x8d\x9f\x1b\x8f\xbc\xfa\x92\xbd\x55\xdc\xcb\x87\x6e\x27\xde\x70\x41\x50\xe9\xf3\xa0\x25\x69\xdf\xdb\x98\xf8\xa0\xbe\xfc\xbc\xd9\x91\xd1\x6f\xa4\x98\xfd\x73\x5e\x92\x00\x26\xe9\x8b\x29\x90\x2c\x33\xb5\x54\x3d\x58\x0a\x9a\xc2\xc5\x1a\xd4\x11\x58\x39\x7c\xa5\x0a\x8d\x1a\x8c\x86\xca\x9b\x43\xb9\x07\x82\x10\x2f\xe9\x94\x2c\x33\x69\x73\xa3\x74\x55\xf2\x01\x0a\xad\x67\x0b\x83\x4e\x56\x25\xa7\x42\x28\x99\xc9\xc2\xa8\x37\xbc\x20\x39\x5c\x50\x20\x90\x19\xf2\x74\xc6\x09\xb7\x9b\xbc\x48\x69\x03\xc7\xcb\x5f\xde\x61\xb3\xc2\x80\x35\x42\xc6\x4c\x97\x79\x4a\xb9\xad\x23\x72\xff\x25\x09\xbc\x2e\xae\x21\x2b\xf2\x19\x56\x30\x68\x70\x26\xa0\xb8\xa2\xbc\x07\x2c\x07\xa1\xd9\xac\x06\xd7\x79\xac\x3b\xa6\xc3\x7b\xed\x33\x9f\xcd\xa9\x3a\x8f\xaf\x90\xbd\xf5\xec\x54\x49\x95\x48\x35\x63\x95\x29\xdb\x77\x46\x33\xa0\x87\x09\xcd\x54\xce\x1d\xfe\xa8\xa5\x52\x36\x9b\x23\x1b\xeb\xd9\x52\x76\xd5\x03\xba\x9a\x64\xcb\x94\x29\x26\x30\x99\x51\x01\x24\x4f\x21\xa3\x33\x6a\x56\xde\x42\x7c\x25\x50\x59\x00\x59\xca\xe2\x30\xa5\x92\x4e\x6c\xbd\xd6\x1c\x67\x1a\xc0\xe3\x7e\xff\x1f\x9e\x7c\xc1\xf2\x01\x04\x6a\x8e\xc0\xe2\x7a\xc7\x72\xb6\x58\x2e\xe0\xd7\x43\xb2\x62\x42\xa7\xa5\x7a\x90\x3a\x24\x65\xc5\x35\x15\x52\x05\x79\x44\x77\x23\x26\xb2\x1a\xa0\x2e\x4c\x59\x4e\xd3\x1e\x62\x22\xab\x5b\x30\xcd\xd9\x6c\xbe\x89\x8a\x53\xa5\x52\x94\x0f\x20\xcc\x58\x4e\xc3\x9e\x96\xe8\xba\xa4\x6a\x85\xd6\x80\x8a\x52\xd7\x35\x12\x4e\x0d\x1c\x2e\x2e\x24\x9c\x92\x10\x75\x98\x2c\x9a\x3a\xfc\xe7\x39\x91\x6a\xde\x89\xb2\xc4\x32\x2b\xa4\xf0\xe9\x91\x7c\x8d\xbc\x2a\x20\x2d\xda\x45\x23\xb0\x52\x52\x01\xa9\x38\xa7\xc8\xc9\x45\x46\xb7\x48\xf1\xcd\x14\x88\xb1\xa9\x1e\x30\x19\x66\x19\x16\x60\xc9\x39\x91\x31\x8c\x46\x90\x91\x0b\x9a\xc1\x78\x0c\xd7\x2c\xcb\x94\x25\x62\xd2\x97\xc9\xa5\xa4\xe9\x2e\x94\x76\x63\x30\x38\x2f\x28\x2e\x87\xa6\xba\x66\x88\xc0\x82\x94\x8a\x4f\x97\x74\x8d\x6b\xd2\x69\xd8\x2d\x66\xa2\x38\x26\xe6\xc5\x32\x4b\x6d\xdc\xaf\x14\x48\x71\x4e\x0d\x5d\x8a\x6d\x6b\xdb\xe6\x3b\x12\x4b\x9c\xe8\x01\x25\x93\x39\x50\xed\x21\xdb\xb1\xd8\x85\x93\xb2\xcc\x18\x4d\x51\x02\x73\xaa\x05\x03\x53\x5e\x2c\xf0\x75\x52\x70\x4e\x45\x59\xe4\x4a\x8f\xdb\x11\x99\x59\xac\x01\x28\x0f\x88\x94\x29\xea\x57\x67\x4a\xf3\x07\x10\x28\xe3\x0d\x7a\xae\x83\x40\x9b\xb0\x83\x56\xa0\xb4\x54\x8d\x58\x7f\xca\x99\x14\x03\x08\x7c\x68\x9d\x19\x35\xd0\xeb\x1a\xda\xe2\xdf\x81\xbb\x86\x4e\x12\xd0\xe5\x31\x2a\x54\x32\xf5\xb1\x2a\x68\x72\xf0\x3d\x5f\x31\x51\x15\xcf\x0c\x76\x56\xea\xd8\xc2\x9a\xde\x4e\xcc\xe6\xb6\x60\xae\xfc\x2e\xa4\x54\x12\x96\xe1\x44\xaf\x55\xc3\x1d\x67\xc2\xa2\xa5\xde\x46\x2c\xf4\xb3\x89\xd8\xaa\xa0\x45\xc7\x58\x7a\xc3\xaf\x93\xc8\xcd\x14\xb2\xb7\x7d\xb9\x51\xc4\xc3\x08\x61\x0d\x96\x3a\x6e\xd0\x0d\xa3\xcb\x71\x23\x3a\xf4\x10\x8d\x2e\x1b\xf9\x57\x8c\x4b\xd6\x25\x2d\xa6\x60\x63\x3f\xa5\x21\xc3\x21\x04\x5a\x6f\xab\x08\xc6\xeb\x86\x91\xf3\x3a\x3e\xde\x8a\x0c\xcd\xc5\x41\x06\xdf\xbe\xc1\x16\x08\xcb\x9f\xc0\x0d\x77\x75\xaf\xc9\xb8\xb7\x27\x63\x1d\x42\xda\x82\x66\xed\xec\x74\xb2\xdd\x99\xd2\x0b\xac\x3c\x52\x10\xde\xbf\xd6\xd6\xfd\xfa\x1e\x83\x2c\x84\x53\xc1\x80\xde\x38\x3d\x47\x27\x5d\x47\x83\x49\x02\xff\x49\x69\x09\x04\x38\x9d\x52\x4e\xf3\x09\x05\x51\xa0\x7b\x83\xe9\x92\x63\x9d\xe2\xb2\x54\x07\x69\x01\x11\x8d\x67\x31\x90\xdc\x96\x1d\x8b\x0e\x4c\xb4\x07\x59\x90\x94\x6a\x64\x2a\x16\x52\x56\x26\x28\x57\xa2\x97\x73\xca\x38\x48\xba\x28\x33\x85\xa2\x3a\x03\x73\x36\xb9\x14\x73\x72\x6d\x35\xce\x92\xb3\xeb\x98\x81\x7c\x31\x75\x19\x6a\xb2\x03\xc5\x90\x03\x38\x53\xce\x1b\x32\xb2\x2e\x96\x72\xa0\x9b\xbe\x19\x73\x86\x6f\xa0\x27\x80\x6f\xb6\xc3\xfc\xfb\x66\x1c\x4a\xdd\x91\xe8\xfd\xf6\x1b\xbc\xc5\x7d\xd5\x74\x24\xe6\x98\x25\x71\x92\xed\xc5\x0e\xd8\x6f\xd2\x13\xb8\x99\x4c\x32\x22\xc4\xa9\x96\x92\x57\x03\x83\x80\x0a\xce\x4a\xb2\x48\xa9\x57\xa9\x80\x10\xd5\xf9\x4e\xf2\x5d\xb3\x72\x77\x4a\x0f\x09\xaf\x30\x68\x56\x9c\xa5\xbb\xf0\xd8\x92\x1c\xee\x21\xb1\x23\x1b\xa8\x5e\xb2\xab\x3d\x70\xd9\xc1\x2d\x18\x5f\xb2\x2b\x07\xe4\x25\xbb\xda\xca\xad\x35\xfa\xdf\xc0\x07\xf6\xc3\x74\xc3\x46\x23\xf0\x2e\x58\xcb\xd1\xee\x1f\x7e\x84\x00\xa2\x00\xba\xe0\x35\xc7\x92\xb3\x85\xce\x67\x75\x02\x50\x5e\x5f\xeb\x94\x3e\x47\xab\xa9\xef\xc3\x2f\x77\x74\x9d\x39\x30\x0d\xfe\x1a\xad\xfe\xeb\x75\x06\x1b\xc0\x18\x9a\xd6\xab\xc3\xd7\x0d\x20\x1d\x42\xd6\x50\xfa\x5d\x2f\xe4\x1f\x52\x9b\xc6\xba\x76\xb1\xa1\xd2\x8d\xd5\xbd\xd5\x6c\xe5\xaa\x99\x7d\xd9\xaa\x12\xab\x5a\x25\x2a\xd8\x56\x8d\xd0\xbd\xff\x0b\xdc\xa8\x72\x19\x6f\x59\x7e\x79\x9f\x05\x3a\x83\x37\x11\x3e\xdf\x81\x8f\x68\x74\xce\xf8\x76\xbc\xcf\x7d\xb0\xe7\x5b\x99\x97\xb1\xfc\x32\x68\xc0\xfa\xcc\x0b\xba\xcd\xfe\x39\xa7\xd3\xd6\x2c\x8e\x38\x2b\x3e\x66\x44\xcc\xd1\xc5\x7e\xfa\xf0\x36\x72\xb6\xb7\x6a\x9d\xfa\x94\x72\x1f\xae\xd9\x91\xb5\x25\xe9\x96\xdd\xee\x27\x65\x57\x1a\x9b\x1d\xbe\xd5\x94\x2a\x80\x0d\x13\xae\xe6\xd1\x4e\xc1\xe4\x1e\x48\x9a\x9e\x5c\xd1\x5c\xbe\x65\x42\xd2\x9c\xf2\x28\xe4\x54\xb0\xbf\xab\x83\x4d\x23\xbf\xa7\xa2\x8b\xa8\x65\xd7\x6d\xa6\x76\xea\x74\x87\x82\x6a\x19\xe1\xec\xfc\x37\x4e\x86\xc3\xf1\x55\xbb\xd2\x92\x3f\xeb\x34\x59\x9d\xd3\xc2\xcc\xcb\x9f\x4c\xba\xb3\xa2\xd9\x64\x5d\xbf\xd6\x75\x10\xb6\x0a\xe2\x55\x56\x10\x19\xd5\xf9\x46\x15\x33\x31\x71\x4a\x4e\x55\x5b\x15\xce\x25\x09\x04\xdd\x37\x39\x56\x19\x1e\x9a\xff\xf1\xbd\x3a\x18\x20\xb2\x14\x58\x2e\x0b\x38\x25\xa7\x2a\x46\x70\xf0\x77\x62\x15\x69\x5b\x54\x13\x92\x87\x52\x0d\x42\x15\x53\x47\x50\x51\xa8\xb3\xcd\xb5\x0a\x25\x16\xf8\x19\x1b\x29\x05\x44\xc8\xc7\x78\xdb\xe5\x5a\x5d\x8c\xb1\x07\x5b\xa8\x98\x90\x92\xbe\x3e\x7b\xf7\xd6\x65\x8b\x8e\x02\x6b\xbe\xd0\x5c\x32\xb9\x7e\x47\x4a\x93\x9f\x01\x08\x1e\x05\x03\x08\x1e\x91\x45\x79\x1c\xe8\x83\x59\xf0\x14\x5b\x32\x59\x35\x3c\xc3\x86\x59\xd5\x10\x06\xe1\x00\xc2\x47\x7f\x5b\x16\xf2\x38\x34\x30\x61\xa0\x9a\x7e\xf7\xe4\x8f\x55\x4b\xa2\x5b\x56\x8f\x5f\x1d\x87\x6a\x45\x28\x6f\xb3\x26\x4d\x57\xfd\x85\xd7\xe8\xd1\xd3\x67\x41\xf8\x39\x19\x27\xb3\x5a\x11\x21\x12\x8d\xeb\xb5\x8a\xfc\x91\xd0\x31\xf0\x3e\x0a\xa3\x95\xb1\x71\x3f\x43\x6a\x9e\x08\x9a\x4d\x4d\x5a\xaf\xfa\x0a\x84\x64\x54\x56\xb7\x77\x1f\xcc\x36\x17\xbf\x28\xb2\x82\xc7\xef\x75\x67\x7d\x01\x26\x28\x67\xd4\xd6\xa9\x3c\x30\xa7\x2e\x26\x2a\xcd\xc1\xf4\x5a\x91\x83\xb6\xb4\x78\x5b\x30\xab\xfe\x3b\x7e\x60\x6b\x6a\x55\x50\xfc\x6a\x99\x4f\xea\xfa\x97\x2a\xa3\xe9\x07\xf2\xbe\x35\xaa\xa1\x93\x79\x51\x08\x5c\xb1\xe7\xee\x74\xf3\xa9\xc1\x5b\x33\x62\x7b\xa4\xef\xce\xb6\x3b\xdc\x47\x4a\x75\x6c\x6b\x66\xef\xdc\xfa\x59\x41\xfb\x3c\x78\x78\x68\x9d\xc7\x39\xec\x34\x07\x8c\xd8\xb8\xed\x04\xd5\x42\x5d\xa5\x03\xac\x07\x0b\x2a\x39\x9b\xb8\xc0\xed\xdf\xe9\x60\x91\x72\x59\xa8\xd8\x5f\x71\x6f\x43\x08\x23\x36\xae\x90\x1d\x57\xb8\x6e\xdc\xa2\x60\xd6\xa9\x7a\x3c\x6e\xb4\x50\xd8\x82\xbd\x1e\xeb\x1c\x25\xb5\xa2\xfd\x4c\x25\x1e\x55\x50\x87\xd0\x37\xa9\x37\x8e\x21\x95\x3e\x7b\xc7\x9e\x96\xbe\xa5\x39\xf2\xdd\x3d\x0a\x53\x2d\x09\x0a\x4f\x11\x4d\xc5\x7d\x5a\x73\xbf\x4d\x6a\x0a\x76\x44\xc7\x31\x8e\xe1\x54\x2c\x33\xd9\x2e\x38\x3d\xf3\xa8\x22\xa0\xdb\x1d\x57\xee\xc7\xfe\x53\x48\x06\x6d\x28\x47\x6c\x1c\x9b\x22\xbf\x05\x29\x6b\xf9\xb9\x35\x70\x5f\x57\x03\xd0\xa5\x03\xeb\x01\x9a\xb3\xbb\x4b\x44\x58\xfc\x76\x73\x0c\x37\x1d\x3f\xf1\x34\x51\xd6\x3c\xb0\xb6\x1e\xe3\x6b\xd4\x80\xd1\x79\x3b\x8d\xb2\xf6\xb0\x51\x25\xb2\x11\x1d\x47\x5b\x88\x36\x0a\x51\x21\xbc\xf1\xf3\x00\x7a\xd3\xc4\x0b\x11\xf4\x58\xf5\x6d\xd7\x43\xcd\x28\xc3\x4b\xd7\xb0\x29\xe7\x05\x3f\xa3\x2b\xb9\x4f\xe8\x00\x35\xb8\x17\x49\x85\x4e\x24\x85\x10\x61\x13\xda\x8f\xa5\xc2\xd3\x02\x2f\x06\x8c\x97\xd3\x2c\xa7\x69\xe8\x5c\x75\xd8\x50\xde\x8d\x41\x2a\x74\x9d\x63\xc7\x83\xdb\xad\x2d\x49\xe0\x03\xb5\xc9\x7a\xf7\x9a\xcd\xf3\xb7\x9a\x31\xae\xa2\xd4\xa6\x88\xf9\xf9\x20\x63\x39\x25\x3c\x70\x85\x66\xf2\xe1\x1e\x61\xc5\x74\x2a\xa8\xfc\xb3\xea\x71\x41\x6d\xf6\xda\x35\x39\xdd\xe6\x42\x99\x84\x9e\x8f\xb2\xe7\xf9\x0c\x9b\x23\x76\x11\xd9\x56\x17\x12\x13\xd3\x2e\xd0\x82\xac\xbc\x7e\x96\x37\xfa\x99\x77\xa9\xa0\x65\x30\x30\xff\x9b\x0d\xd0\x16\x77\x5c\x51\xfe\x12\x13\x6a\xad\x6c\x8c\x5f\xd7\x00\x15\x4b\x71\x31\x03\xfd\x9f\x9d\xa7\xc8\xb5\x64\x06\x9b\x01\xa1\xd5\xc3\xd5\x5b\x4c\x17\xdb\x72\x1f\x73\xf1\x54\x7f\xee\x21\x7e\x5a\xbf\xb0\x1a\x17\x05\xab\x73\xcc\x2e\x07\x1d\xf3\x99\x65\x8d\x87\x49\xba\xd8\x17\x8b\x82\x6d\xa0\xc0\x0f\xef\x90\x14\x57\xc0\xd0\x05\xaf\xf1\x2d\x9d\x4a\x5b\x82\x60\x27\x71\x7a\x9e\x99\x2b\x28\xbf\x4b\x63\xfa\xf6\xcd\x55\x3d\x49\x17\x8d\x79\x9c\xa6\xfb\xcf\xe2\xef\x3f\x86\x74\x34\x58\xfd\xf9\x47\xea\x7f\x39\x83\x72\x3e\x9f\x66\xac\x2c\x69\x1a\x38\xfb\x8d\xa1\xf0\x1e\x23\x37\x76\xa4\x16\x32\x38\x5d\x14\x57\xf4\x9e\x94\xdc\x65\xf0\x8d\x75\x97\x56\x1f\xd7\x4e\x56\xb8\xd2\xc8\xb5\xcb\xb5\xea\xb6\xa0\xb6\x9b\x46\x3e\x59\xc1\x77\x7d\x00\xcc\xa0\x54\xfb\xaa\x73\x2e\xf1\xac\x0a\x13\xe0\xed\xf6\xa4\x7a\xe2\x5f\x77\x9a\x92\x64\x93\x4b\x4d\x83\x6f\xd5\x7e\x5a\xdd\x9b\x70\x75\xcb\x84\x58\xe2\xb0\x6d\xce\x9b\xc6\x81\xb5\x1d\x8f\x4e\x0d\xee\x24\xdc\x77\x79\xd5\x49\xb2\x9a\x02\xa9\x34\x1e\x4e\x6f\x5c\xeb\x8d\x16\xad\xf0\x75\xcb\xb6\xa4\x29\xc2\xed\x11\xc6\xd7\x5b\xe5\x66\x2d\xca\xf5\x9c\x65\x14\xbc\xd4\x55\x9c\x11\x21\x71\x2b\xf2\xbe\x34\xb2\xbd\x5a\x25\x37\x33\x5e\xce\x30\xbb\x57\xb9\xc8\x2b\x56\x6c\x41\x5f\xf7\x6f\x4c\xd0\x36\xd4\xbf\xcc\x6f\xcd\x26\xdf\xca\x97\xd5\x9c\x8b\xb6\xeb\xf8\x26\xe0\xc5\x92\x65\xe9\x7f\x2d\x29\x5f\x7f\xe2\xde\xa7\xb2\x98\xe9\xa8\x3f\x6e\x76\x2a\x1c\x4c\xea\xdd\xc6\xc4\xcf\xcf\x5e\x9f\xbf\xff\x70\xf2\xea\xcd\x5f\xa0\x0b\x41\x42\x4a\x96\x5c\x1d\x25\x7f\x53\x28\xcf\xb1\x5c\xec\x47\xfc\x7b\x68\x6b\xeb\x5a\xbe\xa4\xd1\x73\x75\xcd\xc9\x53\x48\x5a\x0e\x31\xad\x19\x3b\x95\xec\xdb\x76\x6e\x67\x18\xe1\x12\xc7\x45\x65\x55\x39\x73\xe8\x20\xc1\x94\xe8\x23\x9a\xa7\x06\xb9\x81\xb9\x9d\x99\xdb\xab\x9d\xaa\x00\xf8\x8b\x0e\x80\xbf\xd8\x63\x0b\xf2\xbf\x8a\x7b\xbf\xd4\x71\x6f\xdd\x3b\xfa\x32\x8e\xc9\x45\xc1\x65\xe4\xfd\x80\x04\xc9\xb2\xea\x1e\x83\x5e\xc3\x73\xce\xc9\x3a\xda\x72\xe4\x72\xea\xff\x8c\xbc\xf7\x1b\x82\x12\xa5\x78\x5b\x79\xce\xe9\xdf\x96\x54\x48\xe1\x0b\xd8\x3b\xd8\x6d\x29\xbf\xdf\x7a\x0e\x6c\x7c\x49\xd9\xf8\x02\xcb\xaf\x6d\x3a\xae\xc0\x96\xbc\x8a\x1d\x3c\xa5\xdc\x58\x49\x7d\xf4\x41\xd7\x38\xe7\x66\xdd\x7f\x79\xf7\xf6\xb5\x94\xe5\x07\xbd\x20\x5b\xb3\xb3\x9a\xf3\xb8\x28\x69\x1e\x85\x33\x2a\xc3\x9e\x9a\xa6\x87\xdf\x02\x39\xfd\xfa\xf2\x56\x50\xbc\xc0\x1f\x42\xf8\x45\x14\x79\xe8\x0c\xcf\x31\x6c\xf5\x7e\x1b\x60\xce\xd5\xf1\xad\x91\xec\x6a\xc6\xed\x70\xbf\x08\xfd\xae\x31\xfa\x8e\x28\xfd\x04\x09\xcf\x0a\x82\x15\x16\x4a\xaf\x42\xaf\x9e\x7d\x9f\x18\x1d\xec\x4f\x2e\xc5\x59\x31\x8b\x5a\x50\xa2\x76\x84\x8d\xad\xd4\x97\x14\xb4\xe9\x5b\xdf\xf6\x25\x09\x14\x39\xda\x02\xcc\xa8\x14\x40\xf2\x35\xe0\x6b\x55\x7e\xd2\x66\x68\x4d\x8c\x9e\x9d\xed\xb4\xb5\x3a\xa2\xf0\x8e\xe3\x46\xa8\xae\xe0\xd5\x32\x77\xc9\x5d\x05\x9b\x9b\x2b\xf3\x3f\xcb\xd1\x27\xf2\x42\xe2\x6f\x71\x20\xf3\x2e\xe8\xb4\xe0\x14\xe9\x03\xb1\x9c\x4c\xa8\x70\xea\x6c\xdc\x0f\x0a\xea\xc0\xc7\x54\x9e\x2b\xb7\xe0\x6a\xec\xf1\x66\x16\xa4\x4a\xc7\x06\xc5\xc5\x17\x3a\x91\x5e\xde\xc3\xa0\x70\xbe\xef\xf3\xf4\xdf\x15\xfa\xcd\x36\xc1\x1d\x0e\xe1\xc8\x02\x59\x6f\x85\xa9\x16\x93\xab\xba\x0b\x67\x3c\xe7\x35\x72\xa2\x78\x2f\x7b\x6c\x67\xb9\x93\xf0\x84\x0a\x67\xbc\xd2\x3b\xd4\x04\x24\x74\x35\xe7\xd5\xd5\x32\x06\x46\x5a\x9b\xdf\x2c\x66\x3b\x2c\x94\x2d\x66\x26\xfd\x5e\x41\xc7\x82\x4f\x60\xd8\xd8\x03\xc3\x44\x48\x22\xd9\x24\x61\x8b\x59\x42\xbe\x90\xd5\xa1\x1a\x40\x79\x3c\x63\xd3\xb0\x31\x9e\x64\x68\xa6\x6f\x75\x4b\x1c\xc7\x4d\x80\x6d\xf6\x6f\x40\xc2\x8d\x8b\x33\xef\x9a\xa1\xc2\xd3\xa9\x2a\xfd\x3e\x56\x25\x3c\x98\x13\xd2\xc5\x8f\xc5\x14\x42\x3c\x8e\x85\x68\x69\x4e\xe9\x4f\xa3\xde\xaf\x91\xf4\x72\x4d\x23\x27\x0b\xea\x67\xcf\xf4\x77\xfb\x30\x84\x24\x8a\x0f\x7e\xec\x7c\x1e\x7d\x1e\x7d\x16\x07\xd1\xe7\xeb\x6e\xa7\xfb\x59\x1c\x7c\x1e\x7f\x1e\x63\x47\x32\x3b\xae\xa0\xc5\x52\x73\x04\x17\x66\x62\xac\x85\xd9\x7c\x39\x8d\xe9\x8a\x4e\x70\xa6\x4e\x9d\x03\x36\x43\xcc\x1f\x5d\xfd\x09\xe3\xe8\x68\xac\xfe\x44\x6a\x46\xba\xe5\xf1\x78\x5c\xf5\x3e\xf1\x8a\x25\x1e\xea\xb1\xcd\x2f\x5a\xaa\x02\x04\xe7\x87\x65\x14\x5c\xc5\xcb\x9f\xd9\x15\xcd\xeb\x44\x9b\x4d\x82\xd8\x42\x81\xe7\xef\xdf\xd8\x9f\xe2\x51\xb6\x4f\xca\x92\x17\x25\x67\x44\xd2\x8a\x6b\x0a\x8b\x2c\x2c\x50\x99\x15\x12\xa7\x6d\x96\x59\x6e\x26\x69\xdb\x13\xd7\x49\x02\x3f\xad\x6d\xbd\x58\xcf\x14\x73\xa9\xd9\xb2\xcc\xf0\x42\x97\x61\x34\xb2\xc9\x0e\x32\x88\xfc\xfc\xa7\x29\xc6\xd0\x8d\xf1\xf9\xb9\x7a\x3f\x3f\x57\x91\xd4\xd7\xa0\x91\x22\xd6\x2a\xc3\xf2\x8d\x0c\xaa\x62\x31\x76\x3a\x1f\x0d\xf7\x7b\x8f\xf1\xf7\xe1\x82\xf3\x73\xcf\x41\x4d\x8a\x5c\xb2\x7c\x49\x9b\x5e\x08\xe9\xe8\x0e\xcd\x24\x5d\x08\x86\x61\x50\x0b\x18\x5b\x95\x74\x83\xb0\x17\xb8\x25\x25\x8e\x28\x55\xef\x0d\x76\x62\xce\xed\x81\x2d\x57\x2b\xf2\x6c\x0d\x45\x4e\x0d\xea\x2b\xc2\x19\x15\xbd\xaa\x10\xae\x2e\xfa\xab\xd6\x58\x7d\x96\xfd\xf5\xe6\x37\xcd\x98\x6e\x72\x7a\x77\x92\xd1\x61\xab\xae\x58\xaa\xc6\x39\xcb\xe8\xf8\x99\x06\xa7\xc7\x72\xd5\xae\xd3\x17\x48\x1b\xe8\x68\x27\x3d\x06\x48\x21\x3c\x6a\x4b\x5d\xa3\x4c\xf0\xd3\xa1\x65\x26\x19\x22\xc6\x7c\x43\xcb\xb7\xbe\xad\x0b\x71\x8a\xb3\x7e\xc1\x9d\x2f\xbe\xa4\x6b\x11\x6d\x92\xd9\xb1\x9f\x20\x3e\x03\xe7\xd7\x09\x9b\xb3\xea\xbc\x3b\x8e\xe8\x6c\x16\x6b\x6d\x40\x1b\x94\x43\xe7\x87\x9b\x5a\xcc\x2b\x6a\x8a\xc6\x28\xa8\x75\x54\x0d\xac\xa3\xfe\xd8\x16\x8a\x35\x3c\x91\xc5\xdd\xf0\x45\x75\xb9\x23\xad\x0a\xaa\x45\x0f\x4a\x5e\xa4\xcb\x89\x76\x06\xa6\x18\x48\x85\xdb\x8a\x9f\x72\x4e\x17\x6d\x45\xdd\xcd\x1b\xf0\xe6\xd9\x50\x78\x5f\xc4\x91\x4d\x19\x39\x1a\x8e\xf0\x6d\xc7\x03\xd4\x13\xe4\xf3\xd7\x50\x01\x85\x03\x0d\x8b\x77\x27\xa1\x24\x17\xe1\x00\xfa\x37\x9d\xc6\xda\x9b\xdb\x2d\xd2\xfb\xbb\x70\xaf\x5f\x69\x40\x5f\xd9\x39\x7e\xa0\xd8\xf6\x3f\x01\x00\x00\xff\xff\xad\xde\xe8\x33\x80\x54\x00\x00") func webUiStaticJsProm_consoleJsBytes() ([]byte, error) { return bindataRead( @@ -461,7 +461,7 @@ func webUiStaticJsProm_consoleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web/ui/static/js/prom_console.js", size: 21651, mode: os.FileMode(420), modTime: time.Unix(1490348605, 0)} + info := bindataFileInfo{name: "web/ui/static/js/prom_console.js", size: 21632, mode: os.FileMode(420), modTime: time.Unix(1493279723, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/web/ui/static/css/graph.css b/web/ui/static/css/graph.css index 6754bc9c99..ec3441bcfc 100644 --- a/web/ui/static/css/graph.css +++ b/web/ui/static/css/graph.css @@ -44,23 +44,27 @@ body { .legend { display: inline-block; vertical-align: top; - margin: 0 0 0 40px; + margin: 0 0 0 60px; } .graph_area { position: relative; font-family: Arial, Helvetica, sans-serif; - margin: 5px 0 5px 0; + margin: 5px 0 5px 20px; } .y_axis { - overflow: hidden; + overflow: visible; position: absolute; top: 1px; bottom: 0; width: 40px; } +.y_axis svg { + overflow: visible; +} + .graph .detail .item.active { line-height: 1.4em; padding: 0.5em; @@ -126,7 +130,7 @@ input[name="end_input"], input[name="range_input"] { } .prometheus_input_group.range_input { - margin-left: 39px; + margin-left: 59px; } .prometheus_input_group .btn { diff --git a/web/ui/static/js/graph.js b/web/ui/static/js/graph.js index ec232b2474..04d7068570 100644 --- a/web/ui/static/js/graph.js +++ b/web/ui/static/js/graph.js @@ -415,7 +415,7 @@ Prometheus.Graph.prototype.submitQuery = function() { return; } var duration = new Date().getTime() - startTime; - var totalTimeSeries = xhr.responseJSON.data.result.length; + var totalTimeSeries = (xhr.responseJSON.data !== undefined) ? xhr.responseJSON.data.result.length : 0; self.evalStats.html("Load time: " + duration + "ms
Resolution: " + resolution + "s
" + "Total time series: " + totalTimeSeries); self.spinner.hide(); } @@ -556,6 +556,27 @@ Prometheus.Graph.prototype.updateGraph = function() { min: "auto", }); + // Find and set graph's max/min + var min = Infinity; + var max = -Infinity; + self.data.forEach(function(timeSeries) { + timeSeries.data.forEach(function(dataPoint) { + if (dataPoint.y < min && dataPoint.y != null) { + min = dataPoint.y; + } + if (dataPoint.y > max && dataPoint.y != null) { + max = dataPoint.y; + } + }); + }); + if (min === max) { + self.rickshawGraph.max = max + 1; + self.rickshawGraph.min = min - 1; + } else { + self.rickshawGraph.max = max + (0.1*(Math.abs(max - min))); + self.rickshawGraph.min = min - (0.1*(Math.abs(max - min))); + } + var xAxis = new Rickshaw.Graph.Axis.Time({ graph: self.rickshawGraph }); var yAxis = new Rickshaw.Graph.Axis.Y({ diff --git a/web/ui/static/js/prom_console.js b/web/ui/static/js/prom_console.js index 58206d468d..c0f0b84647 100644 --- a/web/ui/static/js/prom_console.js +++ b/web/ui/static/js/prom_console.js @@ -578,7 +578,7 @@ PromConsole.Graph.prototype.dispatch = function() { } var loadingImg = document.createElement("img"); - loadingImg.src = PATH_PREFIX + '/static/img/ajax-loader.gif?v=' + BUILD_VERSION; + loadingImg.src = PATH_PREFIX + '/static/img/ajax-loader.gif'; loadingImg.alt = 'Loading...'; loadingImg.className = 'prom_graph_loading'; this.graphTd.appendChild(loadingImg); diff --git a/web/ui/templates/status.html b/web/ui/templates/status.html index d2d55778fd..1a05907a36 100644 --- a/web/ui/templates/status.html +++ b/web/ui/templates/status.html @@ -54,7 +54,8 @@ {{range .Alertmanagers}} - {{.}} + {{/* Alertmanager URLs always have Scheme, Host and Path set */}} + {{.Scheme}}://{{.Host}}{{.Path}} {{end}} diff --git a/web/web.go b/web/web.go index 382965db3e..36e790b3b8 100644 --- a/web/web.go +++ b/web/web.go @@ -348,7 +348,7 @@ func (h *Handler) status(w http.ResponseWriter, r *http.Request) { Birth time.Time CWD string Version *PrometheusVersion - Alertmanagers []string + Alertmanagers []*url.URL }{ Birth: h.birth, CWD: h.cwd,