diff --git a/vendor/github.com/FMNSSun/libhash/fletcher/BUILD.bazel b/vendor/github.com/FMNSSun/libhash/fletcher/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..e06aacb2ef74f298c35c2a87de53057a84bd813b
--- /dev/null
+++ b/vendor/github.com/FMNSSun/libhash/fletcher/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = ["fletcher.go"],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/FMNSSun/libhash/fletcher",
+    importpath = "github.com/FMNSSun/libhash/fletcher",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/Masterminds/semver/BUILD.bazel b/vendor/github.com/Masterminds/semver/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..501de4ec1a18ecb59402f7b162965c56eb7e8786
--- /dev/null
+++ b/vendor/github.com/Masterminds/semver/BUILD.bazel
@@ -0,0 +1,19 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "collection.go",
+        "constraints.go",
+        "doc.go",
+        "error.go",
+        "magic.go",
+        "parse.go",
+        "range.go",
+        "union.go",
+        "version.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/Masterminds/semver",
+    importpath = "github.com/Masterminds/semver",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/Masterminds/vcs/BUILD.bazel b/vendor/github.com/Masterminds/vcs/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..25a38e72e1c0b651fd4486751f6709322a548bef
--- /dev/null
+++ b/vendor/github.com/Masterminds/vcs/BUILD.bazel
@@ -0,0 +1,18 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "bzr.go",
+        "errors.go",
+        "git.go",
+        "hg.go",
+        "repo.go",
+        "svn.go",
+        "vcs_local_lookup.go",
+        "vcs_remote_lookup.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/Masterminds/vcs",
+    importpath = "github.com/Masterminds/vcs",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/armon/go-radix/BUILD.bazel b/vendor/github.com/armon/go-radix/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..7f2d8cc3e915f7a0c611751b8241b96ebe8de8b6
--- /dev/null
+++ b/vendor/github.com/armon/go-radix/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = ["radix.go"],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/armon/go-radix",
+    importpath = "github.com/armon/go-radix",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/boltdb/bolt/BUILD.bazel b/vendor/github.com/boltdb/bolt/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..e44ac9afc0e1ddfc14210cb96827ed60647f39ca
--- /dev/null
+++ b/vendor/github.com/boltdb/bolt/BUILD.bazel
@@ -0,0 +1,38 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "bolt_386.go",
+        "bolt_amd64.go",
+        "bolt_arm.go",
+        "bolt_arm64.go",
+        "bolt_linux.go",
+        "bolt_openbsd.go",
+        "bolt_ppc64.go",
+        "bolt_ppc64le.go",
+        "bolt_s390x.go",
+        "bolt_unix.go",
+        "bolt_unix_solaris.go",
+        "bolt_windows.go",
+        "boltsync_unix.go",
+        "bucket.go",
+        "cursor.go",
+        "db.go",
+        "doc.go",
+        "errors.go",
+        "freelist.go",
+        "node.go",
+        "page.go",
+        "tx.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/boltdb/bolt",
+    importpath = "github.com/boltdb/bolt",
+    visibility = ["//visibility:public"],
+    deps = select({
+        "@io_bazel_rules_go//go/platform:solaris": [
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "//conditions:default": [],
+    }),
+)
diff --git a/vendor/github.com/davecgh/go-spew/spew/BUILD.bazel b/vendor/github.com/davecgh/go-spew/spew/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..2923b27f4f348b1e351a825e65bfe2ae51539fe4
--- /dev/null
+++ b/vendor/github.com/davecgh/go-spew/spew/BUILD.bazel
@@ -0,0 +1,18 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "bypass.go",
+        "bypasssafe.go",
+        "common.go",
+        "config.go",
+        "doc.go",
+        "dump.go",
+        "format.go",
+        "spew.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/davecgh/go-spew/spew",
+    importpath = "github.com/davecgh/go-spew/spew",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/go-yaml/yaml/BUILD.bazel b/vendor/github.com/go-yaml/yaml/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..5a950bd804e1e122e011eb13cb8c4582685cde91
--- /dev/null
+++ b/vendor/github.com/go-yaml/yaml/BUILD.bazel
@@ -0,0 +1,23 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "apic.go",
+        "decode.go",
+        "emitterc.go",
+        "encode.go",
+        "parserc.go",
+        "readerc.go",
+        "resolve.go",
+        "scannerc.go",
+        "sorter.go",
+        "writerc.go",
+        "yaml.go",
+        "yamlh.go",
+        "yamlprivateh.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/go-yaml/yaml",
+    importpath = "github.com/go-yaml/yaml",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/golang/dep/.codeclimate.yml b/vendor/github.com/golang/dep/.codeclimate.yml
deleted file mode 100644
index a1c11c89924b1e37dd7a933832a45fbbc2e01347..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/.codeclimate.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-version: "2"
-checks:
-  argument-count:
-    enabled: false
-  complex-logic:
-    enabled: false
-  file-lines:
-    enabled: false
-  method-complexity:
-    enabled: false
-  method-count:
-    enabled: false
-  method-lines:
-    enabled: false
-  nested-control-flow:
-    enabled: false
-  return-statements:
-    enabled: false
-  similar-code:
-    enabled: false
-  identical-code:
-    enabled: false
-plugins:
-  gofmt:
-    enabled: true
-  govet:
-    enabled: true
-  golint:
-    enabled: true
-exclude_paths:
-  - vendor/
-  - gps/_testdata
-  - cmd/dep/testdata
-  - testdata
-  - gps/internal/pb
diff --git a/vendor/github.com/golang/dep/.gitattributes b/vendor/github.com/golang/dep/.gitattributes
deleted file mode 100644
index d8df4ca60a61d207e8f0315d33a0be53ded1ee22..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/.gitattributes
+++ /dev/null
@@ -1,2 +0,0 @@
-# Prevent problems comparing golden files on Windows
-**/testdata/** text eol=lf
diff --git a/vendor/github.com/golang/dep/.github/CODEOWNERS b/vendor/github.com/golang/dep/.github/CODEOWNERS
deleted file mode 100644
index 603d915f7ab352eba87e668eb4ac6163d9b697f6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/.github/CODEOWNERS
+++ /dev/null
@@ -1,28 +0,0 @@
-# general
-* @sdboyer
-
-# init
-/cmd/dep/init*                          @carolynvs
-/cmd/dep/gopath_scanner*                @carolynvs
-/cmd/dep/root_analyzer*                 @carolynvs
-/cmd/dep/testdata/init                  @carolynvs
-/cmd/dep/testdata/harness_tests/init    @carolynvs
-/internal/importers                     @carolynvs
-/analyzer*                              @carolynvs
-/testdata/analyzer                      @carolynvs
-/internal/feedback                      @carolynvs
-
-# ensure
-/cmd/dep/ensure*                          @ibrasho
-/cmd/dep/testdata/harness_tests/ensure**  @ibrasho
-
-# status
-/cmd/dep/status*                          @darkowlzz
-/cmd/dep/testdata/harness_tests/status**  @darkowlzz
-/cmd/dep/graphviz*                        @darkowlzz
-
-# gps components
-/gps/source*     @jmank88
-/gps/constraint* @jmank88
-/gps/version*    @jmank88
-/gps/vcs*        @jmank88
diff --git a/vendor/github.com/golang/dep/.github/ISSUE_TEMPLATE.md b/vendor/github.com/golang/dep/.github/ISSUE_TEMPLATE.md
deleted file mode 100644
index 2d4c7ac4c6653748cc5fc31dfb80a7c38d0dee89..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/.github/ISSUE_TEMPLATE.md
+++ /dev/null
@@ -1,24 +0,0 @@
-<!--
-
-Thanks for filing an issue! If this is a question or feature request, just delete
-everything here and write out the request, providing as much context as you can.
-
--->
-
-### What version of `dep` are you using (`dep version`)?
-<!--
-  If you installed `dep` via `go get`, report the version instead with
-  `cd $GOPATH/src/github.com/golang/dep && git describe --tags`
--->
-
-### What `dep` command did you run?
-
-<!--
-
-Paste the output of the commands you ran in here, making sure to pass -v for maximum context.
-
--->
-
-### What did you expect to see?
-
-### What did you see instead?
diff --git a/vendor/github.com/golang/dep/.github/PULL_REQUEST_TEMPLATE.md b/vendor/github.com/golang/dep/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index c0668911ffb9ace05c6dfac409aecbb3d3b747b4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,23 +0,0 @@
-<!--
-Work-in-progress PRs are welcome as a way to get early feedback - just prefix
-the title with [WIP].
-
-Add the change in the changelog (except for test changes and docs updates).
-Please edit CHANGELOG.md and add the change under the appropriate category (NEW
-FEATURES, IMPROVEMENTS & BUG FIXES) along with the PR number.
--->
-
-### What does this do / why do we need it?
-
-### What should your reviewer look out for in this PR?
-
-### Do you need help or clarification on anything?
-
-### Which issue(s) does this PR fix?
-
-<!--
-
-fixes #
-fixes #
-
--->
diff --git a/vendor/github.com/golang/dep/.gitignore b/vendor/github.com/golang/dep/.gitignore
deleted file mode 100644
index 433ced5de1ed259e2b79525652a552f833210894..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/.gitignore
+++ /dev/null
@@ -1,11 +0,0 @@
-# dep project generated files to ignore
-#  if you want to ignore files created by your editor/tools,
-#  please consider a global .gitignore https://help.github.com/articles/ignoring-files
-#  please do not open a pull request to add something created by your editor or tools
-/dep
-/testdep
-/dep.exe
-/licenseok
-/profile.out
-/coverage.txt
-release/
diff --git a/vendor/github.com/golang/dep/.travis.yml b/vendor/github.com/golang/dep/.travis.yml
deleted file mode 100644
index 017f65f63a764a6580b621a3f62ac07e8dae6743..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/.travis.yml
+++ /dev/null
@@ -1,87 +0,0 @@
-language: go
-sudo: false
-notifications:
-  email: false
-jobs:
-  include:
-    - stage: test
-      go_import_path: github.com/golang/dep
-      install:
-        - make get-deps
-        - npm install -g codeclimate-test-reporter
-      env:
-        - DEPTESTBYPASS501=1
-      os: linux
-      go: 1.10.x
-      script:
-        - make validate test
-        - ./hack/coverage.bash
-      after_success:
-        - codeclimate-test-reporter < coverage.txt
-    # YAML alias, for settings shared across the simpler builds
-    - &simple-test
-      go: 1.9.x
-      stage: test
-      go_import_path: github.com/golang/dep
-      install: skip
-      env:
-        - DEPTESTBYPASS501=1
-      script: make test
-    - <<: *simple-test
-      go: tip
-    - <<: *simple-test
-      os: osx
-      go: 1.10.x
-      install:
-        # brew takes horribly long to update itself despite the above caching
-        # attempt; only bzr install if it's not on the $PATH
-        - test $(which bzr) || brew install bzr
-      env:
-        - HOMEBREW_NO_AUTO_UPDATE=1
-        - DEPTESTBYPASS501=1
-      script:
-        # OSX as of El Capitan sets an exit trap that interacts poorly with how
-        # travis seems to spawn these shells; if set -e is set, then it can cause
-        # build failures. We're not doing that here, but retain the trap statement
-        # for future safety.
-        # Related: https://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
-        - trap EXIT
-        - make test
-    - go: 1.10.x
-      # Run on OS X so that we get a CGO-enabled binary for this OS; see
-      # https://github.com/golang/dep/issues/1838 for more details.
-      os: osx
-      stage: deploy
-      go_import_path: github.com/golang/dep
-      install: skip
-      script: skip
-      before_deploy:
-        - ./hack/build-all.bash
-      deploy:
-        - provider: releases
-          api_key:
-            secure: fL9GX11J3JLizEBTPZHN32wuAT91eAJsGl0kjlAdIc6Lb/9UCe1XZGgFnpQFN4qo/S+omhHBDbM6Ty1xhNy7xmjDecpQGDU8Rmap9Oll0TuxqMigG+njOuPp5VUYPofPP0PGKdxAcYg+KaFM7x0o2rK+qA046NHwo2gH1BbE+bn55TZglEajEfc8j9iX4jt96KC7zlu+WiKArLmfUtlrI8m8ZYgbYcvFmlYjeCiEqlNhvNL59ejug9Rl0PLtPbamqVXkGLafYtekgPCb4WSxBiCt8pq5Rb5svk9YcdXpiaWQhZjMPAuKN6BrmN2lw1PiXzADUG5fjvNc8eo2HY70GD2utU9cAsY8VIafhoH5n6uM1WI8MHwDfd7P1PiQA3ZGQ8CPwk4q/8HSfQU9ap7vZgSF63pTIbtlviyIG67orOJE9PWWncl9olYM946UylZu6m3hWI/rmJxOeJ1UJjym/3GNPMRfKubaGhV/TyRdM0bKX4M0cXHU6k/ESVFupGXdKRt4RpvkD4/1Km6b2OShW6PNI+ifFspnJr7obkI7dm7ubySdnNz4lMv9WWymxRpMVc8hUAhuoDvXeZJq7pSnkjBEWDxIRoTkA93CU3/Rf7MFYCJMnGSqjcxWUpIfCAk2/r4BqL9NQnqBvvVt+MYi64QaD5n7ZF3dVbr6HZ2zjSU=
-          file:
-            - release/dep-linux-amd64
-            - release/dep-linux-amd64.sha256
-            - release/dep-darwin-amd64
-            - release/dep-darwin-amd64.sha256
-            - release/dep-freebsd-amd64
-            - release/dep-freebsd-amd64.sha256
-            - release/dep-windows-amd64.exe
-            - release/dep-windows-amd64.exe.sha256
-            - release/dep-linux-386
-            - release/dep-linux-386.sha256
-            - release/dep-darwin-386
-            - release/dep-darwin-386.sha256
-            - release/dep-freebsd-386
-            - release/dep-freebsd-386.sha256
-            - release/dep-windows-386.exe
-            - release/dep-windows-386.exe.sha256
-          skip_cleanup: true
-          on:
-            repo: golang/dep
-            branch: master
-            tags: true
-addons:
-  ssh_known_hosts: github.com
diff --git a/vendor/github.com/golang/dep/AUTHORS b/vendor/github.com/golang/dep/AUTHORS
deleted file mode 100644
index 15167cd746c560e5b3d3b233a169aa64d3e9101e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/AUTHORS
+++ /dev/null
@@ -1,3 +0,0 @@
-# This source code refers to The Go Authors for copyright purposes.
-# The master list of authors is in the main Go distribution,
-# visible at http://tip.golang.org/AUTHORS.
diff --git a/vendor/github.com/golang/dep/CHANGELOG.md b/vendor/github.com/golang/dep/CHANGELOG.md
deleted file mode 100644
index dbe6af731a0e65fa982e5419f4ec30326258d6e5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/CHANGELOG.md
+++ /dev/null
@@ -1,152 +0,0 @@
-# (next version)
-
-# v0.5.0
-
-NEW FEATURES:
-
-* Add CI tests against go1.10. Drop support for go1.8. ([#1620](https://github.com/golang/dep/pull/1620)).
-* Added `install.sh` script. ([#1533](https://github.com/golang/dep/pull/1533)).
-* List out of date projects in dep status ([#1553](https://github.com/golang/dep/pull/1553)).
-* Enabled opt-in persistent caching via `DEPCACHEAGE` env var. ([#1711](https://github.com/golang/dep/pull/1711)).
-* Allow `DEPPROJECTROOT` [environment variable](https://golang.github.io/dep/docs/env-vars.html#depprojectroot) to supersede GOPATH deduction and explicitly set the current project's [root](https://golang.github.io/dep/docs/glossary.html#project-root) ([#1883](https://github.com/golang/dep/pull/1883)).
-* `dep ensure` now explains what changes to the code or Gopkg.toml have induced solving ([#1912](https://github.com/golang/dep/pull/1912)).
-* Hash digests of vendor contents are now stored in `Gopkg.lock`, and the contents of vendor are only rewritten on change or hash mismatch ([#1912](https://github.com/golang/dep/pull/1912)).
-* Added support for ppc64/ppc64le.
-* New subcommand `dep check` quickly reports if imports, Gopkg.toml, Gopkg.lock, and vendor are out of sync ([#1932](https://github.com/golang/dep/pull/1932)).
-
-BUG FIXES:
-
-* Excise certain git-related environment variables. ([#1872](https://github.com/golang/dep/pull/1872))
-
-IMPROVEMENTS:
-
-* Add template operations support in dep status template output ([#1549](https://github.com/golang/dep/pull/1549)).
-* Reduce network access by trusting local source information and only pulling from upstream when necessary ([#1250](https://github.com/golang/dep/pull/1250)).
-* Update our dependency on Masterminds/semver to follow upstream again now that [Masterminds/semver#67](https://github.com/Masterminds/semver/pull/67) is merged([#1792](https://github.com/golang/dep/pull/1792)).
-* `inputs-digest` was removed from `Gopkg.lock` ([#1912](https://github.com/golang/dep/pull/1912)).
-* Hash digests of vendor contents are now stored in `Gopkg.lock`, and the contents of vendor are only rewritten on change or hash mismatch ([#1912](https://github.com/golang/dep/pull/1912)).
-* Don't exclude `Godeps` folder ([#1822](https://github.com/golang/dep/issues/1822)).
-* Add project-package relationship graph support in graphviz ([#1588](https://github.com/golang/dep/pull/1588)).
-* Limit concurrency of `dep status` to avoid hitting open file limits ([#1923](https://github.com/golang/dep/issue/1923)).
-
-WIP:
-* Enable importing external configuration from dependencies during init (#1277). This is feature flagged and disabled by default.
-
-# v0.4.1
-
-NEW FEATURES:
-
-BUG FIXES:
-
-* Fix per-project prune option handling ([#1570](https://github.com/golang/dep/pull/1570))
-
-# v0.4.0
-
-NEW FEATURES:
-
-* Absorb `dep prune` into `dep ensure`. ([#944](https://github.com/golang/dep/issues/944))
-* Add support for importing from [glock](https://github.com/robfig/glock) based projects. ([#1422](https://github.com/golang/dep/pull/1422))
-* Add support for importing from [govendor](https://github.com/kardianos/govendor) based projects. ([#815](https://github.com/golang/dep/pull/815))
-* Allow override of cache directory location using environment variable `DEPCACHEDIR`. ([#1234](https://github.com/golang/dep/pull/1234))
-* Add support for template output in `dep status`. ([#1389](https://github.com/golang/dep/pull/1389))
-* Each element in a multi-item TOML array is output on its own line. ([#1461](https://github.com/golang/dep/pull/1461))
-
-BUG FIXES:
-
-* Releases targeting Windows now have a `.exe` suffix. ([#1291](https://github.com/golang/dep/pull/1291))
-* Adaptively recover from dirty and corrupted git repositories in cache. ([#1279](https://github.com/golang/dep/pull/1279))
-* Suppress git password prompts in more places. ([#1357](https://github.com/golang/dep/pull/1357))
-* Fix `-no-vendor` flag for `ensure -update`. ([#1361](https://github.com/golang/dep/pull/1361))
-* Validate `git ls-remote` output and ignore all malformed lines. ([#1379](https://github.com/golang/dep/pull/1379))
-* Support [gopkg.in version zero](http://labix.org/gopkg.in#VersionZero). ([#1243](https://github.com/golang/dep/pull/1243))
-* Fix how dep status print revision constraints. ([#1421](https://github.com/golang/dep/pull/1421))
-* Add optional `-v` flag to ensure sub command's syntax. ([#1458](https://github.com/golang/dep/pull/1458))
-* Allow URLs containing ports in `Gopkg.toml` `source` fields. ([#1509](https://github.com/golang/dep/pull/1509))
-
-IMPROVEMENTS:
-
-* Log as dependencies are pre-fetched during dep init. ([#1176](https://github.com/golang/dep/pull/1176))
-* Make the gps package importable. ([#1349](https://github.com/golang/dep/pull/1349))
-* Improve file copy performance by not forcing a file sync. ([#1408](https://github.com/golang/dep/pull/1408))
-* Skip empty constraints during import. ([#1414](https://github.com/golang/dep/pull/1349))
-* Handle errors when writing status output. ([#1420](https://github.com/golang/dep/pull/1420))
-* Add constraint for locked projects in `dep status`. ([#962](https://github.com/golang/dep/pull/962))
-* Make external config importers error tolerant. ([#1315](https://github.com/golang/dep/pull/1315))
-* Show LATEST and VERSION as the same type in status. ([#1515](https://github.com/golang/dep/pull/1515))
-* Warn when [[constraint]] rules that will have no effect. ([#1534](https://github.com/golang/dep/pull/1534))
-
-# v0.3.2
-
-NEW FEATURES:
-
-* Add support for importing from [gvt](https://github.com/FiloSottile/gvt)
-and [gb](https://godoc.org/github.com/constabulary/gb/cmd/gb-vendor).
-([#1149](https://github.com/golang/dep/pull/1149))
-* Wildcard ignore support. ([#1156](https://github.com/golang/dep/pull/1156))
-* Disable SourceManager lock by setting `DEPNOLOCK` environment variable.
-([#1206](https://github.com/golang/dep/pull/1206))
-* `dep ensure -no-vendor -dry-run` now exits with an error when changes would
-have to be made to `Gopkg.lock`. This is useful for CI. ([#1256](https://github.com/golang/dep/pull/1256))
-
-BUG FIXES:
-
-* gps: Fix case mismatch error with multiple dependers. ([#1233](https://github.com/golang/dep/pull/1233))
-* Skip broken `vendor` symlink rather than returning an error. ([#1191](https://github.com/golang/dep/pull/1191))
-* Fix `status` shows incorrect reason for lock mismatch when ignoring packages.
-([#1216](https://github.com/golang/dep/pull/1216))
-
-IMPROVEMENTS:
-
-* Allow `dep ensure -add` and `-update` when lock is out-of-sync. ([#1225](https://github.com/golang/dep/pull/1225))
-* gps: vcs: Dedupe git version list ([#1212](https://github.com/golang/dep/pull/1212))
-* gps: Add prune functions to gps. ([#1020](https://github.com/golang/dep/pull/1020))
-* gps: Skip broken vendor symlinks. ([#1191](https://github.com/golang/dep/pull/1191))
-* `dep ensure -add` now concurrently fetches the source and adds the projects.
-([#1218](https://github.com/golang/dep/pull/1218))
-* File name case check is now performed on `Gopkg.toml` and `Gopkg.lock`.
-([#1114](https://github.com/golang/dep/pull/1114))
-* gps: gps now supports pruning. ([#1020](https://github.com/golang/dep/pull/1020))
-* `dep ensure -update` now concurrently validates the passed project arguments.
-Improving performance when updating dependencies with `-update`. ([#1175](https://github.com/golang/dep/pull/1175))
-* `dep status` now concurrently fetches repo info. Improving status performance.
-([#1135](https://github.com/golang/dep/pull/1135))
-* gps: Add SourceURLsForPath() to SourceManager. ([#1166](https://github.com/golang/dep/pull/1166))
-* gps: Include output in error. ([#1180](https://github.com/golang/dep/pull/1180))
-
-WIP:
-
-* gps: Process canonical import paths. ([#1017](https://github.com/golang/dep/pull/1017))
-* gps: Persistent cache. ([#1127](https://github.com/golang/dep/pull/1127), [#1215](https://github.com/golang/dep/pull/1215))
-
-
-# v0.3.1
-
-* gps: Add satisfiability check for case variants ([#1079](https://github.com/golang/dep/pull/1079))
-* Validate Project Roots in manifest ([#1116](https://github.com/golang/dep/pull/1116))
-* gps: Properly separate sources for different gopkg.in versions & github
-([#1132](https://github.com/golang/dep/pull/1132))
-* gps: Add persistent BoltDB cache ([#1098](https://github.com/golang/dep/pull/1098))
-* gps: Increase default subcommand timeout to 30s ([#1087](https://github.com/golang/dep/pull/1087))
-* Fix importer [issue](https://github.com/golang/dep/issues/939) where the
-importer would drop the imported version of a project ([#1100](https://github.com/golang/dep/pull/1100))
-* Import analyzer now always uses the same name, fixing the lock mismatch
-immediately after dep init issue ([#1099](https://github.com/golang/dep/pull/1099))
-* Add support for importing from [govend](https://github.com/govend/govend)
-(#1040) and [LK4D4/vndr](https://github.com/LK4D4/vndr) ([#978](https://github.com/golang/dep/pull/978)) based projects
-* gps: gps no longer assumes that every git repo has a HEAD ([#1053](https://github.com/golang/dep/pull/1053))
-* `os.Chmod` failures on Windows due to long path length has been fixed ([#925](https://github.com/golang/dep/pull/925))
-* Add `version` command ([#996](https://github.com/golang/dep/pull/996))
-* Drop support for building with go1.7 ([#714](https://github.com/golang/dep/pull/714))
-* gps: Parse abbreviated git revisions ([#1027](https://github.com/golang/dep/pull/1027))
-* gps: Parallelize writing dep tree ([#1021](https://github.com/golang/dep/pull/1021))
-* `status` now shows the progress in verbose mode ([#1009](https://github.com/golang/dep/pull/1009), [#1037](https://github.com/golang/dep/pull/1037))
-* Fix empty `Constraint` and `Version` in `status` json output ([#976](https://github.com/golang/dep/pull/976))
-* `status` table output now shows override constraints ([#918](https://github.com/golang/dep/pull/918))
-* gps: Display warning message every 15 seconds when lockfile is busy ([#958](https://github.com/golang/dep/pull/958))
-* gps: Hashing directory tree and tree verification ([#959](https://github.com/golang/dep/pull/959))
-* `ensure` now has `-vendor-only` mode to populate vendor/ without updating
-Gopkg.lock ([#954](https://github.com/golang/dep/pull/954))
-* Use fork of Masterminds/semver until
-Masterminds/semver [issue#59](https://github.com/Masterminds/semver/issues/59)
-is fixed upstream ([#938](https://github.com/golang/dep/pull/938))
-* gps: Ensure packages are deducible before attempting to solve ([#697](https://github.com/golang/dep/pull/697))
diff --git a/vendor/github.com/golang/dep/CODE_OF_CONDUCT.md b/vendor/github.com/golang/dep/CODE_OF_CONDUCT.md
deleted file mode 100644
index 660ee848e25fb13d9815ee03a5bb721b3cc3eb6f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/CODE_OF_CONDUCT.md
+++ /dev/null
@@ -1,74 +0,0 @@
-# Contributor Covenant Code of Conduct
-
-## Our Pledge
-
-In the interest of fostering an open and welcoming environment, we as
-contributors and maintainers pledge to making participation in our project and
-our community a harassment-free experience for everyone, regardless of age, body
-size, disability, ethnicity, gender identity and expression, level of
-experience, nationality, personal appearance, race, religion, or sexual identity
-and orientation.
-
-## Our Standards
-
-Examples of behavior that contributes to creating a positive environment
-include:
-
-* Using welcoming and inclusive language
-* Being respectful of differing viewpoints and experiences
-* Gracefully accepting constructive criticism
-* Focusing on what is best for the community
-* Showing empathy towards other community members
-
-Examples of unacceptable behavior by participants include:
-
-* The use of sexualized language or imagery and unwelcome sexual attention or
-  advances
-* Trolling, insulting/derogatory comments, and personal or political attacks
-* Public or private harassment
-* Publishing others' private information, such as a physical or electronic
-  address, without explicit permission
-* Other conduct which could reasonably be considered inappropriate in a
-  professional setting
-
-## Our Responsibilities
-
-Project maintainers are responsible for clarifying the standards of acceptable
-behavior and are expected to take appropriate and fair corrective action in
-response to any instances of unacceptable behavior.
-
-Project maintainers have the right and responsibility to remove, edit, or reject
-comments, commits, code, wiki edits, issues, and other contributions that are
-not aligned to this Code of Conduct, or to ban temporarily or permanently any
-contributor for other behaviors that they deem inappropriate, threatening,
-offensive, or harmful.
-
-## Scope
-
-This Code of Conduct applies both within project spaces and in public spaces
-when an individual is representing the project or its community. Examples of
-representing a project or community include using an official project e-mail
-address, posting via an official social media account, or acting as an appointed
-representative at an online or offline event. Representation of a project may be
-further defined and clarified by project maintainers.
-
-## Enforcement
-
-Instances of abusive, harassing, or otherwise unacceptable behavior may be
-reported by contacting the project team at sam (at) samboyer.org. All complaints
-will be reviewed and investigated and will result in a response that is deemed
-necessary and appropriate to the circumstances. The project team is obligated to
-maintain confidentiality with regard to the reporter of an incident. Further
-details of specific enforcement policies may be posted separately.
-
-Project maintainers who do not follow or enforce the Code of Conduct in good
-faith may face temporary or permanent repercussions as determined by other
-members of the project's leadership.
-
-## Attribution
-
-This Code of Conduct is adapted from the [Contributor Covenant][homepage],
-version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
-
-[homepage]: http://contributor-covenant.org
-[version]: http://contributor-covenant.org/version/1/4/
diff --git a/vendor/github.com/golang/dep/CONTRIBUTING.md b/vendor/github.com/golang/dep/CONTRIBUTING.md
deleted file mode 100644
index 7251aaea72422bf76e8fe9f3832b1ba3d7a7dbca..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/CONTRIBUTING.md
+++ /dev/null
@@ -1,122 +0,0 @@
-# Contributing to `dep`
-
-`dep` is an open source project.
-
-It is the work of hundreds of contributors. We appreciate your help!
-
-Keep an eye on the [Roadmap](https://github.com/golang/dep/wiki/Roadmap) for a summary of where the project is, and where we're headed.
-
-## Filing issues
-
-Please check the existing issues and [FAQ](docs/FAQ.md) to see if your feedback has already been reported.
-
-General questions should go to the [golang-nuts mailing list](https://groups.google.com/group/golang-nuts) or the [Gophers Slack #vendor channel](https://gophers.slack.com/messages/C0M5YP9LN/) instead of the issue tracker.
-The gophers there will answer or ask you to file an issue if you've tripped over a bug.
-For an invite to the Slack channel, [fill out this form](https://invite.slack.golangbridge.org/).
-
-When [filing an issue](https://github.com/golang/dep/issues/new), make sure to answer these five questions:
-
-1. What version of Go (`go version`) and `dep` (`git describe --tags`) are you using??
-3. What `dep` command did you run?
-4. What did you expect to see?
-5. What did you see instead?
-
-## Contributing code
-
-Let us know if you are interested in working on an issue by leaving a comment
-on the issue in GitHub. This helps avoid multiple people unknowingly 
-working on the same issue.
-
-Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
-before sending patches.
-
-The
-[help wanted](https://github.com/golang/dep/issues?q=is%3Aissue+is%3Aopen+label%3A%22help%20wanted%22)
-label highlights issues that are well-suited for folks to jump in on. The
-[good first issue](https://github.com/golang/dep/issues?q=is%3Aissue+is%3Aopen+label%3A%22good%20first%20issue%22)
-label further identifies issues that are particularly well-sized for newcomers.
-
-Unless otherwise noted, the `dep` source files are distributed under
-the BSD-style license found in the LICENSE file.
-
-All submissions, including submissions by project members, require review. We
-use GitHub pull requests for this purpose. Consult [GitHub Help] for more
-information on using pull requests.
-
-We check `dep`'s own `vendor` directory into git. For any PR to `dep` where you're
-updating `Gopkg.toml`, make sure to run `dep ensure` and commit all changes to `vendor`.
-
-[GitHub Help]: https://help.github.com/articles/about-pull-requests/
-
-## Contributing to the Documentation
-
-All the docs reside in the [`docs/`](docs/) directory. For any relatively small
-change - like fixing a typo or rewording something - the easiest way to
-contribute is directly on Github, using their web code editor.
-
-For relatively big change - changes in the design, links or adding a new page -
-the docs site can be run locally. We use [docusaurus](http://docusaurus.io/) to
-generate the docs site. [`website/`](website/) directory contains all the
-docusaurus configurations. To run the site locally, `cd` into `website/`
-directory and run `npm i --only=dev` to install all the dev dependencies. Then
-run `npm start` to start serving the site. By default, the site would be served
-at http://localhost:3000.
-
-## Contributor License Agreement
-
-Contributions to this project must be accompanied by a Contributor License
-Agreement. You (or your employer) retain the copyright to your contribution,
-this simply gives us permission to use and redistribute your contributions as
-part of the project. Head over to <https://cla.developers.google.com/> to see
-your current agreements on file or to sign a new one.
-
-You generally only need to submit a CLA once, so if you've already submitted one
-(even if it was for a different project), you probably don't need to do it
-again.
-
-## Maintainer's Guide
-
-`dep` has subsystem maintainers; this guide is intended for them in performing their work as a maintainer.
-
-### General guidelines
-
-* _Be kind, respectful, and inclusive_. Really live that [CoC](https://github.com/golang/dep/blob/master/CODE_OF_CONDUCT.md). We've developed a reputation as one of the most welcoming and supportive project environments in the Go community, and we want to keep that up!
-* The lines of responsibility between maintainership areas can be fuzzy. Get to know your fellow maintainers - it's important to work _with_ them when an issue falls in this grey area.
-* Remember, the long-term goal of `dep` is to disappear into the `go` toolchain. That's going to be a challenging process, no matter what. Minimizing that eventual difficulty should be a guiding light for all your decisions today.
-  * Try to match the toolchain's assumptions as closely as possible ([example](https://github.com/golang/dep/issues/564#issuecomment-300994599)), and avoid introducing new rules the toolchain would later have to incorporate.
-  * Every new flag or option in the metadata files is more exposed surface area that demands conversion later. Only add these with a clear design plan.
-  * `dep` is experimental, but increasingly only on a larger scale. Experiments need clear hypotheses and parameters for testing - nothing off-the-cuff.
-* Being a maintainer doesn't mean you're always right. Admitting when you've made a mistake keeps the code flowing, the environment health, and the respect level up.
-* It's fine if you need to step back from maintainership responsibilities - just, please, don't fade away! Let other maintainers know what's going on.
-
-### Issue management
-
-* We use [Zenhub](https://www.zenhub.com) to manage the queue, in addition to what we do with labels.
-  * You will need to install [ZenHub extension](https://www.zenhub.com/extension) to your browser to show the board.
-  * Pipelines, and [the board](https://github.com/golang/dep#boards) are one thing we try to utilize:
-    * **New Issues Pipeline**: When someone creates a new issue, it goes here first. Keep an eye out for issues that fall into your area. Add labels to them, and if it's something we should do, put it in the `Backlog` pipeline. If you aren't sure, throw it in the `Icebox`. It helps to sort this pipeline by date.
-    * **Icebox Pipeline**: Issues that we aren't immediately closing but aren't really ready to be prioritized and started on. It's not a wontfix bucket, but a "not sure if we should/can fix right now" bucket.
-    * **Backlog Pipeline**: Issues that we know we want to tackle. You can drag/drop up and down to prioritize issues.
-  * Marking dependencies/blockers is also quite useful where appropriate; please do that.
-  * We use epics and milestones in roughly the same way (because OSS projects don't have real sprints). Epics should be duplicated as milestones; if there's a main epic issue, it should contain a checklist of the relevant issues to complete it.
-* The `area:` labels correspond to maintainership areas. Apply yours to any issues or PRs that fall under your purview. It's to be expected that multiple `area:` labels may be applied to a single issue.
-* The [`help wanted`](https://github.com/golang/dep/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) and [`good first issue`](https://github.com/golang/dep/labels/good%20first%20issue) labels are two of our most important tools for making the project accessible to newcomers - a key goal for our community. Here's how to use them well.
-  * `good-first-pr` should be applied when there's a very straightforward, self-contained task that is very unlikely to have any hidden complexity. The real purpose of these is to provide a "chink in the armor", providing newcomers a lens through which to start understanding the project.
-  * `help-wanted` should be applied to issues where there's a clear, stated goal, there is at most one significant question that needs answering, and it looks like the implementation won't be inordinately difficult, or disruptive to other parts of the system.
-    * `help-wanted` should also be applied to all `good-first-pr` issues - it's duplicative, but not doing so seems unfriendly.
-
-
-### Pull Requests
-
-* Try to make, and encourage, smaller pull requests.
-* [No is temporary. Yes is forever.](https://blog.jessfraz.com/post/the-art-of-closing/)
-* Long-running feature branches should generally be avoided. Discuss it with other maintainers first.
-* Unless it's trivial, don't merge your own PRs - ask another maintainer.
-* Commit messages should follow [Tim Pope's rules](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
-* Checklist for merging PRs:
-  * Does the PR pass [the code review comments](https://github.com/golang/go/wiki/CodeReviewComments)? (internalize these rules!)
-  * Are there tests to cover new or changed behavior? Prefer reliable tests > no tests > flaky tests.
-  * Does the first post in the PR contain "Fixes #..." text for any issues it resolves?
-  * Are any necessary follow-up issues _already_ posted, prior to merging?
-  * Does this change entail the updating of any docs?
-     * For docs kept in the repo, e.g. FAQ.md, docs changes _must_ be submitted as part of the same PR.
diff --git a/vendor/github.com/golang/dep/CONTRIBUTORS b/vendor/github.com/golang/dep/CONTRIBUTORS
deleted file mode 100644
index 1c4577e9680611383f46044d17fa343a96997c3c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/CONTRIBUTORS
+++ /dev/null
@@ -1,3 +0,0 @@
-# This source code was written by the Go contributors.
-# The master list of contributors is in the main Go distribution,
-# visible at http://tip.golang.org/CONTRIBUTORS.
diff --git a/vendor/github.com/golang/dep/Gopkg.lock b/vendor/github.com/golang/dep/Gopkg.lock
deleted file mode 100644
index 5dbae0e581f25ea43f32e48973464c47591e2324..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/Gopkg.lock
+++ /dev/null
@@ -1,134 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "2.x"
-  digest = "1:ee2887fecb4d923fa90f8dd9cf33e876bf9260fed62f2ca5a5c3f41b4eb07683"
-  name = "github.com/Masterminds/semver"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "24642bd0573145a5ee04f9be773641695289be46"
-
-[[projects]]
-  digest = "1:442020d26d1f891d5014cae4353b6ff589562c2b303504627de3660adf3fb217"
-  name = "github.com/Masterminds/vcs"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "3084677c2c188840777bff30054f2b553729d329"
-  version = "v1.11.1"
-
-[[projects]]
-  branch = "master"
-  digest = "1:60861e762bdbe39c4c7bf292c291329b731c9925388fd41125888f5c1c595feb"
-  name = "github.com/armon/go-radix"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "4239b77079c7b5d1243b7b4736304ce8ddb6f0f2"
-
-[[projects]]
-  digest = "1:a12d94258c5298ead75e142e8001224bf029f302fed9e96cd39c0eaf90f3954d"
-  name = "github.com/boltdb/bolt"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "2f1ce7a837dcb8da3ec595b1dac9d0632f0f99e8"
-  version = "v1.3.1"
-
-[[projects]]
-  digest = "1:9f35c1344b56e5868d511d231f215edd0650aa572664f856444affdd256e43e4"
-  name = "github.com/golang/protobuf"
-  packages = ["proto"]
-  pruneopts = "NUT"
-  revision = "925541529c1fa6821df4e44ce2723319eb2be768"
-  version = "v1.0.0"
-
-[[projects]]
-  digest = "1:f5169729244becc423886eae4d72547e28ac3f13f861bed8a9d749bc7238a1c3"
-  name = "github.com/jmank88/nuts"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "8b28145dffc87104e66d074f62ea8080edfad7c8"
-  version = "v0.3.0"
-
-[[projects]]
-  branch = "master"
-  digest = "1:01af3a6abe28784782680e1f75ef8767cfc5d4b230dc156ff7eb8db395cbbfd2"
-  name = "github.com/nightlyone/lockfile"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "e83dc5e7bba095e8d32fb2124714bf41f2a30cb5"
-
-[[projects]]
-  digest = "1:51ea800cff51752ff68e12e04106f5887b4daec6f9356721238c28019f0b42db"
-  name = "github.com/pelletier/go-toml"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "c01d1270ff3e442a8a57cddc1c92dc1138598194"
-  version = "v1.2.0"
-
-[[projects]]
-  digest = "1:5cf3f025cbee5951a4ee961de067c8a89fc95a5adabead774f82822efabab121"
-  name = "github.com/pkg/errors"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "645ef00459ed84a119197bfb8d8205042c6df63d"
-  version = "v0.8.0"
-
-[[projects]]
-  branch = "master"
-  digest = "1:abb4b60c28323cde32c193ce6083bb600fac462d1780cf83461b4c23ed5ce904"
-  name = "github.com/sdboyer/constext"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "836a144573533ea4da4e6929c235fd348aed1c80"
-
-[[projects]]
-  branch = "master"
-  digest = "1:6ad2104db8f34b8656382ef0a7297b9a5cc42e7bdce95d968e02b92fc97470d1"
-  name = "golang.org/x/net"
-  packages = ["context"]
-  pruneopts = "NUT"
-  revision = "66aacef3dd8a676686c7ae3716979581e8b03c47"
-
-[[projects]]
-  branch = "master"
-  digest = "1:39ebcc2b11457b703ae9ee2e8cca0f68df21969c6102cb3b705f76cca0ea0239"
-  name = "golang.org/x/sync"
-  packages = ["errgroup"]
-  pruneopts = "NUT"
-  revision = "f52d1811a62927559de87708c8913c1650ce4f26"
-
-[[projects]]
-  branch = "master"
-  digest = "1:51912e607c5e28a89fdc7e41d3377b92086ab7f76ded236765dbf98d0a704c5d"
-  name = "golang.org/x/sys"
-  packages = ["unix"]
-  pruneopts = "NUT"
-  revision = "bb24a47a89eac6c1227fbcb2ae37a8b9ed323366"
-
-[[projects]]
-  branch = "v2"
-  digest = "1:13e704c08924325be00f96e47e7efe0bfddf0913cdfc237423c83f9b183ff590"
-  name = "gopkg.in/yaml.v2"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "d670f9405373e636a5a2765eea47fac0c9bc91a4"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/Masterminds/semver",
-    "github.com/Masterminds/vcs",
-    "github.com/armon/go-radix",
-    "github.com/boltdb/bolt",
-    "github.com/golang/protobuf/proto",
-    "github.com/jmank88/nuts",
-    "github.com/nightlyone/lockfile",
-    "github.com/pelletier/go-toml",
-    "github.com/pkg/errors",
-    "github.com/sdboyer/constext",
-    "golang.org/x/sync/errgroup",
-    "gopkg.in/yaml.v2",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/Gopkg.toml b/vendor/github.com/golang/dep/Gopkg.toml
deleted file mode 100644
index c0be92e3f47d798189fc304392cf693b60f62e0d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/Gopkg.toml
+++ /dev/null
@@ -1,28 +0,0 @@
-[[constraint]]
-  name = "github.com/Masterminds/semver"
-  branch = "2.x"
-
-[[constraint]]
-  name = "github.com/Masterminds/vcs"
-  version = "1.11.0"
-
-[[constraint]]
-  name = "github.com/pelletier/go-toml"
-  version = "1.1.0"
-
-[[constraint]]
-  name = "github.com/pkg/errors"
-  version = "0.8.0"
-
-[[constraint]]
-  name = "github.com/boltdb/bolt"
-  version = "1.0.0"
-
-[[constraint]]
-  name = "github.com/jmank88/nuts"
-  version = "0.3.0"
-
-[prune]
-  non-go = true
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/LICENSE b/vendor/github.com/golang/dep/LICENSE
deleted file mode 100644
index a2dd15faf469eeca454eb7a47341568f0ac3e504..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/LICENSE
+++ /dev/null
@@ -1,27 +0,0 @@
-Copyright (c) 2014 The Go Authors. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
-   * Redistributions of source code must retain the above copyright
-notice, this list of conditions and the following disclaimer.
-   * Redistributions in binary form must reproduce the above
-copyright notice, this list of conditions and the following disclaimer
-in the documentation and/or other materials provided with the
-distribution.
-   * Neither the name of Google Inc. nor the names of its
-contributors may be used to endorse or promote products derived from
-this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/vendor/github.com/golang/dep/MAINTAINERS.md b/vendor/github.com/golang/dep/MAINTAINERS.md
deleted file mode 100644
index 1ed4d74c3f8f084d19921f9576df66a6171803c2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/MAINTAINERS.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-General maintainers:
-    sam boyer (@sdboyer)
-
-* dep
-  * `init` command: Carolyn Van Slyck (@carolynvs)
-  * `ensure` command: Ibrahim AshShohail (@ibrasho)
-  * `status` command: Sunny (@darkowlzz)
-  * testing harness: (vacant)
-* gps
-  * solver: (vacant)
-  * source manager: (@jmank88)
-  * root deduction: (vacant)
-  * source/vcs interaction: (@jmank88)
-  * caching: Jordan Krage (@jmank88)
-  * pkgtree: (vacant)
-  * versions and constraints: (@jmank88)
diff --git a/vendor/github.com/golang/dep/Makefile b/vendor/github.com/golang/dep/Makefile
deleted file mode 100644
index 1c7abf805167a0dc4b0eaf0629198c2971d6acd3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-SHELL := /bin/bash
-PLATFORM := $(shell go env GOOS)
-ARCH := $(shell go env GOARCH)
-GOPATH := $(shell go env GOPATH)
-GOBIN := $(GOPATH)/bin
-
-default: build validate test
-
-get-deps:
-	go get -u golang.org/x/lint/golint honnef.co/go/tools/cmd/megacheck
-
-build:
-	go fmt ./...
-	DEP_BUILD_PLATFORMS=$(PLATFORM) DEP_BUILD_ARCHS=$(ARCH) ./hack/build-all.bash
-	cp ./release/dep-$(PLATFORM)-$(ARCH) dep
-
-licenseok:
-	go build -o licenseok ./hack/licenseok/main.go
-
-validate: build licenseok
-	./dep check
-	./hack/lint.bash
-	./hack/validate-licence.bash
-
-test: build
-	./hack/test.bash
-
-install: build
-	cp ./dep $(GOBIN)
-
-docusaurus:
-	docker run --rm -it -v `pwd`:/dep -p 3000:3000 \
-		-w /dep/website node \
-		bash -c "npm i --only=dev && npm start"
-
-.PHONY: build validate test install docusaurus
diff --git a/vendor/github.com/golang/dep/PATENTS b/vendor/github.com/golang/dep/PATENTS
deleted file mode 100644
index 733099041f84fa1e58611ab2e11af51c1f26d1d2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/PATENTS
+++ /dev/null
@@ -1,22 +0,0 @@
-Additional IP Rights Grant (Patents)
-
-"This implementation" means the copyrightable works distributed by
-Google as part of the Go project.
-
-Google hereby grants to You a perpetual, worldwide, non-exclusive,
-no-charge, royalty-free, irrevocable (except as stated in this section)
-patent license to make, have made, use, offer to sell, sell, import,
-transfer and otherwise run, modify and propagate the contents of this
-implementation of Go, where such license applies only to those patent
-claims, both currently owned or controlled by Google and acquired in
-the future, licensable by Google that are necessarily infringed by this
-implementation of Go.  This grant does not include claims that would be
-infringed only as a consequence of further modification of this
-implementation.  If you or your agent or exclusive licensee institute or
-order or agree to the institution of patent litigation against any
-entity (including a cross-claim or counterclaim in a lawsuit) alleging
-that this implementation of Go or any code incorporated within this
-implementation of Go constitutes direct or contributory patent
-infringement, or inducement of patent infringement, then any patent
-rights granted to you under this License for this implementation of Go
-shall terminate as of the date such litigation is filed.
diff --git a/vendor/github.com/golang/dep/README.md b/vendor/github.com/golang/dep/README.md
deleted file mode 100644
index bdce624e97b0ea58383682f4fa42080e82f1f324..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/README.md
+++ /dev/null
@@ -1,62 +0,0 @@
-<p align="center"><img src="docs/assets/DigbyShadows.png" width="360"></p>
-<p align="center">
-  <a href="https://travis-ci.org/golang/dep"><img src="https://travis-ci.org/golang/dep.svg?branch=master" alt="Build Status"></img></a>
-  <a href="https://ci.appveyor.com/project/golang/dep"><img src="https://ci.appveyor.com/api/projects/status/github/golang/dep?svg=true&branch=master&passingText=Windows%20-%20OK&failingText=Windows%20-%20failed&pendingText=Windows%20-%20pending" alt="Windows Build Status"></a>
-  <a href="https://goreportcard.com/report/github.com/golang/dep"><img src="https://goreportcard.com/badge/github.com/golang/dep" /></a>
-</p>
-
-## Dep
-
-`dep` is a dependency management tool for Go. It requires Go 1.9 or newer to compile.
-
-`dep` was the "official experiment." The Go toolchain, as of 1.11, has
-(experimentally) adopted an approach that sharply diverges from `dep`. As a
-result, we are continuing development of `dep`, but gearing work  primarily
-towards the development of an alternative prototype for versioning behavior in
-the toolchain.
-
-For guides and reference materials about `dep`, see [the documentation](https://golang.github.io/dep).
-
-## Installation
-
-It is strongly recommended that you use a released version. Release binaries are available on the [releases](https://github.com/golang/dep/releases) page.
-
-On MacOS you can install or upgrade to the latest released version with Homebrew:
-
-```sh
-$ brew install dep
-$ brew upgrade dep
-```
-
-On other platforms you can use the `install.sh` script:
-
-```sh
-$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
-```
-
-It will install into your `$GOPATH/bin` directory by default or any other directory you specify using the `INSTALL_DIRECTORY` environment variable.
-
-If your platform is not supported, you'll need to build it manually or let the team know and we'll consider adding your platform
-to the release builds.
-
-If you're interested in hacking on `dep`, you can install via `go get`:
-
-```sh
-go get -u github.com/golang/dep/cmd/dep
-```
-
-## Feedback
-
-Feedback is greatly appreciated.
-At this stage, the maintainers are most interested in feedback centered on the user experience (UX) of the tool.
-Do you have workflows that the tool supports well, or doesn't support at all?
-Do any of the commands have surprising effects, output, or results?
-Let us know by filing an issue, describing what you did or wanted to do, what you expected to happen, and what actually happened.
-
-## Contributing
-
-Contributions are greatly appreciated.
-The maintainers actively manage the issues list, and try to highlight issues suitable for newcomers.
-The project follows the typical GitHub pull request model.
-See [CONTRIBUTING.md](CONTRIBUTING.md) for more details.
-Before starting any work, please either comment on an existing issue, or file a new one.
diff --git a/vendor/github.com/golang/dep/analyzer.go b/vendor/github.com/golang/dep/analyzer.go
deleted file mode 100644
index 1d0b920ec51796be0308d48eac6228a2cc4e9591..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/analyzer.go
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dep
-
-import (
-	"os"
-	"path/filepath"
-
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/fs"
-)
-
-// Analyzer implements gps.ProjectAnalyzer.
-type Analyzer struct{}
-
-// HasDepMetadata determines if a dep manifest exists at the specified path.
-func (a Analyzer) HasDepMetadata(path string) bool {
-	mf := filepath.Join(path, ManifestName)
-	fileOK, err := fs.IsRegular(mf)
-	return err == nil && fileOK
-}
-
-// DeriveManifestAndLock reads and returns the manifest at path/ManifestName or nil if one is not found.
-// The Lock is always nil for now.
-func (a Analyzer) DeriveManifestAndLock(path string, n gps.ProjectRoot) (gps.Manifest, gps.Lock, error) {
-	if !a.HasDepMetadata(path) {
-		return nil, nil, nil
-	}
-
-	f, err := os.Open(filepath.Join(path, ManifestName))
-	if err != nil {
-		return nil, nil, err
-	}
-	defer f.Close()
-
-	// Ignore warnings irrelevant to user.
-	m, _, err := readManifest(f)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	return m, nil, nil
-}
-
-// Info returns Analyzer's name and version info.
-func (a Analyzer) Info() gps.ProjectAnalyzerInfo {
-	return gps.ProjectAnalyzerInfo{
-		Name:    "dep",
-		Version: 1,
-	}
-}
diff --git a/vendor/github.com/golang/dep/appveyor.yml b/vendor/github.com/golang/dep/appveyor.yml
deleted file mode 100644
index 26d1728eecddfcd6111566f0147f79f122acf265..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/appveyor.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-version: "{build}"
-
-# Source Config
-
-clone_folder: c:\gopath\src\github.com\golang\dep
-
-# Build host
-
-environment:
-  GOPATH: c:\gopath
-  DEPTESTBYPASS501: 1
-  GOVERSION: 1.9
-
-init:
-  - git config --global core.autocrlf input
-
-# Build
-
-install:
-  # Install the specific Go version.
-  - rmdir c:\go /s /q
-  - appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.msi
-  - msiexec /i go%GOVERSION%.windows-amd64.msi /q
-  - choco install bzr
-  - set Path=c:\go\bin;c:\gopath\bin;C:\Program Files (x86)\Bazaar\;C:\Program Files\Mercurial\%Path%
-  - go version
-  - go env
-
-build: false
-deploy: false
-
-test_script:
-  - go build github.com/golang/dep/cmd/dep
-  - for /f "" %%G in ('go list github.com/golang/dep/...') do ( go test %%G & IF ERRORLEVEL == 1 EXIT 1)
diff --git a/vendor/github.com/golang/dep/cmd/dep/check.go b/vendor/github.com/golang/dep/cmd/dep/check.go
deleted file mode 100644
index a81f05c0d9215e3be5fe5ac5e428179f8264d83d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/check.go
+++ /dev/null
@@ -1,240 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"bytes"
-	"flag"
-	"fmt"
-	"io/ioutil"
-	"log"
-	"os"
-	"path/filepath"
-	"sort"
-	"strings"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/verify"
-	"github.com/pkg/errors"
-)
-
-const checkShortHelp = `Check if imports, Gopkg.toml, and Gopkg.lock are in sync`
-const checkLongHelp = `
-Check determines if your project is in a good state. If problems are found, it
-prints a description of each issue, then exits 1. Passing -q suppresses output.
-
-Flags control which specific checks will be run. By default, dep check verifies
-that Gopkg.lock is in sync with Gopkg.toml and the imports in your project's .go
-files, and that the vendor directory is in sync with Gopkg.lock. These checks
-can be disabled with -skip-lock and -skip-vendor, respectively.
-
-(See https://golang.github.io/dep/docs/ensure-mechanics.html#staying-in-sync for
-more information on what it means to be "in sync.")
-
-If your workflow necessitates that you modify the contents of vendor, you can
-force check to ignore hash mismatches on a per-project basis by naming
-project roots in Gopkg.toml's "noverify" list.
-`
-
-type checkCommand struct {
-	quiet                bool
-	skiplock, skipvendor bool
-}
-
-func (cmd *checkCommand) Name() string { return "check" }
-func (cmd *checkCommand) Args() string {
-	return "[-q] [-skip-lock] [-skip-vendor]"
-}
-func (cmd *checkCommand) ShortHelp() string { return checkShortHelp }
-func (cmd *checkCommand) LongHelp() string  { return checkLongHelp }
-func (cmd *checkCommand) Hidden() bool      { return false }
-
-func (cmd *checkCommand) Register(fs *flag.FlagSet) {
-	fs.BoolVar(&cmd.skiplock, "skip-lock", false, "Skip checking that imports and Gopkg.toml are in sync with Gopkg.lock")
-	fs.BoolVar(&cmd.skipvendor, "skip-vendor", false, "Skip checking that vendor is in sync with Gopkg.lock")
-	fs.BoolVar(&cmd.quiet, "q", false, "Suppress non-error output")
-}
-
-func (cmd *checkCommand) Run(ctx *dep.Ctx, args []string) error {
-	logger := ctx.Out
-	if cmd.quiet {
-		logger = log.New(ioutil.Discard, "", 0)
-	}
-
-	p, err := ctx.LoadProject()
-	if err != nil {
-		return err
-	}
-
-	sm, err := ctx.SourceManager()
-	if err != nil {
-		return err
-	}
-
-	sm.UseDefaultSignalHandling()
-	defer sm.Release()
-
-	var fail bool
-	if !cmd.skiplock {
-		if p.Lock == nil {
-			return errors.New("Gopkg.lock does not exist, cannot check it against imports and Gopkg.toml")
-		}
-
-		lsat := verify.LockSatisfiesInputs(p.Lock, p.Manifest, p.RootPackageTree)
-		delta := verify.DiffLocks(p.Lock, p.ChangedLock)
-		sat, changed := lsat.Satisfied(), delta.Changed(verify.PruneOptsChanged|verify.HashVersionChanged)
-
-		if changed || !sat {
-			fail = true
-			logger.Println("# Gopkg.lock is out of sync:")
-			if !sat {
-				logger.Printf("%s\n", sprintLockUnsat(lsat))
-			}
-			if changed {
-				// Sort, for deterministic output.
-				var ordered []string
-				for pr := range delta.ProjectDeltas {
-					ordered = append(ordered, string(pr))
-				}
-				sort.Strings(ordered)
-
-				for _, pr := range ordered {
-					lpd := delta.ProjectDeltas[gps.ProjectRoot(pr)]
-					// Only two possible changes right now are prune opts
-					// changing or a missing hash digest (for old Gopkg.lock
-					// files)
-					if lpd.PruneOptsChanged() {
-						// Override what's on the lockdiff with the extra info we have;
-						// this lets us excise PruneNestedVendorDirs and get the real
-						// value from the input param in place.
-						old := lpd.PruneOptsBefore & ^gps.PruneNestedVendorDirs
-						new := lpd.PruneOptsAfter & ^gps.PruneNestedVendorDirs
-						logger.Printf("%s: prune options changed (%s -> %s)\n", pr, old, new)
-					}
-					if lpd.HashVersionWasZero() {
-						logger.Printf("%s: no hash digest in lock\n", pr)
-					}
-				}
-			}
-		}
-	}
-
-	if !cmd.skipvendor {
-		if p.Lock == nil {
-			return errors.New("Gopkg.lock does not exist, cannot check vendor against it")
-		}
-
-		statuses, err := p.VerifyVendor()
-		if err != nil {
-			return errors.Wrap(err, "error while verifying vendor")
-		}
-
-		if fail {
-			logger.Println()
-		}
-
-		noverify := make(map[string]bool)
-		for _, skip := range p.Manifest.NoVerify {
-			noverify[skip] = true
-		}
-
-		var vendorfail bool
-		// One full pass through, to see if we need to print the header, and to
-		// create an array of names to sort for deterministic output.
-		var ordered []string
-		for path, status := range statuses {
-			ordered = append(ordered, path)
-
-			switch status {
-			case verify.DigestMismatchInLock, verify.HashVersionMismatch, verify.EmptyDigestInLock:
-				// NoVerify applies only to these three cases.
-				if noverify[path] {
-					continue
-				}
-				fallthrough
-			case verify.NotInTree, verify.NotInLock:
-				fail = true
-				if !vendorfail {
-					vendorfail = true
-					logger.Println("# vendor is out of sync:")
-				}
-
-			}
-		}
-		sort.Strings(ordered)
-
-		for _, pr := range ordered {
-			var nvSuffix string
-			if noverify[pr] {
-				nvSuffix = "  (CHECK IGNORED: marked noverify in Gopkg.toml)"
-			}
-
-			status := statuses[pr]
-			switch status {
-			case verify.NotInTree:
-				logger.Printf("%s: missing from vendor\n", pr)
-			case verify.NotInLock:
-				fi, err := os.Stat(filepath.Join(p.AbsRoot, "vendor", pr))
-				if err != nil {
-					return errors.Wrap(err, "could not stat file that VerifyVendor claimed existed")
-				}
-				if fi.IsDir() {
-					logger.Printf("%s: unused project\n", pr)
-				} else {
-					logger.Printf("%s: orphaned file\n", pr)
-				}
-			case verify.DigestMismatchInLock:
-				logger.Printf("%s: hash of vendored tree not equal to digest in Gopkg.lock%s\n", pr, nvSuffix)
-			case verify.EmptyDigestInLock:
-				logger.Printf("%s: no digest in Gopkg.lock to compare against hash of vendored tree%s\n", pr, nvSuffix)
-			case verify.HashVersionMismatch:
-				// This will double-print if the hash version is zero, but
-				// that's a rare case that really only occurs before the first
-				// run with a version of dep >=0.5.0, so it's fine.
-				logger.Printf("%s: hash algorithm mismatch, want version %v%s\n", pr, verify.HashVersion, nvSuffix)
-			}
-		}
-	}
-
-	if fail {
-		return silentfail{}
-	}
-	return nil
-}
-
-func sprintLockUnsat(lsat verify.LockSatisfaction) string {
-	var buf bytes.Buffer
-	sort.Strings(lsat.MissingImports)
-	for _, missing := range lsat.MissingImports {
-		fmt.Fprintf(&buf, "%s: imported or required, but missing from Gopkg.lock's input-imports\n", missing)
-	}
-
-	sort.Strings(lsat.ExcessImports)
-	for _, excess := range lsat.ExcessImports {
-		fmt.Fprintf(&buf, "%s: in Gopkg.lock's input-imports, but neither imported nor required\n", excess)
-	}
-
-	var ordered []string
-	for pr := range lsat.UnmetOverrides {
-		ordered = append(ordered, string(pr))
-	}
-	sort.Strings(ordered)
-	for _, pr := range ordered {
-		unmatched := lsat.UnmetOverrides[gps.ProjectRoot(pr)]
-		fmt.Fprintf(&buf, "%s@%s: not allowed by override %s\n", pr, unmatched.V, unmatched.C)
-	}
-
-	ordered = ordered[:0]
-	for pr := range lsat.UnmetConstraints {
-		ordered = append(ordered, string(pr))
-	}
-	sort.Strings(ordered)
-	for _, pr := range ordered {
-		unmatched := lsat.UnmetConstraints[gps.ProjectRoot(pr)]
-		fmt.Fprintf(&buf, "%s@%s: not allowed by constraint %s\n", pr, unmatched.V, unmatched.C)
-	}
-	return strings.TrimSpace(buf.String())
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/doc.go b/vendor/github.com/golang/dep/cmd/dep/doc.go
deleted file mode 100644
index 7d5afdcea1eeb2c74f6e8dc7c3cbf14a9d50c580..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/doc.go
+++ /dev/null
@@ -1,143 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// DO NOT EDIT THIS FILE. GENERATED BY mkdoc.sh.
-// Edit the documentation in other files and rerun mkdoc.sh to generate this one.
-
-// Dep is a tool for managing dependencies for Go projects
-//
-// Usage: "dep [command]"
-//
-// Commands:
-//
-//   init     Initialize a new project with manifest and lock files
-//   status   Report the status of the project's dependencies
-//   ensure   Ensure a dependency is safely vendored in the project
-//   prune    Prune the vendor tree of unused packages
-//   version  Show the dep version information
-//
-// Examples:
-//   dep init                               set up a new project
-//   dep ensure                             install the project's dependencies
-//   dep ensure -update                     update the locked versions of all dependencies
-//   dep ensure -add github.com/pkg/errors  add a dependency to the project
-//
-// Use "dep help [command]" for more information about a command.
-//
-// Initialize a new project with manifest and lock files
-//
-// Usage:
-//
-//  init [root]
-//
-// Initialize the project at filepath root by parsing its dependencies, writing
-// manifest and lock files, and vendoring the dependencies. If root isn't
-// specified, use the current directory.
-//
-// When configuration for another dependency management tool is detected, it is
-// imported into the initial manifest and lock. Use the -skip-tools flag to
-// disable this behavior. The following external tools are supported:
-// glide, godep, vndr, govend, gb, gvt, glock.
-//
-// Any dependencies that are not constrained by external configuration use the
-// GOPATH analysis below.
-//
-// By default, the dependencies are resolved over the network. A version will be
-// selected from the versions available from the upstream source per the following
-// algorithm:
-//
-//  - Tags conforming to semver (sorted by semver rules)
-//  - Default branch(es) (sorted lexicographically)
-//  - Non-semver tags (sorted lexicographically)
-//
-// An alternate mode can be activated by passing -gopath. In this mode, the version
-// of each dependency will reflect the current state of the GOPATH. If a dependency
-// doesn't exist in the GOPATH, a version will be selected based on the above
-// network version selection algorithm.
-//
-// A Gopkg.toml file will be written with inferred version constraints for all
-// direct dependencies. Gopkg.lock will be written with precise versions, and
-// vendor/ will be populated with the precise versions written to Gopkg.lock.
-//
-//
-// Report the status of the project's dependencies
-//
-// Usage:
-//
-//  status [package...]
-//
-// With no arguments, print the status of each dependency of the project.
-//
-//   PROJECT     Import path
-//   CONSTRAINT  Version constraint, from the manifest
-//   VERSION     Version chosen, from the lock
-//   REVISION    VCS revision of the chosen version
-//   LATEST      Latest VCS revision available
-//   PKGS USED   Number of packages from this project that are actually used
-//
-// With one or more explicitly specified packages, or with the -detailed flag,
-// print an extended status output for each dependency of the project.
-//
-//   TODO    Another column description
-//   FOOBAR  Another column description
-//
-// Status returns exit code zero if all dependencies are in a "good state".
-//
-//
-// Ensure a dependency is safely vendored in the project
-//
-// Usage:
-//
-//  ensure [-update | -add] [-no-vendor | -vendor-only] [-dry-run] [<spec>...]
-//
-// Project spec:
-//
-//   <import path>[:alt source URL][@<constraint>]
-//
-//
-// Ensure gets a project into a complete, reproducible, and likely compilable state:
-//
-//   * All non-stdlib imports are fulfilled
-//   * All rules in Gopkg.toml are respected
-//   * Gopkg.lock records precise versions for all dependencies
-//   * vendor/ is populated according to Gopkg.lock
-//
-// Ensure has fast techniques to determine that some of these steps may be
-// unnecessary. If that determination is made, ensure may skip some steps. Flags
-// may be passed to bypass these checks; -vendor-only will allow an out-of-date
-// Gopkg.lock to populate vendor/, and -no-vendor will update Gopkg.lock (if
-// needed), but never touch vendor/.
-//
-// The effect of passing project spec arguments varies slightly depending on the
-// combination of flags that are passed.
-//
-//
-// Examples:
-//
-//   dep ensure                                 Populate vendor from existing Gopkg.toml and Gopkg.lock
-//   dep ensure -add github.com/pkg/foo         Introduce a named dependency at its newest version
-//   dep ensure -add github.com/pkg/foo@^1.0.1  Introduce a named dependency with a particular constraint
-//
-// For more detailed usage examples, see dep ensure -examples.
-//
-//
-// Prune the vendor tree of unused packages
-//
-// Usage:
-//
-//  prune
-//
-// Prune is used to remove unused packages from your vendor tree.
-//
-// STABILITY NOTICE: this command creates problems for vendor/ verification. As
-// such, it may be removed and/or moved out into a separate project later on.
-//
-//
-// Show the dep version information
-//
-// Usage:
-//
-//  version
-//
-package main
diff --git a/vendor/github.com/golang/dep/cmd/dep/ensure.go b/vendor/github.com/golang/dep/cmd/dep/ensure.go
deleted file mode 100644
index 51de91377b8e7a28ee09e706fb0f41acbeca4449..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/ensure.go
+++ /dev/null
@@ -1,854 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"context"
-	"flag"
-	"fmt"
-	"go/build"
-	"log"
-	"os"
-	"path/filepath"
-	"sort"
-	"strings"
-	"sync"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/paths"
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/golang/dep/gps/verify"
-	"github.com/pkg/errors"
-)
-
-const ensureShortHelp = `Ensure a dependency is safely vendored in the project`
-const ensureLongHelp = `
-Project spec:
-
-  <import path>[:alt source URL][@<constraint>]
-
-
-Ensure gets a project into a complete, reproducible, and likely compilable state:
-
-  * All imports are fulfilled
-  * All rules in Gopkg.toml are respected
-  * Gopkg.lock records immutable versions for all dependencies
-  * vendor/ is populated according to Gopkg.lock
-
-Ensure has fast techniques to determine that some of these steps may be
-unnecessary. If that determination is made, ensure may skip some steps. Flags
-may be passed to bypass these checks; -vendor-only will allow an out-of-date
-Gopkg.lock to populate vendor/, and -no-vendor will update Gopkg.lock (if
-needed), but never touch vendor/.
-
-The effect of passing project spec arguments varies slightly depending on the
-combination of flags that are passed.
-
-
-Examples:
-
-  dep ensure                                 Populate vendor from existing Gopkg.toml and Gopkg.lock
-  dep ensure -add github.com/pkg/foo         Introduce a named dependency at its newest version
-  dep ensure -add github.com/pkg/foo@^1.0.1  Introduce a named dependency with a particular constraint
-
-For more detailed usage examples, see dep ensure -examples.
-`
-const ensureExamples = `
-dep ensure
-
-    Solve the project's dependency graph, and place all dependencies in the
-    vendor folder. If a dependency is in the lock file, use the version
-    specified there. Otherwise, use the most recent version that can satisfy the
-    constraints in the manifest file.
-
-dep ensure -vendor-only
-
-    Write vendor/ from an existing Gopkg.lock file, without first verifying that
-    the lock is in sync with imports and Gopkg.toml. (This may be useful for
-    e.g. strategically layering a Docker images)
-
-dep ensure -add github.com/pkg/foo github.com/pkg/foo/bar
-
-    Introduce one or more dependencies, at their newest version, ensuring that
-    specific packages are present in Gopkg.lock and vendor/. Also, append a
-    corresponding constraint to Gopkg.toml.
-
-    Note: packages introduced in this way will disappear on the next "dep
-    ensure" if an import statement is not added first.
-
-dep ensure -add github.com/pkg/foo/subpkg@1.0.0 bitbucket.org/pkg/bar/baz@master
-
-    Append version constraints to Gopkg.toml for one or more packages, if no
-    such rules already exist.
-
-    If the named packages are not already imported, also ensure they are present
-    in Gopkg.lock and vendor/. As in the preceding example, packages introduced
-    in this way will disappear on the next "dep ensure" if an import statement
-    is not added first.
-
-dep ensure -add github.com/pkg/foo:git.internal.com/alt/foo
-
-    Specify an alternate location to treat as the upstream source for a dependency.
-
-dep ensure -update github.com/pkg/foo github.com/pkg/bar
-
-    Update a list of dependencies to the latest versions allowed by Gopkg.toml,
-    ignoring any versions recorded in Gopkg.lock. Write the results to
-    Gopkg.lock and vendor/.
-
-dep ensure -update
-
-    Update all dependencies to the latest versions allowed by Gopkg.toml,
-    ignoring any versions recorded in Gopkg.lock. Update the lock file with any
-    changes. (NOTE: Not recommended. Updating one/some dependencies at a time is
-    preferred.)
-
-dep ensure -update -no-vendor
-
-    As above, but only modify Gopkg.lock; leave vendor/ unchanged.
-
-dep ensure -no-vendor -dry-run
-
-    This fails with a non zero exit code if Gopkg.lock is not up to date with
-    the Gopkg.toml or the project imports. It can be useful to run this during
-    CI to check if Gopkg.lock is up to date.
-
-`
-
-var (
-	errUpdateArgsValidation = errors.New("update arguments validation failed")
-	errAddDepsFailed        = errors.New("adding dependencies failed")
-)
-
-func (cmd *ensureCommand) Name() string { return "ensure" }
-func (cmd *ensureCommand) Args() string {
-	return "[-update | -add] [-no-vendor | -vendor-only] [-dry-run] [-v] [<spec>...]"
-}
-func (cmd *ensureCommand) ShortHelp() string { return ensureShortHelp }
-func (cmd *ensureCommand) LongHelp() string  { return ensureLongHelp }
-func (cmd *ensureCommand) Hidden() bool      { return false }
-
-func (cmd *ensureCommand) Register(fs *flag.FlagSet) {
-	fs.BoolVar(&cmd.examples, "examples", false, "print detailed usage examples")
-	fs.BoolVar(&cmd.update, "update", false, "update the named dependencies (or all, if none are named) in Gopkg.lock to the latest allowed by Gopkg.toml")
-	fs.BoolVar(&cmd.add, "add", false, "add new dependencies, or populate Gopkg.toml with constraints for existing dependencies")
-	fs.BoolVar(&cmd.vendorOnly, "vendor-only", false, "populate vendor/ from Gopkg.lock without updating it first")
-	fs.BoolVar(&cmd.noVendor, "no-vendor", false, "update Gopkg.lock (if needed), but do not update vendor/")
-	fs.BoolVar(&cmd.dryRun, "dry-run", false, "only report the changes that would be made")
-}
-
-type ensureCommand struct {
-	examples   bool
-	update     bool
-	add        bool
-	noVendor   bool
-	vendorOnly bool
-	dryRun     bool
-}
-
-func (cmd *ensureCommand) Run(ctx *dep.Ctx, args []string) error {
-	if cmd.examples {
-		ctx.Err.Println(strings.TrimSpace(ensureExamples))
-		return nil
-	}
-
-	if err := cmd.validateFlags(); err != nil {
-		return err
-	}
-
-	p, err := ctx.LoadProject()
-	if err != nil {
-		return err
-	}
-
-	sm, err := ctx.SourceManager()
-	if err != nil {
-		return err
-	}
-	sm.UseDefaultSignalHandling()
-	defer sm.Release()
-
-	if err := dep.ValidateProjectRoots(ctx, p.Manifest, sm); err != nil {
-		return err
-	}
-
-	params := p.MakeParams()
-	if ctx.Verbose {
-		params.TraceLogger = ctx.Err
-	}
-
-	if cmd.vendorOnly {
-		return cmd.runVendorOnly(ctx, args, p, sm, params)
-	}
-
-	if fatal, err := checkErrors(params.RootPackageTree.Packages, p.Manifest.IgnoredPackages()); err != nil {
-		if fatal {
-			return err
-		} else if ctx.Verbose {
-			ctx.Out.Println(err)
-		}
-	}
-	if ineffs := p.FindIneffectualConstraints(sm); len(ineffs) > 0 {
-		ctx.Err.Printf("Warning: the following project(s) have [[constraint]] stanzas in %s:\n\n", dep.ManifestName)
-		for _, ineff := range ineffs {
-			ctx.Err.Println("  ✗ ", ineff)
-		}
-		// TODO(sdboyer) lazy wording, it does not mention ignores at all
-		ctx.Err.Printf("\nHowever, these projects are not direct dependencies of the current project:\n")
-		ctx.Err.Printf("they are not imported in any .go files, nor are they in the 'required' list in\n")
-		ctx.Err.Printf("%s. Dep only applies [[constraint]] rules to direct dependencies, so\n", dep.ManifestName)
-		ctx.Err.Printf("these rules will have no effect.\n\n")
-		ctx.Err.Printf("Either import/require packages from these projects so that they become direct\n")
-		ctx.Err.Printf("dependencies, or convert each [[constraint]] to an [[override]] to enforce rules\n")
-		ctx.Err.Printf("on these projects, if they happen to be transitive dependencies.\n\n")
-	}
-
-	// Kick off vendor verification in the background. All of the remaining
-	// paths from here will need it, whether or not they end up solving.
-	go p.VerifyVendor()
-
-	if cmd.add {
-		return cmd.runAdd(ctx, args, p, sm, params)
-	} else if cmd.update {
-		return cmd.runUpdate(ctx, args, p, sm, params)
-	}
-	return cmd.runDefault(ctx, args, p, sm, params)
-}
-
-func (cmd *ensureCommand) validateFlags() error {
-	if cmd.add && cmd.update {
-		return errors.New("cannot pass both -add and -update")
-	}
-
-	if cmd.vendorOnly {
-		if cmd.update {
-			return errors.New("-vendor-only makes -update a no-op; cannot pass them together")
-		}
-		if cmd.add {
-			return errors.New("-vendor-only makes -add a no-op; cannot pass them together")
-		}
-		if cmd.noVendor {
-			// TODO(sdboyer) can't think of anything not snarky right now
-			return errors.New("really?")
-		}
-	}
-	return nil
-}
-
-func (cmd *ensureCommand) vendorBehavior() dep.VendorBehavior {
-	if cmd.noVendor {
-		return dep.VendorNever
-	}
-	return dep.VendorOnChanged
-}
-
-func (cmd *ensureCommand) runDefault(ctx *dep.Ctx, args []string, p *dep.Project, sm gps.SourceManager, params gps.SolveParameters) error {
-	// Bare ensure doesn't take any args.
-	if len(args) != 0 {
-		return errors.New("dep ensure only takes spec arguments with -add or -update")
-	}
-
-	if err := ctx.ValidateParams(sm, params); err != nil {
-		return err
-	}
-
-	var solve bool
-	lock := p.ChangedLock
-	if lock != nil {
-		lsat := verify.LockSatisfiesInputs(p.Lock, p.Manifest, params.RootPackageTree)
-		if !lsat.Satisfied() {
-			if ctx.Verbose {
-				ctx.Out.Printf("# Gopkg.lock is out of sync with Gopkg.toml and project imports:\n%s\n\n", sprintLockUnsat(lsat))
-			}
-			solve = true
-		} else if cmd.noVendor {
-			// The user said not to touch vendor/, so definitely nothing to do.
-			return nil
-		}
-	} else {
-		solve = true
-	}
-
-	if solve {
-		solver, err := gps.Prepare(params, sm)
-		if err != nil {
-			return errors.Wrap(err, "prepare solver")
-		}
-
-		solution, err := solver.Solve(context.TODO())
-		if err != nil {
-			return handleAllTheFailuresOfTheWorld(err)
-		}
-		lock = dep.LockFromSolution(solution, p.Manifest.PruneOptions)
-	}
-
-	dw, err := dep.NewDeltaWriter(p, lock, cmd.vendorBehavior())
-	if err != nil {
-		return err
-	}
-
-	if cmd.dryRun {
-		return dw.PrintPreparedActions(ctx.Out, ctx.Verbose)
-	}
-
-	var logger *log.Logger
-	if ctx.Verbose {
-		logger = ctx.Err
-	}
-	return errors.WithMessage(dw.Write(p.AbsRoot, sm, true, logger), "grouped write of manifest, lock and vendor")
-}
-
-func (cmd *ensureCommand) runVendorOnly(ctx *dep.Ctx, args []string, p *dep.Project, sm gps.SourceManager, params gps.SolveParameters) error {
-	if len(args) != 0 {
-		return errors.Errorf("dep ensure -vendor-only only populates vendor/ from %s; it takes no spec arguments", dep.LockName)
-	}
-
-	if p.Lock == nil {
-		return errors.Errorf("no %s exists from which to populate vendor/", dep.LockName)
-	}
-
-	// Pass the same lock as old and new so that the writer will observe no
-	// difference, and write out only ncessary vendor/ changes.
-	dw, err := dep.NewSafeWriter(nil, p.Lock, p.Lock, dep.VendorAlways, p.Manifest.PruneOptions, nil)
-	//dw, err := dep.NewDeltaWriter(p.Lock, p.Lock, p.Manifest.PruneOptions, filepath.Join(p.AbsRoot, "vendor"), dep.VendorAlways)
-	if err != nil {
-		return err
-	}
-
-	if cmd.dryRun {
-		return dw.PrintPreparedActions(ctx.Out, ctx.Verbose)
-	}
-
-	var logger *log.Logger
-	if ctx.Verbose {
-		logger = ctx.Err
-	}
-	return errors.WithMessage(dw.Write(p.AbsRoot, sm, true, logger), "grouped write of manifest, lock and vendor")
-}
-
-func (cmd *ensureCommand) runUpdate(ctx *dep.Ctx, args []string, p *dep.Project, sm gps.SourceManager, params gps.SolveParameters) error {
-	if p.Lock == nil {
-		return errors.Errorf("-update works by updating the versions recorded in %s, but %s does not exist", dep.LockName, dep.LockName)
-	}
-
-	if err := ctx.ValidateParams(sm, params); err != nil {
-		return err
-	}
-
-	// When -update is specified without args, allow every dependency to change
-	// versions, regardless of the lock file.
-	if len(args) == 0 {
-		params.ChangeAll = true
-	}
-
-	if err := validateUpdateArgs(ctx, args, p, sm, &params); err != nil {
-		return err
-	}
-
-	// Re-prepare a solver now that our params are complete.
-	solver, err := gps.Prepare(params, sm)
-	if err != nil {
-		return errors.Wrap(err, "fastpath solver prepare")
-	}
-	solution, err := solver.Solve(context.TODO())
-	if err != nil {
-		// TODO(sdboyer) special handling for warning cases as described in spec
-		// - e.g., named projects did not upgrade even though newer versions
-		// were available.
-		return handleAllTheFailuresOfTheWorld(err)
-	}
-
-	dw, err := dep.NewDeltaWriter(p, dep.LockFromSolution(solution, p.Manifest.PruneOptions), cmd.vendorBehavior())
-	if err != nil {
-		return err
-	}
-	if cmd.dryRun {
-		return dw.PrintPreparedActions(ctx.Out, ctx.Verbose)
-	}
-
-	var logger *log.Logger
-	if ctx.Verbose {
-		logger = ctx.Err
-	}
-	return errors.Wrap(dw.Write(p.AbsRoot, sm, false, logger), "grouped write of manifest, lock and vendor")
-}
-
-func (cmd *ensureCommand) runAdd(ctx *dep.Ctx, args []string, p *dep.Project, sm gps.SourceManager, params gps.SolveParameters) error {
-	if len(args) == 0 {
-		return errors.New("must specify at least one project or package to -add")
-	}
-
-	if err := ctx.ValidateParams(sm, params); err != nil {
-		return err
-	}
-
-	// Compile unique sets of 1) all external packages imported or required, and
-	// 2) the project roots under which they fall.
-	exmap := make(map[string]bool)
-	if p.ChangedLock != nil {
-		for _, imp := range p.ChangedLock.InputImports() {
-			exmap[imp] = true
-		}
-	} else {
-		// We'll only hit this branch if Gopkg.lock did not exist.
-		rm, _ := p.RootPackageTree.ToReachMap(true, true, false, p.Manifest.IgnoredPackages())
-		for _, imp := range rm.FlattenFn(paths.IsStandardImportPath) {
-			exmap[imp] = true
-		}
-		for imp := range p.Manifest.RequiredPackages() {
-			exmap[imp] = true
-		}
-	}
-
-	// Note: these flags are only partially used by the latter parts of the
-	// algorithm; rather, it relies on inference. However, they remain in their
-	// entirety as future needs may make further use of them, being a handy,
-	// terse way of expressing the original context of the arg inputs.
-	type addType uint8
-	const (
-		// Straightforward case - this induces a temporary require, and thus
-		// a warning message about it being ephemeral.
-		isInManifest addType = 1 << iota
-		// If solving works, we'll pull this constraint from the in-memory
-		// manifest (where we recorded it earlier) and then append it to the
-		// manifest on disk.
-		isInImportsWithConstraint
-		// If solving works, we'll extract a constraint from the lock and
-		// append it into the manifest on disk, similar to init's behavior.
-		isInImportsNoConstraint
-		// This gets a message AND a hoist from the solution up into the
-		// manifest on disk.
-		isInNeither
-	)
-
-	type addInstruction struct {
-		id         gps.ProjectIdentifier
-		ephReq     map[string]bool
-		constraint gps.Constraint
-		typ        addType
-	}
-	addInstructions := make(map[gps.ProjectRoot]addInstruction)
-
-	// A mutex for limited access to addInstructions by goroutines.
-	var mutex sync.Mutex
-
-	// Channel for receiving all the errors.
-	errCh := make(chan error, len(args))
-
-	var wg sync.WaitGroup
-
-	ctx.Out.Println("Fetching sources...")
-
-	for i, arg := range args {
-		wg.Add(1)
-
-		if ctx.Verbose {
-			ctx.Err.Printf("(%d/%d) %s\n", i+1, len(args), arg)
-		}
-
-		go func(arg string) {
-			defer wg.Done()
-
-			pc, path, err := getProjectConstraint(arg, sm)
-			if err != nil {
-				// TODO(sdboyer) ensure these errors are contextualized in a sensible way for -add
-				errCh <- err
-				return
-			}
-
-			// check if the the parsed path is the current root path
-			if strings.EqualFold(string(p.ImportRoot), string(pc.Ident.ProjectRoot)) {
-				errCh <- errors.New("cannot add current project to itself")
-				return
-			}
-
-			inManifest := p.Manifest.HasConstraintsOn(pc.Ident.ProjectRoot)
-			inImports := exmap[string(pc.Ident.ProjectRoot)]
-			if inManifest && inImports {
-				errCh <- errors.Errorf("nothing to -add, %s is already in %s and the project's direct imports or required list", pc.Ident.ProjectRoot, dep.ManifestName)
-				return
-			}
-
-			err = sm.SyncSourceFor(pc.Ident)
-			if err != nil {
-				errCh <- errors.Wrapf(err, "failed to fetch source for %s", pc.Ident.ProjectRoot)
-				return
-			}
-
-			someConstraint := !gps.IsAny(pc.Constraint) || pc.Ident.Source != ""
-
-			// Obtain a lock for addInstructions
-			mutex.Lock()
-			defer mutex.Unlock()
-			instr, has := addInstructions[pc.Ident.ProjectRoot]
-			if has {
-				// Multiple packages from the same project were specified as
-				// arguments; make sure they agree on declared constraints.
-				// TODO(sdboyer) until we have a general method for checking constraint equality, only allow one to declare
-				if someConstraint {
-					if !gps.IsAny(instr.constraint) || instr.id.Source != "" {
-						errCh <- errors.Errorf("can only specify rules once per project being added; rules were given at least twice for %s", pc.Ident.ProjectRoot)
-						return
-					}
-					instr.constraint = pc.Constraint
-					instr.id = pc.Ident
-				}
-			} else {
-				instr.ephReq = make(map[string]bool)
-				instr.constraint = pc.Constraint
-				instr.id = pc.Ident
-			}
-
-			if inManifest {
-				if someConstraint {
-					errCh <- errors.Errorf("%s already contains rules for %s, cannot specify a version constraint or alternate source", dep.ManifestName, path)
-					return
-				}
-
-				instr.ephReq[path] = true
-				instr.typ |= isInManifest
-			} else if inImports {
-				if !someConstraint {
-					if exmap[path] {
-						errCh <- errors.Errorf("%s is already imported or required, so -add is only valid with a constraint", path)
-						return
-					}
-
-					// No constraints, but the package isn't imported; require it.
-					// TODO(sdboyer) this case seems like it's getting overly specific and risks muddying the water more than it helps
-					instr.ephReq[path] = true
-					instr.typ |= isInImportsNoConstraint
-				} else {
-					// Don't require on this branch if the path was a ProjectRoot;
-					// most common here will be the user adding constraints to
-					// something they already imported, and if they specify the
-					// root, there's a good chance they don't actually want to
-					// require the project's root package, but are just trying to
-					// indicate which project should receive the constraints.
-					if !exmap[path] && string(pc.Ident.ProjectRoot) != path {
-						instr.ephReq[path] = true
-					}
-					instr.typ |= isInImportsWithConstraint
-				}
-			} else {
-				instr.typ |= isInNeither
-				instr.ephReq[path] = true
-			}
-
-			addInstructions[pc.Ident.ProjectRoot] = instr
-		}(arg)
-	}
-
-	wg.Wait()
-	close(errCh)
-
-	// Newline after printing the fetching source output.
-	ctx.Err.Println()
-
-	// Log all the errors.
-	if len(errCh) > 0 {
-		ctx.Err.Printf("Failed to add the dependencies:\n\n")
-		for err := range errCh {
-			ctx.Err.Println("  ✗", err.Error())
-		}
-		ctx.Err.Println()
-		return errAddDepsFailed
-	}
-
-	// We're now sure all of our add instructions are individually and mutually
-	// valid, so it's safe to begin modifying the input parameters.
-	for pr, instr := range addInstructions {
-		// The arg processing logic above only adds to the ephReq list if
-		// that package definitely needs to be on that list, so we don't
-		// need to check instr.typ here - if it's in instr.ephReq, it
-		// definitely needs to be added to the manifest's required list.
-		for path := range instr.ephReq {
-			p.Manifest.Required = append(p.Manifest.Required, path)
-		}
-
-		// Only two branches can possibly be adding rules, though the
-		// isInNeither case may or may not have an empty constraint.
-		if instr.typ&(isInNeither|isInImportsWithConstraint) != 0 {
-			p.Manifest.Constraints[pr] = gps.ProjectProperties{
-				Source:     instr.id.Source,
-				Constraint: instr.constraint,
-			}
-		}
-	}
-
-	// Re-prepare a solver now that our params are complete.
-	solver, err := gps.Prepare(params, sm)
-	if err != nil {
-		return errors.Wrap(err, "fastpath solver prepare")
-	}
-	solution, err := solver.Solve(context.TODO())
-	if err != nil {
-		// TODO(sdboyer) detect if the failure was specifically about some of the -add arguments
-		return handleAllTheFailuresOfTheWorld(err)
-	}
-
-	// Prep post-actions and feedback from adds.
-	var reqlist []string
-	appender := dep.NewManifest()
-
-	for pr, instr := range addInstructions {
-		for path := range instr.ephReq {
-			reqlist = append(reqlist, path)
-		}
-
-		if instr.typ&isInManifest == 0 {
-			var pp gps.ProjectProperties
-			var found bool
-			for _, proj := range solution.Projects() {
-				// We compare just ProjectRoot instead of the whole
-				// ProjectIdentifier here because an empty source on the input side
-				// could have been converted into a source by the solver.
-				if proj.Ident().ProjectRoot == pr {
-					found = true
-					pp = getProjectPropertiesFromVersion(proj.Version())
-					break
-				}
-			}
-			if !found {
-				panic(fmt.Sprintf("unreachable: solution did not contain -add argument %s, but solver did not fail", pr))
-			}
-			pp.Source = instr.id.Source
-
-			if !gps.IsAny(instr.constraint) {
-				pp.Constraint = instr.constraint
-			}
-			appender.Constraints[pr] = pp
-		}
-	}
-
-	extra, err := appender.MarshalTOML()
-	if err != nil {
-		return errors.Wrap(err, "could not marshal manifest into TOML")
-	}
-	sort.Strings(reqlist)
-
-	dw, err := dep.NewDeltaWriter(p, dep.LockFromSolution(solution, p.Manifest.PruneOptions), cmd.vendorBehavior())
-	if err != nil {
-		return err
-	}
-
-	if cmd.dryRun {
-		return dw.PrintPreparedActions(ctx.Out, ctx.Verbose)
-	}
-
-	var logger *log.Logger
-	if ctx.Verbose {
-		logger = ctx.Err
-	}
-	if err := errors.Wrap(dw.Write(p.AbsRoot, sm, true, logger), "grouped write of manifest, lock and vendor"); err != nil {
-		return err
-	}
-
-	// FIXME(sdboyer) manifest writes ABSOLUTELY need verification - follow up!
-	f, err := os.OpenFile(filepath.Join(p.AbsRoot, dep.ManifestName), os.O_APPEND|os.O_WRONLY, 0666)
-	if err != nil {
-		return errors.Wrapf(err, "opening %s failed", dep.ManifestName)
-	}
-
-	if _, err := f.Write(extra); err != nil {
-		f.Close()
-		return errors.Wrapf(err, "writing to %s failed", dep.ManifestName)
-	}
-
-	switch len(reqlist) {
-	case 0:
-		// nothing to tell the user
-	case 1:
-		if cmd.noVendor {
-			ctx.Out.Printf("%q is not imported by your project, and has been temporarily added to %s.\n", reqlist[0], dep.LockName)
-			ctx.Out.Printf("If you run \"dep ensure\" again before actually importing it, it will disappear from %s. Running \"dep ensure -vendor-only\" is safe, and will guarantee it is present in vendor/.", dep.LockName)
-		} else {
-			ctx.Out.Printf("%q is not imported by your project, and has been temporarily added to %s and vendor/.\n", reqlist[0], dep.LockName)
-			ctx.Out.Printf("If you run \"dep ensure\" again before actually importing it, it will disappear from %s and vendor/.", dep.LockName)
-		}
-	default:
-		if cmd.noVendor {
-			ctx.Out.Printf("The following packages are not imported by your project, and have been temporarily added to %s:\n", dep.LockName)
-			ctx.Out.Printf("\t%s\n", strings.Join(reqlist, "\n\t"))
-			ctx.Out.Printf("If you run \"dep ensure\" again before actually importing them, they will disappear from %s. Running \"dep ensure -vendor-only\" is safe, and will guarantee they are present in vendor/.", dep.LockName)
-		} else {
-			ctx.Out.Printf("The following packages are not imported by your project, and have been temporarily added to %s and vendor/:\n", dep.LockName)
-			ctx.Out.Printf("\t%s\n", strings.Join(reqlist, "\n\t"))
-			ctx.Out.Printf("If you run \"dep ensure\" again before actually importing them, they will disappear from %s and vendor/.", dep.LockName)
-		}
-	}
-
-	return errors.Wrapf(f.Close(), "closing %s", dep.ManifestName)
-}
-
-func getProjectConstraint(arg string, sm gps.SourceManager) (gps.ProjectConstraint, string, error) {
-	emptyPC := gps.ProjectConstraint{
-		Constraint: gps.Any(), // default to any; avoids panics later
-	}
-
-	// try to split on '@'
-	// When there is no `@`, use any version
-	var versionStr string
-	atIndex := strings.Index(arg, "@")
-	if atIndex > 0 {
-		parts := strings.SplitN(arg, "@", 2)
-		arg = parts[0]
-		versionStr = parts[1]
-	}
-
-	// TODO: if we decide to keep equals.....
-
-	// split on colon if there is a network location
-	var source string
-	colonIndex := strings.Index(arg, ":")
-	if colonIndex > 0 {
-		parts := strings.SplitN(arg, ":", 2)
-		arg = parts[0]
-		source = parts[1]
-	}
-
-	pr, err := sm.DeduceProjectRoot(arg)
-	if err != nil {
-		return emptyPC, "", errors.Wrapf(err, "could not infer project root from dependency path: %s", arg) // this should go through to the user
-	}
-
-	pi := gps.ProjectIdentifier{ProjectRoot: pr, Source: source}
-	c, err := sm.InferConstraint(versionStr, pi)
-	if err != nil {
-		return emptyPC, "", err
-	}
-	return gps.ProjectConstraint{Ident: pi, Constraint: c}, arg, nil
-}
-
-func checkErrors(m map[string]pkgtree.PackageOrErr, ignore *pkgtree.IgnoredRuleset) (fatal bool, err error) {
-	var (
-		noGoErrors    int
-		pkgtreeErrors = make(pkgtreeErrs, 0, len(m))
-	)
-
-	for ip, poe := range m {
-		if ignore.IsIgnored(ip) {
-			continue
-		}
-
-		if poe.Err != nil {
-			switch poe.Err.(type) {
-			case *build.NoGoError:
-				noGoErrors++
-			default:
-				pkgtreeErrors = append(pkgtreeErrors, poe.Err)
-			}
-		}
-	}
-
-	// If pkgtree was empty or all dirs lacked any Go code, return an error.
-	if len(m) == 0 || len(m) == noGoErrors {
-		return true, errors.New("no dirs contained any Go code")
-	}
-
-	// If all dirs contained build errors, return an error.
-	if len(m) == len(pkgtreeErrors) {
-		return true, errors.New("all dirs contained build errors")
-	}
-
-	// If all directories either had no Go files or caused a build error, return an error.
-	if len(m) == len(pkgtreeErrors)+noGoErrors {
-		return true, pkgtreeErrors
-	}
-
-	// If m contained some errors, return a warning with those errors.
-	if len(pkgtreeErrors) > 0 {
-		return false, pkgtreeErrors
-	}
-
-	return false, nil
-}
-
-type pkgtreeErrs []error
-
-func (e pkgtreeErrs) Error() string {
-	errs := make([]string, 0, len(e))
-
-	for _, err := range e {
-		errs = append(errs, err.Error())
-	}
-
-	return fmt.Sprintf("found %d errors in the package tree:\n%s", len(e), strings.Join(errs, "\n"))
-}
-
-func validateUpdateArgs(ctx *dep.Ctx, args []string, p *dep.Project, sm gps.SourceManager, params *gps.SolveParameters) error {
-	// Channel for receiving all the valid arguments.
-	argsCh := make(chan string, len(args))
-
-	// Channel for receiving all the validation errors.
-	errCh := make(chan error, len(args))
-
-	var wg sync.WaitGroup
-
-	// Allow any of specified project versions to change, regardless of the lock
-	// file.
-	for _, arg := range args {
-		wg.Add(1)
-
-		go func(arg string) {
-			defer wg.Done()
-
-			// Ensure the provided path has a deducible project root.
-			pc, path, err := getProjectConstraint(arg, sm)
-			if err != nil {
-				// TODO(sdboyer) ensure these errors are contextualized in a sensible way for -update
-				errCh <- err
-				return
-			}
-			if path != string(pc.Ident.ProjectRoot) {
-				// TODO(sdboyer): does this really merit an abortive error?
-				errCh <- errors.Errorf("%s is not a project root, try %s instead", path, pc.Ident.ProjectRoot)
-				return
-			}
-
-			if !p.Lock.HasProjectWithRoot(pc.Ident.ProjectRoot) {
-				errCh <- errors.Errorf("%s is not present in %s, cannot -update it", pc.Ident.ProjectRoot, dep.LockName)
-				return
-			}
-
-			if pc.Ident.Source != "" {
-				errCh <- errors.Errorf("cannot specify alternate sources on -update (%s)", pc.Ident.Source)
-				return
-			}
-
-			if !gps.IsAny(pc.Constraint) {
-				// TODO(sdboyer) constraints should be allowed to allow solves that
-				// target particular versions while remaining within declared constraints.
-				errCh <- errors.Errorf("version constraint %s passed for %s, but -update follows constraints declared in %s, not CLI arguments", pc.Constraint, pc.Ident.ProjectRoot, dep.ManifestName)
-				return
-			}
-
-			// Valid argument.
-			argsCh <- arg
-		}(arg)
-	}
-
-	wg.Wait()
-	close(errCh)
-	close(argsCh)
-
-	// Log all the errors.
-	if len(errCh) > 0 {
-		ctx.Err.Printf("Invalid arguments passed to ensure -update:\n\n")
-		for err := range errCh {
-			ctx.Err.Println("  ✗", err.Error())
-		}
-		ctx.Err.Println()
-		return errUpdateArgsValidation
-	}
-
-	// Add all the valid arguments to solve params.
-	for arg := range argsCh {
-		params.ToChange = append(params.ToChange, gps.ProjectRoot(arg))
-	}
-
-	return nil
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/failures.go b/vendor/github.com/golang/dep/cmd/dep/failures.go
deleted file mode 100644
index c40ac8c78595b8abeecc0eee4c1daae2674af04a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/failures.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"context"
-
-	"github.com/golang/dep/gps"
-	"github.com/pkg/errors"
-)
-
-// TODO solve failures can be really creative - we need to be similarly creative
-// in handling them and informing the user appropriately
-func handleAllTheFailuresOfTheWorld(err error) error {
-	switch errors.Cause(err) {
-	case context.Canceled, context.DeadlineExceeded, gps.ErrSourceManagerIsReleased:
-		return nil
-	}
-
-	return errors.Wrap(err, "Solving failure")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/feature_flags.go b/vendor/github.com/golang/dep/cmd/dep/feature_flags.go
deleted file mode 100644
index 4dd9860cd3c78d10bc87e21ed5de46ca8c6a083e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/feature_flags.go
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-	"strconv"
-)
-
-const (
-	flagImportDuringSolveKey = "ImportDuringSolve"
-)
-
-var (
-	flagImportDuringSolve = "false"
-)
-
-var featureFlags = map[string]bool{
-	flagImportDuringSolveKey: parseFeatureFlag(flagImportDuringSolve),
-}
-
-func parseFeatureFlag(flag string) bool {
-	flagValue, _ := strconv.ParseBool(flag)
-	return flagValue
-}
-
-func readFeatureFlag(flag string) (bool, error) {
-	if flagValue, ok := featureFlags[flag]; ok {
-		return flagValue, nil
-	}
-
-	return false, fmt.Errorf("undefined feature flag: %s", flag)
-}
-
-func importDuringSolve() bool {
-	return featureFlags[flagImportDuringSolveKey]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/gopath_scanner.go b/vendor/github.com/golang/dep/cmd/dep/gopath_scanner.go
deleted file mode 100644
index ed94d8d49ff13fcc8e161aea0e19c2d8d5fe9fca..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/gopath_scanner.go
+++ /dev/null
@@ -1,408 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-	"os"
-	"path/filepath"
-	"strings"
-	"sync"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/paths"
-	"github.com/golang/dep/gps/pkgtree"
-	fb "github.com/golang/dep/internal/feedback"
-	"github.com/golang/dep/internal/fs"
-	"github.com/pkg/errors"
-)
-
-// gopathScanner supplies manifest/lock data by scanning the contents of GOPATH
-// It uses its results to fill-in any missing details left by the rootAnalyzer.
-type gopathScanner struct {
-	ctx        *dep.Ctx
-	directDeps map[gps.ProjectRoot]bool
-	sm         gps.SourceManager
-
-	pd    projectData
-	origM *dep.Manifest
-	origL *dep.Lock
-}
-
-func newGopathScanner(ctx *dep.Ctx, directDeps map[gps.ProjectRoot]bool, sm gps.SourceManager) *gopathScanner {
-	return &gopathScanner{
-		ctx:        ctx,
-		directDeps: directDeps,
-		sm:         sm,
-	}
-}
-
-// InitializeRootManifestAndLock performs analysis of the filesystem tree rooted
-// at path, with the root import path importRoot, to determine the project's
-// constraints. Respect any initial constraints defined in the root manifest and
-// lock.
-func (g *gopathScanner) InitializeRootManifestAndLock(rootM *dep.Manifest, rootL *dep.Lock) error {
-	var err error
-
-	g.ctx.Err.Println("Searching GOPATH for projects...")
-	g.pd, err = g.scanGopathForDependencies()
-	if err != nil {
-		return err
-	}
-
-	g.origM = dep.NewManifest()
-	g.origM.Constraints = g.pd.constraints
-
-	g.origL = &dep.Lock{
-		P: make([]gps.LockedProject, 0, len(g.pd.ondisk)),
-	}
-
-	for pr, v := range g.pd.ondisk {
-		// That we have to chop off these path prefixes is a symptom of
-		// a problem in gps itself
-		pkgs := make([]string, 0, len(g.pd.dependencies[pr]))
-		prslash := string(pr) + "/"
-		for _, pkg := range g.pd.dependencies[pr] {
-			if pkg == string(pr) {
-				pkgs = append(pkgs, ".")
-			} else {
-				pkgs = append(pkgs, trimPathPrefix(pkg, prslash))
-			}
-		}
-
-		g.origL.P = append(g.origL.P, gps.NewLockedProject(
-			gps.ProjectIdentifier{ProjectRoot: pr}, v, pkgs),
-		)
-	}
-
-	g.overlay(rootM, rootL)
-
-	return nil
-}
-
-// Fill in gaps in the root manifest/lock with data found from the GOPATH.
-func (g *gopathScanner) overlay(rootM *dep.Manifest, rootL *dep.Lock) {
-	for pkg, prj := range g.origM.Constraints {
-		if _, has := rootM.Constraints[pkg]; has {
-			continue
-		}
-		rootM.Constraints[pkg] = prj
-		v := g.pd.ondisk[pkg]
-
-		pi := gps.ProjectIdentifier{ProjectRoot: pkg, Source: prj.Source}
-		f := fb.NewConstraintFeedback(gps.ProjectConstraint{Ident: pi, Constraint: v}, fb.DepTypeDirect)
-		f.LogFeedback(g.ctx.Err)
-		f = fb.NewLockedProjectFeedback(gps.NewLockedProject(pi, v, nil), fb.DepTypeDirect)
-		f.LogFeedback(g.ctx.Err)
-	}
-
-	// Keep track of which projects have been locked
-	lockedProjects := map[gps.ProjectRoot]bool{}
-	for _, lp := range rootL.P {
-		lockedProjects[lp.Ident().ProjectRoot] = true
-	}
-
-	for _, lp := range g.origL.P {
-		pkg := lp.Ident().ProjectRoot
-		if _, isLocked := lockedProjects[pkg]; isLocked {
-			continue
-		}
-		rootL.P = append(rootL.P, lp)
-		lockedProjects[pkg] = true
-
-		if _, isDirect := g.directDeps[pkg]; !isDirect {
-			f := fb.NewLockedProjectFeedback(lp, fb.DepTypeTransitive)
-			f.LogFeedback(g.ctx.Err)
-		}
-	}
-
-	// Identify projects whose version is unknown and will have to be solved for
-	var missing []string    // all project roots missing from GOPATH
-	var missingVCS []string // all project roots missing VCS information
-	for pr := range g.pd.notondisk {
-		if _, isLocked := lockedProjects[pr]; isLocked {
-			continue
-		}
-		if g.pd.invalidSVC[pr] {
-			missingVCS = append(missingVCS, string(pr))
-		} else {
-			missing = append(missing, string(pr))
-		}
-	}
-
-	missingStr := ""
-	missingVCSStr := ""
-	if len(missing) > 0 {
-		missingStr = fmt.Sprintf("The following dependencies were not found in GOPATH:\n  %s\n\n",
-			strings.Join(missing, "\n  "))
-	}
-	if len(missingVCS) > 0 {
-		missingVCSStr = fmt.Sprintf("The following dependencies found in GOPATH were missing VCS information (a remote source is required):\n  %s\n\n",
-			strings.Join(missingVCS, "\n  "))
-	}
-	if len(missingVCS)+len(missing) > 0 {
-		g.ctx.Err.Printf("\n%s%sThe most recent version of these projects will be used.\n\n", missingStr, missingVCSStr)
-	}
-}
-
-func trimPathPrefix(p1, p2 string) string {
-	if isPrefix, _ := fs.HasFilepathPrefix(p1, p2); isPrefix {
-		return p1[len(p2):]
-	}
-	return p1
-}
-
-// contains checks if a array of strings contains a value
-func contains(a []string, b string) bool {
-	for _, v := range a {
-		if b == v {
-			return true
-		}
-	}
-	return false
-}
-
-// getProjectPropertiesFromVersion takes a Version and returns a proper
-// ProjectProperties with Constraint value based on the provided version.
-func getProjectPropertiesFromVersion(v gps.Version) gps.ProjectProperties {
-	pp := gps.ProjectProperties{}
-
-	// extract version and ignore if it's revision only
-	switch tv := v.(type) {
-	case gps.PairedVersion:
-		v = tv.Unpair()
-	case gps.Revision:
-		return pp
-	}
-
-	switch v.Type() {
-	case gps.IsBranch, gps.IsVersion:
-		pp.Constraint = v
-	case gps.IsSemver:
-		c, err := gps.NewSemverConstraintIC(v.String())
-		if err != nil {
-			panic(err)
-		}
-		pp.Constraint = c
-	}
-
-	return pp
-}
-
-type projectData struct {
-	constraints  gps.ProjectConstraints          // constraints that could be found
-	dependencies map[gps.ProjectRoot][]string    // all dependencies (imports) found by project root
-	notondisk    map[gps.ProjectRoot]bool        // projects that were not found on disk
-	invalidSVC   map[gps.ProjectRoot]bool        // projects that were found on disk but SVC data could not be read
-	ondisk       map[gps.ProjectRoot]gps.Version // projects that were found on disk
-}
-
-func (g *gopathScanner) scanGopathForDependencies() (projectData, error) {
-	constraints := make(gps.ProjectConstraints)
-	dependencies := make(map[gps.ProjectRoot][]string)
-	packages := make(map[string]bool)
-	notondisk := make(map[gps.ProjectRoot]bool)
-	invalidSVC := make(map[gps.ProjectRoot]bool)
-	ondisk := make(map[gps.ProjectRoot]gps.Version)
-
-	var syncDepGroup sync.WaitGroup
-	syncDep := func(pr gps.ProjectRoot, sm gps.SourceManager) {
-		if err := sm.SyncSourceFor(gps.ProjectIdentifier{ProjectRoot: pr}); err != nil {
-			g.ctx.Err.Printf("%+v", errors.Wrapf(err, "Unable to cache %s", pr))
-		}
-		syncDepGroup.Done()
-	}
-
-	if len(g.directDeps) == 0 {
-		return projectData{}, nil
-	}
-
-	for ippr := range g.directDeps {
-		// TODO(sdboyer) these are not import paths by this point, they've
-		// already been worked down to project roots.
-		ip := string(ippr)
-		pr, err := g.sm.DeduceProjectRoot(ip)
-		if err != nil {
-			return projectData{}, errors.Wrap(err, "sm.DeduceProjectRoot")
-		}
-
-		packages[ip] = true
-		if _, has := dependencies[pr]; has {
-			dependencies[pr] = append(dependencies[pr], ip)
-			continue
-		}
-		syncDepGroup.Add(1)
-		go syncDep(pr, g.sm)
-
-		dependencies[pr] = []string{ip}
-		abs, err := g.ctx.AbsForImport(string(pr))
-		if err != nil {
-			notondisk[pr] = true
-			continue
-		}
-		v, err := gps.VCSVersion(abs)
-		if err != nil {
-			invalidSVC[pr] = true
-			notondisk[pr] = true
-			continue
-		}
-
-		ondisk[pr] = v
-		pp := getProjectPropertiesFromVersion(v)
-		if pp.Constraint != nil || pp.Source != "" {
-			constraints[pr] = pp
-		}
-	}
-
-	// Explore the packages we've found for transitive deps, either
-	// completing the lock or identifying (more) missing projects that we'll
-	// need to ask gps to solve for us.
-	colors := make(map[string]uint8)
-	const (
-		white uint8 = iota
-		grey
-		black
-	)
-
-	// cache of PackageTrees, so we don't parse projects more than once
-	ptrees := make(map[gps.ProjectRoot]pkgtree.PackageTree)
-
-	// depth-first traverser
-	var dft func(string) error
-	dft = func(pkg string) error {
-		switch colors[pkg] {
-		case white:
-			colors[pkg] = grey
-
-			pr, err := g.sm.DeduceProjectRoot(pkg)
-			if err != nil {
-				return errors.Wrap(err, "could not deduce project root for "+pkg)
-			}
-
-			// We already visited this project root earlier via some other
-			// pkg within it, and made the decision that it's not on disk.
-			// Respect that decision, and pop the stack.
-			if notondisk[pr] {
-				colors[pkg] = black
-				return nil
-			}
-
-			ptree, has := ptrees[pr]
-			if !has {
-				// It's fine if the root does not exist - it indicates that this
-				// project is not present in the workspace, and so we need to
-				// solve to deal with this dep.
-				r := filepath.Join(g.ctx.GOPATH, "src", string(pr))
-				fi, err := os.Stat(r)
-				if os.IsNotExist(err) || !fi.IsDir() {
-					colors[pkg] = black
-					notondisk[pr] = true
-					return nil
-				}
-
-				// We know the project is on disk; the question is whether we're
-				// first seeing it here, in the transitive exploration, or if it
-				// was found in the initial pass on direct imports. We know it's
-				// the former if there's no entry for it in the ondisk map.
-				if _, in := ondisk[pr]; !in {
-					abs, err := g.ctx.AbsForImport(string(pr))
-					if err != nil {
-						colors[pkg] = black
-						notondisk[pr] = true
-						return nil
-					}
-					v, err := gps.VCSVersion(abs)
-					if err != nil {
-						// Even if we know it's on disk, errors are still
-						// possible when trying to deduce version. If we
-						// encounter such an error, just treat the project as
-						// not being on disk; the solver will work it out.
-						colors[pkg] = black
-						notondisk[pr] = true
-						return nil
-					}
-					ondisk[pr] = v
-				}
-
-				ptree, err = pkgtree.ListPackages(r, string(pr))
-				if err != nil {
-					// Any error here other than an a nonexistent dir (which
-					// can't happen because we covered that case above) is
-					// probably critical, so bail out.
-					return errors.Wrap(err, "gps.ListPackages")
-				}
-				ptrees[pr] = ptree
-			}
-
-			// Get a reachmap that includes main pkgs (even though importing
-			// them is an error, what we're checking right now is simply whether
-			// there's a package with go code present on disk), and does not
-			// backpropagate errors (again, because our only concern right now
-			// is package existence).
-			rm, errmap := ptree.ToReachMap(true, false, false, nil)
-			reached, ok := rm[pkg]
-			if !ok {
-				colors[pkg] = black
-				// not on disk...
-				notondisk[pr] = true
-				return nil
-			}
-			if _, ok := errmap[pkg]; ok {
-				// The package is on disk, but contains some errors.
-				colors[pkg] = black
-				return nil
-			}
-
-			if deps, has := dependencies[pr]; has {
-				if !contains(deps, pkg) {
-					dependencies[pr] = append(deps, pkg)
-				}
-			} else {
-				dependencies[pr] = []string{pkg}
-				syncDepGroup.Add(1)
-				go syncDep(pr, g.sm)
-			}
-
-			// recurse
-			for _, rpkg := range reached.External {
-				if paths.IsStandardImportPath(rpkg) {
-					continue
-				}
-
-				err := dft(rpkg)
-				if err != nil {
-					// Bubble up any errors we encounter
-					return err
-				}
-			}
-
-			colors[pkg] = black
-		case grey:
-			return errors.Errorf("Import cycle detected on %s", pkg)
-		}
-		return nil
-	}
-
-	// run the depth-first traversal from the set of immediate external
-	// package imports we found in the current project
-	for pkg := range packages {
-		err := dft(pkg)
-		if err != nil {
-			return projectData{}, err // already errors.Wrap()'d internally
-		}
-	}
-
-	syncDepGroup.Wait()
-
-	pd := projectData{
-		constraints:  constraints,
-		dependencies: dependencies,
-		invalidSVC:   invalidSVC,
-		notondisk:    notondisk,
-		ondisk:       ondisk,
-	}
-	return pd, nil
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/graphviz.go b/vendor/github.com/golang/dep/cmd/dep/graphviz.go
deleted file mode 100644
index 8ffda94700b666eaa0503954dce5401e73922c83..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/graphviz.go
+++ /dev/null
@@ -1,282 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"bytes"
-	"fmt"
-	"hash/fnv"
-	"sort"
-	"strings"
-)
-
-type graphviz struct {
-	ps []*gvnode
-	b  bytes.Buffer
-	h  map[string]uint32
-	// clusters is a map of project name and subgraph object. This can be used
-	// to refer the subgraph by project name.
-	clusters map[string]*gvsubgraph
-}
-
-type gvnode struct {
-	project  string
-	version  string
-	children []string
-}
-
-// Sort gvnode(s).
-type byGvnode []gvnode
-
-func (n byGvnode) Len() int           { return len(n) }
-func (n byGvnode) Swap(i, j int)      { n[i], n[j] = n[j], n[i] }
-func (n byGvnode) Less(i, j int) bool { return n[i].project < n[j].project }
-
-func (g graphviz) New() *graphviz {
-	ga := &graphviz{
-		ps:       []*gvnode{},
-		h:        make(map[string]uint32),
-		clusters: make(map[string]*gvsubgraph),
-	}
-	return ga
-}
-
-func (g *graphviz) output(project string) bytes.Buffer {
-	if project == "" {
-		// Project relations graph.
-		g.b.WriteString("digraph {\n\tnode [shape=box];")
-
-		for _, gvp := range g.ps {
-			// Create node string
-			g.b.WriteString(fmt.Sprintf("\n\t%d [label=\"%s\"];", gvp.hash(), gvp.label()))
-		}
-
-		g.createProjectRelations()
-	} else {
-		// Project-Package relations graph.
-		g.b.WriteString("digraph {\n\tnode [shape=box];\n\tcompound=true;\n\tedge [minlen=2];")
-
-		// Declare all the nodes with labels.
-		for _, gvp := range g.ps {
-			g.b.WriteString(fmt.Sprintf("\n\t%d [label=\"%s\"];", gvp.hash(), gvp.label()))
-		}
-
-		// Sort the clusters for a consistent output.
-		clusters := sortClusters(g.clusters)
-
-		// Declare all the subgraphs with labels.
-		for _, gsg := range clusters {
-			g.b.WriteString(fmt.Sprintf("\n\tsubgraph cluster_%d {", gsg.index))
-			g.b.WriteString(fmt.Sprintf("\n\t\tlabel = \"%s\";", gsg.project))
-
-			nhashes := []string{}
-			for _, pkg := range gsg.packages {
-				nhashes = append(nhashes, fmt.Sprint(g.h[pkg]))
-			}
-
-			g.b.WriteString(fmt.Sprintf("\n\t\t%s;", strings.Join(nhashes, " ")))
-			g.b.WriteString("\n\t}")
-		}
-
-		g.createProjectPackageRelations(project, clusters)
-	}
-
-	g.b.WriteString("\n}\n")
-	return g.b
-}
-
-func (g *graphviz) createProjectRelations() {
-	// Store relations to avoid duplication
-	rels := make(map[string]bool)
-
-	// Create relations
-	for _, dp := range g.ps {
-		for _, bsc := range dp.children {
-			for pr, hsh := range g.h {
-				if isPathPrefix(bsc, pr) {
-					r := fmt.Sprintf("\n\t%d -> %d", g.h[dp.project], hsh)
-
-					if _, ex := rels[r]; !ex {
-						g.b.WriteString(r + ";")
-						rels[r] = true
-					}
-
-				}
-			}
-		}
-	}
-}
-
-func (g *graphviz) createProjectPackageRelations(project string, clusters []*gvsubgraph) {
-	// This function takes a child package/project, target project, subgraph meta, from
-	// and to of the edge and write a relation.
-	linkRelation := func(child, project string, meta []string, from, to uint32) {
-		if child == project {
-			// Check if it's a cluster.
-			target, ok := g.clusters[project]
-			if ok {
-				// It's a cluster. Point to the Project Root. Use lhead.
-				meta = append(meta, fmt.Sprintf("lhead=cluster_%d", target.index))
-				// When the head points to a cluster root, use the first
-				// node in the cluster as to.
-				to = g.h[target.packages[0]]
-			}
-		}
-
-		if len(meta) > 0 {
-			g.b.WriteString(fmt.Sprintf("\n\t%d -> %d [%s];", from, to, strings.Join(meta, " ")))
-		} else {
-			g.b.WriteString(fmt.Sprintf("\n\t%d -> %d;", from, to))
-		}
-	}
-
-	// Create relations from nodes.
-	for _, node := range g.ps {
-		for _, child := range node.children {
-			// Only if it points to the target project, proceed further.
-			if isPathPrefix(child, project) {
-				meta := []string{}
-				from := g.h[node.project]
-				to := g.h[child]
-
-				linkRelation(child, project, meta, from, to)
-			}
-		}
-	}
-
-	// Create relations from clusters.
-	for _, cluster := range clusters {
-		for _, child := range cluster.children {
-			// Only if it points to the target project, proceed further.
-			if isPathPrefix(child, project) {
-				meta := []string{fmt.Sprintf("ltail=cluster_%d", cluster.index)}
-				// When the tail is from a cluster, use the first node in the
-				// cluster as from.
-				from := g.h[cluster.packages[0]]
-				to := g.h[child]
-
-				linkRelation(child, project, meta, from, to)
-			}
-		}
-	}
-}
-
-func (g *graphviz) createNode(project, version string, children []string) {
-	pr := &gvnode{
-		project:  project,
-		version:  version,
-		children: children,
-	}
-
-	g.h[pr.project] = pr.hash()
-	g.ps = append(g.ps, pr)
-}
-
-func (dp gvnode) hash() uint32 {
-	h := fnv.New32a()
-	h.Write([]byte(dp.project))
-	return h.Sum32()
-}
-
-func (dp gvnode) label() string {
-	label := []string{dp.project}
-
-	if dp.version != "" {
-		label = append(label, dp.version)
-	}
-
-	return strings.Join(label, "\\n")
-}
-
-// isPathPrefix ensures that the literal string prefix is a path tree match and
-// guards against possibilities like this:
-//
-// github.com/sdboyer/foo
-// github.com/sdboyer/foobar/baz
-//
-// Verify that prefix is path match and either the input is the same length as
-// the match (in which case we know they're equal), or that the next character
-// is a "/". (Import paths are defined to always use "/", not the OS-specific
-// path separator.)
-func isPathPrefix(path, pre string) bool {
-	pathlen, prflen := len(path), len(pre)
-	if pathlen < prflen || path[0:prflen] != pre {
-		return false
-	}
-
-	return prflen == pathlen || strings.Index(path[prflen:], "/") == 0
-}
-
-// gvsubgraph is a graphviz subgraph with at least one node(package) in it.
-type gvsubgraph struct {
-	project  string   // Project root name of a project.
-	packages []string // List of subpackages in the project.
-	index    int      // Index of the subgraph cluster. This is used to refer the subgraph in the dot file.
-	children []string // Dependencies of the project root package.
-}
-
-func (sg gvsubgraph) hash() uint32 {
-	h := fnv.New32a()
-	h.Write([]byte(sg.project))
-	return h.Sum32()
-}
-
-// createSubgraph creates a graphviz subgraph with nodes in it. This should only
-// be created when a project has more than one package. A single package project
-// should be just a single node.
-// First nodes are created using the provided packages and their imports. Then
-// a subgraph is created with all the nodes in it.
-func (g *graphviz) createSubgraph(project string, packages map[string][]string) {
-	// If there's only a single package and that's the project root, do not
-	// create a subgraph. Just create a node.
-	if children, ok := packages[project]; ok && len(packages) == 1 {
-		g.createNode(project, "", children)
-		return
-	}
-
-	// Sort and use the packages for consistent output.
-	pkgs := []gvnode{}
-
-	for name, children := range packages {
-		pkgs = append(pkgs, gvnode{project: name, children: children})
-	}
-
-	sort.Sort(byGvnode(pkgs))
-
-	subgraphPkgs := []string{}
-	rootChildren := []string{}
-	for _, p := range pkgs {
-		if p.project == project {
-			// Do not create a separate node for the root package.
-			rootChildren = append(rootChildren, p.children...)
-			continue
-		}
-		g.createNode(p.project, "", p.children)
-		subgraphPkgs = append(subgraphPkgs, p.project)
-	}
-
-	sg := &gvsubgraph{
-		project:  project,
-		packages: subgraphPkgs,
-		index:    len(g.clusters),
-		children: rootChildren,
-	}
-
-	g.h[project] = sg.hash()
-	g.clusters[project] = sg
-}
-
-// sortCluster takes a map of all the clusters and returns a list of cluster
-// names sorted by the cluster index.
-func sortClusters(clusters map[string]*gvsubgraph) []*gvsubgraph {
-	result := []*gvsubgraph{}
-	for _, cluster := range clusters {
-		result = append(result, cluster)
-	}
-	sort.Slice(result, func(i, j int) bool {
-		return result[i].index < result[j].index
-	})
-	return result
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/init.go b/vendor/github.com/golang/dep/cmd/dep/init.go
deleted file mode 100644
index 70df59fb901e2cc810e0f2a3d811b802d146a031..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/init.go
+++ /dev/null
@@ -1,235 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"context"
-	"flag"
-	"log"
-	"os"
-	"path/filepath"
-	"time"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/fs"
-	"github.com/pkg/errors"
-)
-
-const initShortHelp = `Set up a new Go project, or migrate an existing one`
-const initLongHelp = `
-Initialize the project at filepath root by parsing its dependencies, writing
-manifest and lock files, and vendoring the dependencies. If root isn't
-specified, use the current directory.
-
-When configuration for another dependency management tool is detected, it is
-imported into the initial manifest and lock. Use the -skip-tools flag to
-disable this behavior. The following external tools are supported:
-glide, godep, vndr, govend, gb, gvt, govendor, glock.
-
-Any dependencies that are not constrained by external configuration use the
-GOPATH analysis below.
-
-By default, the dependencies are resolved over the network. A version will be
-selected from the versions available from the upstream source per the following
-algorithm:
-
- - Tags conforming to semver (sorted by semver rules)
- - Default branch(es) (sorted lexicographically)
- - Non-semver tags (sorted lexicographically)
-
-An alternate mode can be activated by passing -gopath. In this mode, the version
-of each dependency will reflect the current state of the GOPATH. If a dependency
-doesn't exist in the GOPATH, a version will be selected based on the above
-network version selection algorithm.
-
-A Gopkg.toml file will be written with inferred version constraints for all
-direct dependencies. Gopkg.lock will be written with precise versions, and
-vendor/ will be populated with the precise versions written to Gopkg.lock.
-`
-
-func (cmd *initCommand) Name() string      { return "init" }
-func (cmd *initCommand) Args() string      { return "[root]" }
-func (cmd *initCommand) ShortHelp() string { return initShortHelp }
-func (cmd *initCommand) LongHelp() string  { return initLongHelp }
-func (cmd *initCommand) Hidden() bool      { return false }
-
-func (cmd *initCommand) Register(fs *flag.FlagSet) {
-	fs.BoolVar(&cmd.noExamples, "no-examples", false, "don't include example in Gopkg.toml")
-	fs.BoolVar(&cmd.skipTools, "skip-tools", false, "skip importing configuration from other dependency managers")
-	fs.BoolVar(&cmd.gopath, "gopath", false, "search in GOPATH for dependencies")
-}
-
-type initCommand struct {
-	noExamples bool
-	skipTools  bool
-	gopath     bool
-}
-
-func (cmd *initCommand) Run(ctx *dep.Ctx, args []string) error {
-	if len(args) > 1 {
-		return errors.Errorf("too many args (%d)", len(args))
-	}
-
-	var root string
-	if len(args) <= 0 {
-		root = ctx.WorkingDir
-	} else {
-		root = args[0]
-		if !filepath.IsAbs(args[0]) {
-			root = filepath.Join(ctx.WorkingDir, args[0])
-		}
-		if err := os.MkdirAll(root, os.FileMode(0777)); err != nil {
-			return errors.Wrapf(err, "init failed: unable to create a directory at %s", root)
-		}
-	}
-
-	p, err := cmd.establishProjectAt(root, ctx)
-	if err != nil {
-		return err
-	}
-
-	sm, err := ctx.SourceManager()
-	if err != nil {
-		return errors.Wrap(err, "init failed: unable to create a source manager")
-	}
-	sm.UseDefaultSignalHandling()
-	defer sm.Release()
-
-	if ctx.Verbose {
-		ctx.Out.Println("Getting direct dependencies...")
-	}
-
-	directDeps, err := p.GetDirectDependencyNames(sm)
-	if err != nil {
-		return errors.Wrap(err, "init failed: unable to determine direct dependencies")
-	}
-	if ctx.Verbose {
-		ctx.Out.Printf("Checked %d directories for packages.\nFound %d direct dependencies.\n", len(p.RootPackageTree.Packages), len(directDeps))
-	}
-
-	// Initialize with imported data, then fill in the gaps using the GOPATH
-	rootAnalyzer := newRootAnalyzer(cmd.skipTools, ctx, directDeps, sm)
-	p.Manifest, p.Lock, err = rootAnalyzer.InitializeRootManifestAndLock(root, p.ImportRoot)
-	if err != nil {
-		return errors.Wrap(err, "init failed: unable to prepare an initial manifest and lock for the solver")
-	}
-
-	// Set default prune options for go-tests and unused-packages
-	p.Manifest.PruneOptions.DefaultOptions = gps.PruneNestedVendorDirs | gps.PruneGoTestFiles | gps.PruneUnusedPackages
-
-	if cmd.gopath {
-		gs := newGopathScanner(ctx, directDeps, sm)
-		err = gs.InitializeRootManifestAndLock(p.Manifest, p.Lock)
-		if err != nil {
-			return errors.Wrap(err, "init failed: unable to scan the GOPATH for dependencies")
-		}
-	}
-
-	rootAnalyzer.skipTools = importDuringSolve()
-	copyLock := *p.Lock // Copy lock before solving. Use this to separate new lock projects from solved lock
-
-	params := gps.SolveParameters{
-		RootDir:         root,
-		RootPackageTree: p.RootPackageTree,
-		Manifest:        p.Manifest,
-		Lock:            p.Lock,
-		ProjectAnalyzer: rootAnalyzer,
-	}
-
-	if ctx.Verbose {
-		params.TraceLogger = ctx.Err
-	}
-
-	if err := ctx.ValidateParams(sm, params); err != nil {
-		return errors.Wrapf(err, "init failed: validation of solve parameters failed")
-	}
-
-	s, err := gps.Prepare(params, sm)
-	if err != nil {
-		return errors.Wrap(err, "init failed: unable to prepare the solver")
-	}
-
-	soln, err := s.Solve(context.TODO())
-	if err != nil {
-		err = handleAllTheFailuresOfTheWorld(err)
-		return errors.Wrap(err, "init failed: unable to solve the dependency graph")
-	}
-	p.Lock = dep.LockFromSolution(soln, p.Manifest.PruneOptions)
-
-	rootAnalyzer.FinalizeRootManifestAndLock(p.Manifest, p.Lock, copyLock)
-
-	// Pass timestamp (yyyyMMddHHmmss format) as suffix to backup name.
-	vendorbak, err := dep.BackupVendor(filepath.Join(root, "vendor"), time.Now().Format("20060102150405"))
-	if err != nil {
-		return errors.Wrap(err, "init failed: first backup vendor/, delete it, and then retry the previous command: failed to backup existing vendor directory")
-	}
-	if vendorbak != "" {
-		ctx.Err.Printf("Old vendor backed up to %v", vendorbak)
-	}
-
-	sw, err := dep.NewSafeWriter(p.Manifest, nil, p.Lock, dep.VendorAlways, p.Manifest.PruneOptions, nil)
-	if err != nil {
-		return errors.Wrap(err, "init failed: unable to create a SafeWriter")
-	}
-
-	var logger *log.Logger
-	if ctx.Verbose {
-		logger = ctx.Err
-	}
-	if err := sw.Write(root, sm, !cmd.noExamples, logger); err != nil {
-		return errors.Wrap(err, "init failed: unable to write the manifest, lock and vendor directory to disk")
-	}
-
-	return nil
-}
-
-// establishProjectAt attempts to set up the provided path as the root for the
-// project to be created.
-//
-// It checks for being within a GOPATH, that there is no pre-existing manifest
-// and lock, and that we can successfully infer the root import path from
-// GOPATH.
-//
-// If successful, it returns a dep.Project, ready for further use.
-func (cmd *initCommand) establishProjectAt(root string, ctx *dep.Ctx) (*dep.Project, error) {
-	var err error
-	p := new(dep.Project)
-	if err = p.SetRoot(root); err != nil {
-		return nil, errors.Wrapf(err, "init failed: unable to set the root project to %s", root)
-	}
-
-	ctx.GOPATH, err = ctx.DetectProjectGOPATH(p)
-	if err != nil {
-		return nil, errors.Wrapf(err, "init failed: unable to detect the containing GOPATH")
-	}
-
-	mf := filepath.Join(root, dep.ManifestName)
-	lf := filepath.Join(root, dep.LockName)
-
-	mok, err := fs.IsRegular(mf)
-	if err != nil {
-		return nil, errors.Wrapf(err, "init failed: unable to check for an existing manifest at %s", mf)
-	}
-	if mok {
-		return nil, errors.Errorf("init aborted: manifest already exists at %s", mf)
-	}
-
-	lok, err := fs.IsRegular(lf)
-	if err != nil {
-		return nil, errors.Wrapf(err, "init failed: unable to check for an existing lock at %s", lf)
-	}
-	if lok {
-		return nil, errors.Errorf("invalid aborted: lock already exists at %s", lf)
-	}
-
-	ip, err := ctx.ImportForAbs(root)
-	if err != nil {
-		return nil, errors.Wrapf(err, "init failed: unable to determine the import path for the root project %s", root)
-	}
-	p.ImportRoot = gps.ProjectRoot(ip)
-
-	return p, nil
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/main.go b/vendor/github.com/golang/dep/cmd/dep/main.go
deleted file mode 100644
index 4a9658068f8381c110d31b1e0275353bb41c6cfe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/main.go
+++ /dev/null
@@ -1,456 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-//go:generate ./mkdoc.sh
-
-package main
-
-import (
-	"bytes"
-	"flag"
-	"fmt"
-	"io"
-	"log"
-	"os"
-	"path/filepath"
-	"runtime"
-	"runtime/pprof"
-	"strings"
-	"text/tabwriter"
-	"time"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/internal/fs"
-)
-
-var (
-	successExitCode = 0
-	errorExitCode   = 1
-)
-
-type command interface {
-	Name() string           // "foobar"
-	Args() string           // "<baz> [quux...]"
-	ShortHelp() string      // "Foo the first bar"
-	LongHelp() string       // "Foo the first bar meeting the following conditions..."
-	Register(*flag.FlagSet) // command-specific flags
-	Hidden() bool           // indicates whether the command should be hidden from help output
-	Run(*dep.Ctx, []string) error
-}
-
-// Helper type so that commands can fail without generating any additional
-// ouptut.
-type silentfail struct{}
-
-func (silentfail) Error() string {
-	return ""
-}
-
-func main() {
-	p := &profile{}
-
-	// Redefining Usage() customizes the output of `dep -h`
-	flag.CommandLine.Usage = func() {
-		fprintUsage(os.Stderr)
-	}
-
-	flag.StringVar(&p.cpuProfile, "cpuprofile", "", "Writes a CPU profile to the specified file before exiting.")
-	flag.StringVar(&p.memProfile, "memprofile", "", "Writes a memory profile to the specified file before exiting.")
-	flag.IntVar(&p.memProfileRate, "memprofilerate", 0, "Enable more precise memory profiles by setting runtime.MemProfileRate.")
-	flag.StringVar(&p.mutexProfile, "mutexprofile", "", "Writes a mutex profile to the specified file before exiting.")
-	flag.IntVar(&p.mutexProfileFraction, "mutexprofilefraction", 0, "Enable more precise mutex profiles by runtime.SetMutexProfileFraction.")
-	flag.Parse()
-
-	wd, err := os.Getwd()
-	if err != nil {
-		fmt.Fprintln(os.Stderr, "failed to get working directory", err)
-		os.Exit(1)
-	}
-
-	args := append([]string{os.Args[0]}, flag.Args()...)
-	c := &Config{
-		Args:       args,
-		Stdout:     os.Stdout,
-		Stderr:     os.Stderr,
-		WorkingDir: wd,
-		Env:        os.Environ(),
-	}
-
-	if err := p.start(); err != nil {
-		fmt.Fprintf(os.Stderr, "failed to profile: %v\n", err)
-		os.Exit(1)
-	}
-	exit := c.Run()
-	if err := p.finish(); err != nil {
-		fmt.Fprintf(os.Stderr, "failed to finish the profile: %v\n", err)
-		os.Exit(1)
-	}
-	os.Exit(exit)
-}
-
-// A Config specifies a full configuration for a dep execution.
-type Config struct {
-	WorkingDir     string    // Where to execute
-	Args           []string  // Command-line arguments, starting with the program name.
-	Env            []string  // Environment variables
-	Stdout, Stderr io.Writer // Log output
-}
-
-// Run executes a configuration and returns an exit code.
-func (c *Config) Run() int {
-	commands := commandList()
-
-	cmdName, printCommandHelp, exit := parseArgs(c.Args)
-	if exit {
-		fprintUsage(c.Stderr)
-		return errorExitCode
-	}
-
-	// 'dep help documentation' generates doc.go.
-	if printCommandHelp && cmdName == "documentation" {
-		fmt.Println("// Copyright 2017 The Go Authors. All rights reserved.")
-		fmt.Println("// Use of this source code is governed by a BSD-style")
-		fmt.Println("// license that can be found in the LICENSE file.")
-		fmt.Println()
-		fmt.Println("// DO NOT EDIT THIS FILE. GENERATED BY mkdoc.sh.")
-		fmt.Println("// Edit the documentation in other files and rerun mkdoc.sh to generate this one.")
-		fmt.Println()
-
-		var cw io.Writer = &commentWriter{W: c.Stdout}
-		fprintUsage(cw)
-		for _, cmd := range commands {
-			if !cmd.Hidden() {
-				fmt.Fprintln(cw)
-				short := cmd.ShortHelp()
-				fmt.Fprintln(cw, short)
-				fmt.Fprintln(cw)
-				fmt.Fprintln(cw, "Usage:")
-				fmt.Fprintln(cw)
-				fmt.Fprintln(cw, "", cmd.Name(), cmd.Args())
-				if long := cmd.LongHelp(); long != short {
-					fmt.Fprintln(cw, long)
-				}
-			}
-		}
-
-		fmt.Println("//")
-		fmt.Println("package main")
-		return successExitCode
-	}
-
-	outLogger := log.New(c.Stdout, "", 0)
-	errLogger := log.New(c.Stderr, "", 0)
-
-	for _, cmd := range commands {
-		if cmd.Name() == cmdName {
-			// Build flag set with global flags in there.
-			flags := flag.NewFlagSet(cmdName, flag.ContinueOnError)
-			flags.SetOutput(c.Stderr)
-
-			var verbose bool
-			// No verbose for verify
-			if cmdName != "check" {
-				flags.BoolVar(&verbose, "v", false, "enable verbose logging")
-			}
-
-			// Register the subcommand flags in there, too.
-			cmd.Register(flags)
-
-			// Override the usage text to something nicer.
-			resetUsage(errLogger, flags, cmdName, cmd.Args(), cmd.LongHelp())
-
-			if printCommandHelp {
-				flags.Usage()
-				return errorExitCode
-			}
-
-			// Parse the flags the user gave us.
-			// flag package automatically prints usage and error message in err != nil
-			// or if '-h' flag provided
-			if err := flags.Parse(c.Args[2:]); err != nil {
-				return errorExitCode
-			}
-
-			// Cachedir is loaded from env if present. `$GOPATH/pkg/dep` is used as the
-			// default cache location.
-			cachedir := getEnv(c.Env, "DEPCACHEDIR")
-			if cachedir != "" {
-				if err := fs.EnsureDir(cachedir, 0777); err != nil {
-					errLogger.Printf(
-						"dep: $DEPCACHEDIR set to an invalid or inaccessible path: %q\n", cachedir,
-					)
-					errLogger.Printf("dep: failed to ensure cache directory: %v\n", err)
-					return errorExitCode
-				}
-			}
-
-			var cacheAge time.Duration
-			if env := getEnv(c.Env, "DEPCACHEAGE"); env != "" {
-				var err error
-				cacheAge, err = time.ParseDuration(env)
-				if err != nil {
-					errLogger.Printf("dep: failed to parse $DEPCACHEAGE duration %q: %v\n", env, err)
-					return errorExitCode
-				}
-			}
-
-			// Set up dep context.
-			ctx := &dep.Ctx{
-				Out:            outLogger,
-				Err:            errLogger,
-				Verbose:        verbose,
-				DisableLocking: getEnv(c.Env, "DEPNOLOCK") != "",
-				Cachedir:       cachedir,
-				CacheAge:       cacheAge,
-			}
-
-			GOPATHS := filepath.SplitList(getEnv(c.Env, "GOPATH"))
-			ctx.SetPaths(c.WorkingDir, GOPATHS...)
-
-			// Run the command with the post-flag-processing args.
-			if err := cmd.Run(ctx, flags.Args()); err != nil {
-				if _, ok := err.(silentfail); !ok {
-					errLogger.Printf("%v\n", err)
-				}
-				return errorExitCode
-			}
-
-			// Easy peasy livin' breezy.
-			return successExitCode
-		}
-	}
-
-	errLogger.Printf("dep: %s: no such command\n", cmdName)
-	fprintUsage(c.Stderr)
-	return errorExitCode
-}
-
-// Build the list of available commands.
-//
-// Note that these commands are mutable, but parts of this file
-// use them for their immutable characteristics (help strings, etc).
-func commandList() []command {
-	return []command{
-		&initCommand{},
-		&statusCommand{},
-		&ensureCommand{},
-		&pruneCommand{},
-		&versionCommand{},
-		&checkCommand{},
-	}
-}
-
-var examples = [...][2]string{
-	{
-		"dep init",
-		"set up a new project",
-	},
-	{
-		"dep ensure",
-		"install the project's dependencies",
-	},
-	{
-		"dep ensure -update",
-		"update the locked versions of all dependencies",
-	},
-	{
-		"dep ensure -add github.com/pkg/errors",
-		"add a dependency to the project",
-	},
-}
-
-func fprintUsage(w io.Writer) {
-	fmt.Fprintln(w, "Dep is a tool for managing dependencies for Go projects")
-	fmt.Fprintln(w)
-	fmt.Fprintln(w, "Usage: \"dep [command]\"")
-	fmt.Fprintln(w)
-	fmt.Fprintln(w, "Commands:")
-	fmt.Fprintln(w)
-	tw := tabwriter.NewWriter(w, 0, 0, 2, ' ', 0)
-
-	commands := commandList()
-	for _, cmd := range commands {
-		if !cmd.Hidden() {
-			fmt.Fprintf(tw, "\t%s\t%s\n", cmd.Name(), cmd.ShortHelp())
-		}
-	}
-	tw.Flush()
-	fmt.Fprintln(w)
-	fmt.Fprintln(w, "Examples:")
-	for _, example := range examples {
-		fmt.Fprintf(tw, "\t%s\t%s\n", example[0], example[1])
-	}
-	tw.Flush()
-	fmt.Fprintln(w)
-	fmt.Fprintln(w, "Use \"dep help [command]\" for more information about a command.")
-}
-
-func resetUsage(logger *log.Logger, fs *flag.FlagSet, name, args, longHelp string) {
-	var (
-		hasFlags   bool
-		flagBlock  bytes.Buffer
-		flagWriter = tabwriter.NewWriter(&flagBlock, 0, 4, 2, ' ', 0)
-	)
-	fs.VisitAll(func(f *flag.Flag) {
-		hasFlags = true
-		// Default-empty string vars should read "(default: <none>)"
-		// rather than the comparatively ugly "(default: )".
-		defValue := f.DefValue
-		if defValue == "" {
-			defValue = "<none>"
-		}
-		fmt.Fprintf(flagWriter, "\t-%s\t%s (default: %s)\n", f.Name, f.Usage, defValue)
-	})
-	flagWriter.Flush()
-	fs.Usage = func() {
-		logger.Printf("Usage: dep %s %s\n", name, args)
-		logger.Println()
-		logger.Println(strings.TrimSpace(longHelp))
-		logger.Println()
-		if hasFlags {
-			logger.Println("Flags:")
-			logger.Println()
-			logger.Println(flagBlock.String())
-		}
-	}
-}
-
-// parseArgs determines the name of the dep command and whether the user asked for
-// help to be printed.
-func parseArgs(args []string) (cmdName string, printCmdUsage bool, exit bool) {
-	isHelpArg := func() bool {
-		return strings.Contains(strings.ToLower(args[1]), "help") || strings.ToLower(args[1]) == "-h"
-	}
-
-	switch len(args) {
-	case 0, 1:
-		exit = true
-	case 2:
-		if isHelpArg() {
-			exit = true
-		} else {
-			cmdName = args[1]
-		}
-	default:
-		if isHelpArg() {
-			cmdName = args[2]
-			printCmdUsage = true
-		} else {
-			cmdName = args[1]
-		}
-	}
-	return cmdName, printCmdUsage, exit
-}
-
-// getEnv returns the last instance of an environment variable.
-func getEnv(env []string, key string) string {
-	for i := len(env) - 1; i >= 0; i-- {
-		v := env[i]
-		kv := strings.SplitN(v, "=", 2)
-		if kv[0] == key {
-			if len(kv) > 1 {
-				return kv[1]
-			}
-			return ""
-		}
-	}
-	return ""
-}
-
-// commentWriter writes a Go comment to the underlying io.Writer,
-// using line comment form (//).
-//
-// Copied from cmd/go/internal/help/help.go.
-type commentWriter struct {
-	W            io.Writer
-	wroteSlashes bool // Wrote "//" at the beginning of the current line.
-}
-
-func (c *commentWriter) Write(p []byte) (int, error) {
-	var n int
-	for i, b := range p {
-		if !c.wroteSlashes {
-			s := "//"
-			if b != '\n' {
-				s = "// "
-			}
-			if _, err := io.WriteString(c.W, s); err != nil {
-				return n, err
-			}
-			c.wroteSlashes = true
-		}
-		n0, err := c.W.Write(p[i : i+1])
-		n += n0
-		if err != nil {
-			return n, err
-		}
-		if b == '\n' {
-			c.wroteSlashes = false
-		}
-	}
-	return len(p), nil
-}
-
-type profile struct {
-	cpuProfile string
-
-	memProfile     string
-	memProfileRate int
-
-	mutexProfile         string
-	mutexProfileFraction int
-
-	// TODO(jbd): Add block profile and -trace.
-
-	f *os.File // file to write the profiling output to
-}
-
-func (p *profile) start() error {
-	switch {
-	case p.cpuProfile != "":
-		if err := p.createOutput(p.cpuProfile); err != nil {
-			return err
-		}
-		return pprof.StartCPUProfile(p.f)
-	case p.memProfile != "":
-		if p.memProfileRate > 0 {
-			runtime.MemProfileRate = p.memProfileRate
-		}
-		return p.createOutput(p.memProfile)
-	case p.mutexProfile != "":
-		if p.mutexProfileFraction > 0 {
-			runtime.SetMutexProfileFraction(p.mutexProfileFraction)
-		}
-		return p.createOutput(p.mutexProfile)
-	}
-	return nil
-}
-
-func (p *profile) finish() error {
-	if p.f == nil {
-		return nil
-	}
-	switch {
-	case p.cpuProfile != "":
-		pprof.StopCPUProfile()
-	case p.memProfile != "":
-		if err := pprof.WriteHeapProfile(p.f); err != nil {
-			return err
-		}
-	case p.mutexProfile != "":
-		if err := pprof.Lookup("mutex").WriteTo(p.f, 2); err != nil {
-			return err
-		}
-	}
-	return p.f.Close()
-}
-
-func (p *profile) createOutput(name string) error {
-	f, err := os.Create(name)
-	if err != nil {
-		return err
-	}
-	p.f = f
-	return nil
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/mkdoc.sh b/vendor/github.com/golang/dep/cmd/dep/mkdoc.sh
deleted file mode 100755
index c2e6941ff47d71c230cc9d4843f546e7dd7a71b4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/mkdoc.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-# Copyright 2017 The Go Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style
-# license that can be found in the LICENSE file.
-
-set -e
-
-go build -o dep.latest
-./dep.latest help documentation >doc.go
-gofmt -w doc.go
-rm dep.latest
diff --git a/vendor/github.com/golang/dep/cmd/dep/prune.go b/vendor/github.com/golang/dep/cmd/dep/prune.go
deleted file mode 100644
index d02f7debf4fa3b2927287380d733924e28b30d64..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/prune.go
+++ /dev/null
@@ -1,205 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"flag"
-	"io/ioutil"
-	"log"
-	"os"
-	"path/filepath"
-	"sort"
-	"strings"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/golang/dep/internal/fs"
-	"github.com/pkg/errors"
-)
-
-const pruneShortHelp = `Pruning is now performed automatically by dep ensure.`
-const pruneLongHelp = `
-Prune was merged into the ensure command.
-Set prune options in the manifest and it will be applied after every ensure.
-dep prune will be removed in a future version of dep, causing this command to exit non-0.
-`
-
-type pruneCommand struct {
-}
-
-func (cmd *pruneCommand) Name() string      { return "prune" }
-func (cmd *pruneCommand) Args() string      { return "" }
-func (cmd *pruneCommand) ShortHelp() string { return pruneShortHelp }
-func (cmd *pruneCommand) LongHelp() string  { return pruneLongHelp }
-func (cmd *pruneCommand) Hidden() bool      { return true }
-
-func (cmd *pruneCommand) Register(fs *flag.FlagSet) {
-}
-
-func (cmd *pruneCommand) Run(ctx *dep.Ctx, args []string) error {
-	ctx.Err.Printf("Pruning is now performed automatically by dep ensure.\n")
-	ctx.Err.Printf("Set prune settings in %s and it will be applied when running ensure.\n", dep.ManifestName)
-	ctx.Err.Printf("\nThis command currently still prunes as it always has, to ease the transition.\n")
-	ctx.Err.Printf("However, it will be removed in a future version of dep.\n")
-	ctx.Err.Printf("\nNow is the time to update your Gopkg.toml and remove `dep prune` from any scripts.\n")
-	ctx.Err.Printf("\nFor more information, see: https://golang.github.io/dep/docs/Gopkg.toml.html#prune\n")
-
-	p, err := ctx.LoadProject()
-	if err != nil {
-		return err
-	}
-
-	sm, err := ctx.SourceManager()
-	if err != nil {
-		return err
-	}
-	sm.UseDefaultSignalHandling()
-	defer sm.Release()
-
-	// While the network churns on ListVersions() requests, statically analyze
-	// code from the current project.
-	ptree, err := pkgtree.ListPackages(p.ResolvedAbsRoot, string(p.ImportRoot))
-	if err != nil {
-		return errors.Wrap(err, "analysis of local packages failed: %v")
-	}
-
-	// Set up a solver in order to check the InputHash.
-	params := p.MakeParams()
-	params.RootPackageTree = ptree
-
-	if ctx.Verbose {
-		params.TraceLogger = ctx.Err
-	}
-
-	if p.Lock == nil {
-		return errors.Errorf("Gopkg.lock must exist for prune to know what files are safe to remove.")
-	}
-
-	pruneLogger := ctx.Err
-	if !ctx.Verbose {
-		pruneLogger = log.New(ioutil.Discard, "", 0)
-	}
-	return pruneProject(p, sm, pruneLogger)
-}
-
-// pruneProject removes unused packages from a project.
-func pruneProject(p *dep.Project, sm gps.SourceManager, logger *log.Logger) error {
-	td, err := ioutil.TempDir(os.TempDir(), "dep")
-	if err != nil {
-		return errors.Wrap(err, "error while creating temp dir for writing manifest/lock/vendor")
-	}
-	defer os.RemoveAll(td)
-
-	onWrite := func(progress gps.WriteProgress) {
-		logger.Println(progress)
-	}
-	if err := gps.WriteDepTree(td, p.Lock, sm, gps.CascadingPruneOptions{DefaultOptions: gps.PruneNestedVendorDirs}, onWrite); err != nil {
-		return err
-	}
-
-	var toKeep []string
-	for _, project := range p.Lock.Projects() {
-		projectRoot := string(project.Ident().ProjectRoot)
-		for _, pkg := range project.Packages() {
-			toKeep = append(toKeep, filepath.Join(projectRoot, pkg))
-		}
-	}
-
-	toDelete, err := calculatePrune(td, toKeep, logger)
-	if err != nil {
-		return err
-	}
-
-	if len(toDelete) > 0 {
-		logger.Println("Calculated the following directories to prune:")
-		for _, d := range toDelete {
-			logger.Printf("  %s\n", d)
-		}
-	} else {
-		logger.Println("No directories found to prune")
-	}
-
-	if err := deleteDirs(toDelete); err != nil {
-		return err
-	}
-
-	vpath := filepath.Join(p.AbsRoot, "vendor")
-	vendorbak := vpath + ".orig"
-	var failerr error
-	if _, err := os.Stat(vpath); err == nil {
-		// Move out the old vendor dir. just do it into an adjacent dir, to
-		// try to mitigate the possibility of a pointless cross-filesystem
-		// move with a temp directory.
-		if _, err := os.Stat(vendorbak); err == nil {
-			// If the adjacent dir already exists, bite the bullet and move
-			// to a proper tempdir.
-			vendorbak = filepath.Join(td, "vendor.orig")
-		}
-		failerr = fs.RenameWithFallback(vpath, vendorbak)
-		if failerr != nil {
-			goto fail
-		}
-	}
-
-	// Move in the new one.
-	failerr = fs.RenameWithFallback(td, vpath)
-	if failerr != nil {
-		goto fail
-	}
-
-	os.RemoveAll(vendorbak)
-
-	return nil
-
-fail:
-	fs.RenameWithFallback(vendorbak, vpath)
-	return failerr
-}
-
-func calculatePrune(vendorDir string, keep []string, logger *log.Logger) ([]string, error) {
-	logger.Println("Calculating prune. Checking the following packages:")
-	sort.Strings(keep)
-	var toDelete []string
-	err := filepath.Walk(vendorDir, func(path string, info os.FileInfo, err error) error {
-		if _, err := os.Lstat(path); err != nil {
-			return nil
-		}
-		if !info.IsDir() {
-			return nil
-		}
-		if path == vendorDir {
-			return nil
-		}
-
-		name := strings.TrimPrefix(path, vendorDir+string(filepath.Separator))
-		logger.Printf("  %s", name)
-		i := sort.Search(len(keep), func(i int) bool {
-			return name <= keep[i]
-		})
-		if i >= len(keep) || !strings.HasPrefix(keep[i], name) {
-			toDelete = append(toDelete, path)
-		}
-		return nil
-	})
-	return toDelete, err
-}
-
-func deleteDirs(toDelete []string) error {
-	// sort by length so we delete sub dirs first
-	sort.Sort(byLen(toDelete))
-	for _, path := range toDelete {
-		if err := os.RemoveAll(path); err != nil {
-			return err
-		}
-	}
-	return nil
-}
-
-type byLen []string
-
-func (a byLen) Len() int           { return len(a) }
-func (a byLen) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
-func (a byLen) Less(i, j int) bool { return len(a[i]) > len(a[j]) }
diff --git a/vendor/github.com/golang/dep/cmd/dep/root_analyzer.go b/vendor/github.com/golang/dep/cmd/dep/root_analyzer.go
deleted file mode 100644
index 72ba9c22ab493c099d9c36c6ec12500dcc6bae25..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/root_analyzer.go
+++ /dev/null
@@ -1,211 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"context"
-	"io/ioutil"
-	"log"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	fb "github.com/golang/dep/internal/feedback"
-	"github.com/golang/dep/internal/importers"
-	"golang.org/x/sync/errgroup"
-)
-
-// rootAnalyzer supplies manifest/lock data from both dep and external tool's
-// configuration files.
-// * When used on the root project, it imports only from external tools.
-// * When used by the solver for dependencies, it first looks for dep config,
-//   then external tools.
-type rootAnalyzer struct {
-	skipTools  bool
-	ctx        *dep.Ctx
-	sm         gps.SourceManager
-	directDeps map[gps.ProjectRoot]bool
-}
-
-func newRootAnalyzer(skipTools bool, ctx *dep.Ctx, directDeps map[gps.ProjectRoot]bool, sm gps.SourceManager) *rootAnalyzer {
-	return &rootAnalyzer{
-		skipTools:  skipTools,
-		ctx:        ctx,
-		sm:         sm,
-		directDeps: directDeps,
-	}
-}
-
-func (a *rootAnalyzer) InitializeRootManifestAndLock(dir string, pr gps.ProjectRoot) (rootM *dep.Manifest, rootL *dep.Lock, err error) {
-	if !a.skipTools {
-		rootM, rootL = a.importManifestAndLock(dir, pr, false)
-	}
-
-	if rootM == nil {
-		rootM = dep.NewManifest()
-
-		// Since we didn't find anything to import, dep's cache is empty.
-		// We are prefetching dependencies and logging so that the subsequent solve step
-		// doesn't spend a long time retrieving dependencies without feedback for the user.
-		if err := a.cacheDeps(pr); err != nil {
-			return nil, nil, err
-		}
-	}
-	if rootL == nil {
-		rootL = &dep.Lock{}
-	}
-
-	return
-}
-
-func (a *rootAnalyzer) cacheDeps(pr gps.ProjectRoot) error {
-	logger := a.ctx.Err
-	g, _ := errgroup.WithContext(context.TODO())
-	concurrency := 4
-
-	syncDep := func(pr gps.ProjectRoot, sm gps.SourceManager) error {
-		if err := sm.SyncSourceFor(gps.ProjectIdentifier{ProjectRoot: pr}); err != nil {
-			logger.Printf("Unable to cache %s - %s", pr, err)
-			return err
-		}
-		return nil
-	}
-
-	deps := make(chan gps.ProjectRoot)
-
-	for i := 0; i < concurrency; i++ {
-		g.Go(func() error {
-			for d := range deps {
-				err := syncDep(gps.ProjectRoot(d), a.sm)
-				if err != nil {
-					return err
-				}
-			}
-			return nil
-		})
-	}
-
-	g.Go(func() error {
-		defer close(deps)
-		for pr := range a.directDeps {
-			logger.Printf("Caching package %q", pr)
-			deps <- pr
-		}
-		return nil
-	})
-
-	if err := g.Wait(); err != nil {
-		return err
-	}
-	logger.Printf("Successfully cached all deps.")
-	return nil
-}
-
-func (a *rootAnalyzer) importManifestAndLock(dir string, pr gps.ProjectRoot, suppressLogs bool) (*dep.Manifest, *dep.Lock) {
-	logger := a.ctx.Err
-	if suppressLogs {
-		logger = log.New(ioutil.Discard, "", 0)
-	}
-
-	for _, i := range importers.BuildAll(logger, a.ctx.Verbose, a.sm) {
-		if i.HasDepMetadata(dir) {
-			a.ctx.Err.Printf("Importing configuration from %s. These are only initial constraints, and are further refined during the solve process.", i.Name())
-			m, l, err := i.Import(dir, pr)
-			if err != nil {
-				a.ctx.Err.Printf(
-					"Warning: Encountered an unrecoverable error while trying to import %s config from %q: %s",
-					i.Name(), dir, err,
-				)
-				break
-			}
-			a.removeTransitiveDependencies(m)
-			return m, l
-		}
-	}
-
-	var emptyManifest = dep.NewManifest()
-
-	return emptyManifest, nil
-}
-
-func (a *rootAnalyzer) removeTransitiveDependencies(m *dep.Manifest) {
-	for pr := range m.Constraints {
-		if _, isDirect := a.directDeps[pr]; !isDirect {
-			delete(m.Constraints, pr)
-		}
-	}
-}
-
-// DeriveManifestAndLock evaluates a dependency for existing dependency manager
-// configuration (ours or external) and passes any configuration found back
-// to the solver.
-func (a *rootAnalyzer) DeriveManifestAndLock(dir string, pr gps.ProjectRoot) (gps.Manifest, gps.Lock, error) {
-	// Ignore other tools if we find dep configuration
-	var depAnalyzer dep.Analyzer
-	if depAnalyzer.HasDepMetadata(dir) {
-		return depAnalyzer.DeriveManifestAndLock(dir, pr)
-	}
-
-	if !a.skipTools {
-		// The assignment back to an interface prevents interface-based nil checks from failing later
-		var manifest gps.Manifest = gps.SimpleManifest{}
-		var lock gps.Lock
-		im, il := a.importManifestAndLock(dir, pr, true)
-		if im != nil {
-			manifest = im
-		}
-		if il != nil {
-			lock = il
-		}
-		return manifest, lock, nil
-	}
-
-	return gps.SimpleManifest{}, nil, nil
-}
-
-func (a *rootAnalyzer) FinalizeRootManifestAndLock(m *dep.Manifest, l *dep.Lock, ol dep.Lock) {
-	// Iterate through the new projects in solved lock and add them to manifest
-	// if they are direct deps and log feedback for all the new projects.
-	diff := fb.DiffLocks(&ol, l)
-	bi := fb.NewBrokenImportFeedback(diff)
-	bi.LogFeedback(a.ctx.Err)
-	for _, y := range l.Projects() {
-		var f *fb.ConstraintFeedback
-		pr := y.Ident().ProjectRoot
-		// New constraints: in new lock and dir dep but not in manifest
-		if _, ok := a.directDeps[pr]; ok {
-			if _, ok := m.Constraints[pr]; !ok {
-				pp := getProjectPropertiesFromVersion(y.Version())
-				if pp.Constraint != nil {
-					m.Constraints[pr] = pp
-					pc := gps.ProjectConstraint{Ident: y.Ident(), Constraint: pp.Constraint}
-					f = fb.NewConstraintFeedback(pc, fb.DepTypeDirect)
-					f.LogFeedback(a.ctx.Err)
-				}
-				f = fb.NewLockedProjectFeedback(y, fb.DepTypeDirect)
-				f.LogFeedback(a.ctx.Err)
-			}
-		} else {
-			// New locked projects: in new lock but not in old lock
-			newProject := true
-			for _, opl := range ol.Projects() {
-				if pr == opl.Ident().ProjectRoot {
-					newProject = false
-				}
-			}
-			if newProject {
-				f = fb.NewLockedProjectFeedback(y, fb.DepTypeTransitive)
-				f.LogFeedback(a.ctx.Err)
-			}
-		}
-	}
-}
-
-// Info provides metadata on the analyzer algorithm used during solve.
-func (a *rootAnalyzer) Info() gps.ProjectAnalyzerInfo {
-	return gps.ProjectAnalyzerInfo{
-		Name:    "dep",
-		Version: 1,
-	}
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/status.go b/vendor/github.com/golang/dep/cmd/dep/status.go
deleted file mode 100644
index df69e0887bee5e74d8f6e0009a852874e150708e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/status.go
+++ /dev/null
@@ -1,1482 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"bytes"
-	"context"
-	"encoding/json"
-	"flag"
-	"fmt"
-	"io"
-	"io/ioutil"
-	"log"
-	"os"
-	"sort"
-	"strings"
-	"sync"
-	"text/tabwriter"
-	"text/template"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/paths"
-	"github.com/golang/dep/gps/verify"
-	"github.com/pkg/errors"
-)
-
-const availableTemplateVariables = "ProjectRoot, Constraint, Version, Revision, Latest, and PackageCount."
-const availableDefaultTemplateVariables = `.Projects[]{
-	    .ProjectRoot,.Source,.Constraint,.PackageCount,.Packages[],
-		.PruneOpts,.Digest,.Locked{.Branch,.Revision,.Version},
-		.Latest{.Revision,.Version}
-	},
-	.Metadata{
-	    .AnalyzerName,.AnalyzerVersion,.InputImports,.SolverName,
-	    .SolverVersion
-	}`
-
-const statusShortHelp = `Report the status of the project's dependencies`
-const statusLongHelp = `
-With no arguments, print the status of each dependency of the project.
-
-  PROJECT     Import path
-  CONSTRAINT  Version constraint, from the manifest
-  VERSION     Version chosen, from the lock
-  REVISION    VCS revision of the chosen version
-  LATEST      Latest VCS revision available
-  PKGS USED   Number of packages from this project that are actually used
-
-You may use the -f flag to create a custom format for the output of the
-dep status command. The available fields you can utilize are as follows:
-` + availableTemplateVariables + `
-
-Status returns exit code zero if all dependencies are in a "good state".
-`
-
-const statusExamples = `
-dep status
-
-	Displays a table of the various dependencies in the project along with
-	their properties such as the constraints they are bound by and the
-	revision they are at.
-
-dep status -detail
-
-	Displays a detailed table of the dependencies in the project including
-	the value of any source rules used and full list of packages used from
-	each project (instead of simply a count). Text wrapping may make this
-	output hard to read.
-
-dep status -f='{{if eq .Constraint "master"}}{{.ProjectRoot}} {{end}}'
-
-	Displays the list of package names constrained on the master branch.
-	The -f flag allows you to use Go templates along with it's various
-	constructs for formating output data. Available flags are as follows:
-	` + availableTemplateVariables + `
-
-dep status -detail -f='{{range $i, $p := .Projects}}{{if ne .Source "" -}}
-	    {{- if $i}},{{end}}{{$p.ProjectRoot}}:{{$p.Source}}{{end}}{{end}}'
-
-	Displays the package name and source for each package with a source
-	rule defined, with a comma between each name-source pair.
-
-	When used with -detail, the -f flag applies the supplied Go templates
-	to the full output document, instead of to packages one at a time.
-	Available flags are as follows: ` + availableDefaultTemplateVariables + `
-
-dep status -json
-
-	Displays the dependency information in JSON format as a list of
-	project objects. Each project object contains keys which correspond
-	to the table column names from the standard 'dep status' command.
-
-Linux:   dep status -dot | dot -T png | display
-MacOS:   dep status -dot | dot -T png | open -f -a /Applications/Preview.app
-Windows: dep status -dot | dot -T png -o status.png; start status.png
-
-	Generates a visual representation of the dependency tree using GraphViz.
-	(Note: in order for this example to work you must first have graphviz
-	installed on your system)
-
-`
-
-const (
-	shortRev uint8 = iota
-	longRev
-)
-
-var (
-	errFailedUpdate        = errors.New("failed to fetch updates")
-	errFailedListPkg       = errors.New("failed to list packages")
-	errMultipleFailures    = errors.New("multiple sources of failure")
-	errInputDigestMismatch = errors.New("input-digest mismatch")
-)
-
-func (cmd *statusCommand) Name() string      { return "status" }
-func (cmd *statusCommand) Args() string      { return "[package...]" }
-func (cmd *statusCommand) ShortHelp() string { return statusShortHelp }
-func (cmd *statusCommand) LongHelp() string  { return statusLongHelp }
-func (cmd *statusCommand) Hidden() bool      { return false }
-
-func (cmd *statusCommand) Register(fs *flag.FlagSet) {
-	fs.BoolVar(&cmd.examples, "examples", false, "print detailed usage examples")
-	fs.BoolVar(&cmd.json, "json", false, "output in JSON format")
-	fs.StringVar(&cmd.template, "f", "", "output in text/template format")
-	fs.BoolVar(&cmd.lock, "lock", false, "output in the lock file format (assumes -detail)")
-	fs.BoolVar(&cmd.dot, "dot", false, "output the dependency graph in GraphViz format")
-	fs.BoolVar(&cmd.old, "old", false, "only show out-of-date dependencies")
-	fs.BoolVar(&cmd.missing, "missing", false, "only show missing dependencies")
-	fs.StringVar(&cmd.outFilePath, "out", "", "path to a file to which to write the output. Blank value will be ignored")
-	fs.BoolVar(&cmd.detail, "detail", false, "include more detail in the chosen format")
-}
-
-type statusCommand struct {
-	examples    bool
-	json        bool
-	template    string
-	lock        bool
-	output      string
-	dot         bool
-	old         bool
-	missing     bool
-	outFilePath string
-	detail      bool
-}
-
-type outputter interface {
-	BasicHeader() error
-	BasicLine(*BasicStatus) error
-	BasicFooter() error
-	DetailHeader(*dep.SolveMeta) error
-	DetailLine(*DetailStatus) error
-	DetailFooter(*dep.SolveMeta) error
-	MissingHeader() error
-	MissingLine(*MissingStatus) error
-	MissingFooter() error
-}
-
-// Only a subset of the outputters should be able to output old statuses.
-type oldOutputter interface {
-	OldHeader() error
-	OldLine(*OldStatus) error
-	OldFooter() error
-}
-
-type tableOutput struct{ w *tabwriter.Writer }
-
-func (out *tableOutput) BasicHeader() error {
-	_, err := fmt.Fprintf(out.w, "PROJECT\tCONSTRAINT\tVERSION\tREVISION\tLATEST\tPKGS USED\n")
-	return err
-}
-
-func (out *tableOutput) BasicFooter() error {
-	return out.w.Flush()
-}
-
-func (out *tableOutput) BasicLine(bs *BasicStatus) error {
-	_, err := fmt.Fprintf(out.w,
-		"%s\t%s\t%s\t%s\t%s\t%d\t\n",
-		bs.ProjectRoot,
-		bs.getConsolidatedConstraint(),
-		formatVersion(bs.Version),
-		formatVersion(bs.Revision),
-		bs.getConsolidatedLatest(shortRev),
-		bs.PackageCount,
-	)
-	return err
-}
-
-func (out *tableOutput) DetailHeader(metadata *dep.SolveMeta) error {
-	_, err := fmt.Fprintf(out.w, "PROJECT\tSOURCE\tCONSTRAINT\tVERSION\tREVISION\tLATEST\tPKGS USED\n")
-	return err
-}
-
-func (out *tableOutput) DetailFooter(metadata *dep.SolveMeta) error {
-	return out.BasicFooter()
-}
-
-func (out *tableOutput) DetailLine(ds *DetailStatus) error {
-	_, err := fmt.Fprintf(out.w,
-		"%s\t%s\t%s\t%s\t%s\t%s\t[%s]\t\n",
-		ds.ProjectRoot,
-		ds.Source,
-		ds.getConsolidatedConstraint(),
-		formatVersion(ds.Version),
-		formatVersion(ds.Revision),
-		ds.getConsolidatedLatest(shortRev),
-		strings.Join(ds.Packages, ", "),
-	)
-	return err
-}
-
-func (out *tableOutput) MissingHeader() error {
-	_, err := fmt.Fprintln(out.w, "PROJECT\tMISSING PACKAGES")
-	return err
-}
-
-func (out *tableOutput) MissingLine(ms *MissingStatus) error {
-	_, err := fmt.Fprintf(out.w,
-		"%s\t%s\t\n",
-		ms.ProjectRoot,
-		ms.MissingPackages,
-	)
-	return err
-}
-
-func (out *tableOutput) MissingFooter() error {
-	return out.w.Flush()
-}
-
-func (out *tableOutput) OldHeader() error {
-	_, err := fmt.Fprintf(out.w, "PROJECT\tCONSTRAINT\tREVISION\tLATEST\n")
-	return err
-}
-
-func (out *tableOutput) OldLine(os *OldStatus) error {
-	_, err := fmt.Fprintf(out.w,
-		"%s\t%s\t%s\t%s\t\n",
-		os.ProjectRoot,
-		os.getConsolidatedConstraint(),
-		formatVersion(os.Revision),
-		os.getConsolidatedLatest(shortRev),
-	)
-	return err
-}
-
-func (out *tableOutput) OldFooter() error {
-	return out.w.Flush()
-}
-
-type jsonOutput struct {
-	w       io.Writer
-	basic   []*rawStatus
-	detail  []rawDetailProject
-	missing []*MissingStatus
-	old     []*rawOldStatus
-}
-
-func (out *jsonOutput) BasicHeader() error {
-	out.basic = []*rawStatus{}
-	return nil
-}
-
-func (out *jsonOutput) BasicFooter() error {
-	return json.NewEncoder(out.w).Encode(out.basic)
-}
-
-func (out *jsonOutput) BasicLine(bs *BasicStatus) error {
-	out.basic = append(out.basic, bs.marshalJSON())
-	return nil
-}
-
-func (out *jsonOutput) DetailHeader(metadata *dep.SolveMeta) error {
-	out.detail = []rawDetailProject{}
-	return nil
-}
-
-func (out *jsonOutput) DetailFooter(metadata *dep.SolveMeta) error {
-	doc := rawDetail{
-		Projects: out.detail,
-		Metadata: newRawMetadata(metadata),
-	}
-
-	return json.NewEncoder(out.w).Encode(doc)
-}
-
-func (out *jsonOutput) DetailLine(ds *DetailStatus) error {
-	out.detail = append(out.detail, *ds.marshalJSON())
-	return nil
-}
-
-func (out *jsonOutput) MissingHeader() error {
-	out.missing = []*MissingStatus{}
-	return nil
-}
-
-func (out *jsonOutput) MissingLine(ms *MissingStatus) error {
-	out.missing = append(out.missing, ms)
-	return nil
-}
-
-func (out *jsonOutput) MissingFooter() error {
-	return json.NewEncoder(out.w).Encode(out.missing)
-}
-
-func (out *jsonOutput) OldHeader() error {
-	out.old = []*rawOldStatus{}
-	return nil
-}
-
-func (out *jsonOutput) OldLine(os *OldStatus) error {
-	out.old = append(out.old, os.marshalJSON())
-	return nil
-}
-
-func (out *jsonOutput) OldFooter() error {
-	return json.NewEncoder(out.w).Encode(out.old)
-}
-
-type dotOutput struct {
-	w io.Writer
-	o string
-	g *graphviz
-	p *dep.Project
-}
-
-func (out *dotOutput) BasicHeader() error {
-	out.g = new(graphviz).New()
-
-	ptree := out.p.RootPackageTree
-	// TODO(sdboyer) should be true, true, false, out.p.Manifest.IgnoredPackages()
-	prm, _ := ptree.ToReachMap(true, false, false, nil)
-
-	out.g.createNode(string(out.p.ImportRoot), "", prm.FlattenFn(paths.IsStandardImportPath))
-
-	return nil
-}
-
-func (out *dotOutput) BasicFooter() error {
-	gvo := out.g.output("")
-	_, err := fmt.Fprintf(out.w, gvo.String())
-	return err
-}
-
-func (out *dotOutput) BasicLine(bs *BasicStatus) error {
-	out.g.createNode(bs.ProjectRoot, bs.getConsolidatedVersion(), bs.Children)
-	return nil
-}
-
-func (out *dotOutput) DetailHeader(metadata *dep.SolveMeta) error {
-	return out.BasicHeader()
-}
-
-func (out *dotOutput) DetailFooter(metadata *dep.SolveMeta) error {
-	return out.BasicFooter()
-}
-
-func (out *dotOutput) DetailLine(ds *DetailStatus) error {
-	return out.BasicLine(&ds.BasicStatus)
-}
-
-func (out *dotOutput) MissingHeader() error                { return nil }
-func (out *dotOutput) MissingLine(ms *MissingStatus) error { return nil }
-func (out *dotOutput) MissingFooter() error                { return nil }
-
-type templateOutput struct {
-	w      io.Writer
-	tmpl   *template.Template
-	detail []rawDetailProject
-}
-
-func (out *templateOutput) BasicHeader() error { return nil }
-func (out *templateOutput) BasicFooter() error { return nil }
-func (out *templateOutput) BasicLine(bs *BasicStatus) error {
-	data := rawStatus{
-		ProjectRoot:  bs.ProjectRoot,
-		Constraint:   bs.getConsolidatedConstraint(),
-		Version:      bs.getConsolidatedVersion(),
-		Revision:     bs.Revision.String(),
-		Latest:       bs.getConsolidatedLatest(shortRev),
-		PackageCount: bs.PackageCount,
-	}
-	return out.tmpl.Execute(out.w, data)
-}
-
-func (out *templateOutput) DetailHeader(metadata *dep.SolveMeta) error {
-	out.detail = []rawDetailProject{}
-
-	return nil
-}
-
-func (out *templateOutput) DetailFooter(metadata *dep.SolveMeta) error {
-	raw := rawDetail{
-		Projects: out.detail,
-		Metadata: newRawMetadata(metadata),
-	}
-
-	return out.tmpl.Execute(out.w, raw)
-}
-
-func (out *templateOutput) DetailLine(ds *DetailStatus) error {
-	data := rawDetailProject{
-		ProjectRoot:  ds.ProjectRoot,
-		Constraint:   ds.getConsolidatedConstraint(),
-		Locked:       formatDetailVersion(ds.Version, ds.Revision),
-		Latest:       formatDetailLatestVersion(ds.Latest, ds.hasError),
-		PruneOpts:    ds.getPruneOpts(),
-		Digest:       ds.Digest.String(),
-		PackageCount: ds.PackageCount,
-		Source:       ds.Source,
-		Packages:     ds.Packages,
-	}
-
-	out.detail = append(out.detail, data)
-
-	return nil
-}
-
-func (out *templateOutput) OldHeader() error { return nil }
-func (out *templateOutput) OldFooter() error { return nil }
-func (out *templateOutput) OldLine(os *OldStatus) error {
-	return out.tmpl.Execute(out.w, os)
-}
-
-func (out *templateOutput) MissingHeader() error { return nil }
-func (out *templateOutput) MissingFooter() error { return nil }
-func (out *templateOutput) MissingLine(ms *MissingStatus) error {
-	return out.tmpl.Execute(out.w, ms)
-}
-
-func (cmd *statusCommand) Run(ctx *dep.Ctx, args []string) error {
-	if cmd.examples {
-		ctx.Err.Println(strings.TrimSpace(statusExamples))
-		return nil
-	}
-
-	if err := cmd.validateFlags(); err != nil {
-		return err
-	}
-
-	p, err := ctx.LoadProject()
-	if err != nil {
-		return err
-	}
-
-	sm, err := ctx.SourceManager()
-	if err != nil {
-		return err
-	}
-	sm.UseDefaultSignalHandling()
-	defer sm.Release()
-
-	if err := dep.ValidateProjectRoots(ctx, p.Manifest, sm); err != nil {
-		return err
-	}
-
-	var buf bytes.Buffer
-	var out outputter
-	switch {
-	case cmd.missing:
-		return errors.Errorf("not implemented")
-	case cmd.json:
-		out = &jsonOutput{
-			w: &buf,
-		}
-	case cmd.dot:
-		out = &dotOutput{
-			p: p,
-			o: cmd.output,
-			w: &buf,
-		}
-	case cmd.template != "":
-		tmpl, err := parseStatusTemplate(cmd.template)
-		if err != nil {
-			return err
-		}
-		out = &templateOutput{
-			w:    &buf,
-			tmpl: tmpl,
-		}
-	case cmd.lock:
-		tmpl, err := parseStatusTemplate(statusLockTemplate)
-		if err != nil {
-			return err
-		}
-		out = &templateOutput{
-			w:    &buf,
-			tmpl: tmpl,
-		}
-	default:
-		out = &tableOutput{
-			w: tabwriter.NewWriter(&buf, 0, 4, 2, ' ', 0),
-		}
-	}
-
-	// Check if the lock file exists.
-	if p.Lock == nil {
-		return errors.Errorf("no Gopkg.lock found. Run `dep ensure` to generate lock file")
-	}
-
-	if cmd.old {
-		if _, ok := out.(oldOutputter); !ok {
-			return errors.Errorf("invalid output format used")
-		}
-		err = cmd.runOld(ctx, out.(oldOutputter), p, sm)
-		ctx.Out.Print(buf.String())
-		return err
-	}
-
-	_, errCount, runerr := cmd.runStatusAll(ctx, out, p, sm)
-	if runerr != nil {
-		switch runerr {
-		case errFailedUpdate:
-			// Print the help when in non-verbose mode
-			if !ctx.Verbose {
-				ctx.Out.Printf("The status of %d projects are unknown due to errors. Rerun with `-v` flag to see details.\n", errCount)
-			}
-		case errInputDigestMismatch:
-			ctx.Err.Printf("Gopkg.lock is out of sync with imports and/or Gopkg.toml. Run `dep check` for details.\n")
-		default:
-			return runerr
-		}
-	}
-
-	if cmd.outFilePath == "" {
-		// Print the status output
-		ctx.Out.Print(buf.String())
-	} else {
-		file, err := os.Create(cmd.outFilePath)
-		if err != nil {
-			return fmt.Errorf("error creating output file: %v", err)
-		}
-
-		defer file.Close()
-		if _, err := io.Copy(file, bytes.NewReader(buf.Bytes())); err != nil {
-			return fmt.Errorf("error writing output file: %v", err)
-		}
-	}
-
-	return runerr
-}
-
-func (cmd *statusCommand) validateFlags() error {
-	// Operating mode flags.
-	var opModes []string
-
-	if cmd.old {
-		opModes = append(opModes, "-old")
-	}
-
-	if cmd.missing {
-		opModes = append(opModes, "-missing")
-	}
-
-	if cmd.detail {
-		opModes = append(opModes, "-detail")
-	}
-
-	// Check if any other flags are passed with -dot.
-	if cmd.dot {
-		if cmd.template != "" {
-			return errors.New("cannot pass template string with -dot")
-		}
-
-		if cmd.json {
-			return errors.New("cannot pass multiple output format flags")
-		}
-
-		if len(opModes) > 0 {
-			return errors.New("-dot generates dependency graph; cannot pass other flags")
-		}
-	}
-
-	if cmd.lock {
-		if cmd.template != "" {
-			return errors.New("cannot pass template string with -lock")
-		}
-
-		if !cmd.detail {
-			cmd.detail = true
-		}
-	}
-
-	if len(opModes) > 1 {
-		// List the flags because which flags are for operation mode might not
-		// be apparent to the users.
-		return errors.Wrapf(errors.New("cannot pass multiple operating mode flags"), "%v", opModes)
-	}
-
-	return nil
-}
-
-// OldStatus contains information about all the out of date packages in a project.
-type OldStatus struct {
-	ProjectRoot string
-	Constraint  gps.Constraint
-	Revision    gps.Revision
-	Latest      gps.Version
-}
-
-type rawOldStatus struct {
-	ProjectRoot, Constraint, Revision, Latest string
-}
-
-func (os OldStatus) getConsolidatedConstraint() string {
-	var constraint string
-	if os.Constraint != nil {
-		if v, ok := os.Constraint.(gps.Version); ok {
-			constraint = formatVersion(v)
-		} else {
-			constraint = os.Constraint.String()
-		}
-	}
-	return constraint
-}
-
-func (os OldStatus) getConsolidatedLatest(revSize uint8) string {
-	latest := ""
-	if os.Latest != nil {
-		switch revSize {
-		case shortRev:
-			latest = formatVersion(os.Latest)
-		case longRev:
-			latest = os.Latest.String()
-		}
-	}
-	return latest
-}
-
-func (os OldStatus) marshalJSON() *rawOldStatus {
-	return &rawOldStatus{
-		ProjectRoot: os.ProjectRoot,
-		Constraint:  os.getConsolidatedConstraint(),
-		Revision:    string(os.Revision),
-		Latest:      os.getConsolidatedLatest(longRev),
-	}
-}
-
-func (cmd *statusCommand) runOld(ctx *dep.Ctx, out oldOutputter, p *dep.Project, sm gps.SourceManager) error {
-	// While the network churns on ListVersions() requests, statically analyze
-	// code from the current project.
-	ptree := p.RootPackageTree
-
-	// Set up a solver in order to check the InputHash.
-	params := gps.SolveParameters{
-		ProjectAnalyzer: dep.Analyzer{},
-		RootDir:         p.AbsRoot,
-		RootPackageTree: ptree,
-		Manifest:        p.Manifest,
-		// Locks aren't a part of the input hash check, so we can omit it.
-	}
-
-	logger := ctx.Err
-	if ctx.Verbose {
-		params.TraceLogger = ctx.Err
-	} else {
-		logger = log.New(ioutil.Discard, "", 0)
-	}
-
-	// Check update for all the projects.
-	params.ChangeAll = true
-
-	solver, err := gps.Prepare(params, sm)
-	if err != nil {
-		return errors.Wrap(err, "fastpath solver prepare")
-	}
-
-	logger.Println("Solving dependency graph to determine which dependencies can be updated.")
-	solution, err := solver.Solve(context.TODO())
-	if err != nil {
-		return errors.Wrap(err, "runOld")
-	}
-
-	var oldStatuses []OldStatus
-	solutionProjects := solution.Projects()
-
-	for _, proj := range p.Lock.Projects() {
-		for _, sProj := range solutionProjects {
-			// Look for the same project in solution and lock.
-			if sProj.Ident().ProjectRoot != proj.Ident().ProjectRoot {
-				continue
-			}
-
-			// If revisions are not the same then it is old and we should display it.
-			latestRev, _, _ := gps.VersionComponentStrings(sProj.Version())
-			atRev, _, _ := gps.VersionComponentStrings(proj.Version())
-			if atRev == latestRev {
-				continue
-			}
-
-			var constraint gps.Constraint
-			// Getting Constraint.
-			if pp, has := p.Manifest.Ovr[proj.Ident().ProjectRoot]; has && pp.Constraint != nil {
-				// manifest has override for project.
-				constraint = pp.Constraint
-			} else if pp, has := p.Manifest.Constraints[proj.Ident().ProjectRoot]; has && pp.Constraint != nil {
-				// manifest has normal constraint.
-				constraint = pp.Constraint
-			} else {
-				// No constraint exists. No need to worry about displaying it.
-				continue
-			}
-
-			// Generate the old status data and append it.
-			os := OldStatus{
-				ProjectRoot: proj.Ident().String(),
-				Revision:    gps.Revision(atRev),
-				Latest:      gps.Revision(latestRev),
-				Constraint:  constraint,
-			}
-			oldStatuses = append(oldStatuses, os)
-		}
-	}
-
-	out.OldHeader()
-	for _, ostat := range oldStatuses {
-		out.OldLine(&ostat)
-	}
-	out.OldFooter()
-
-	return nil
-}
-
-type rawStatus struct {
-	ProjectRoot  string
-	Constraint   string
-	Version      string
-	Revision     string
-	Latest       string
-	PackageCount int
-}
-
-// rawDetail is is additional information used for the status when the
-// -detail flag is specified
-type rawDetail struct {
-	Projects []rawDetailProject
-	Metadata rawDetailMetadata
-}
-
-type rawDetailVersion struct {
-	Revision string `json:"Revision,omitempty"`
-	Version  string `json:"Version,omitempty"`
-	Branch   string `json:"Branch,omitempty"`
-}
-
-type rawDetailProject struct {
-	ProjectRoot  string
-	Packages     []string
-	Locked       rawDetailVersion
-	Latest       rawDetailVersion
-	PruneOpts    string
-	Digest       string
-	Source       string `json:"Source,omitempty"`
-	Constraint   string
-	PackageCount int
-}
-
-type rawDetailMetadata struct {
-	AnalyzerName    string
-	AnalyzerVersion int
-	InputsDigest    string // deprecated
-	InputImports    []string
-	SolverName      string
-	SolverVersion   int
-}
-
-func newRawMetadata(metadata *dep.SolveMeta) rawDetailMetadata {
-	if metadata == nil {
-		return rawDetailMetadata{}
-	}
-
-	return rawDetailMetadata{
-		AnalyzerName:    metadata.AnalyzerName,
-		AnalyzerVersion: metadata.AnalyzerVersion,
-		InputImports:    metadata.InputImports,
-		SolverName:      metadata.SolverName,
-		SolverVersion:   metadata.SolverVersion,
-	}
-}
-
-// BasicStatus contains all the information reported about a single dependency
-// in the summary/list status output mode.
-type BasicStatus struct {
-	ProjectRoot  string
-	Children     []string
-	Constraint   gps.Constraint
-	Version      gps.UnpairedVersion
-	Revision     gps.Revision
-	Latest       gps.Version
-	PackageCount int
-	hasOverride  bool
-	hasError     bool
-}
-
-// DetailStatus contains all information reported about a single dependency
-// in the detailed status output mode. The included information matches the
-// information included about a a project in a lock file.
-type DetailStatus struct {
-	BasicStatus
-	Packages  []string
-	Source    string
-	PruneOpts gps.PruneOptions
-	Digest    verify.VersionedDigest
-}
-
-func (bs *BasicStatus) getConsolidatedConstraint() string {
-	var constraint string
-	if bs.Constraint != nil {
-		if v, ok := bs.Constraint.(gps.Version); ok {
-			constraint = formatVersion(v)
-		} else {
-			constraint = bs.Constraint.String()
-		}
-	}
-
-	if bs.hasOverride {
-		constraint += " (override)"
-	}
-
-	return constraint
-}
-
-func (bs *BasicStatus) getConsolidatedVersion() string {
-	version := formatVersion(bs.Revision)
-	if bs.Version != nil {
-		version = formatVersion(bs.Version)
-	}
-	return version
-}
-
-func (bs *BasicStatus) getConsolidatedLatest(revSize uint8) string {
-	latest := ""
-	if bs.Latest != nil {
-		switch revSize {
-		case shortRev:
-			latest = formatVersion(bs.Latest)
-		case longRev:
-			latest = bs.Latest.String()
-		}
-	}
-
-	if bs.hasError {
-		latest += "unknown"
-	}
-
-	return latest
-}
-
-func (ds *DetailStatus) getPruneOpts() string {
-	return (ds.PruneOpts & ^gps.PruneNestedVendorDirs).String()
-}
-
-func (bs *BasicStatus) marshalJSON() *rawStatus {
-	return &rawStatus{
-		ProjectRoot:  bs.ProjectRoot,
-		Constraint:   bs.getConsolidatedConstraint(),
-		Version:      formatVersion(bs.Version),
-		Revision:     string(bs.Revision),
-		Latest:       bs.getConsolidatedLatest(longRev),
-		PackageCount: bs.PackageCount,
-	}
-}
-
-func (ds *DetailStatus) marshalJSON() *rawDetailProject {
-	rawStatus := ds.BasicStatus.marshalJSON()
-
-	return &rawDetailProject{
-		ProjectRoot:  rawStatus.ProjectRoot,
-		Constraint:   rawStatus.Constraint,
-		Locked:       formatDetailVersion(ds.Version, ds.Revision),
-		Latest:       formatDetailLatestVersion(ds.Latest, ds.hasError),
-		PruneOpts:    ds.getPruneOpts(),
-		Digest:       ds.Digest.String(),
-		Source:       ds.Source,
-		Packages:     ds.Packages,
-		PackageCount: ds.PackageCount,
-	}
-}
-
-// MissingStatus contains information about all the missing packages in a project.
-type MissingStatus struct {
-	ProjectRoot     string
-	MissingPackages []string
-}
-
-func (cmd *statusCommand) runStatusAll(ctx *dep.Ctx, out outputter, p *dep.Project, sm gps.SourceManager) (hasMissingPkgs bool, errCount int, err error) {
-	// While the network churns on ListVersions() requests, statically analyze
-	// code from the current project.
-	ptree := p.RootPackageTree
-
-	// Set up a solver in order to check the InputHash.
-	params := gps.SolveParameters{
-		ProjectAnalyzer: dep.Analyzer{},
-		RootDir:         p.AbsRoot,
-		RootPackageTree: ptree,
-		Manifest:        p.Manifest,
-		// Locks aren't a part of the input hash check, so we can omit it.
-	}
-
-	logger := ctx.Err
-	if ctx.Verbose {
-		params.TraceLogger = ctx.Err
-	} else {
-		logger = log.New(ioutil.Discard, "", 0)
-	}
-
-	if err := ctx.ValidateParams(sm, params); err != nil {
-		return false, 0, err
-	}
-
-	// Errors while collecting constraints should not fail the whole status run.
-	// It should count the error and tell the user about incomplete results.
-	cm, ccerrs := collectConstraints(ctx, p, sm)
-	if len(ccerrs) > 0 {
-		errCount += len(ccerrs)
-	}
-
-	// Get the project list and sort it so that the printed output users see is
-	// deterministically ordered. (This may be superfluous if the lock is always
-	// written in alpha order, but it doesn't hurt to double down.)
-	slp := p.Lock.Projects()
-	sort.Slice(slp, func(i, j int) bool {
-		return slp[i].Ident().Less(slp[j].Ident())
-	})
-	slcp := p.ChangedLock.Projects()
-	sort.Slice(slcp, func(i, j int) bool {
-		return slcp[i].Ident().Less(slcp[j].Ident())
-	})
-
-	lsat := verify.LockSatisfiesInputs(p.Lock, p.Manifest, params.RootPackageTree)
-	if lsat.Satisfied() {
-		// If the lock satisfies the inputs, we're guaranteed (barring manual
-		// meddling, about which we can do nothing) that the lock is a
-		// transitively complete picture of all deps. That eliminates the need
-		// for some checks.
-
-		logger.Println("Checking upstream projects:")
-
-		// DetailStatus channel to collect all the DetailStatus.
-		dsCh := make(chan *DetailStatus, len(slp))
-
-		// Error channels to collect different errors.
-		errListPkgCh := make(chan error, len(slp))
-		errListVerCh := make(chan error, len(slp))
-
-		var wg sync.WaitGroup
-
-		for i, proj := range slp {
-			wg.Add(1)
-			logger.Printf("(%d/%d) %s\n", i+1, len(slp), proj.Ident().ProjectRoot)
-
-			go func(proj verify.VerifiableProject) {
-				bs := BasicStatus{
-					ProjectRoot:  string(proj.Ident().ProjectRoot),
-					PackageCount: len(proj.Packages()),
-				}
-
-				// Get children only for specific outputers
-				// in order to avoid slower status process.
-				switch out.(type) {
-				case *dotOutput:
-					ptr, err := sm.ListPackages(proj.Ident(), proj.Version())
-
-					if err != nil {
-						bs.hasError = true
-						errListPkgCh <- err
-					}
-
-					prm, _ := ptr.ToReachMap(true, true, false, p.Manifest.IgnoredPackages())
-					bs.Children = prm.FlattenFn(paths.IsStandardImportPath)
-				}
-
-				// Split apart the version from the lock into its constituent parts.
-				switch tv := proj.Version().(type) {
-				case gps.UnpairedVersion:
-					bs.Version = tv
-				case gps.Revision:
-					bs.Revision = tv
-				case gps.PairedVersion:
-					bs.Version = tv.Unpair()
-					bs.Revision = tv.Revision()
-				}
-
-				// Check if the manifest has an override for this project. If so,
-				// set that as the constraint.
-				if pp, has := p.Manifest.Ovr[proj.Ident().ProjectRoot]; has && pp.Constraint != nil {
-					bs.hasOverride = true
-					bs.Constraint = pp.Constraint
-				} else if pp, has := p.Manifest.Constraints[proj.Ident().ProjectRoot]; has && pp.Constraint != nil {
-					// If the manifest has a constraint then set that as the constraint.
-					bs.Constraint = pp.Constraint
-				} else {
-					bs.Constraint = gps.Any()
-					for _, c := range cm[bs.ProjectRoot] {
-						bs.Constraint = c.Constraint.Intersect(bs.Constraint)
-					}
-				}
-
-				// Only if we have a non-rev and non-plain version do/can we display
-				// anything wrt the version's updateability.
-				if bs.Version != nil && bs.Version.Type() != gps.IsVersion {
-					c, has := p.Manifest.Constraints[proj.Ident().ProjectRoot]
-					if !has {
-						// Get constraint for locked project
-						for _, lockedP := range p.Lock.P {
-							if lockedP.Ident().ProjectRoot == proj.Ident().ProjectRoot {
-								// Use the unpaired version as the constraint for checking updates.
-								c.Constraint = bs.Version
-							}
-						}
-					}
-					// TODO: This constraint is only the constraint imposed by the
-					// current project, not by any transitive deps. As a result,
-					// transitive project deps will always show "any" here.
-					bs.Constraint = c.Constraint
-
-					vl, err := sm.ListVersions(proj.Ident())
-					if err == nil {
-						gps.SortPairedForUpgrade(vl)
-
-						for _, v := range vl {
-							// Because we've sorted the version list for
-							// upgrade, the first version we encounter that
-							// matches our constraint will be what we want.
-							if c.Constraint.Matches(v) {
-								// Latest should be of the same type as the Version.
-								if bs.Version.Type() == gps.IsSemver {
-									bs.Latest = v
-								} else {
-									bs.Latest = v.Revision()
-								}
-								break
-							}
-						}
-					} else {
-						// Failed to fetch version list (could happen due to
-						// network issue).
-						bs.hasError = true
-						errListVerCh <- err
-					}
-				}
-
-				ds := DetailStatus{
-					BasicStatus: bs,
-				}
-
-				if cmd.detail {
-					ds.Source = proj.Ident().Source
-					ds.Packages = proj.Packages()
-					ds.PruneOpts = proj.PruneOpts
-					ds.Digest = proj.Digest
-				}
-
-				dsCh <- &ds
-
-				wg.Done()
-			}(proj.(verify.VerifiableProject))
-		}
-
-		wg.Wait()
-		close(dsCh)
-		close(errListPkgCh)
-		close(errListVerCh)
-
-		// Newline after printing the status progress output.
-		logger.Println()
-
-		// List Packages errors. This would happen only for dot output.
-		if len(errListPkgCh) > 0 {
-			err = errFailedListPkg
-			if ctx.Verbose {
-				for err := range errListPkgCh {
-					ctx.Err.Println(err.Error())
-				}
-				ctx.Err.Println()
-			}
-		}
-
-		// List Version errors.
-		if len(errListVerCh) > 0 {
-			if err == nil {
-				err = errFailedUpdate
-			} else {
-				err = errMultipleFailures
-			}
-
-			// Count ListVersions error because we get partial results when
-			// this happens.
-			errCount += len(errListVerCh)
-			if ctx.Verbose {
-				for err := range errListVerCh {
-					ctx.Err.Println(err.Error())
-				}
-				ctx.Err.Println()
-			}
-		}
-
-		if cmd.detail {
-			// A map of ProjectRoot and *DetailStatus. This is used in maintain the
-			// order of DetailStatus in output by collecting all the DetailStatus and
-			// then using them in order.
-			dsMap := make(map[string]*DetailStatus)
-			for ds := range dsCh {
-				dsMap[ds.ProjectRoot] = ds
-			}
-
-			if err := detailOutputAll(out, slp, dsMap, &p.Lock.SolveMeta); err != nil {
-				return false, 0, err
-			}
-		} else {
-			// A map of ProjectRoot and *BasicStatus. This is used in maintain the
-			// order of BasicStatus in output by collecting all the BasicStatus and
-			// then using them in order.
-			bsMap := make(map[string]*BasicStatus)
-			for bs := range dsCh {
-				bsMap[bs.ProjectRoot] = &bs.BasicStatus
-			}
-
-			if err := basicOutputAll(out, slp, bsMap); err != nil {
-				return false, 0, err
-			}
-		}
-
-		return false, errCount, err
-	}
-
-	rm, _ := ptree.ToReachMap(true, true, false, p.Manifest.IgnoredPackages())
-
-	external := rm.FlattenFn(paths.IsStandardImportPath)
-	roots := make(map[gps.ProjectRoot][]string, len(external))
-
-	type fail struct {
-		ex  string
-		err error
-	}
-	var errs []fail
-	for _, e := range external {
-		root, err := sm.DeduceProjectRoot(e)
-		if err != nil {
-			errs = append(errs, fail{
-				ex:  e,
-				err: err,
-			})
-			continue
-		}
-
-		roots[root] = append(roots[root], e)
-	}
-
-	if len(errs) != 0 {
-		// TODO this is just a fix quick so staticcheck doesn't complain.
-		// Visually reconciling failure to deduce project roots with the rest of
-		// the mismatch output is a larger problem.
-		ctx.Err.Printf("Failed to deduce project roots for import paths:\n")
-		for _, fail := range errs {
-			ctx.Err.Printf("\t%s: %s\n", fail.ex, fail.err.Error())
-		}
-
-		return false, 0, errors.New("address issues with undeducible import paths to get more status information")
-	}
-
-	if err = out.MissingHeader(); err != nil {
-		return false, 0, err
-	}
-
-outer:
-	for root, pkgs := range roots {
-		// TODO also handle the case where the project is present, but there
-		// are items missing from just the package list
-		for _, lp := range slp {
-			if lp.Ident().ProjectRoot == root {
-				continue outer
-			}
-		}
-
-		hasMissingPkgs = true
-		err := out.MissingLine(&MissingStatus{ProjectRoot: string(root), MissingPackages: pkgs})
-		if err != nil {
-			return false, 0, err
-		}
-	}
-	if err = out.MissingFooter(); err != nil {
-		return false, 0, err
-	}
-
-	// We are here because of an input-digest mismatch. Return error.
-	return hasMissingPkgs, 0, errInputDigestMismatch
-}
-
-// basicOutputAll takes an outputter, a project list, and a map of ProjectRoot to *BasicStatus and
-// uses the outputter to output basic header, body lines (in the order of the project list), and
-// footer based on the project information.
-func basicOutputAll(out outputter, slp []gps.LockedProject, bsMap map[string]*BasicStatus) (err error) {
-	if err := out.BasicHeader(); err != nil {
-		return err
-	}
-
-	// Use the collected BasicStatus in outputter.
-	for _, proj := range slp {
-		if err := out.BasicLine(bsMap[string(proj.Ident().ProjectRoot)]); err != nil {
-			return err
-		}
-	}
-
-	return out.BasicFooter()
-}
-
-// detailOutputAll takes an outputter, a project list, and a map of ProjectRoot to *DetailStatus and
-// uses the outputter to output detailed header, body lines (in the order of the project list), and
-// footer based on the project information.
-func detailOutputAll(out outputter, slp []gps.LockedProject, dsMap map[string]*DetailStatus, metadata *dep.SolveMeta) (err error) {
-	if err := out.DetailHeader(metadata); err != nil {
-		return err
-	}
-
-	// Use the collected BasicStatus in outputter.
-	for _, proj := range slp {
-		if err := out.DetailLine(dsMap[string(proj.Ident().ProjectRoot)]); err != nil {
-			return err
-		}
-	}
-
-	return out.DetailFooter(metadata)
-}
-
-func formatVersion(v gps.Version) string {
-	if v == nil {
-		return ""
-	}
-	switch v.Type() {
-	case gps.IsBranch:
-		return "branch " + v.String()
-	case gps.IsRevision:
-		r := v.String()
-		if len(r) > 7 {
-			r = r[:7]
-		}
-		return r
-	}
-	return v.String()
-}
-
-func formatDetailVersion(v gps.Version, r gps.Revision) rawDetailVersion {
-	if v == nil {
-		return rawDetailVersion{
-			Revision: r.String(),
-		}
-	}
-	switch v.Type() {
-	case gps.IsBranch:
-		return rawDetailVersion{
-			Branch:   v.String(),
-			Revision: r.String(),
-		}
-	case gps.IsRevision:
-		return rawDetailVersion{
-			Revision: v.String(),
-		}
-	}
-
-	return rawDetailVersion{
-		Version:  v.String(),
-		Revision: r.String(),
-	}
-}
-
-func formatDetailLatestVersion(v gps.Version, hasError bool) rawDetailVersion {
-	if hasError {
-		return rawDetailVersion{
-			Revision: "unknown",
-		}
-	}
-
-	return formatDetailVersion(v, "")
-}
-
-// projectConstraint stores ProjectRoot and Constraint for that project.
-type projectConstraint struct {
-	Project    gps.ProjectRoot
-	Constraint gps.Constraint
-}
-
-// constraintsCollection is a map of ProjectRoot(dependency) and a collection of
-// projectConstraint for the dependencies. This can be used to find constraints
-// on a dependency and the projects that apply those constraints.
-type constraintsCollection map[string][]projectConstraint
-
-// collectConstraints collects constraints declared by all the dependencies and
-// constraints from the root project. It returns constraintsCollection and
-// a slice of errors encountered while collecting the constraints, if any.
-func collectConstraints(ctx *dep.Ctx, p *dep.Project, sm gps.SourceManager) (constraintsCollection, []error) {
-	logger := ctx.Err
-	if !ctx.Verbose {
-		logger = log.New(ioutil.Discard, "", 0)
-	}
-
-	logger.Println("Collecting project constraints:")
-
-	var mutex sync.Mutex
-	constraintCollection := make(constraintsCollection)
-
-	// Collect the complete set of direct project dependencies, incorporating
-	// requireds and ignores appropriately.
-	directDeps, err := p.GetDirectDependencyNames(sm)
-	if err != nil {
-		// Return empty collection, not nil, if we fail here.
-		return constraintCollection, []error{errors.Wrap(err, "failed to get direct dependencies")}
-	}
-
-	// Create a root analyzer.
-	rootAnalyzer := newRootAnalyzer(true, ctx, directDeps, sm)
-
-	lp := p.Lock.Projects()
-
-	// Channel for receiving all the errors.
-	errCh := make(chan error, len(lp))
-
-	var wg sync.WaitGroup
-
-	// Iterate through the locked projects and collect constraints of all the projects.
-	for i, proj := range lp {
-		wg.Add(1)
-		logger.Printf("(%d/%d) %s\n", i+1, len(lp), proj.Ident().ProjectRoot)
-
-		go func(proj gps.LockedProject) {
-			defer wg.Done()
-
-			manifest, _, err := sm.GetManifestAndLock(proj.Ident(), proj.Version(), rootAnalyzer)
-			if err != nil {
-				errCh <- errors.Wrap(err, "error getting manifest and lock")
-				return
-			}
-
-			// Get project constraints.
-			pc := manifest.DependencyConstraints()
-
-			// Obtain a lock for constraintCollection.
-			mutex.Lock()
-			defer mutex.Unlock()
-			// Iterate through the project constraints to get individual dependency
-			// project and constraint values.
-			for pr, pp := range pc {
-				// Check if the project constraint is imported in the root project
-				if _, ok := directDeps[pr]; !ok {
-					continue
-				}
-
-				tempCC := append(
-					constraintCollection[string(pr)],
-					projectConstraint{proj.Ident().ProjectRoot, pp.Constraint},
-				)
-
-				// Sort the inner projectConstraint slice by Project string.
-				// Required for consistent returned value.
-				sort.Sort(byProject(tempCC))
-				constraintCollection[string(pr)] = tempCC
-			}
-		}(proj)
-	}
-
-	wg.Wait()
-	close(errCh)
-
-	var errs []error
-	if len(errCh) > 0 {
-		for e := range errCh {
-			errs = append(errs, e)
-			logger.Println(e.Error())
-		}
-	}
-
-	// Incorporate constraints set in the manifest of the root project.
-	if p.Manifest != nil {
-
-		// Iterate through constraints in the manifest, append if it is a
-		// direct dependency
-		for pr, pp := range p.Manifest.Constraints {
-			if _, ok := directDeps[pr]; !ok {
-				continue
-			}
-
-			// Mark constraints coming from the manifest as "root"
-			tempCC := append(
-				constraintCollection[string(pr)],
-				projectConstraint{"root", pp.Constraint},
-			)
-
-			// Sort the inner projectConstraint slice by Project string.
-			// Required for consistent returned value.
-			sort.Sort(byProject(tempCC))
-			constraintCollection[string(pr)] = tempCC
-		}
-	}
-
-	return constraintCollection, errs
-}
-
-type byProject []projectConstraint
-
-func (p byProject) Len() int           { return len(p) }
-func (p byProject) Swap(i, j int)      { p[i], p[j] = p[j], p[i] }
-func (p byProject) Less(i, j int) bool { return p[i].Project < p[j].Project }
-
-func parseStatusTemplate(format string) (*template.Template, error) {
-	tmpl, err := template.New("status").Funcs(template.FuncMap{
-		"dec": func(i int) int {
-			return i - 1
-		},
-		"tomlStrSplit": tomlStrSplit,
-		"tomlStrSplit2": func(strlist []string, level int) string {
-			// Hardcode to two spaces.
-			inbracket, inp := strings.Repeat("  ", level), strings.Repeat("  ", level+1)
-			switch len(strlist) {
-			case 0:
-				return "[]"
-			case 1:
-				return fmt.Sprintf("[\"%s\"]", strlist[0])
-			default:
-				var buf bytes.Buffer
-
-				fmt.Fprintf(&buf, "[\n")
-				for _, str := range strlist {
-					fmt.Fprintf(&buf, "%s\"%s\",\n", inp, str)
-				}
-				fmt.Fprintf(&buf, "%s]", inbracket)
-
-				return buf.String()
-			}
-		},
-	}).Parse(format)
-
-	return tmpl, err
-}
-
-func tomlStrSplit(strlist []string) string {
-	switch len(strlist) {
-	case 0:
-		return "[]"
-	case 1:
-		return fmt.Sprintf("[\"%s\"]", strlist[0])
-	default:
-		var buf bytes.Buffer
-
-		// Hardcode to two spaces.
-		fmt.Fprintf(&buf, "[\n")
-		for _, str := range strlist {
-			fmt.Fprintf(&buf, "    \"%s\",\n", str)
-		}
-		fmt.Fprintf(&buf, "  ]")
-
-		return buf.String()
-	}
-}
-
-const statusLockTemplate = `# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-{{range $p := .Projects}}[[projects]]
-  {{- if $p.Locked.Branch}}
-  branch = "{{$p.Locked.Branch}}"
-  {{- end}}
-  digest = "{{$p.Digest}}"
-  name = "{{$p.ProjectRoot}}"
-  packages = {{(tomlStrSplit $p.Packages)}}
-  pruneopts = "{{$p.PruneOpts}}"
-  revision = "{{$p.Locked.Revision}}"
-  {{- if $p.Source}}
-  source = "{{$p.Source}}"
-  {{- end}}
-  {{- if $p.Locked.Version}}
-  version = "{{$p.Locked.Version}}"
-  {{- end}}
-
-{{end}}[solve-meta]
-  analyzer-name = "{{.Metadata.AnalyzerName}}"
-  analyzer-version = {{.Metadata.AnalyzerVersion}}
-  input-imports = {{(tomlStrSplit .Metadata.InputImports)}}
-  solver-name = "{{.Metadata.SolverName}}"
-  solver-version = {{.Metadata.SolverVersion}}
-`
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/cachedir/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/cachedir/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/cachedir/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/cachedir/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/cachedir/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/cachedir/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/cachedir/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/cachedir/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/cachedir/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/case1.dot b/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/case1.dot
deleted file mode 100644
index b4ee9af3714650d8bfd5f700d0a12214708369b9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/case1.dot
+++ /dev/null
@@ -1,9 +0,0 @@
-digraph {
-	node [shape=box];
-	4106060478 [label="project"];
-	2851307223 [label="foo\nmaster"];
-	1991736602 [label="bar\ndev"];
-	4106060478 -> 2851307223;
-	4106060478 -> 1991736602;
-	2851307223 -> 1991736602;
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/case2.dot b/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/case2.dot
deleted file mode 100644
index dd5dad15ec3b2c07ffc0513254f6360c2da8e502..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/case2.dot
+++ /dev/null
@@ -1,4 +0,0 @@
-digraph {
-	node [shape=box];
-	4106060478 [label="project"];
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/empty.dot b/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/empty.dot
deleted file mode 100644
index 3eb9e553482d8e507bdf1d061e51cc4a01c9d938..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/empty.dot
+++ /dev/null
@@ -1,3 +0,0 @@
-digraph {
-	node [shape=box];
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph1.dot b/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph1.dot
deleted file mode 100644
index 1e6b5bc98ccdbec62d75e9a18a0d2693c1f99215..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph1.dot
+++ /dev/null
@@ -1,27 +0,0 @@
-digraph {
-	node [shape=box];
-	compound=true;
-	edge [minlen=2];
-	552838292 [label="ProjectA/pkgX"];
-	569615911 [label="ProjectA/pkgY"];
-	2062426895 [label="ProjectB/pkgX"];
-	2045649276 [label="ProjectB/pkgY"];
-	990902230 [label="ProjectC/pkgX"];
-	1007679849 [label="ProjectC/pkgY"];
-	957346992 [label="ProjectC/pkgZ"];
-	subgraph cluster_0 {
-		label = "ProjectA";
-		552838292 569615911;
-	}
-	subgraph cluster_1 {
-		label = "ProjectB";
-		2062426895 2045649276;
-	}
-	subgraph cluster_2 {
-		label = "ProjectC";
-		990902230 1007679849 957346992;
-	}
-	552838292 -> 957346992;
-	569615911 -> 990902230;
-	2045649276 -> 957346992;
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph2.dot b/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph2.dot
deleted file mode 100644
index b63d32b4538018660bf2ec7d8aebff3b29f9c5a0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph2.dot
+++ /dev/null
@@ -1,23 +0,0 @@
-digraph {
-	node [shape=box];
-	compound=true;
-	edge [minlen=2];
-	2062426895 [label="ProjectB/pkgX"];
-	2045649276 [label="ProjectB/pkgY"];
-	2095982133 [label="ProjectB/pkgZ"];
-	990902230 [label="ProjectC/pkgX"];
-	1007679849 [label="ProjectC/pkgY"];
-	957346992 [label="ProjectC/pkgZ"];
-	subgraph cluster_0 {
-		label = "ProjectB";
-		2062426895 2045649276 2095982133;
-	}
-	subgraph cluster_1 {
-		label = "ProjectC";
-		990902230 1007679849 957346992;
-	}
-	2045649276 -> 957346992;
-	2095982133 -> 990902230 [lhead=cluster_1];
-	2062426895 -> 990902230 [ltail=cluster_0];
-	2062426895 -> 990902230 [ltail=cluster_0 lhead=cluster_1];
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph3.dot b/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph3.dot
deleted file mode 100644
index 3f9b871d9c44bc6b5b7397224ba372d03a398037..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph3.dot
+++ /dev/null
@@ -1,25 +0,0 @@
-digraph {
-	node [shape=box];
-	compound=true;
-	edge [minlen=2];
-	1459457741 [label="ProjectA"];
-	2062426895 [label="ProjectB/pkgX"];
-	2045649276 [label="ProjectB/pkgY"];
-	2095982133 [label="ProjectB/pkgZ"];
-	990902230 [label="ProjectC/pkgX"];
-	1007679849 [label="ProjectC/pkgY"];
-	957346992 [label="ProjectC/pkgZ"];
-	subgraph cluster_0 {
-		label = "ProjectB";
-		2062426895 2045649276 2095982133;
-	}
-	subgraph cluster_1 {
-		label = "ProjectC";
-		990902230 1007679849 957346992;
-	}
-	1459457741 -> 990902230;
-	2045649276 -> 957346992;
-	2095982133 -> 990902230 [lhead=cluster_1];
-	2062426895 -> 990902230 [ltail=cluster_0];
-	2062426895 -> 990902230 [ltail=cluster_0 lhead=cluster_1];
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph4.dot b/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph4.dot
deleted file mode 100644
index 293292b7aa8bba3e3e0e5a8c1e672c3baad43527..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/graphviz/subgraph4.dot
+++ /dev/null
@@ -1,15 +0,0 @@
-digraph {
-	node [shape=box];
-	compound=true;
-	edge [minlen=2];
-	2062426895 [label="ProjectB/pkgX"];
-	2045649276 [label="ProjectB/pkgY"];
-	2095982133 [label="ProjectB/pkgZ"];
-	1459457741 [label="ProjectA"];
-	subgraph cluster_0 {
-		label = "ProjectB";
-		2062426895 2045649276 2095982133;
-	}
-	2045649276 -> 1459457741;
-	2062426895 -> 1459457741 [ltail=cluster_0];
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/README.md
deleted file mode 100644
index 379caaa2db8ab3aa84f2785c65d1f84d1d608eab..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/README.md
+++ /dev/null
@@ -1,85 +0,0 @@
-# golang/dep Integration Tests
-
-The `dep` integration tests use a consistent directory structure under `testdata`
-to set up the initial project state, run `dep` commands, then check against an
-expected final state to see if the test passes.
-
-The directory structure is as follows:
-
-    testdata/
-        harness_tests/
-            category1/
-                subcategory1/
-                    case1/
-                        testcase.json
-                        stdout.txt
-                        initial/
-                            file1.go
-                            Gopkg.toml
-                            ...
-                        final/
-                            Gopkg.toml
-                            Gopkg.lock
-                    case2/
-                    ...
-
-The test code itself simply walks down the directory tree, looking for
-`testcase.json` files.  These files can be as many levels down the tree as
-desired.  The test name will consist of the directory path from `testdata` to
-the test case directory itself.  In the above example, the test name would be
-`category1/subcategory1/case1`, and could be singled out with the `-run` option
-of `go test` (i.e.
-`go test github.com/golang/dep/cmd/dep -run Integration/category1/subcategory1/case1`).
-New tests can be added simply by adding a new directory with the json file to
-the `testdata` tree.  There is no need for code modification - the new test
-will be included automatically.
-
-The json file needs to be accompanied by `initial` and `final` directories. The
-`initial` is copied verbatim into the test project before the `dep` commands are
-run, and the `manifest` and `lock` files in `final`, if present, are used to
-compare against the test project results after the commands. The `stdout.txt` file
-is optional, and if present will be compared with command output.
-
-The `testcase.json` file has the following format:
-
-    {
-      "commands": [
-        ["init"],
-        ["ensure", "github.com/sdboyer/deptesttres"]
-      ],
-      "gopath-initial": {
-        "github.com/sdboyer/deptest": "v0.8.0",
-        "github.com/sdboyer/deptestdos": "a0196baa11ea047dd65037287451d36b861b00ea"
-      },
-      "vendor-initial": {
-        "github.com/sdboyer/deptesttres": "v2.1.0",
-        "github.com/sdboyer/deptestquatro": "cf596baa11ea047ddf8797287451d36b861bab45"
-      },
-      "vendor-final": [
-        "github.com/sdboyer/deptest",
-        "github.com/sdboyer/deptestdos",
-        "github.com/sdboyer/deptesttres",
-        "github.com/sdboyer/deptestquatro"
-      ],
-      "error-expected": "something went wrong"
-    }
-
-All of the categories are optional - if the `imports` list for a test is empty,
-for example, it can be completely left out.
-
-The test procedure is as follows:
-
-1. Create a unique temporary directory (TMPDIR) as the test run's `GOPATH`
-2. Create `$TMPDIR/src/github.com/golang/notexist` as the current project
-3. Copy the contents of `initial` input directory to the project
-4. Fetch the repos and versions in `gopath-initial` into `$TMPDIR/src` directory
-5. Fetch the repos and versions in `vendor-initial` to the project's `vendor` directory
-6. Run `commands` on the project, in declaration order
-7. Ensure that, if any errors are raised, it is only by the final command and their string output matches `error-expected`
-8. Ensure that, if a stdout.txt file is present, the command's output matches (excluding trailing whitespace).
-9. Check the resulting files against those in the `final` input directory
-10. Check the `vendor` directory for the projects listed under `vendor-final`
-11. Check that there were no changes to `src` listings
-12. Clean up
-
-Note that for the remote fetches, only git repos are currently supported.
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/final/Gopkg.lock
deleted file mode 100644
index 4951912e22445eee9bad8065f7a9ddef189e290b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/final/Gopkg.lock
+++ /dev/null
@@ -1,12 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/initial/Gopkg.lock
deleted file mode 100644
index 4951912e22445eee9bad8065f7a9ddef189e290b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/initial/Gopkg.lock
+++ /dev/null
@@ -1,12 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/initial/main.go
deleted file mode 100644
index 6fa045484402b698f121b3bd2e2345515341c606..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptestdos"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/stdout.txt
deleted file mode 100644
index 5faa15fd133c03ec664c691b7f1e8ab4dcb851d5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/stdout.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# Gopkg.lock is out of sync:
-github.com/sdboyer/deptest: in Gopkg.lock's input-imports, but neither imported nor required
-
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/testcase.json
deleted file mode 100644
index 41662e66cd213e0d7134107ce348e08f5f79e071..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/excess_inputs/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/final/Gopkg.lock
deleted file mode 100644
index b8c274bb715d70a82c6be17bcb95ae28aaf27e98..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/Gopkg.lock
deleted file mode 100644
index b8c274bb715d70a82c6be17bcb95ae28aaf27e98..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/stdout.txt
deleted file mode 100644
index 0ff5743187f1289f3a63eed3480e0b2be4566b5a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/stdout.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-# vendor is out of sync:
-github.com/sdboyer/deptest: hash of vendored tree not equal to digest in Gopkg.lock
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/testcase.json
deleted file mode 100644
index d06367e4d90d209d0410f1aa54383cf82d8eee06..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_mismatch/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/final/Gopkg.lock
deleted file mode 100644
index 737268f3ea9a5d6425b8a1d04e1b354aacd18cc3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "2:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/Gopkg.lock
deleted file mode 100644
index 737268f3ea9a5d6425b8a1d04e1b354aacd18cc3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "2:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/stdout.txt
deleted file mode 100644
index 49ebb4dd1d9741ebeb32978d405d66163708290f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/stdout.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-# vendor is out of sync:
-github.com/sdboyer/deptest: hash algorithm mismatch, want version 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/testcase.json
deleted file mode 100644
index d06367e4d90d209d0410f1aa54383cf82d8eee06..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/hash_version_mismatch/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/final/Gopkg.lock
deleted file mode 100644
index e774210e9d72d2e3de040083493e123c0c9f0c93..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/final/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/initial/Gopkg.lock
deleted file mode 100644
index e774210e9d72d2e3de040083493e123c0c9f0c93..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/initial/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/initial/main.go
deleted file mode 100644
index 6fa045484402b698f121b3bd2e2345515341c606..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptestdos"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/stdout.txt
deleted file mode 100644
index 4c6a84927bb98253b92a8af0ede7f3d47bce876c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/stdout.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-# Gopkg.lock is out of sync:
-github.com/sdboyer/deptestdos: imported or required, but missing from Gopkg.lock's input-imports
-github.com/sdboyer/deptest: in Gopkg.lock's input-imports, but neither imported nor required
-
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/testcase.json
deleted file mode 100644
index 41662e66cd213e0d7134107ce348e08f5f79e071..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_and_excess/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/final/Gopkg.lock
deleted file mode 100644
index 10ef811182d1c57274cfb705e52ccbdb66f5f270..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/final/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = []
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/initial/Gopkg.lock
deleted file mode 100644
index 10ef811182d1c57274cfb705e52ccbdb66f5f270..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/initial/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = []
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/initial/main.go
deleted file mode 100644
index 6fa045484402b698f121b3bd2e2345515341c606..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptestdos"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/stdout.txt
deleted file mode 100644
index e5c764d929cbdf11739b2604d15eafe69c5f97fa..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/stdout.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# Gopkg.lock is out of sync:
-github.com/sdboyer/deptestdos: imported or required, but missing from Gopkg.lock's input-imports
-
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/testcase.json
deleted file mode 100644
index 41662e66cd213e0d7134107ce348e08f5f79e071..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/missing_inputs/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/final/Gopkg.lock
deleted file mode 100644
index b8c274bb715d70a82c6be17bcb95ae28aaf27e98..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/final/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/final/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/Gopkg.lock
deleted file mode 100644
index b8c274bb715d70a82c6be17bcb95ae28aaf27e98..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/stdout.txt
deleted file mode 100644
index 2070de04d54638c8ef352bfa44e8014471fa213c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/stdout.txt
+++ /dev/null
@@ -1 +0,0 @@
-github.com/sdboyer/deptest: hash of vendored tree not equal to digest in Gopkg.lock  (CHECK IGNORED: marked noverify in Gopkg.toml)
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/testcase.json
deleted file mode 100644
index 95ab2d06aed624cdca20b0601e32480b7cbdcaf9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_mismatch/testcase.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/final/Gopkg.lock
deleted file mode 100644
index 737268f3ea9a5d6425b8a1d04e1b354aacd18cc3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "2:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/final/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/final/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/Gopkg.lock
deleted file mode 100644
index 737268f3ea9a5d6425b8a1d04e1b354aacd18cc3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "2:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/stdout.txt
deleted file mode 100644
index e86ee5b2938ac1a6b8b24e7f523b09649dfd4908..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/stdout.txt
+++ /dev/null
@@ -1 +0,0 @@
-github.com/sdboyer/deptest: hash algorithm mismatch, want version 1  (CHECK IGNORED: marked noverify in Gopkg.toml)
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/testcase.json
deleted file mode 100644
index 95ab2d06aed624cdca20b0601e32480b7cbdcaf9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/hash_version_mismatch/testcase.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/final/Gopkg.lock
deleted file mode 100644
index e774210e9d72d2e3de040083493e123c0c9f0c93..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/final/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/final/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/final/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/Gopkg.lock
deleted file mode 100644
index e774210e9d72d2e3de040083493e123c0c9f0c93..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/main.go
deleted file mode 100644
index 6fa045484402b698f121b3bd2e2345515341c606..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptestdos"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/stdout.txt
deleted file mode 100644
index 4c6a84927bb98253b92a8af0ede7f3d47bce876c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/stdout.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-# Gopkg.lock is out of sync:
-github.com/sdboyer/deptestdos: imported or required, but missing from Gopkg.lock's input-imports
-github.com/sdboyer/deptest: in Gopkg.lock's input-imports, but neither imported nor required
-
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/testcase.json
deleted file mode 100644
index 41662e66cd213e0d7134107ce348e08f5f79e071..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/missing_and_excess/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/final/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/final/Gopkg.toml
deleted file mode 100644
index 31d1cbff414cc5dc5e62809423ed185e46f8d704..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/final/Gopkg.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-noverify = ["github.com/sdboyer/deptestdos"]
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/Gopkg.toml
deleted file mode 100644
index 31d1cbff414cc5dc5e62809423ed185e46f8d704..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/Gopkg.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-noverify = ["github.com/sdboyer/deptestdos"]
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/stdout.txt
deleted file mode 100644
index 812ea5afb510e325fe2083e368a65c5033f5cfc7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/stdout.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-# Gopkg.lock is out of sync:
-github.com/sdboyer/deptest@v1.0.0: not allowed by constraint master
-
-# vendor is out of sync:
-github.com/sdboyer/deptest: missing from vendor
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/testcase.json
deleted file mode 100644
index 41662e66cd213e0d7134107ce348e08f5f79e071..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_constraint/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/final/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/final/Gopkg.toml
deleted file mode 100644
index 0965be96bb1f4427a333c65290087d94d6ee6c1e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/final/Gopkg.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
-
-[[override]]
-  name = "github.com/sdboyer/deptest"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/Gopkg.toml
deleted file mode 100644
index 0965be96bb1f4427a333c65290087d94d6ee6c1e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/Gopkg.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
-
-[[override]]
-  name = "github.com/sdboyer/deptest"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/stdout.txt
deleted file mode 100644
index 9ca5bc93b1bd4a7d1fb0c6d486d03e3db832009c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/stdout.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-# Gopkg.lock is out of sync:
-github.com/sdboyer/deptest@v1.0.0: not allowed by override master
-
-# vendor is out of sync:
-github.com/sdboyer/deptest: missing from vendor
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/testcase.json
deleted file mode 100644
index 41662e66cd213e0d7134107ce348e08f5f79e071..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/unmet_override/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/final/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/final/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/final/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/stdout.txt
deleted file mode 100644
index 9400f1efd15d61ef0c93f0cbbb01608970a00e21..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/stdout.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# vendor is out of sync:
-foo: orphaned file
-orphdir: unused project
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/testcase.json
deleted file mode 100644
index d06367e4d90d209d0410f1aa54383cf82d8eee06..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/noverify/vendororphans/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/final/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/final/Gopkg.toml
deleted file mode 100644
index 6e1c497df562c90927b99dc7ab40110e12142b16..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/Gopkg.toml
deleted file mode 100644
index 6e1c497df562c90927b99dc7ab40110e12142b16..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/stdout.txt
deleted file mode 100644
index 812ea5afb510e325fe2083e368a65c5033f5cfc7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/stdout.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-# Gopkg.lock is out of sync:
-github.com/sdboyer/deptest@v1.0.0: not allowed by constraint master
-
-# vendor is out of sync:
-github.com/sdboyer/deptest: missing from vendor
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/testcase.json
deleted file mode 100644
index 41662e66cd213e0d7134107ce348e08f5f79e071..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_constraint/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/final/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/final/Gopkg.toml
deleted file mode 100644
index 66a88c9a8ac2f54fe0569adb9b1e1b8bc72dcaad..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[override]]
-  name = "github.com/sdboyer/deptest"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/initial/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/initial/Gopkg.toml
deleted file mode 100644
index 66a88c9a8ac2f54fe0569adb9b1e1b8bc72dcaad..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[override]]
-  name = "github.com/sdboyer/deptest"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/stdout.txt
deleted file mode 100644
index 9ca5bc93b1bd4a7d1fb0c6d486d03e3db832009c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/stdout.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-# Gopkg.lock is out of sync:
-github.com/sdboyer/deptest@v1.0.0: not allowed by override master
-
-# vendor is out of sync:
-github.com/sdboyer/deptest: missing from vendor
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/testcase.json
deleted file mode 100644
index 41662e66cd213e0d7134107ce348e08f5f79e071..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/unmet_override/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/final/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/initial/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/stdout.txt
deleted file mode 100644
index 9400f1efd15d61ef0c93f0cbbb01608970a00e21..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/stdout.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# vendor is out of sync:
-foo: orphaned file
-orphdir: unused project
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/testcase.json
deleted file mode 100644
index d06367e4d90d209d0410f1aa54383cf82d8eee06..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/check/vendororphans/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["check"]
-  ],
-  "should-fail": true,
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/final/Gopkg.lock
deleted file mode 100644
index e1a08979417422d79cd907bba8d1641167c06735..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  branch = "master"
-  digest = "1:d08235d21a5df95ab12e1eb0191ffe9c4ceb4fa8005f079f6815e8ff507855d3"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptesttres",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/final/Gopkg.toml
deleted file mode 100644
index 47af7688905ccea9ccc60d7ca68190fb1b6f4179..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
-
-[prune]
-  go-tests = true
-  unused-packages = true
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "0.8.1"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/initial/main.go
deleted file mode 100644
index 8049e4ec2cd470722d173ca750dd9ce205670cd1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptesttres"
-)
-
-func main() {
-	type a deptesttres.Bar
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/testcase.json
deleted file mode 100644
index 182b683c41b0932e7a797d9c934af7e818b80309..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double-spec/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"],
-    ["ensure", "-add", "github.com/sdboyer/deptest", "github.com/sdboyer/deptest@v0.8.1"]
-  ],
-  "vendor-final": [
-      "github.com/sdboyer/deptest",
-      "github.com/sdboyer/deptesttres"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/final/Gopkg.lock
deleted file mode 100644
index 42f72e7eba4fb2653610dbee4b876369e15a9f8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/final/Gopkg.lock
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  branch = "master"
-  digest = "1:d62f7f8be8f431ede67fae7f90d75f923dddc627b309b9134ea1db95f0e34e6d"
-  name = "github.com/sdboyer/deptesttres"
-  packages = [
-    ".",
-    "subp",
-  ]
-  pruneopts = "UT"
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptesttres",
-    "github.com/sdboyer/deptesttres/subp",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/final/Gopkg.toml
deleted file mode 100644
index 252f947863cf1ea129097c95bc251be84d6eb6d7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/initial/main.go
deleted file mode 100644
index 84f99b6894059d01b80cc7f53ca8a184e1b1072b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-)
-
-func main() {
-	type a deptest.Bar
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/testcase.json
deleted file mode 100644
index 2e5161d01eb7e5b5759fe0b23f22b6fd0455eb77..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-double/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"],
-    ["ensure", "-add", "github.com/sdboyer/deptesttres", "github.com/sdboyer/deptesttres/subp"]
-  ],
-  "vendor-final": [
-      "github.com/sdboyer/deptest",
-      "github.com/sdboyer/deptesttres"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/final/Gopkg.lock
deleted file mode 100644
index e1a08979417422d79cd907bba8d1641167c06735..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  branch = "master"
-  digest = "1:d08235d21a5df95ab12e1eb0191ffe9c4ceb4fa8005f079f6815e8ff507855d3"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptesttres",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/final/Gopkg.toml
deleted file mode 100644
index 47af7688905ccea9ccc60d7ca68190fb1b6f4179..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
-
-[prune]
-  go-tests = true
-  unused-packages = true
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "0.8.1"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/initial/main.go
deleted file mode 100644
index 8049e4ec2cd470722d173ca750dd9ce205670cd1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptesttres"
-)
-
-func main() {
-	type a deptesttres.Bar
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/testcase.json
deleted file mode 100644
index 9f6fa3f3f109583d11a263a5cf598b2817c78101..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new-spec/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"],
-    ["ensure", "-add", "github.com/sdboyer/deptest@v0.8.1"]
-  ],
-  "vendor-final": [
-      "github.com/sdboyer/deptest",
-      "github.com/sdboyer/deptesttres"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/final/Gopkg.lock
deleted file mode 100644
index 7f729ccdd2ea67073e64ade442ee55e24a7aa771..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  branch = "master"
-  digest = "1:d08235d21a5df95ab12e1eb0191ffe9c4ceb4fa8005f079f6815e8ff507855d3"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptesttres",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/final/Gopkg.toml
deleted file mode 100644
index b75fe963a9fda27b6aff3a489a8896d74421abd2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
-
-[prune]
-  go-tests = true
-  unused-packages = true
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/initial/main.go
deleted file mode 100644
index 8049e4ec2cd470722d173ca750dd9ce205670cd1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptesttres"
-)
-
-func main() {
-	type a deptesttres.Bar
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/testcase.json
deleted file mode 100644
index 3a8d221f9382a54160a7b45e9ca95699e6aeb7e7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/all-new/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"],
-    ["ensure", "-add", "github.com/sdboyer/deptest"]
-  ],
-  "vendor-final": [
-      "github.com/sdboyer/deptest",
-      "github.com/sdboyer/deptesttres"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/final/Gopkg.lock
deleted file mode 100644
index 6872265e9a95c23ea25350760eed844b09fa86af..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/final/Gopkg.lock
+++ /dev/null
@@ -1,37 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[[projects]]
-  branch = "master"
-  digest = "1:c683a5f3a422ecd929d76af63de214178e6caa41cbfdf4522112f7f9173d0cae"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  pruneopts = ""
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-    "github.com/sdboyer/deptesttres",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/final/Gopkg.toml
deleted file mode 100644
index 57787fb45e7e329ac7b78e28288da83006762196..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/final/Gopkg.toml
+++ /dev/null
@@ -1,6 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/final/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/final/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/final/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/initial/Gopkg.lock
deleted file mode 100644
index 2d6f4c02784ddc1b74d7ee6a06a8f2194312b600..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "9a7bd6944c26792ab2e97fed1227cc402f0cc00465016836efbf04239596dd9f"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/initial/Gopkg.toml
deleted file mode 100644
index 532da96a0d30db2070374e6a78dc2b21c1373ae2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/initial/main.go
deleted file mode 100644
index 7ad40aca5a469c17623b57e966aadba14001f92d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/initial/main.go
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-	"github.com/sdboyer/deptesttres"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-
-	type a deptesttres.Bar
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/stdout.txt
deleted file mode 100644
index a7dfa2d65eb0a8540f3df44d37482e4ac9ba52b5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/stdout.txt
+++ /dev/null
@@ -1 +0,0 @@
-Fetching sources...
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/testcase.json
deleted file mode 100644
index eb95e6f16a3e2d1e20e93ec793df1593cb99f0b2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/desync/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-add", "github.com/sdboyer/deptesttres@master"]
-  ],
-  "vendor-final": [
-      "github.com/sdboyer/deptest",
-      "github.com/sdboyer/deptestdos",
-      "github.com/sdboyer/deptesttres"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/final/Gopkg.lock
deleted file mode 100644
index b34d4cfd9f6ee205aa8b25ac7ce3b72b7aaf6593..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  digest = "1:d08235d21a5df95ab12e1eb0191ffe9c4ceb4fa8005f079f6815e8ff507855d3"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptesttres"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/final/Gopkg.toml
deleted file mode 100644
index d24b06960763097db871e00906d5a4f16a8eb4ac..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/initial/main.go
deleted file mode 100644
index 8049e4ec2cd470722d173ca750dd9ce205670cd1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptesttres"
-)
-
-func main() {
-	type a deptesttres.Bar
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/testcase.json
deleted file mode 100644
index 52cb46b132a50c693e6b5bd10ccb8b084bbcb078..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/double-diff-spec/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"],
-    ["ensure", "-add", "github.com/sdboyer/deptest@0.8.1", "github.com/sdboyer/deptest@1.0.0"]
-  ],
-  "vendor-final": [
-      "github.com/sdboyer/deptesttres"
-  ],
-  "error-expected": "can only specify rules once per project being added; rules were given at least twice for github.com/sdboyer/deptest"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/final/Gopkg.lock
deleted file mode 100644
index 66ef021c68f1aa9b5955a2b03763aaf1d7ab4614..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "342afd8c8a616d084eb7b67bf3a891710eca3ce5abc3cf60af0dae4ccfdcd001"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/final/Gopkg.toml
deleted file mode 100644
index 598accd86c456ad8f134fad04ace0cbc83c7b1d0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/final/Gopkg.toml
+++ /dev/null
@@ -1,7 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptesttres"
-  branch = "master"
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/Gopkg.lock
deleted file mode 100644
index 66ef021c68f1aa9b5955a2b03763aaf1d7ab4614..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "342afd8c8a616d084eb7b67bf3a891710eca3ce5abc3cf60af0dae4ccfdcd001"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/Gopkg.toml
deleted file mode 100644
index 598accd86c456ad8f134fad04ace0cbc83c7b1d0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/Gopkg.toml
+++ /dev/null
@@ -1,7 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptesttres"
-  branch = "master"
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/main.go
deleted file mode 100644
index 8049e4ec2cd470722d173ca750dd9ce205670cd1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptesttres"
-)
-
-func main() {
-	type a deptesttres.Bar
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/testcase.json
deleted file mode 100644
index a0d78d31b63d6d97ef51fec7102b26a6a5317262..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists-manifest/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-add", "github.com/sdboyer/deptest@1.0.0"]
-  ],
-  "error-expected": "Gopkg.toml already contains rules for github.com/sdboyer/deptest, cannot specify a version constraint"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/final/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/final/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/main.go
deleted file mode 100644
index c5b8da51da730e2d35b7615484020c5609b8fe5e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-)
-
-func main() {
-	_ := deptest.Map["yo yo!"]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/testcase.json
deleted file mode 100644
index e4ec92f9d3c336b538abab947c38913669c253ee..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/exists/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-add", "github.com/sdboyer/deptest"]
-  ],
-  "error-expected": "nothing to -add, github.com/sdboyer/deptest is already in Gopkg.toml and the project's direct imports or required list"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/Gopkg.lock
deleted file mode 100644
index 41dd2d419073ec9d4db6048264d37c3c6d3817f0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/Gopkg.lock
+++ /dev/null
@@ -1,21 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  version = "v0.8.0"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  packages = ["."]
-
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  packages = ["."]
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "9b381263a360eafafe3ef7f9be626672668d17250a3c9a8debd169d1b5e2eebb"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/Gopkg.toml
deleted file mode 100644
index 532da96a0d30db2070374e6a78dc2b21c1373ae2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/final/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/Gopkg.lock
deleted file mode 100644
index 41dd2d419073ec9d4db6048264d37c3c6d3817f0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/Gopkg.lock
+++ /dev/null
@@ -1,21 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  version = "v0.8.0"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  packages = ["."]
-
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  packages = ["."]
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "9b381263a360eafafe3ef7f9be626672668d17250a3c9a8debd169d1b5e2eebb"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/Gopkg.toml
deleted file mode 100644
index 532da96a0d30db2070374e6a78dc2b21c1373ae2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/initial/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/testcase.json
deleted file mode 100644
index b8b36480f67ed9e1ebf4ac4d3129f3f00f7e3c8c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/noarg/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-add"]
-  ],
-  "error-expected": "must specify at least one project or package to -add"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/final/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/final/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/main.go
deleted file mode 100644
index c5b8da51da730e2d35b7615484020c5609b8fe5e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-)
-
-func main() {
-	_ := deptest.Map["yo yo!"]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/testcase.json
deleted file mode 100644
index 86727bb25ac68a2767ef3d276518f2043e16a638..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case1/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-add", "github.com/golang/notexist"]
-  ],
-  "error-expected": "cannot add current project to itself"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/final/Gopkg.lock
deleted file mode 100644
index 10ef811182d1c57274cfb705e52ccbdb66f5f270..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/final/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = []
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/final/Gopkg.toml
deleted file mode 100644
index db111447c2464601cb13ae07e6461e56fc4bc5ca..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/initial/main.go
deleted file mode 100644
index 7a00113b17d57cd1306c30915e91de3a8b29e04f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/initial/main.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-func main() {}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/testcase.json
deleted file mode 100644
index 490aab5e4875b35f19c35806fb4fce856e68fbbb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/errs/self-add/case2/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"],
-    ["ensure", "-add", "github.com/golang/notexist"]
-  ],
-  "error-expected": "cannot add current project to itself"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/final/Gopkg.lock
deleted file mode 100644
index 9102af515fbf42207b987b0c13c3f6a5b6d59236..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  digest = "1:c683a5f3a422ecd929d76af63de214178e6caa41cbfdf4522112f7f9173d0cae"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  pruneopts = ""
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptesttres"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/final/Gopkg.toml
deleted file mode 100644
index bbc8cc1688bad7f96018780ee31f1f3123623298..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/initial/main.go
deleted file mode 100644
index 8049e4ec2cd470722d173ca750dd9ce205670cd1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptesttres"
-)
-
-func main() {
-	type a deptesttres.Bar
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/testcase.json
deleted file mode 100644
index 69755349e4991c370dd51d42192ac2686d7684bf..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-imports/testcase.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-add", "github.com/sdboyer/deptesttres@master"]
-  ],
-  "vendor-final": [
-      "github.com/sdboyer/deptesttres"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/final/Gopkg.lock
deleted file mode 100644
index 1074b6a1f8e0824712afef438abf59a8feef68bf..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  branch = "master"
-  digest = "1:c683a5f3a422ecd929d76af63de214178e6caa41cbfdf4522112f7f9173d0cae"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  pruneopts = ""
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptesttres",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/final/Gopkg.toml
deleted file mode 100644
index 598accd86c456ad8f134fad04ace0cbc83c7b1d0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/final/Gopkg.toml
+++ /dev/null
@@ -1,7 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptesttres"
-  branch = "master"
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/Gopkg.lock
deleted file mode 100644
index 66ef021c68f1aa9b5955a2b03763aaf1d7ab4614..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  name = "github.com/sdboyer/deptesttres"
-  packages = ["."]
-  revision = "54aaeb0023e1f3dcf5f98f31dd8c565457945a12"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "342afd8c8a616d084eb7b67bf3a891710eca3ce5abc3cf60af0dae4ccfdcd001"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/Gopkg.toml
deleted file mode 100644
index 598accd86c456ad8f134fad04ace0cbc83c7b1d0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/Gopkg.toml
+++ /dev/null
@@ -1,7 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptesttres"
-  branch = "master"
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/main.go
deleted file mode 100644
index 8049e4ec2cd470722d173ca750dd9ce205670cd1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptesttres"
-)
-
-func main() {
-	type a deptesttres.Bar
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/testcase.json
deleted file mode 100644
index 6a19d7c2b18dbf86104e8e69422654969d8687d0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/add/exists-manifest-constraint/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-add", "github.com/sdboyer/deptest"]
-  ],
-  "vendor-final": [
-      "github.com/sdboyer/deptest",
-      "github.com/sdboyer/deptesttres"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/final/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/final/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/final/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/testcase.json
deleted file mode 100644
index 6dc9735c09de265f6456187ebf8089de0d38382a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/lockless-vendoronly/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-vendor-only"]
-  ],
-  "error-expected": "no Gopkg.lock exists from which to populate vendor/"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/final/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/testcase.json
deleted file mode 100644
index f194308fe2410c2a566b1f176686536a31e82b13..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/errs/specargs/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "foobar.com/baz"]
-  ],
-  "error-expected": "dep ensure only takes spec arguments with -add or -update"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/final/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/testcase.json
deleted file mode 100644
index 21daf3e990ec9f4a1c7be41812ee4d840e38cf71..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-dry/testcase.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-dry-run"]
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/final/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/testcase.json
deleted file mode 100644
index f3bdbe7e90f0597c9e83a6346fac16ea164ed6b6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor-dry/testcase.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-no-vendor", "-dry-run"]
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/final/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/testcase.json
deleted file mode 100644
index 7692eecf880b06facb725490bdb847674618a640..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq-novendor/testcase.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-no-vendor"]
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/final/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/testcase.json
deleted file mode 100644
index 19da5270907a883bbbd1227f95cecced6107eedc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hasheq/testcase.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "commands": [
-    ["ensure"]
-  ],
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/final/Gopkg.lock
deleted file mode 100644
index 11cb12c3785e537e6865b4e1ff6a25b59de3b55a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/final/Gopkg.lock
+++ /dev/null
@@ -1,16 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  # manually modified hash digest, it will not match any known inputs
-  inputs-digest = "94b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/Gopkg.lock
deleted file mode 100644
index 11cb12c3785e537e6865b4e1ff6a25b59de3b55a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/Gopkg.lock
+++ /dev/null
@@ -1,16 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  # manually modified hash digest, it will not match any known inputs
-  inputs-digest = "94b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/testcase.json
deleted file mode 100644
index 8a28875978c922c66975bc8e3304f4434616a652..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/hashneq-vendoronly/testcase.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-vendor-only"]
-  ],
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/final/Gopkg.lock
deleted file mode 100644
index 11cb12c3785e537e6865b4e1ff6a25b59de3b55a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/final/Gopkg.lock
+++ /dev/null
@@ -1,16 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  # manually modified hash digest, it will not match any known inputs
-  inputs-digest = "94b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/initial/Gopkg.lock
deleted file mode 100644
index 11cb12c3785e537e6865b4e1ff6a25b59de3b55a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/initial/Gopkg.lock
+++ /dev/null
@@ -1,16 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  # manually modified hash digest, it will not match any known inputs
-  inputs-digest = "94b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/testcase.json
deleted file mode 100644
index 8a28875978c922c66975bc8e3304f4434616a652..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/default/nocode-vendoronly/testcase.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-vendor-only"]
-  ],
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/final/Gopkg.lock
deleted file mode 100644
index 49180c231e6538c25e0e7dda342f2b6a322516f4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/final/Gopkg.toml
deleted file mode 100644
index 51a3481d946936f5273b7121a0f388036f537001..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/testcase.json
deleted file mode 100644
index 0cf0fd903b6b7ee392f1ac4caf696f07628336f0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case1/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["init", "-skip-tools", "-no-examples"],
-    ["ensure", "-update"]
-  ],
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/final/Gopkg.lock
deleted file mode 100644
index a09c4263a0667c858ceb4dadf6486af4d12f9242..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/final/Gopkg.toml
deleted file mode 100644
index 532da96a0d30db2070374e6a78dc2b21c1373ae2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/initial/Gopkg.toml
deleted file mode 100644
index 532da96a0d30db2070374e6a78dc2b21c1373ae2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/testcase.json
deleted file mode 100644
index 729de9d0f425865dee9ed7a6df2a843cb82aba94..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case2/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["ensure"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/README.md
deleted file mode 100644
index 34b1e0c1c2cf1278ee47944a4d1e641be3ef8762..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-Validate that packages imported in an ignored package are not
-included in the manifest or lock.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/final/Gopkg.lock
deleted file mode 100644
index c00429e5d4ef898c1def587de7902468e5d44390..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/final/Gopkg.toml
deleted file mode 100644
index d77e367c70f3145ed846fec217caa97fcb7f6a05..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/final/Gopkg.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-ignored = ["github.com/sdboyer/deptestdos"]
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptest"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/Gopkg.lock
deleted file mode 100644
index 5bfebb27d0caf8e57aabc8d80e8ffff9fba033ed..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "8114537cd7d93f5eacebdea7dfec0c3c10919d7f952d056e2a3142fee1c33aee"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/Gopkg.toml
deleted file mode 100644
index d77e367c70f3145ed846fec217caa97fcb7f6a05..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/Gopkg.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-ignored = ["github.com/sdboyer/deptestdos"]
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptest"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/samples/samples.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/samples/samples.go
deleted file mode 100644
index 822fc9353927309a4f26780c97dd92575d0af3d9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/initial/samples/samples.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package samples
-
-import _ "github.com/sdboyer/deptestdos"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/testcase.json
deleted file mode 100644
index 729de9d0f425865dee9ed7a6df2a843cb82aba94..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/empty/case3/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["ensure"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/README b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/README
deleted file mode 100644
index 5b8664c49421d24015484cde1bd393cfcd109900..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/README
+++ /dev/null
@@ -1,5 +0,0 @@
-This is a hack - it's effectively just verifying that the Gopkg.lock doesn't
-change for projects with noverify set, which (under the current logic) is an
-indicator that vendor wasn't updated.
-
-Of course, that vendor -> lock relatinoship isn't guaranteed to hold...
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/final/Gopkg.lock
deleted file mode 100644
index b8c274bb715d70a82c6be17bcb95ae28aaf27e98..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/final/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/final/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/Gopkg.lock
deleted file mode 100644
index b8c274bb715d70a82c6be17bcb95ae28aaf27e98..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265a246"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/Gopkg.toml
deleted file mode 100644
index 93ea72598ccfaf43694e15ee296241324a3460fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-noverify = ["github.com/sdboyer/deptest"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/testcase.json
deleted file mode 100644
index 5f45414e73caff2a4dbc10c3d667d4796b842ad5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/noverify/hash_mismatch/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["ensure"],
-    ["check"]
-  ],
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case1/final/Gopkg.lock
deleted file mode 100644
index 10ef811182d1c57274cfb705e52ccbdb66f5f270..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = []
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case1/final/Gopkg.toml
deleted file mode 100644
index db111447c2464601cb13ae07e6461e56fc4bc5ca..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case1/testcase.json
deleted file mode 100644
index fede436ff232cd9c2e4f20cc05d935df8eb41c11..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case1/testcase.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-skip-tools"],
-    ["ensure", "-update"]
-  ],
-  "error-expected": "no dirs contained any Go code",
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/initial/bar/bar.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/initial/bar/bar.go
deleted file mode 100644
index b007341e3451c352ea7dc3ce72bb2268eba0b5b2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/initial/bar/bar.go
+++ /dev/null
@@ -1,3 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/initial/baz/.gitignore b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/initial/baz/.gitignore
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/testcase.json
deleted file mode 100644
index 5353ea6b343c4420f780f3d4e0324734bec051a4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-errors/case2/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-    "commands": [
-        ["ensure"]
-    ],
-    "error-expected": "found 1 errors",
-    "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/final/Gopkg.lock
deleted file mode 100644
index c00429e5d4ef898c1def587de7902468e5d44390..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/final/Gopkg.toml
deleted file mode 100644
index 5e109dd48fd98a59919aa1ead875948dd42ea190..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/final/Gopkg.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-ignored = ["github.com/golang/notexist/samples*"]
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptest"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/Gopkg.lock
deleted file mode 100644
index bef2d0092eb5e822ef996e91009ac977094a9fe8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "ab4fef131ee828e96ba67d31a7d690bd5f2f42040c6766b1b12fe856f87e0ff7"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/Gopkg.toml
deleted file mode 100644
index 5e109dd48fd98a59919aa1ead875948dd42ea190..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/Gopkg.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-ignored = ["github.com/golang/notexist/samples*"]
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptest"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/samples/samples.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/samples/samples.go
deleted file mode 100644
index d07de170f738260bdeaaa8796e15683b14872a5c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/samples/samples.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package samples
-
-import _ "github.com/sdboyer/deptestdos"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/samples/subsamples/subsamples.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/samples/subsamples/subsamples.go
deleted file mode 100644
index 5136538e6d763643049e17a0f8bc7e2c03e507b2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/initial/samples/subsamples/subsamples.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package subsamples
-
-import _ "github.com/sdboyer/dep-test"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/testcase.json
deleted file mode 100644
index 729de9d0f425865dee9ed7a6df2a843cb82aba94..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-ignore/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["ensure"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/final/Gopkg.lock
deleted file mode 100644
index 10ef811182d1c57274cfb705e52ccbdb66f5f270..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/final/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = []
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/final/Gopkg.toml
deleted file mode 100644
index f54b63d5739b0f5856107fa246fad78bfc58b283..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/final/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-ignored = ["github.com/sdboyer/deptest*", "github.com/golang/notexist/samples*"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/Gopkg.lock
deleted file mode 100644
index bef2d0092eb5e822ef996e91009ac977094a9fe8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "ab4fef131ee828e96ba67d31a7d690bd5f2f42040c6766b1b12fe856f87e0ff7"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/Gopkg.toml
deleted file mode 100644
index f54b63d5739b0f5856107fa246fad78bfc58b283..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/Gopkg.toml
+++ /dev/null
@@ -1 +0,0 @@
-ignored = ["github.com/sdboyer/deptest*", "github.com/golang/notexist/samples*"]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/samples/samples.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/samples/samples.go
deleted file mode 100644
index d07de170f738260bdeaaa8796e15683b14872a5c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/samples/samples.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package samples
-
-import _ "github.com/sdboyer/deptestdos"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/samples/subsamples/subsamples.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/samples/subsamples/subsamples.go
deleted file mode 100644
index 5136538e6d763643049e17a0f8bc7e2c03e507b2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/initial/samples/subsamples/subsamples.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package subsamples
-
-import _ "github.com/sdboyer/dep-test"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/testcase.json
deleted file mode 100644
index 7c94832d8a26c474e4f6261b3c75054cf93f0164..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/pkg-ignored/wildcard-other-root/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["ensure"]
-  ],
-  "error-expected": "",
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/final/Gopkg.lock
deleted file mode 100644
index 78a90e32be5cf3c2a57ef4ab702ebdd24d4e78c9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/final/Gopkg.toml
deleted file mode 100644
index 532da96a0d30db2070374e6a78dc2b21c1373ae2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/initial/Gopkg.lock
deleted file mode 100644
index 7265a5552ea4fe5ea83b3ba3ad1125610132845c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/initial/Gopkg.lock
+++ /dev/null
@@ -1,21 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  version = "v0.8.0"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  packages = ["."]
-
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  packages = ["."]
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "1b381263a360eafafe3ef7f9be626672668d17250a3c9a8debd169d1b5e2eebb"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/initial/Gopkg.toml
deleted file mode 100644
index 532da96a0d30db2070374e6a78dc2b21c1373ae2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/initial/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/initial/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/testcase.json
deleted file mode 100644
index 07bc6352695bbe5dd8d279daa672443a67262e7e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/case1/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-update", "github.com/sdboyer/deptest"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/final/Gopkg.lock
deleted file mode 100644
index 78a90e32be5cf3c2a57ef4ab702ebdd24d4e78c9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/final/Gopkg.toml
deleted file mode 100644
index 532da96a0d30db2070374e6a78dc2b21c1373ae2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/final/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/final/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/final/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/initial/Gopkg.lock
deleted file mode 100644
index 41dd2d419073ec9d4db6048264d37c3c6d3817f0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/initial/Gopkg.lock
+++ /dev/null
@@ -1,21 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  version = "v0.8.0"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  packages = ["."]
-
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  packages = ["."]
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "9b381263a360eafafe3ef7f9be626672668d17250a3c9a8debd169d1b5e2eebb"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/initial/Gopkg.toml
deleted file mode 100644
index 532da96a0d30db2070374e6a78dc2b21c1373ae2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "~0.8.0"
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/initial/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/initial/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/stdout.txt
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/testcase.json
deleted file mode 100644
index 81a7c2320d9973eadb550f276a4d593daf38563c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/desync/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-update"]
-  ],
-  "vendor-final": [
-      "github.com/sdboyer/deptest",
-      "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/final/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/final/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/final/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/initial/main.go
deleted file mode 100644
index 1fe0d19d6a11a5e93823308714b4e8bd8b1e95d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/testcase.json
deleted file mode 100644
index a69d08d0f61871494c2785ca20d8d8f175784aa2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/lockless/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-update"]
-  ],
-  "error-expected": "-update works by updating the versions recorded in Gopkg.lock, but Gopkg.lock does not exist"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/final/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/final/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/main.go
deleted file mode 100644
index c5b8da51da730e2d35b7615484020c5609b8fe5e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-)
-
-func main() {
-	_ := deptest.Map["yo yo!"]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/testcase.json
deleted file mode 100644
index 4b4b4fe059978dfdcb01b89e35a2380c26a39c54..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/nonroot-arg/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-update", "github.com/sdboyer/deptest/subpkg"]
-  ],
-  "error-expected": "github.com/sdboyer/deptest/subpkg is not a project root, try github.com/sdboyer/deptest instead"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/final/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/final/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/main.go
deleted file mode 100644
index c5b8da51da730e2d35b7615484020c5609b8fe5e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-)
-
-func main() {
-	_ := deptest.Map["yo yo!"]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/testcase.json
deleted file mode 100644
index 0fda36edd2a174ca7a480914b52cfda9b65e9100..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/not-in-lock/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-update", "github.com/sdboyer/deptesttres"]
-  ],
-  "error-expected": "github.com/sdboyer/deptesttres is not present in Gopkg.lock, cannot -update it"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/final/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/final/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/main.go
deleted file mode 100644
index c5b8da51da730e2d35b7615484020c5609b8fe5e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-)
-
-func main() {
-	_ := deptest.Map["yo yo!"]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/testcase.json
deleted file mode 100644
index 7332bc493d14f2dd2106222437252f2cd2be56f0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-constraint/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-update", "github.com/sdboyer/deptest:github.com/other/deptest"]
-  ],
-  "error-expected": "cannot specify alternate sources on -update (github.com/other/deptest)"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/final/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/final/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/final/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/Gopkg.lock
deleted file mode 100644
index c7f497e7a11a64bba2fc765c9c0f24c968277cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/Gopkg.toml
deleted file mode 100644
index 51ff69b358e71a13e4289f48da5a79753d4f1a57..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/main.go
deleted file mode 100644
index c5b8da51da730e2d35b7615484020c5609b8fe5e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-)
-
-func main() {
-	_ := deptest.Map["yo yo!"]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/testcase.json
deleted file mode 100644
index 27c8a5fc96d301a6c4238f0c038b0c6c5a8005af..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/errs/spec-with-source/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-update", "github.com/sdboyer/deptest@1.0.0"]
-  ],
-  "error-expected": "version constraint ^1.0.0 passed for github.com/sdboyer/deptest, but -update follows constraints declared in"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/final/Gopkg.lock
deleted file mode 100644
index 188ece4f779bfad16ce448a6401934d9f264702c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/final/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/Gopkg.lock
deleted file mode 100644
index 810f1b0316700954acd26a09b1612eeabe5dbdfb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/Gopkg.lock
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "14b07b05e0f01051b03887ab2bf80b516bc5510ea92f75f76c894b1745d8850c"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/Gopkg.toml
deleted file mode 100644
index e242e02114e31465f3561c9246af553e952bf267..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/main.go
deleted file mode 100644
index e23fcf34c5bb243acbd923e687554bc757cafc8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptest"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/testcase.json
deleted file mode 100644
index 518f5efbecd15ca64e4824f74a0d25c303d6313a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/ensure/update/novendor/testcase.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "commands": [
-    ["ensure", "-update", "-no-vendor"]
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/final/Gopkg.lock
deleted file mode 100644
index 8d942e71b0dbba92e30776c468101b01edb99a23..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v0.8.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "a0196baa11ea047dd65037287451d36b861b00ea"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/final/Gopkg.toml
deleted file mode 100644
index c262475fe08c75274e92294535c610debfd1790a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "0.8.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/initial/foo/bar.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/initial/foo/bar.go
deleted file mode 100644
index c1ed69fc652ffa0081565ba714cb9def6a096e13..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/initial/foo/bar.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package foo
-
-import "github.com/sdboyer/deptest"
-
-func Foo() deptest.Foo {
-	var y deptest.Foo
-
-	return y
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/initial/main.go
deleted file mode 100644
index 83a4dfcd578adb6e668ac34d0cc0bfedb07b2265..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/initial/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/golang/notexist/foo"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	y := foo.FooFunc()
-
-	fmt.Println(x, y)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/testcase.json
deleted file mode 100644
index ad5663adf40dc165d0b17d04991cc651d7d57241..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case1/testcase.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-skip-tools", "-gopath"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "v0.8.0",
-    "github.com/sdboyer/deptestdos": "a0196baa11ea047dd65037287451d36b861b00ea"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/final/Gopkg.lock
deleted file mode 100644
index 17205c508d0071a62fdcd50ef06686436242567d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v0.8.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/final/Gopkg.toml
deleted file mode 100644
index 58a9d89411ec142ef1381ff38f1dd8e83d347544..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "0.8.0"
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/initial/foo/bar.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/initial/foo/bar.go
deleted file mode 100644
index c1ed69fc652ffa0081565ba714cb9def6a096e13..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/initial/foo/bar.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package foo
-
-import "github.com/sdboyer/deptest"
-
-func Foo() deptest.Foo {
-	var y deptest.Foo
-
-	return y
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/initial/main.go
deleted file mode 100644
index 83a4dfcd578adb6e668ac34d0cc0bfedb07b2265..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/initial/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/golang/notexist/foo"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	y := foo.FooFunc()
-
-	fmt.Println(x, y)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/testcase.json
deleted file mode 100644
index df64687209b3e304521774dc71773ac677b71970..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case2/testcase.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-skip-tools", "-gopath"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "v0.8.0"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/final/Gopkg.lock
deleted file mode 100644
index 305068f0ba0b606e3064ee1dedf9b0a46aa4ee74..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/final/Gopkg.lock
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  branch = "master"
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "a0196baa11ea047dd65037287451d36b861b00ea"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/final/Gopkg.toml
deleted file mode 100644
index 20aa1ae84fc7612878ac807c2b2d0dbd356e4862..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptest"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/initial/foo/bar.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/initial/foo/bar.go
deleted file mode 100644
index c1ed69fc652ffa0081565ba714cb9def6a096e13..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/initial/foo/bar.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package foo
-
-import "github.com/sdboyer/deptest"
-
-func Foo() deptest.Foo {
-	var y deptest.Foo
-
-	return y
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/initial/main.go
deleted file mode 100644
index 83a4dfcd578adb6e668ac34d0cc0bfedb07b2265..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/initial/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/golang/notexist/foo"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	y := foo.FooFunc()
-
-	fmt.Println(x, y)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/testcase.json
deleted file mode 100644
index 04cfb832e7feb6edc0233743a621adc7bb0a700c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case3/testcase.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-skip-tools", "-gopath"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptestdos": "a0196baa11ea047dd65037287451d36b861b00ea"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/final/Gopkg.lock
deleted file mode 100644
index 560c88313ce829976b5b1e1df13b74012e9a5a82..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/final/Gopkg.toml
deleted file mode 100644
index 2e8f9de160138b6d0ff9d928db66b678e91cf732..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/initial/foo/bar.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/initial/foo/bar.go
deleted file mode 100644
index c1ed69fc652ffa0081565ba714cb9def6a096e13..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/initial/foo/bar.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package foo
-
-import "github.com/sdboyer/deptest"
-
-func Foo() deptest.Foo {
-	var y deptest.Foo
-
-	return y
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/initial/main.go
deleted file mode 100644
index 83a4dfcd578adb6e668ac34d0cc0bfedb07b2265..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/initial/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/golang/notexist/foo"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	y := foo.FooFunc()
-
-	fmt.Println(x, y)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/testcase.json
deleted file mode 100644
index 13cba35aeb80b44368f203f90113bb64bf6e3c03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/case4/testcase.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"]
-  ],
-  "gopath-initial": {
-    "github.com/sdboyer/deptestdos": "a0196baa11ea047dd65037287451d36b861b00ea"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/README.md
deleted file mode 100644
index 899680ac008b19b46fb9e406388479af7ef076c7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Import glide config at project root.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/final/Gopkg.lock
deleted file mode 100644
index e3672a62c3bb3759115519400417b970f542a6b6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,35 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:4f2c2c251356e56fdbe13960044263cdbde63355689e21db07267c4d0de33f3f"
-  name = "github.com/carolynvs/deptest-subpkg"
-  packages = ["subby"]
-  pruneopts = "UT"
-  revision = "6c41d90f78bb1015696a2ad591debfa8971512d5"
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/carolynvs/deptest-subpkg/subby",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/final/Gopkg.toml
deleted file mode 100644
index c33ba25ee0544fee3d7b6a920fd47858fbabdbe0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-ignored = [
-  "github.com/golang/notexist/samples",
-  "github.com/sdboyer/dep-test",
-]
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/glide.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/glide.lock
deleted file mode 100644
index 7a36a4a0391d47af54635a702a893576d02c78f7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/glide.lock
+++ /dev/null
@@ -1,14 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/sdboyer/deptest
-  repo: https://github.com/sdboyer/deptest.git
-  vcs: git
-  version: ff2948a2ac8f538c4ecd55962e919d1e13e74baf
-- name: github.com/sdboyer/deptestdos
-  version: 5c607206be5decd28e6263ffffdcee067266015e
-- name: github.com/carolynvs/deptest-subpkg/subby
-  version: 6c41d90f78bb1015696a2ad591debfa8971512d5
-testImports:
-- name: github.com/golang/lint
-  version: cb00e5669539f047b2f4c53a421a01b0c8e172c6
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/glide.yaml
deleted file mode 100644
index 64b8b6b6206dceea387630019fd662607fbd6228..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/glide.yaml
+++ /dev/null
@@ -1,21 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-ignore:
-- github.com/sdboyer/dep-test
-excludeDirs:
-- samples
-import:
-- package: github.com/sdboyer/deptest # This is a transitive dep and will be ignored
-  repo: https://github.com/sdboyer/deptest.git
-  vcs: git
-  version: v1.0.0
-- package: github.com/sdboyer/deptestdos
-  version: v2.0.0
-- package: github.com/carolynvs/deptest-subpkg/subby
-testImport:
-- package: github.com/golang/lint
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/main.go
deleted file mode 100644
index 5238b24923ead02dc36b12f5f74b2914592b535b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/main.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	_ "github.com/carolynvs/deptest-subpkg/subby"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	fmt.Println(x)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/samples/samples.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/samples/samples.go
deleted file mode 100644
index 3e160f22fe548b921ff943a0fc44d70e964bd77a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/initial/samples/samples.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package samples
-
-import dt "github.com/carolynvs/go-dep-test"
-
-func Sample1() int {
-	var x = dt.Thing
-	return x
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/testcase.json
deleted file mode 100644
index cf0d79080e7f6afd820cca311918af9306337657..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case1/testcase.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-gopath"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f",
-    "github.com/sdboyer/deptestdos": "5c607206be5decd28e6263ffffdcee067266015e"
-  },
-  "vendor-final": [
-    "github.com/carolynvs/deptest-subpkg",
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/README.md
deleted file mode 100644
index f6e3eaf4fadba5b621dffaf402068ff7def31ce2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Ignore glide config at root when -skip-tools is specified.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/final/Gopkg.lock
deleted file mode 100644
index 09b9e1e14b6d80368dd1fc6cc33bbdb6c1ac937b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/final/Gopkg.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptestdos"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/final/Gopkg.toml
deleted file mode 100644
index e3e66aaca944cb50abac0b6e64f37ca2d2a2733e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/initial/glide.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/initial/glide.lock
deleted file mode 100644
index 1d29509927e136618c670b66939458b0c8c53eeb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/initial/glide.lock
+++ /dev/null
@@ -1,12 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/sdboyer/deptest
-  repo: https://github.com/sdboyer/deptest.git
-  vcs: git
-  version: ff2948a2ac8f538c4ecd55962e919d1e13e74baf
-- name: github.com/sdboyer/deptestdos
-  version: 5c607206be5decd28e6263ffffdcee067266015e
-testImports:
-- name: github.com/golang/lint
-  version: cb00e5669539f047b2f4c53a421a01b0c8e172c6
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/initial/glide.yaml
deleted file mode 100644
index ee269a398d02585139cc653ceb54e4d1a78741c1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/initial/glide.yaml
+++ /dev/null
@@ -1,20 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-ignore:
-- github.com/sdboyer/dep-test
-excludeDirs:
-- samples
-import:
-- package: github.com/sdboyer/deptest # This is a transitive dep and will be ignored
-  repo: https://github.com/sdboyer/deptest.git
-  vcs: git
-  version: v1.0.0
-- package: github.com/sdboyer/deptestdos
-  version: v2.0.0
-testImport:
-- package: github.com/golang/lint
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/initial/main.go
deleted file mode 100644
index 2b2c7c396ebd9c59e800f3b820a8b13deb1c1b7f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/initial/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	fmt.Println(x)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/testcase.json
deleted file mode 100644
index 39c7d874e7d54158e35c26769434b476cd27ea99..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case2/testcase.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-skip-tools", "-gopath"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f",
-    "github.com/sdboyer/deptestdos": "5c607206be5decd28e6263ffffdcee067266015e"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/README.md
deleted file mode 100644
index 1eb424fc1571b8649b183598983f85e1f0a67154..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Import glide config in direct dependencies.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/final/Gopkg.lock
deleted file mode 100644
index a7bf0c2ab3318bb90acb67665ebc7df2c73a091b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/final/Gopkg.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:41a463620bcc5eba54d225d6108f58da4be08bc6307ecc9d17c6d1a5c1f2df30"
-  name = "github.com/carolynvs/deptestglide"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "aa7fea6e17ca281c6f210afb93fc3c98ef29a695"
-  version = "v0.1.1"
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/carolynvs/deptestglide"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/final/Gopkg.toml
deleted file mode 100644
index 6f8b80986b7ac29d41037060d6752783cf039bb4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/carolynvs/deptestglide"
-  version = "0.1.1"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/initial/main.go
deleted file mode 100644
index 3e509998f7ca67f9e4136420adc2082dee0e2dee..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/initial/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/carolynvs/deptestglide"
-)
-
-func main() {
-	var x = deptestglide.MyFoo
-	fmt.Println(x)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/testcase.json
deleted file mode 100644
index e3e51560365e2d013fdaaf85ff887ae0ee95b4a1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case3/testcase.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {},
-  "vendor-final": [
-    "github.com/carolynvs/deptestglide",
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/README.md
deleted file mode 100644
index 912e40844f39d2239dc311862359293aada3e884..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Ignore glide config if glide.yaml is malformed and cannot be parsed correctly.
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/final/Gopkg.lock
deleted file mode 100644
index f52bc428f993d1c901e210883c068ecf44744cb1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/final/Gopkg.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptestdos"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/final/Gopkg.toml
deleted file mode 100644
index e3e66aaca944cb50abac0b6e64f37ca2d2a2733e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/initial/glide.yaml
deleted file mode 100644
index a9c8e891fbd578f316abdfe3a0cbaf8baa8c25d1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/initial/glide.yaml
+++ /dev/null
@@ -1,20 +0,0 @@
-'package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-ignore:
-- github.com/sdboyer/dep-test
-excludeDirs:
-- samples
-import:
-- package: github.com/sdboyer/deptest # This is a transitive dep and will be ignored
-  repo: https://github.com/sdboyer/deptest.git
-  vcs: git
-  version: v1.0.0
-- package: github.com/sdboyer/deptestdos
-  version: v2.0.0
-testImport:
-- package: github.com/golang/lint
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/initial/main.go
deleted file mode 100644
index 2b2c7c396ebd9c59e800f3b820a8b13deb1c1b7f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/initial/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	fmt.Println(x)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/testcase.json
deleted file mode 100644
index 85a05ed658532833c0b0ab4723e19bb26d5d12ca..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/case4/testcase.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f",
-    "github.com/sdboyer/deptestdos": "5c607206be5decd28e6263ffffdcee067266015e"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/README.md
deleted file mode 100644
index db7959dc2a271802b85b0d09eac94f9fabf88430..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Import deptestglideA tag v0.3.0 which has a corrupt glide manifest.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/final/Gopkg.lock
deleted file mode 100644
index 45f3b2de0f086eba609e375748c19fbb9662a3c7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/final/Gopkg.lock
+++ /dev/null
@@ -1,33 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:c0ee004f748a2e0a166f94d0aae3e4b34d0cb1aa95672075969feded052cde73"
-  name = "github.com/ChinmayR/deptestglideA"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "cead75b1cde64ae1353ddbf73f6089303d6001b4"
-  version = "v0.3.0"
-
-[[projects]]
-  digest = "1:855fce2344c810402e7e6d34a1e7e21f6b5e161689d0c3c086f920a212e3b074"
-  name = "github.com/ChinmayR/deptestglideB"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "571b81795d767461736e6d0ca69e5f9840bdbf0e"
-  version = "v0.5.0"
-
-[[projects]]
-  digest = "1:2cb412b34b26e26b270605d2c54e94a01b5f018ca060a87543bb3b72e21dca07"
-  name = "github.com/ChinmayR/deptestglideC"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "4d3546304e8a1ceb6bb01e7e6201e852abb8ae4d"
-  version = "v0.1.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/ChinmayR/deptestglideA"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/final/Gopkg.toml
deleted file mode 100644
index 536bed4331d5a612f07e92a5e45dd464a8633fc0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/ChinmayR/deptestglideA"
-  version = "0.3.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/glide.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/glide.lock
deleted file mode 100644
index fe644d404ef5ff4d55ccdeaf052523c7bd077a38..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/glide.lock
+++ /dev/null
@@ -1,5 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/ChinmayR/deptestglideA
-  version: cead75b1cde64ae1353ddbf73f6089303d6001b4
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/glide.yaml
deleted file mode 100644
index 65913ee3a2b14286072a43e75c79749b158d6c9f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/glide.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-import:
-- package: github.com/ChinmayR/deptestglideA
-  version: v0.3.0
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/main.go
deleted file mode 100644
index 750a5f5a23bdd27320471d9221cc769c1c0cd10b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/initial/main.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/ChinmayR/deptestglideA"
-)
-
-type PointToDepTestGlideAv010 deptestglideA.Bversion2
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/testcase.json
deleted file mode 100644
index 2031798dd9660500715e194a5616317f530580b7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/corrupt-glide/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-v"]
-  ],
-  "vendor-final": [
-    "github.com/ChinmayR/deptestglideA",
-    "github.com/ChinmayR/deptestglideB",
-    "github.com/ChinmayR/deptestglideC"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/README.md
deleted file mode 100644
index 3a2ed07d9af8f23f4ec3438ac7376f15246cf2b4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Take a direct dependency on a transient dependency where the versions are conflicted. Resolving should fail.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/glide.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/glide.lock
deleted file mode 100644
index 1d9282151157504e96f192d305fb5f75f623b213..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/glide.lock
+++ /dev/null
@@ -1,7 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/ChinmayR/deptestglideA
-  version: 81d7d7ca66af42280af949bcae1347e228c8d346
-- name: github.com/ChinmayR/deptestglideB
-  version: 143bb0e8f4cc3a3227a2d250f99d08ee879c7909
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/glide.yaml
deleted file mode 100644
index 61ca0531176c1a446292b2fd58ca5b4dda22a5bd..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/glide.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-import:
-- package: github.com/ChinmayR/deptestglideA
-  version: v0.1.0
-- package: github.com/ChinmayR/deptestglideB
-  version: v0.2.0
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/main.go
deleted file mode 100644
index 01ee227b70a88d8f9ccfcce420b732a8ece1dd8e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/ChinmayR/deptestglideA"
-	"github.com/ChinmayR/deptestglideB"
-)
-
-type PointToDepTestGlideAv010 deptestglideA.Bversion1
-type FooVersion2 deptestglideB.FooVersion2
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/testcase.json
deleted file mode 100644
index dd5d9eaf0321f20ce2a2cc381e7d0b2aff9a1137..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-conflict/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-v"]
-  ],
-  "error-expected": "master: Could not introduce github.com/ChinmayR/deptestglideA@master, as it is not allowed by constraint ^0.1.0 from project github.com/golang/notexist."
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/README.md
deleted file mode 100644
index e1fe2976c1301bea79fa36f3974423082555ed33..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Take a direct dependency on a transient dependency where the versions are not conflicted. Resolving should pass.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/final/Gopkg.lock
deleted file mode 100644
index 8b6f276ed7d6ff08c38b4822df1f399e5a3e7f48..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:2bb2f3f169ad31382b7b41969518a99fe8974f4f5a737b6c30501a36f2fd40dc"
-  name = "github.com/ChinmayR/deptestglideA"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "26ab0f16d85723be5ff44e5b4bd2a8e0f3a34989"
-  version = "v0.2.0"
-
-[[projects]]
-  digest = "1:d35fc62a5ecad295b86623f47a2b3d6ce4e81cd9584c04b41d05c9cafea9137e"
-  name = "github.com/ChinmayR/deptestglideB"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "143bb0e8f4cc3a3227a2d250f99d08ee879c7909"
-  version = "v0.2.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/ChinmayR/deptestglideA",
-    "github.com/ChinmayR/deptestglideB",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/final/Gopkg.toml
deleted file mode 100644
index 065ea362f3849cc13d59b30327392b643aef99d6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-[[constraint]]
-  name = "github.com/ChinmayR/deptestglideA"
-  version = "0.2.0"
-
-[[constraint]]
-  name = "github.com/ChinmayR/deptestglideB"
-  version = "0.2.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/glide.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/glide.lock
deleted file mode 100644
index 1636df3fa6c73965736d7e9f612172447056e844..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/glide.lock
+++ /dev/null
@@ -1,5 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/ChinmayR/deptestglideA
-  version: 26ab0f16d85723be5ff44e5b4bd2a8e0f3a34989
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/glide.yaml
deleted file mode 100644
index 46e8e57133bcfa62c681176d2914c01ea7687a13..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/glide.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-import:
-- package: github.com/ChinmayR/deptestglideA
-  version: v0.2.0
-- package: github.com/ChinmayR/deptestglideB
-  version: ~0.1.0
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/main.go
deleted file mode 100644
index 40112a71e28959229006b810e188cfbd4b52518f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/ChinmayR/deptestglideA"
-	"github.com/ChinmayR/deptestglideB"
-)
-
-type PointToDepTestGlideAv010 deptestglideA.Bversion2
-type FooVersion2 deptestglideB.FooVersion2
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/testcase.json
deleted file mode 100644
index c56ab0a1d4b268f5a98fe7dbb13e0dfc8e5b947d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/direct-trans-no-conflict/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-v"]
-  ],
-  "vendor-final": [
-    "github.com/ChinmayR/deptestglideA",
-    "github.com/ChinmayR/deptestglideB"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/README.md
deleted file mode 100644
index bf2e4f1f7192e00c684ed3b0faff01269ddb375d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Have two transient dependencies have different versions of the same repo. Resolving should fail.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/glide.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/glide.lock
deleted file mode 100644
index 9b10f2a79841c9ec8de7ee9303a972e55959c3f7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/glide.lock
+++ /dev/null
@@ -1,7 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/ChinmayR/deptestglideA
-  version: 703f28fdee407d70dcc4cb774a0fbb82fa70daa9
-- name: github.com/ChinmayR/deptestglideB
-  version: 7f8abdec9e29a008d40cfcbb0848b82cc4000d25
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/glide.yaml
deleted file mode 100644
index bb2d3711d584fd8d6fb1359693c7d7b1f16de8fb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/glide.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-import:
-- package: github.com/ChinmayR/deptestglideA
-  version: v0.4.0
-- package: github.com/ChinmayR/deptestglideB
-  version: v0.3.0
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/main.go
deleted file mode 100644
index b5edee16bf3f6f8e1c1f05a595762643778d25d4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/ChinmayR/deptestglideA"
-	"github.com/ChinmayR/deptestglideB"
-)
-
-type PointToDepTestGlideCv010 deptestglideA.Cversion1
-type PointToDepTestGlideCv020 deptestglideB.Cversion2
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/testcase.json.ignore b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/testcase.json.ignore
deleted file mode 100644
index e90b380160ea7fb73ff2c6ed6bfc9f07f2d8141c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-conflict/testcase.json.ignore
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-v"]
-  ],
-  "error-expected": "No versions of github.com/ChinmayR/deptestglideB met constraints"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/README.md
deleted file mode 100644
index 5e45b7529dc7d41eb12733092e7636fba39cbb96..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Test if a transitive glide manifest is read.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/final/Gopkg.lock
deleted file mode 100644
index 2021608a971733ec5b1c74d53f6fa050ab5bee1f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/final/Gopkg.lock
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/ChinmayR/deptestglideA"
-  packages = ["."]
-  revision = "120a353fc5706d8b5c0cca93b01606ed37a2247a"
-  version = "v0.6.0"
-
-[[projects]]
-  name = "github.com/ChinmayR/deptestglideB"
-  packages = ["."]
-  revision = "571b81795d767461736e6d0ca69e5f9840bdbf0e"
-  version = "v0.5.0"
-
-[[projects]]
-  name = "github.com/ChinmayR/deptestglideC"
-  packages = ["."]
-  revision = "4d3546304e8a1ceb6bb01e7e6201e852abb8ae4d"
-  version = "v0.1.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "d53f4d52c7fbb52058a9c21ee1e3c94dae43f1af5366ab8ded5b14880c44b94b"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/final/Gopkg.toml
deleted file mode 100644
index 27e9929438ca0b388d0be516bd663dd393c0655d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/final/Gopkg.toml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-[[constraint]]
-  name = "github.com/ChinmayR/deptestglideA"
-  version = "0.6.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/glide.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/glide.lock
deleted file mode 100644
index 98eb814a75b94b004674db8cdebeda30ffd4e3d4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/glide.lock
+++ /dev/null
@@ -1,5 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/ChinmayR/deptestglideA
-  version: 120a353fc5706d8b5c0cca93b01606ed37a2247a
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/glide.yaml
deleted file mode 100644
index 22cf4f2c1748e1c2c9032bac86e4ecd5a0d81897..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/glide.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-import:
-- package: github.com/ChinmayR/deptestglideA
-  version: v0.6.0
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/main.go
deleted file mode 100644
index b137911b15c3c03f4185fa9a574961d6a2a0cfa9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/initial/main.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/ChinmayR/deptestglideA"
-)
-
-type PointToDepTestGlideAv010 deptestglideA.PointToDepTestGlideBv050
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/testcase.json
deleted file mode 100644
index e2af101245d27e1e1a2bc4bb9bf2db060f3ba5b7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-trans/testcase.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-v"]
-  ],
-  "vendor-final": [
-    "github.com/ChinmayR/deptestglideA",
-    "github.com/ChinmayR/deptestglideB",
-    "github.com/ChinmayR/deptestglideC"
-  ],
-  "feature": "ImportDuringSolve"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/README.md
deleted file mode 100644
index eea3ceeb03819f7de187241c76bd20bd0ecdda65..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-Have two direct dependencies where one specifies a direct transient version,
-and the other can take any transient but overlapping version. Resolving should pass.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/final/Gopkg.lock
deleted file mode 100644
index e68fa1ef52c34a22fa0c98032d4e02436917b0e3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/final/Gopkg.lock
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:f3ebbb24c30241998a9b891d83113b4edd70b7d710fac33a4a20cb7b135f2677"
-  name = "github.com/ChinmayR/deptestglideA"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "703f28fdee407d70dcc4cb774a0fbb82fa70daa9"
-  version = "v0.4.0"
-
-[[projects]]
-  digest = "1:1c78f2479f39bf0b209d0ec082acfb2816ad3c79813ac49a57ce8997a6039b29"
-  name = "github.com/ChinmayR/deptestglideB"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "55b6737d9d84461196123a51baa02b156abc4543"
-  version = "v0.4.0"
-
-[[projects]]
-  digest = "1:2cb412b34b26e26b270605d2c54e94a01b5f018ca060a87543bb3b72e21dca07"
-  name = "github.com/ChinmayR/deptestglideC"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "4d3546304e8a1ceb6bb01e7e6201e852abb8ae4d"
-  version = "v0.1.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/ChinmayR/deptestglideA",
-    "github.com/ChinmayR/deptestglideB",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/final/Gopkg.toml
deleted file mode 100644
index 9f78798c9926703aecbec697195e5f7c548fc408..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-[[constraint]]
-  name = "github.com/ChinmayR/deptestglideA"
-  version = "0.4.0"
-
-[[constraint]]
-  name = "github.com/ChinmayR/deptestglideB"
-  version = "0.4.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/glide.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/glide.lock
deleted file mode 100644
index d85dd78318904fe6a73b3d02a2b111f3fdfe3a6a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/glide.lock
+++ /dev/null
@@ -1,7 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/ChinmayR/deptestglideA
-  version: 703f28fdee407d70dcc4cb774a0fbb82fa70daa9
-- name: github.com/ChinmayR/deptestglideB
-  version: 55b6737d9d84461196123a51baa02b156abc4543
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/glide.yaml
deleted file mode 100644
index 3b423f92b5db4b533a755865815e89f7bfbcb7e6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/glide.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-import:
-- package: github.com/ChinmayR/deptestglideA
-  version: v0.4.0
-- package: github.com/ChinmayR/deptestglideB
-  version: v0.4.0
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/main.go
deleted file mode 100644
index 562747c7fc0647760fa6e84c5244524775dd41db..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/ChinmayR/deptestglideA"
-	"github.com/ChinmayR/deptestglideB"
-)
-
-type PointToDepTestGlideCv010 deptestglideA.Cversion1
-type PointToDepTestGlideCv020 deptestglideB.CversionAny
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/testcase.json
deleted file mode 100644
index 2031798dd9660500715e194a5616317f530580b7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans-unspecified/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-v"]
-  ],
-  "vendor-final": [
-    "github.com/ChinmayR/deptestglideA",
-    "github.com/ChinmayR/deptestglideB",
-    "github.com/ChinmayR/deptestglideC"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/README.md
deleted file mode 100644
index ab0d0a15a19c0ea346799a2bf5756e60a2e29e82..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-Have two direct dependencies where one specifies a direct transient version,
-and the other specified a greater than version. Both versions overlap so resolving should pass.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/final/Gopkg.lock
deleted file mode 100644
index 51c3d3b187050f3653a04d9ee34253a412e3d0dd..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/final/Gopkg.lock
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:698cd4951cb265ae57d473cc883630bd2d5cc9a472fe513acd54886751cb0457"
-  name = "github.com/ChinmayR/deptestglideA"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "2f77d68963bb3dff94b88330d930cb59714cd2fc"
-  version = "v0.5.0"
-
-[[projects]]
-  digest = "1:0ed6d2f0ec01022dbca6d19f6a89a4200a9430c51f07309446c3751591fc3c39"
-  name = "github.com/ChinmayR/deptestglideB"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "7f8abdec9e29a008d40cfcbb0848b82cc4000d25"
-  version = "v0.3.0"
-
-[[projects]]
-  digest = "1:4f14135d41f9b3692c6ac4e9defe4ea020ddeb41a169ba26fd1abdd193e097cd"
-  name = "github.com/ChinmayR/deptestglideC"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "73ba3c1897d21e64bec0b89a026a1acb6604e846"
-  version = "v0.2.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/ChinmayR/deptestglideA",
-    "github.com/ChinmayR/deptestglideB",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/final/Gopkg.toml
deleted file mode 100644
index b244b1602db25f49a1a35221b0467ea4d216d871..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-[[constraint]]
-  name = "github.com/ChinmayR/deptestglideA"
-  version = "0.5.0"
-
-[[constraint]]
-  name = "github.com/ChinmayR/deptestglideB"
-  version = "0.3.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/glide.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/glide.lock
deleted file mode 100644
index 23436f60e348ba5621473345f58b3c14b4a98de2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/glide.lock
+++ /dev/null
@@ -1,7 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/ChinmayR/deptestglideA
-  version: 2f77d68963bb3dff94b88330d930cb59714cd2fc
-- name: github.com/ChinmayR/deptestglideB
-  version: 7f8abdec9e29a008d40cfcbb0848b82cc4000d25
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/glide.yaml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/glide.yaml
deleted file mode 100644
index 6b0dd70db33e544ae6f698a230bb4cd88052b707..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/glide.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-import:
-- package: github.com/ChinmayR/deptestglideA
-  version: v0.5.0
-- package: github.com/ChinmayR/deptestglideB
-  version: v0.3.0
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/main.go
deleted file mode 100644
index 01b3023c3d6f8bb4954b7e13bb3a18ddcbe01955..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/initial/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/ChinmayR/deptestglideA"
-	"github.com/ChinmayR/deptestglideB"
-)
-
-type PointToDepTestGlideCv010 deptestglideA.CversionAny
-type PointToDepTestGlideCv020 deptestglideB.Cversion2
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/testcase.json
deleted file mode 100644
index 2031798dd9660500715e194a5616317f530580b7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glide/trans-trans/testcase.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-v"]
-  ],
-  "vendor-final": [
-    "github.com/ChinmayR/deptestglideA",
-    "github.com/ChinmayR/deptestglideB",
-    "github.com/ChinmayR/deptestglideC"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/final/Gopkg.lock
deleted file mode 100644
index 09b9e1e14b6d80368dd1fc6cc33bbdb6c1ac937b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptestdos"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/final/Gopkg.toml
deleted file mode 100644
index e3e66aaca944cb50abac0b6e64f37ca2d2a2733e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/initial/GLOCKFILE b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/initial/GLOCKFILE
deleted file mode 100644
index 27f499a4270a7b5c336a74766b23739729d424fd..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/initial/GLOCKFILE
+++ /dev/null
@@ -1,3 +0,0 @@
-cmd github.com/golang/lint
-github.com/sdboyer/deptest 3f4c3bea144e112a69bbe5d8d01c1b09a544253f
-github.com/sdboyer/deptestdos 5c607206be5decd28e6263ffffdcee067266015e
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/initial/main.go
deleted file mode 100644
index 2b2c7c396ebd9c59e800f3b820a8b13deb1c1b7f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/initial/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	fmt.Println(x)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/testcase.json
deleted file mode 100644
index 017dc4cd552dfc983e0ff5d6cb7d09c0b2046563..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/glock/case1/testcase.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/final/Gopkg.lock
deleted file mode 100644
index 09b9e1e14b6d80368dd1fc6cc33bbdb6c1ac937b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptestdos"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/final/Gopkg.toml
deleted file mode 100644
index e3e66aaca944cb50abac0b6e64f37ca2d2a2733e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/initial/Godeps/Godeps.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/initial/Godeps/Godeps.json
deleted file mode 100644
index ee87370e5de3e77f88d11ad2971240eb27f046bc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/initial/Godeps/Godeps.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
-  "ImportPath": "github.com/golang/notexist",
-  "GoVersion": "go1.8",
-  "GodepVersion": "vXYZ",
-  "Deps": [
-    {
-      "ImportPath": "github.com/sdboyer/deptest",
-      "Comment": "master",
-      "Rev": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-    },
-    {
-      "ImportPath": "github.com/sdboyer/deptestdos",
-      "Comment": "v2.0.0",
-      "Rev": "5c607206be5decd28e6263ffffdcee067266015e"
-    }
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/initial/main.go
deleted file mode 100644
index 2b2c7c396ebd9c59e800f3b820a8b13deb1c1b7f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/initial/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	fmt.Println(x)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/testcase.json
deleted file mode 100644
index 017dc4cd552dfc983e0ff5d6cb7d09c0b2046563..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/godep/case1/testcase.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/final/Gopkg.lock
deleted file mode 100644
index 09b9e1e14b6d80368dd1fc6cc33bbdb6c1ac937b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptestdos"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/final/Gopkg.toml
deleted file mode 100644
index e3e66aaca944cb50abac0b6e64f37ca2d2a2733e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/initial/main.go
deleted file mode 100644
index 2b2c7c396ebd9c59e800f3b820a8b13deb1c1b7f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/initial/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	fmt.Println(x)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/initial/vendor.yml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/initial/vendor.yml
deleted file mode 100644
index c5c933f61f53f9d1b8d194753796cd21efe33481..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/initial/vendor.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-vendors:
-- path: github.com/sdboyer/deptest
-  rev: 3f4c3bea144e112a69bbe5d8d01c1b09a544253f
-- path: github.com/sdboyer/deptestdos
-  rev: 5c607206be5decd28e6263ffffdcee067266015e
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/testcase.json
deleted file mode 100644
index 017dc4cd552dfc983e0ff5d6cb7d09c0b2046563..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govend/case1/testcase.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/README.md b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/README.md
deleted file mode 100644
index 640eb06938056056e8f54a637417355d854bb893..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Import govendor config in vendor dir.
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/final/Gopkg.lock
deleted file mode 100644
index 09b9e1e14b6d80368dd1fc6cc33bbdb6c1ac937b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptestdos"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/final/Gopkg.toml
deleted file mode 100644
index 79adbfea15b110bcc92505d0410b5fd7efb0b4f8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,12 +0,0 @@
-ignored = [
-  "github.com/golang/notexist/samples*",
-  "github.com/sdboyer/dep-test*",
-]
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/initial/main.go
deleted file mode 100644
index 2b2c7c396ebd9c59e800f3b820a8b13deb1c1b7f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/initial/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	fmt.Println(x)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/initial/samples/samples.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/initial/samples/samples.go
deleted file mode 100644
index 3e160f22fe548b921ff943a0fc44d70e964bd77a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/initial/samples/samples.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package samples
-
-import dt "github.com/carolynvs/go-dep-test"
-
-func Sample1() int {
-	var x = dt.Thing
-	return x
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/testcase.json
deleted file mode 100644
index e119765489468e85aad1268c803c1b9451e7f230..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/govendor/case1/testcase.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-gopath"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f",
-    "github.com/sdboyer/deptestdos": "5c607206be5decd28e6263ffffdcee067266015e"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/final/Gopkg.lock
deleted file mode 100644
index 33283e03397af17b4e39bf1db5ef2a2580b7ae34..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,38 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  source = "https://github.com/carolynvs/deptest"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[[projects]]
-  branch = "v2"
-  digest = "1:10978cfda94a2069ac38ed0884b606aafe89f4578ff700b7845b02201a2d6b51"
-  name = "gopkg.in/yaml.v2"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "f7716cbe52baa25d2e9b0d0da546fcf909fc16b4"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-    "gopkg.in/yaml.v2",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/final/Gopkg.toml
deleted file mode 100644
index de6c9bd2dfd32f018fdfc439402a9ef7f604210a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  source = "https://github.com/carolynvs/deptest"
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[[constraint]]
-  branch = "v2"
-  name = "gopkg.in/yaml.v2"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/initial/main.go
deleted file mode 100644
index 6d893af2fff0cbfd32c2ed5237a3e3ddc0a63fb6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/initial/main.go
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-	"gopkg.in/yaml.v2"
-)
-
-func main() {
-	var a deptestdos.Bar
-	var b yaml.MapItem
-	var c deptest.Foo
-	fmt.Println(a, b, c)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/testcase.json
deleted file mode 100644
index 017dc4cd552dfc983e0ff5d6cb7d09c0b2046563..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/gvt/case1/testcase.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/manifest-exists/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/manifest-exists/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/manifest-exists/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/manifest-exists/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/manifest-exists/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/manifest-exists/testcase.json
deleted file mode 100644
index 29996118ef91dcdded742f261b207ed3da86bfcb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/manifest-exists/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["init"]
-  ],
-  "error-expected": "init aborted: manifest already exists",
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/final/project_dir/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/final/project_dir/Gopkg.lock
deleted file mode 100644
index f9f6c4c7f84665b2c91839fed0350b85ce285c5b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/final/project_dir/Gopkg.lock
+++ /dev/null
@@ -1,14 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-memo = "af9a783a5430dabcaaf44683c09e2b729e1c0d61f13bfdf6677c4fd0b41387ca"
-
-[[projects]]
-  branch = "master"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  revision = "a0196baa11ea047dd65037287451d36b861b00ea"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/final/project_dir/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/final/project_dir/Gopkg.toml
deleted file mode 100644
index 20aa1ae84fc7612878ac807c2b2d0dbd356e4862..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/final/project_dir/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  branch = "master"
-  name = "github.com/sdboyer/deptest"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/initial/project_dir/foo/bar.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/initial/project_dir/foo/bar.go
deleted file mode 100644
index c1ed69fc652ffa0081565ba714cb9def6a096e13..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/initial/project_dir/foo/bar.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package foo
-
-import "github.com/sdboyer/deptest"
-
-func Foo() deptest.Foo {
-	var y deptest.Foo
-
-	return y
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/initial/project_dir/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/initial/project_dir/main.go
deleted file mode 100644
index 150e0bd3df140dd546ea6f75ba272eca5be40193..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/initial/project_dir/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	y := foo.FooFunc()
-
-	fmt.Println(x, y)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/testcase.json
deleted file mode 100644
index 6fa477b508be1a3b8648a01777509889782656ba..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/relative_path/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["init", "-skip-tools", "project_dir"]
-  ],
-  "error-expected": "",
-  "init-path": "project_dir"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/final/Gopkg.lock
deleted file mode 100644
index 49180c231e6538c25e0e7dda342f2b6a322516f4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/final/Gopkg.lock
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptest"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/final/Gopkg.toml
deleted file mode 100644
index 51a3481d946936f5273b7121a0f388036f537001..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "1.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/.foo/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/.foo/main.go
deleted file mode 100644
index 83a4dfcd578adb6e668ac34d0cc0bfedb07b2265..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/.foo/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/golang/notexist/foo"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	y := foo.FooFunc()
-
-	fmt.Println(x, y)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/_foo/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/_foo/main.go
deleted file mode 100644
index 83a4dfcd578adb6e668ac34d0cc0bfedb07b2265..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/_foo/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/golang/notexist/foo"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	y := foo.FooFunc()
-
-	fmt.Println(x, y)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/lib.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/lib.go
deleted file mode 100644
index c1ed69fc652ffa0081565ba714cb9def6a096e13..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/lib.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package foo
-
-import "github.com/sdboyer/deptest"
-
-func Foo() deptest.Foo {
-	var y deptest.Foo
-
-	return y
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/testdata/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/testdata/main.go
deleted file mode 100644
index 83a4dfcd578adb6e668ac34d0cc0bfedb07b2265..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/initial/testdata/main.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/golang/notexist/foo"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	y := foo.FooFunc()
-
-	fmt.Println(x, y)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/testcase.json
deleted file mode 100644
index 0283a8839fbfa4a47c1ebd3dfb311981bb90a609..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/skip-hidden/testcase.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples", "-skip-tools"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/usage/with_h_flag/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/usage/with_h_flag/testcase.json
deleted file mode 100644
index b954a4827a782b2298e996a5d157e9f45c1e2aa6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/usage/with_h_flag/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["init", "-h"]
-  ],
-  "error-expected": "Usage: dep init [root]"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/usage/with_not_defined_flag/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/usage/with_not_defined_flag/testcase.json
deleted file mode 100644
index 3d3591e971bf0f33b6ca82842b55c4df5024a9ac..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/usage/with_not_defined_flag/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["init", "-not-defined-flag"]
-  ],
-  "error-expected": "flag provided but not defined: -not-defined-flag\nUsage: dep init [root]"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/final/Gopkg.lock
deleted file mode 100644
index 09b9e1e14b6d80368dd1fc6cc33bbdb6c1ac937b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/final/Gopkg.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = "UT"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptestdos"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/final/Gopkg.toml
deleted file mode 100644
index e3e66aaca944cb50abac0b6e64f37ca2d2a2733e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/final/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "2.0.0"
-
-[prune]
-  go-tests = true
-  unused-packages = true
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/initial/main.go
deleted file mode 100644
index 2b2c7c396ebd9c59e800f3b820a8b13deb1c1b7f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/initial/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"fmt"
-
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	var x deptestdos.Bar
-	fmt.Println(x)
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/initial/vendor.conf b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/initial/vendor.conf
deleted file mode 100644
index d91f18b3e2717341552a75250906c9404f854a7b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/initial/vendor.conf
+++ /dev/null
@@ -1,3 +0,0 @@
-# Comment on its own line
-github.com/sdboyer/deptest 3f4c3bea144e112a69bbe5d8d01c1b09a544253f https://github.com/sdboyer/deptest.git
-github.com/sdboyer/deptestdos v2.0.0
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/testcase.json
deleted file mode 100644
index 017dc4cd552dfc983e0ff5d6cb7d09c0b2046563..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/init/vndr/case1/testcase.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-  "commands": [
-    ["init", "-no-examples"]
-  ],
-  "error-expected": "",
-  "gopath-initial": {
-    "github.com/sdboyer/deptest": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  },
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/final/Gopkg.lock
deleted file mode 100644
index 93d9af1ee6ac2fa075882ae27cadaea0c7996cf8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v0.8.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/final/Gopkg.toml
deleted file mode 100644
index 94deb714a45bf7953c31965db02ed201a7bb5a97..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "^0.8.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/initial/Gopkg.lock
deleted file mode 100644
index 04268862a1db2935413ab418be3bec9f8d8d81e9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/initial/Gopkg.lock
+++ /dev/null
@@ -1,13 +0,0 @@
-memo = "9a5243dd3fa20feeaa20398e7283d6c566532e2af1aae279a010df34793761c5"
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  version = "v0.8.0"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  packages = ["."]
-            
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  packages = ["."]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/initial/Gopkg.toml
deleted file mode 100644
index 94deb714a45bf7953c31965db02ed201a7bb5a97..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "^0.8.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/initial/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/initial/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/stdout.txt
deleted file mode 100644
index 2dbc7914daa64f8e79ea0399d3519514166cae7b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/stdout.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-digraph {
-	node [shape=box];
-	388407825 [label="github.com/golang/notexist"];
-	2304687900 [label="github.com/sdboyer/deptest\nv0.8.0"];
-	2659405890 [label="github.com/sdboyer/deptestdos\nv2.0.0"];
-	388407825 -> 2304687900;
-	388407825 -> 2659405890;
-	2659405890 -> 2304687900;
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/testcase.json
deleted file mode 100644
index 9634c3981a1ff43e814011f9021c1e7a8a93f966..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/dot/testcase.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "commands": [
-    ["ensure"],
-    ["status", "-dot"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/final/Gopkg.lock
deleted file mode 100644
index 93d9af1ee6ac2fa075882ae27cadaea0c7996cf8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v0.8.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/final/Gopkg.toml
deleted file mode 100644
index 94deb714a45bf7953c31965db02ed201a7bb5a97..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "^0.8.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/initial/Gopkg.lock
deleted file mode 100644
index 04268862a1db2935413ab418be3bec9f8d8d81e9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/initial/Gopkg.lock
+++ /dev/null
@@ -1,13 +0,0 @@
-memo = "9a5243dd3fa20feeaa20398e7283d6c566532e2af1aae279a010df34793761c5"
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  version = "v0.8.0"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  packages = ["."]
-            
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  packages = ["."]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/initial/Gopkg.toml
deleted file mode 100644
index 94deb714a45bf7953c31965db02ed201a7bb5a97..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "^0.8.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/initial/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/initial/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/stdout.txt
deleted file mode 100644
index 3b907c18a1b5ab3e2e0b69b409e1d7d8867283d3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/stdout.txt
+++ /dev/null
@@ -1 +0,0 @@
-[{"ProjectRoot":"github.com/sdboyer/deptest","Constraint":"^0.8.0","Version":"v0.8.0","Revision":"ff2948a2ac8f538c4ecd55962e919d1e13e74baf","Latest":"v0.8.1","PackageCount":1},{"ProjectRoot":"github.com/sdboyer/deptestdos","Constraint":"v2.0.0","Version":"v2.0.0","Revision":"5c607206be5decd28e6263ffffdcee067266015e","Latest":"v2.0.0","PackageCount":1}]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/testcase.json
deleted file mode 100644
index 9e1a0643b7a154f2de65673c891f2f61f874ae1a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/json/testcase.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "commands": [
-    ["ensure"],
-    ["status", "-json"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/final/Gopkg.lock
deleted file mode 100644
index 93d9af1ee6ac2fa075882ae27cadaea0c7996cf8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v0.8.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/final/Gopkg.toml
deleted file mode 100644
index 94deb714a45bf7953c31965db02ed201a7bb5a97..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "^0.8.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/initial/Gopkg.lock
deleted file mode 100644
index 04268862a1db2935413ab418be3bec9f8d8d81e9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/initial/Gopkg.lock
+++ /dev/null
@@ -1,13 +0,0 @@
-memo = "9a5243dd3fa20feeaa20398e7283d6c566532e2af1aae279a010df34793761c5"
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  version = "v0.8.0"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  packages = ["."]
-            
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  packages = ["."]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/initial/Gopkg.toml
deleted file mode 100644
index 94deb714a45bf7953c31965db02ed201a7bb5a97..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "^0.8.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/initial/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/initial/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/stdout.txt
deleted file mode 100644
index 46de9f00bd91b64e691ba1e732ee22e28a2135fc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/stdout.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-PROJECT                        CONSTRAINT  VERSION  REVISION  LATEST  PKGS USED
-github.com/sdboyer/deptest     ^0.8.0      v0.8.0   ff2948a   v0.8.1  1  
-github.com/sdboyer/deptestdos  v2.0.0      v2.0.0   5c60720   v2.0.0  1  
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/testcase.json
deleted file mode 100644
index e1f1eadeebdcc0a980b93e2fb15354c6b6feb18d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/table/testcase.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "commands": [
-    ["ensure"],
-    ["status"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/final/Gopkg.lock
deleted file mode 100644
index 93d9af1ee6ac2fa075882ae27cadaea0c7996cf8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/final/Gopkg.lock
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v0.8.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/final/Gopkg.toml
deleted file mode 100644
index 94deb714a45bf7953c31965db02ed201a7bb5a97..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "^0.8.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/initial/Gopkg.lock
deleted file mode 100644
index 04268862a1db2935413ab418be3bec9f8d8d81e9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/initial/Gopkg.lock
+++ /dev/null
@@ -1,13 +0,0 @@
-memo = "9a5243dd3fa20feeaa20398e7283d6c566532e2af1aae279a010df34793761c5"
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  version = "v0.8.0"
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  packages = ["."]
-            
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  packages = ["."]
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/initial/Gopkg.toml
deleted file mode 100644
index 94deb714a45bf7953c31965db02ed201a7bb5a97..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "^0.8.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/initial/main.go
deleted file mode 100644
index 2eae5b511d35d452ca7bceec51df41d4d769fe03..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/initial/main.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/sdboyer/deptest"
-	"github.com/sdboyer/deptestdos"
-)
-
-func main() {
-	err := nil
-	if err != nil {
-		deptest.Map["yo yo!"]
-	}
-	deptestdos.diMeLo("whatev")
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/stdout.txt
deleted file mode 100644
index c27320c8b6386ad2023c91c5e49a89777334e6a4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/stdout.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-PROJECT: github.com/sdboyer/deptest, VERSION: v0.8.0
-PROJECT: github.com/sdboyer/deptestdos, VERSION: v2.0.0
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/testcase.json
deleted file mode 100644
index c208fbf6fd2c5a24fad9a5d42737a6a52356368b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/case1/template/testcase.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "commands": [
-    ["ensure"],
-    ["status", "-f=PROJECT: {{.ProjectRoot}}, VERSION: {{.Version}}\n"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/final/Gopkg.lock
deleted file mode 100644
index bef2d0092eb5e822ef996e91009ac977094a9fe8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/final/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "ab4fef131ee828e96ba67d31a7d690bd5f2f42040c6766b1b12fe856f87e0ff7"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/initial/Gopkg.lock
deleted file mode 100644
index bef2d0092eb5e822ef996e91009ac977094a9fe8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/initial/Gopkg.lock
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "ab4fef131ee828e96ba67d31a7d690bd5f2f42040c6766b1b12fe856f87e0ff7"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/initial/main.go
deleted file mode 100644
index 6fa045484402b698f121b3bd2e2345515341c606..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptestdos"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/testcase.json
deleted file mode 100644
index a1c3cb6dd50b251dc8747bef290d94a8cec9b0c9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/missing_pkgs_lock_mismatch/testcase.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "commands": [
-    ["status"]
-  ],
-  "error-expected": "is out of sync with imports",
-  "vendor-final": []
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/final/Gopkg.lock
deleted file mode 100644
index e1c75fd63ba1f8c6108f12784a9385ff65837d76..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/final/Gopkg.lock
+++ /dev/null
@@ -1,37 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:9f15720b74cca39adad1ea61f19e1aee73ed1a83cc3922521101fc758fa75715"
-  name = "github.com/carolynvs/go-dep-test"
-  packages = ["."]
-  pruneopts = ""
-  revision = "b9c5511fa463628e6251554db29a4be161d02aed"
-  version = "0.1.0"
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = [
-    "github.com/carolynvs/go-dep-test",
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos",
-  ]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/final/Gopkg.toml
deleted file mode 100644
index eeb589024a3a1764da6aa8483bb48e21a6cf6211..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/final/Gopkg.toml
+++ /dev/null
@@ -1,11 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "v1.0.0"
-
-[[constraint]]
-  name = "github.com/carolynvs/go-dep-test"
-  version = "v0.1.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/initial/Gopkg.lock
deleted file mode 100644
index 7f844d35d640c2593834f626db6ce3f826005df3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/initial/Gopkg.lock
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/carolynvs/go-dep-test"
-  packages = ["."]
-  revision = "b9c5511fa463628e6251554db29a4be161d02aed"
-  version = "0.1.0"
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "c89811fc98c9a1310c94dc63b84f364d13c46ea3a40bd2cba7d77377ab346543"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/initial/Gopkg.toml
deleted file mode 100644
index eeb589024a3a1764da6aa8483bb48e21a6cf6211..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/initial/Gopkg.toml
+++ /dev/null
@@ -1,11 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  version = "v2.0.0"
-
-[[constraint]]
-  name = "github.com/sdboyer/deptest"
-  version = "v1.0.0"
-
-[[constraint]]
-  name = "github.com/carolynvs/go-dep-test"
-  version = "v0.1.0"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/initial/main.go
deleted file mode 100644
index ec059eadb6012d2ca8c8e83897246542e71631af..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/initial/main.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/carolynvs/go-dep-test"
-	_ "github.com/sdboyer/deptest"
-	_ "github.com/sdboyer/deptestdos"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/stdout.txt
deleted file mode 100644
index ec1c1a398e6ef666451d21e358fa1d4274249be5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/stdout.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-PROJECT                           CONSTRAINT  REVISION  LATEST
-github.com/carolynvs/go-dep-test  ^0.1.0      b9c5511   4069198  
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/testcase.json
deleted file mode 100644
index a136acd187d15d20bc00a1f862958927166fadb2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/old_constraints/testcase.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
-  "commands": [
-    ["ensure"],
-    ["status", "-old"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/carolynvs/go-dep-test",
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/final/Gopkg.lock
deleted file mode 100644
index 304b102928fdaadda9e724593af394358fb6eb55..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/final/Gopkg.lock
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:6a4b7ea94689d9d4f231605ecc0248fbcbf16419d8571adb59c00396e37bbfc2"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptestdos"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/final/Gopkg.toml
deleted file mode 100644
index a61222545716ff834adb3efce719560621795967..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[override]]
-  name = "github.com/sdboyer/deptest"
-  version = "=0.8.1"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/initial/Gopkg.lock
deleted file mode 100644
index f987a5791555e6e30fe63b611136a7cf044c7f7d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/initial/Gopkg.lock
+++ /dev/null
@@ -1,21 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-  version = "v0.8.1"
-
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  revision = "5c607206be5decd28e6263ffffdcee067266015e"
-  version = "v2.0.0"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "1c4444f47ab5d5c484634d1a0c95d99beb879a37337bc0d7aecbd97cf79b6cb1"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/initial/Gopkg.toml
deleted file mode 100644
index a61222545716ff834adb3efce719560621795967..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[override]]
-  name = "github.com/sdboyer/deptest"
-  version = "=0.8.1"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/initial/main.go
deleted file mode 100644
index 6ebfee784088fd5dd9fdf224b3f1b7a4579ebdb0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptestdos"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/stdout.txt
deleted file mode 100644
index ba05bfcf048bc2b699752b00a44b4ad6e26f6f40..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/stdout.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-PROJECT                        CONSTRAINT         VERSION  REVISION  LATEST  PKGS USED
-github.com/sdboyer/deptest     v0.8.1 (override)  v0.8.1   3f4c3be   v0.8.1  1  
-github.com/sdboyer/deptestdos  v2.0.0             v2.0.0   5c60720   v2.0.0  1  
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/testcase.json
deleted file mode 100644
index e1f1eadeebdcc0a980b93e2fb15354c6b6feb18d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/override_constraint/testcase.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "commands": [
-    ["ensure"],
-    ["status"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/final/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/final/Gopkg.lock
deleted file mode 100644
index 4e58519b10ef552d5f2c9d8aae79b027edf04058..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/final/Gopkg.lock
+++ /dev/null
@@ -1,24 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:ddbbbe7f7a81c86d54e89fa388b532f4c144d666a14e8e483ba04fa58265b135"
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  pruneopts = ""
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  digest = "1:d71dc37a7f6ffbbe0c768f28d904acade8f068cbd96c6e6f0885425d3c3b8df9"
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  pruneopts = ""
-  revision = "a0196baa11ea047dd65037287451d36b861b00ea"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  input-imports = ["github.com/sdboyer/deptestdos"]
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/final/Gopkg.toml
deleted file mode 100644
index 1dbd51fcc9d5a750e3709e0b21d9e71ed5edf626..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/final/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  revision = "a0196baa11ea047dd65037287451d36b861b00ea"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/initial/Gopkg.lock b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/initial/Gopkg.lock
deleted file mode 100644
index 204b9908619eb22e5a9e19ff85680e235a160eaf..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/initial/Gopkg.lock
+++ /dev/null
@@ -1,20 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  name = "github.com/sdboyer/deptestdos"
-  packages = ["."]
-  revision = "a0196baa11ea047dd65037287451d36b861b00ea"
-
-[solve-meta]
-  analyzer-name = "dep"
-  analyzer-version = 1
-  inputs-digest = "a64abd431f23d6fbc8d83aef311d33ab12b3a6c74a46c271e89c2542c98bbb9a"
-  solver-name = "gps-cdcl"
-  solver-version = 1
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/initial/Gopkg.toml
deleted file mode 100644
index 1dbd51fcc9d5a750e3709e0b21d9e71ed5edf626..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/initial/Gopkg.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[constraint]]
-  name = "github.com/sdboyer/deptestdos"
-  revision = "a0196baa11ea047dd65037287451d36b861b00ea"
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/initial/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/initial/main.go
deleted file mode 100644
index 6ebfee784088fd5dd9fdf224b3f1b7a4579ebdb0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/initial/main.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/sdboyer/deptestdos"
-)
-
-func main() {
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/stdout.txt b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/stdout.txt
deleted file mode 100644
index 12f30604b64040907c2e087c96f9e02fe96e3dc0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/stdout.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-PROJECT                        CONSTRAINT  VERSION  REVISION  LATEST  PKGS USED
-github.com/sdboyer/deptest     v1.0.0      v1.0.0   ff2948a   v1.0.0  1  
-github.com/sdboyer/deptestdos  a0196ba              a0196ba           1  
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/testcase.json
deleted file mode 100644
index e1f1eadeebdcc0a980b93e2fb15354c6b6feb18d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/revision_constraint/testcase.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
-  "commands": [
-    ["ensure"],
-    ["status"]
-  ],
-  "error-expected": "",
-  "vendor-final": [
-    "github.com/sdboyer/deptest",
-    "github.com/sdboyer/deptestdos"
-  ]
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/without_lock/final/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/without_lock/final/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/without_lock/initial/Gopkg.toml b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/without_lock/initial/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/without_lock/testcase.json b/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/without_lock/testcase.json
deleted file mode 100644
index 5de81128401f1e282065387d18b431c227d339e7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/harness_tests/status/without_lock/testcase.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "commands": [
-    ["status"]
-  ],
-  "error-expected": "no Gopkg.lock found. Run `dep ensure` to generate lock file"
-}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/init/directdeps/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/init/directdeps/main.go
deleted file mode 100644
index 3f8bc6981fc7bb2801eefa8ae3288eae92fae893..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/init/directdeps/main.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import _ "github.com/carolynvs/deptest-subpkg/subby"
-
-func main() {}
diff --git a/vendor/github.com/golang/dep/cmd/dep/testdata/status/collect_constraints/main.go b/vendor/github.com/golang/dep/cmd/dep/testdata/status/collect_constraints/main.go
deleted file mode 100644
index a53da1fd2e9143170ba8306e8e4da5148a5b29c7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/testdata/status/collect_constraints/main.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "github.com/boltdb/bolt"
-	_ "github.com/sdboyer/dep-test"
-	_ "github.com/sdboyer/deptest"
-	_ "github.com/sdboyer/deptestdos"
-)
-
-type FooBar int
diff --git a/vendor/github.com/golang/dep/cmd/dep/version.go b/vendor/github.com/golang/dep/cmd/dep/version.go
deleted file mode 100644
index 1035cb625791d8d0aa87540dafe923dbf25faf78..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/cmd/dep/version.go
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"flag"
-	"runtime"
-
-	"github.com/golang/dep"
-)
-
-var (
-	version    = "devel"
-	buildDate  string
-	commitHash string
-)
-
-const versionHelp = `Show the dep version information`
-
-func (cmd *versionCommand) Name() string { return "version" }
-func (cmd *versionCommand) Args() string {
-	return ""
-}
-func (cmd *versionCommand) ShortHelp() string { return versionHelp }
-func (cmd *versionCommand) LongHelp() string  { return versionHelp }
-func (cmd *versionCommand) Hidden() bool      { return false }
-
-func (cmd *versionCommand) Register(fs *flag.FlagSet) {}
-
-type versionCommand struct{}
-
-func (cmd *versionCommand) Run(ctx *dep.Ctx, args []string) error {
-	ctx.Out.Printf(`dep:
- version     : %s
- build date  : %s
- git hash    : %s
- go version  : %s
- go compiler : %s
- platform    : %s/%s
- features    : ImportDuringSolve=%v
-`, version, buildDate, commitHash,
-		runtime.Version(), runtime.Compiler, runtime.GOOS, runtime.GOARCH,
-		importDuringSolve())
-	return nil
-}
diff --git a/vendor/github.com/golang/dep/context.go b/vendor/github.com/golang/dep/context.go
deleted file mode 100644
index 0ababd4c6a1b6d1b6fe32c48220e8275f8942919..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/context.go
+++ /dev/null
@@ -1,361 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dep
-
-import (
-	"log"
-	"os"
-	"path/filepath"
-	"runtime"
-	"sort"
-	"time"
-
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/paths"
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/golang/dep/gps/verify"
-	"github.com/golang/dep/internal/fs"
-	"github.com/pkg/errors"
-)
-
-// Ctx defines the supporting context of dep.
-//
-// A properly initialized Ctx has a GOPATH containing the project root and non-nil Loggers.
-//
-//	ctx := &dep.Ctx{
-//		WorkingDir: GOPATH + "/src/project/root",
-//		GOPATH: GOPATH,
-//		Out: log.New(os.Stdout, "", 0),
-//		Err: log.New(os.Stderr, "", 0),
-//	}
-//
-// Ctx.DetectProjectGOPATH() helps with setting the containing GOPATH.
-//
-//	ctx.GOPATH, err := Ctx.DetectProjectGOPATH(project)
-//	if err != nil {
-//		// Could not determine which GOPATH to use for the project.
-//	}
-//
-type Ctx struct {
-	WorkingDir     string        // Where to execute.
-	GOPATH         string        // Selected Go path, containing WorkingDir.
-	GOPATHs        []string      // Other Go paths.
-	ExplicitRoot   string        // An explicitly-set path to use as the project root.
-	Out, Err       *log.Logger   // Required loggers.
-	Verbose        bool          // Enables more verbose logging.
-	DisableLocking bool          // When set, no lock file will be created to protect against simultaneous dep processes.
-	Cachedir       string        // Cache directory loaded from environment.
-	CacheAge       time.Duration // Maximum valid age of cached source data. <=0: Don't cache.
-}
-
-// SetPaths sets the WorkingDir and GOPATHs fields. If GOPATHs is empty, then
-// the GOPATH environment variable (or the default GOPATH) is used instead.
-func (c *Ctx) SetPaths(wd string, GOPATHs ...string) error {
-	if wd == "" {
-		return errors.New("cannot set Ctx.WorkingDir to an empty path")
-	}
-	c.WorkingDir = wd
-
-	if len(GOPATHs) == 0 {
-		GOPATH := os.Getenv("GOPATH")
-		if GOPATH == "" {
-			GOPATH = defaultGOPATH()
-		}
-		GOPATHs = filepath.SplitList(GOPATH)
-	}
-
-	c.GOPATHs = append(c.GOPATHs, GOPATHs...)
-
-	c.ExplicitRoot = os.Getenv("DEPPROJECTROOT")
-
-	return nil
-}
-
-// defaultGOPATH gets the default GOPATH that was added in 1.8
-// copied from go/build/build.go
-func defaultGOPATH() string {
-	env := "HOME"
-	if runtime.GOOS == "windows" {
-		env = "USERPROFILE"
-	} else if runtime.GOOS == "plan9" {
-		env = "home"
-	}
-	if home := os.Getenv(env); home != "" {
-		def := filepath.Join(home, "go")
-		if def == runtime.GOROOT() {
-			// Don't set the default GOPATH to GOROOT,
-			// as that will trigger warnings from the go tool.
-			return ""
-		}
-		return def
-	}
-	return ""
-}
-
-// SourceManager produces an instance of gps's built-in SourceManager
-// initialized to log to the receiver's logger.
-func (c *Ctx) SourceManager() (*gps.SourceMgr, error) {
-	cachedir := c.Cachedir
-	if cachedir == "" {
-		// When `DEPCACHEDIR` isn't set in the env, use the default - `$GOPATH/pkg/dep`.
-		cachedir = filepath.Join(c.GOPATH, "pkg", "dep")
-		// Create the default cachedir if it does not exist.
-		if err := os.MkdirAll(cachedir, 0777); err != nil {
-			return nil, errors.Wrap(err, "failed to create default cache directory")
-		}
-	}
-
-	return gps.NewSourceManager(gps.SourceManagerConfig{
-		CacheAge:       c.CacheAge,
-		Cachedir:       cachedir,
-		Logger:         c.Out,
-		DisableLocking: c.DisableLocking,
-	})
-}
-
-// LoadProject starts from the current working directory and searches up the
-// directory tree for a project root.  The search stops when a file with the name
-// ManifestName (Gopkg.toml, by default) is located.
-//
-// The Project contains the parsed manifest as well as a parsed lock file, if
-// present.  The import path is calculated as the remaining path segment
-// below Ctx.GOPATH/src.
-func (c *Ctx) LoadProject() (*Project, error) {
-	root, err := findProjectRoot(c.WorkingDir)
-	if err != nil {
-		return nil, err
-	}
-
-	err = checkGopkgFilenames(root)
-	if err != nil {
-		return nil, err
-	}
-
-	p := new(Project)
-
-	if err = p.SetRoot(root); err != nil {
-		return nil, err
-	}
-
-	c.GOPATH, err = c.DetectProjectGOPATH(p)
-	if err != nil {
-		return nil, err
-	}
-
-	if c.ExplicitRoot != "" {
-		p.ImportRoot = gps.ProjectRoot(c.ExplicitRoot)
-	} else {
-		ip, err := c.ImportForAbs(p.AbsRoot)
-		if err != nil {
-			return nil, errors.Wrap(err, "root project import")
-		}
-		p.ImportRoot = gps.ProjectRoot(ip)
-	}
-
-	mp := filepath.Join(p.AbsRoot, ManifestName)
-	mf, err := os.Open(mp)
-	if err != nil {
-		if os.IsNotExist(err) {
-			// TODO: list possible solutions? (dep init, cd $project)
-			return nil, errors.Errorf("no %v found in project root %v", ManifestName, p.AbsRoot)
-		}
-		// Unable to read the manifest file
-		return nil, err
-	}
-	defer mf.Close()
-
-	var warns []error
-	p.Manifest, warns, err = readManifest(mf)
-	for _, warn := range warns {
-		c.Err.Printf("dep: WARNING: %v\n", warn)
-	}
-	if err != nil {
-		return nil, errors.Wrapf(err, "error while parsing %s", mp)
-	}
-
-	// Parse in the root package tree.
-	ptree, err := p.parseRootPackageTree()
-	if err != nil {
-		return nil, err
-	}
-
-	lp := filepath.Join(p.AbsRoot, LockName)
-	lf, err := os.Open(lp)
-	if err == nil {
-		defer lf.Close()
-
-		p.Lock, err = readLock(lf)
-		if err != nil {
-			return nil, errors.Wrapf(err, "error while parsing %s", lp)
-		}
-
-		// If there's a current Lock, apply the input and pruneopt changes that we
-		// can know without solving.
-		if p.Lock != nil {
-			p.ChangedLock = p.Lock.dup()
-			p.ChangedLock.SolveMeta.InputImports = externalImportList(ptree, p.Manifest)
-
-			for k, lp := range p.ChangedLock.Projects() {
-				vp := lp.(verify.VerifiableProject)
-				vp.PruneOpts = p.Manifest.PruneOptions.PruneOptionsFor(lp.Ident().ProjectRoot)
-				p.ChangedLock.P[k] = vp
-			}
-		}
-
-	} else if !os.IsNotExist(err) {
-		// It's fine for the lock not to exist, but if a file does exist and we
-		// can't open it, that's a problem.
-		return nil, errors.Wrapf(err, "could not open %s", lp)
-	}
-
-	return p, nil
-}
-
-func externalImportList(rpt pkgtree.PackageTree, m gps.RootManifest) []string {
-	rm, _ := rpt.ToReachMap(true, true, false, m.IgnoredPackages())
-	reach := rm.FlattenFn(paths.IsStandardImportPath)
-	req := m.RequiredPackages()
-
-	// If there are any requires, slide them into the reach list, as well.
-	if len(req) > 0 {
-		// Make a map of imports that are both in the import path list and the
-		// required list to avoid duplication.
-		skip := make(map[string]bool, len(req))
-		for _, r := range reach {
-			if req[r] {
-				skip[r] = true
-			}
-		}
-
-		for r := range req {
-			if !skip[r] {
-				reach = append(reach, r)
-			}
-		}
-	}
-
-	sort.Strings(reach)
-	return reach
-}
-
-// DetectProjectGOPATH attempt to find the GOPATH containing the project.
-//
-//  If p.AbsRoot is not a symlink and is within a GOPATH, the GOPATH containing p.AbsRoot is returned.
-//  If p.AbsRoot is a symlink and is not within any known GOPATH, the GOPATH containing p.ResolvedAbsRoot is returned.
-//
-// p.AbsRoot is assumed to be a symlink if it is not the same as p.ResolvedAbsRoot.
-//
-// DetectProjectGOPATH will return an error in the following cases:
-//
-//  If p.AbsRoot is not a symlink and is not within any known GOPATH.
-//  If neither p.AbsRoot nor p.ResolvedAbsRoot are within a known GOPATH.
-//  If both p.AbsRoot and p.ResolvedAbsRoot are within the same GOPATH.
-//  If p.AbsRoot and p.ResolvedAbsRoot are each within a different GOPATH.
-func (c *Ctx) DetectProjectGOPATH(p *Project) (string, error) {
-	if p.AbsRoot == "" || p.ResolvedAbsRoot == "" {
-		return "", errors.New("project AbsRoot and ResolvedAbsRoot must be set to detect GOPATH")
-	}
-
-	if c.ExplicitRoot != "" {
-		// If an explicit root is set, just use the first GOPATH in the list.
-		return c.GOPATHs[0], nil
-	}
-
-	pGOPATH, perr := c.detectGOPATH(p.AbsRoot)
-
-	// If p.AbsRoot is a not a symlink, attempt to detect GOPATH for p.AbsRoot only.
-	if equal, _ := fs.EquivalentPaths(p.AbsRoot, p.ResolvedAbsRoot); equal {
-		return pGOPATH, perr
-	}
-
-	rGOPATH, rerr := c.detectGOPATH(p.ResolvedAbsRoot)
-
-	// If detectGOPATH() failed for both p.AbsRoot and p.ResolvedAbsRoot, then both are not within any known GOPATHs.
-	if perr != nil && rerr != nil {
-		return "", errors.Errorf("both %s and %s are not within any known GOPATH", p.AbsRoot, p.ResolvedAbsRoot)
-	}
-
-	// If pGOPATH equals rGOPATH, then both are within the same GOPATH.
-	if equal, _ := fs.EquivalentPaths(pGOPATH, rGOPATH); equal {
-		return "", errors.Errorf("both %s and %s are in the same GOPATH %s", p.AbsRoot, p.ResolvedAbsRoot, pGOPATH)
-	}
-
-	if pGOPATH != "" && rGOPATH != "" {
-		return "", errors.Errorf("%s and %s are both in different GOPATHs", p.AbsRoot, p.ResolvedAbsRoot)
-	}
-
-	// Otherwise, either the p.AbsRoot or p.ResolvedAbsRoot is within a GOPATH.
-	if pGOPATH == "" {
-		return rGOPATH, nil
-	}
-
-	return pGOPATH, nil
-}
-
-// detectGOPATH detects the GOPATH for a given path from ctx.GOPATHs.
-func (c *Ctx) detectGOPATH(path string) (string, error) {
-	for _, gp := range c.GOPATHs {
-		isPrefix, err := fs.HasFilepathPrefix(path, gp)
-		if err != nil {
-			return "", errors.Wrap(err, "failed to detect GOPATH")
-		}
-		if isPrefix {
-			return filepath.Clean(gp), nil
-		}
-	}
-	return "", errors.Errorf("%s is not within a known GOPATH/src", path)
-}
-
-// ImportForAbs returns the import path for an absolute project path by trimming the
-// `$GOPATH/src/` prefix.  Returns an error for paths equal to, or without this prefix.
-func (c *Ctx) ImportForAbs(path string) (string, error) {
-	srcprefix := filepath.Join(c.GOPATH, "src") + string(filepath.Separator)
-	isPrefix, err := fs.HasFilepathPrefix(path, srcprefix)
-	if err != nil {
-		return "", errors.Wrap(err, "failed to find import path")
-	}
-	if isPrefix {
-		if len(path) <= len(srcprefix) {
-			return "", errors.New("dep does not currently support using GOPATH/src as the project root")
-		}
-
-		// filepath.ToSlash because we're dealing with an import path now,
-		// not an fs path
-		return filepath.ToSlash(path[len(srcprefix):]), nil
-	}
-
-	return "", errors.Errorf("%s is not within any GOPATH/src", path)
-}
-
-// AbsForImport returns the absolute path for the project root
-// including the $GOPATH. This will not work with stdlib packages and the
-// package directory needs to exist.
-func (c *Ctx) AbsForImport(path string) (string, error) {
-	posspath := filepath.Join(c.GOPATH, "src", path)
-	dirOK, err := fs.IsDir(posspath)
-	if err != nil {
-		return "", errors.Wrapf(err, "checking if %s is a directory", posspath)
-	}
-	if !dirOK {
-		return "", errors.Errorf("%s does not exist", posspath)
-	}
-	return posspath, nil
-}
-
-// ValidateParams ensure that solving can be completed with the specified params.
-func (c *Ctx) ValidateParams(sm gps.SourceManager, params gps.SolveParameters) error {
-	err := gps.ValidateParams(params, sm)
-	if err != nil {
-		if deduceErrs, ok := err.(gps.DeductionErrs); ok {
-			c.Err.Println("The following errors occurred while deducing packages:")
-			for ip, dErr := range deduceErrs {
-				c.Err.Printf("  * \"%s\": %s", ip, dErr)
-			}
-			c.Err.Println()
-		}
-	}
-
-	return errors.Wrap(err, "validateParams")
-}
diff --git a/vendor/github.com/golang/dep/doc.go b/vendor/github.com/golang/dep/doc.go
deleted file mode 100644
index 63226ce4c22fffd5f1907424a592d2a2c2c4df93..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/doc.go
+++ /dev/null
@@ -1,6 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Package dep is a prototype dependency management library.
-package dep
diff --git a/vendor/github.com/golang/dep/docs/FAQ.md b/vendor/github.com/golang/dep/docs/FAQ.md
deleted file mode 100644
index 7a9c1e912af804a129116106ed30d0e12ab12da1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/FAQ.md
+++ /dev/null
@@ -1,543 +0,0 @@
----
-title: FAQ
----
-
-The FAQ predated the introduction of the rest of the documentation. If something in here conflicts with other guides or reference documents, it's probably here that it's wrong - please file a PR!
-
-## Concepts
-
-* [Does `dep` replace `go get`?](#does-dep-replace-go-get)
-* [Why is it `dep ensure` instead of `dep install`?](#why-is-it-dep-ensure-instead-of-dep-install)
-* [What is a direct or transitive dependency?](#what-is-a-direct-or-transitive-dependency)
-
-## Configuration
-
-* [What is the difference between Gopkg.toml (the "manifest") and Gopkg.lock (the "lock")?](#what-is-the-difference-between-gopkgtoml-the-manifest-and-gopkglock-the-lock)
-* [How do I constrain a transitive dependency's version?](#how-do-i-constrain-a-transitive-dependency-s-version)
-* [How do I change the version of a dependency?](#how-do-i-change-the-version-of-a-dependency)
-* [Can I put the manifest and lock in the vendor directory?](#can-i-put-the-manifest-and-lock-in-the-vendor-directory)
-* [How do I get `dep` to authenticate to a `git` repo?](#how-do-i-get-dep-to-authenticate-to-a-git-repo)
-* [How do I get `dep` to consume private `git` repos using a GitHub Token?](#how-do-i-get-dep-to-consume-private-git-repos-using-a-github-token)
-
-## Behavior
-
-* [How does `dep` decide what version of a dependency to use?](#how-does-dep-decide-what-version-of-a-dependency-to-use)
-* [What is the default `dep ensure -update` behavior for dependencies that are imported but not included as a `[[Constraint]]` in `Gopkg.toml`?](#what-is-the-default-dep-ensure--update-behavior-for-dependencies-that-are-imported-but-not-included-as-a-constraint-in-gopkgtoml)
-* [What external tools are supported?](#what-external-tools-are-supported)
-* [Why is `dep` ignoring a version constraint in the manifest?](#why-is-dep-ignoring-a-version-constraint-in-the-manifest)
-* [Why did `dep` use a different revision for package X instead of the revision in the lock file?](#why-did-dep-use-a-different-revision-for-package-x-instead-of-the-revision-in-the-lock-file)
-* [Why is `dep` slow?](#why-is-dep-slow)
-* [How does `dep` handle symbolic links?](#how-does-dep-handle-symbolic-links)
-* [Does `dep` support relative imports?](#does-dep-support-relative-imports)
-* [How do I make `dep` resolve dependencies from my `GOPATH`?](#how-do-i-make-dep-resolve-dependencies-from-my-gopath)
-* [Will `dep` let me use git submodules to store dependencies in `vendor`?](#will-dep-let-me-use-git-submodules-to-store-dependencies-in-vendor)
-* [How does `dep` work without changing my packages imports?](#how-does-dep-work-without-changing-my-packages-imports)
-
-## Best Practices
-
-* [Should I commit my vendor directory?](#should-i-commit-my-vendor-directory)
-* [How do I roll releases that `dep` will be able to use?](#how-do-i-roll-releases-that-dep-will-be-able-to-use)
-* [What semver version should I use?](#what-semver-version-should-i-use)
-* [Is it OK to make backwards-incompatible changes now?](#is-it-ok-to-make-backwards-incompatible-changes-now)
-* [My dependers don't use `dep` yet. What should I do?](#my-dependers-don-t-use-dep-yet-what-should-i-do)
-* [How do I configure a dependency that doesn't tag its release](#how-do-i-configure-a-dependency-that-doesn-t-tag-its-releases)
-* [How do I use `dep` with Docker?](#how-do-i-use-dep-with-docker)
-* [How do I use `dep` in CI?](#how-do-i-use-dep-in-ci)
-
-## Concepts
-
-### Does `dep` replace `go get`?
-
-No. `dep` and `go get` serve mostly different purposes.
-
-Here are some suggestions for when you could use `dep` or `go get`:
-
-> I would say that dep doesn't replace go get, but they both can do similar things. Here's how I use them:
->
-> `go get`: I want to download the source code for a go project so that I can work on it myself, or to install a tool. This clones the repo under GOPATH for all to use.
->
-> `dep ensure`: I have imported a new dependency in my code and want to download the dependency so I can start using it. My workflow is "add the import to the code, and then run dep ensure so that the manifest/lock/vendor are updated". This clones the repo under my project's vendor directory, and remembers the revision used so that everyone who works on my project is guaranteed to be using the same version of dependencies.
->
-> [@carolynvs in #376](https://github.com/golang/dep/issues/376#issuecomment-293964655)
-
-> The long term vision is a sane, overall-consistent go tool. My general take is that `go get`
-> is for people consuming Go code, and dep-family commands are for people developing it.
->
-> [@sdboyer in #376](https://github.com/golang/dep/issues/376#issuecomment-294045873)
-
-### Why is it `dep ensure` instead of `dep install`?
-
-> Yeah, we went round and round on names. [A lot](https://gist.github.com/jessfraz/315db91b272441f510e81e449f675a8b).
->
-> The idea of "ensure" is roughly, "ensure that all my local states - code tree, manifest, lock, and vendor - are in sync with each other." When arguments are passed, it becomes "ensure this argument is satisfied, along with synchronization between all my local states."
->
-> We opted for this approach because we came to the conclusion that allowing the tool to perform partial work/exit in intermediate states ended up creating a tool that had more commands, had far more possible valid exit and input states, and was generally full of footguns. In this approach, the user has most of the same ultimate control, but exercises it differently (by modifying the code/manifest and re-running dep ensure).
->
-> [@sdboyer in #371](https://github.com/golang/dep/issues/371#issuecomment-293246832)
-
-### What is a direct or transitive dependency?
-
-* Direct dependencies are dependencies that are imported directly by your project: they appear in at least one import statement from your project.
-* Transitive dependencies are the dependencies of your dependencies. Necessary to compile but are not directly used by your code.
-
-## Configuration
-
-### What is the difference between `Gopkg.toml` (the "manifest") and `Gopkg.lock` (the "lock")?
-
-> The manifest describes user intent, and the lock describes computed outputs. There's flexibility in manifests that isn't present in locks..., as the "branch": "master" constraint will match whatever revision master HAPPENS to be at right now, whereas the lock is nailed down to a specific revision.
->
-> This flexibility is important because it allows us to provide easy commands (e.g. `dep ensure -update`) that can manage an update process for you, within the constraints you specify, AND because it allows your project, when imported by someone else, to collaboratively specify the constraints for your own dependencies.
->
-> [@sdboyer in #281](https://github.com/golang/dep/issues/281#issuecomment-284118314)
-
-## <a id="how-do-i-constrain-a-transitive-dependency-s-version"></a>How do I constrain a transitive dependency's version?
-
-First, if you're wondering about this because you're trying to keep the version
-of the transitive dependency from changing, then you're working against `dep`'s
-design. The lock file, `Gopkg.lock`, will keep the selected version of the
-transitive dependency stable, unless you explicitly request an upgrade or it's
-impossible to find a solution without changing that version.
-
-If that isn't your use case and you still need to constrain a transitive
-dependency, you have a couple of options:
-
-1.  Make the transitive dependency a direct one, either with a dummy import or an entry in the `required` list in `Gopkg.toml`.
-2.  Use an override.
-
-Overrides are a sledgehammer, and should only be used as a last resort. While
-constraints and overrides are declared in the same way in `Gopkg.toml`, they
-behave differently:
-
-* Constraints:
-  1.  Can be declared by any project's manifest, yours or a dependency
-  2.  Apply only to direct dependencies of the project declaring the constraint
-  3.  Must not conflict with the `constraint` entries declared in any other project's manifest
-* Overrides:
-  1.  Are only utilized from the current/your project's manifest
-  2.  Apply globally, to direct and transitive dependencies
-  3.  Supersede constraints declared in all manifests, yours or a dependency's
-
-Overrides are also discussed with some visuals in [the gps docs](https://github.com/sdboyer/gps/wiki/gps-for-Implementors#overrides).
-
-## How do I change the version of a dependency
-
-If you want to:
-
-* Change the allowed `version`/`branch`/`revision`
-* Switch to using a fork
-
-for one or more dependencies, do the following:
-
-1.  Manually edit your `Gopkg.toml`.
-1.  Run
-
-    ```sh
-    $ dep ensure
-    ```
-
-## Can I put the manifest and lock in the vendor directory?
-
-No.
-
-> Placing these files inside `vendor/` would concretely bind us to `vendor/` in the long term.
-> We prefer to treat the `vendor/` as an implementation detail.
->
-> [@sdboyer on go package management list](https://groups.google.com/d/msg/go-package-management/et1qFUjrkP4/LQFCHP4WBQAJ)
-
-## How do I get dep to authenticate to a git repo?
-
-`dep` currently uses the `git` command under the hood, so configuring the credentials
-for each repository you wish to authenticate to will allow `dep` to use an
-authenticated repository.
-
-First, configure `git` to use the credentials option for the specific repository.
-
-For example, if you use GitLab, and you wish to access `https://gitlab.example.com/example/package.git`,
-then you would want to use the following configuration:
-
-```
-$ git config --global credential.https://gitlab.example.com.example yourusername
-```
-
-In the example the hostname `gitlab.example.com.example` string seems incorrect, but
-it's actually the hostname plus the name of the repo you are accessing which is `username`.
-The trailing 'yourusername' is the username you would use for the actual authentication.
-
-You also need to configure `git` with the authentication provider you wish to use. You can get
-a list of providers, with the command:
-
-```
-$ git help -a | grep credential-
-  credential-cache          remote-fd
-  credential-cache--daemon  remote-ftp
-  credential-osxkeychain    remote-ftps
-  credential-store          remote-http
-```
-
-You would then choose an appropriate provider. For example, to use the osxkeychain, you
-would use the following:
-
-```
-git config --global credential.helper osxkeychain
-```
-
-If you need to do this for a CI system, then you may want to use the "store" provider.
-Please see the documentation on how to configure that: https://git-scm.com/docs/git-credential-store
-
-After configuring `git`, you may need to use `git` manually once to have it store the
-credentials. Once you've checked out the repo manually, it will then use the stored
-credentials. This at least appears to be the behavior for the osxkeychain provider.
-
-### How do I get dep to consume private git repos using a GitHub Token?
-
-Another alternative to make `dep` work with private repos is to use a [Personal GitHub
-Token](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/)
-and configure it inside the [`.netrc` file](https://www.gnu.org/software/inetutils/manual/html_node/The-_002enetrc-file.html)
-as the following example:
-
-```
-machine github.com
-    login [YOUR_GITHUB_USERNAME]
-    password [YOUR_GITHUB_TOKEN]
-```
-
-Once you have set that up, dep will automatically use that Token to authenticate to the repositories.
-
-## How do I get dep to authenticate via SSH to a git repo?
-
-You can rewrite the repo url and use the git+ssh shema with follow example:
-
-```
-git config --global url."git@github.yourEnterprise.com:".insteadOf "https://github.yourEnterprise.com/"
-
-```
-
-
-## Behavior
-
-### How does `dep` decide what version of a dependency to use?
-
-The full algorithm is complex, but the most important thing to understand is
-that `dep` tries versions in a [certain
-order](https://godoc.org/github.com/golang/dep/gps#SortForUpgrade),
-checking to see a version is acceptable according to specified constraints.
-
-* All semver versions come first, and sort mostly according to the semver 2.0
-  spec, with one exception:
-  * Semver versions with a prerelease are sorted after _all_ non-prerelease
-    semver. Within this subset they are sorted first by their numerical
-    component, then lexicographically by their prerelease version.
-* The default branch(es) are next; the semantics of what "default branch" means
-  are specific to the underlying source type, but this is generally what you'd
-  get from a `go get`.
-* All other branches come next, sorted lexicographically.
-* All non-semver versions (tags) are next, sorted lexicographically.
-* Revisions, if any, are last, sorted lexicographically. Revisions do not
-  typically appear in version lists, so the only invariant we maintain is
-  determinism - deeper semantics, like chronology or topology, do not matter.
-
-So, given a slice of the following versions:
-
-* Branch: `master` `devel`
-* Semver tags: `v1.0.0` `v1.1.0` `v1.1.0-alpha1`
-* Non-semver tags: `footag`
-* Revision: `f6e74e8d`
-
-Sorting for upgrade will result in the following slice:
-
-`[v1.1.0 v1.0.0 v1.1.0-alpha1 master devel footag f6e74e8d]`
-
-There are a number of factors that can eliminate a version from consideration,
-the simplest of which is that it doesn't match a constraint. But if you're
-trying to figure out why `dep` is doing what it does, understanding that its
-basic action is to attempt versions in this order should help you to reason
-about what's going on.
-
-## What is the default `dep ensure -update` behavior for dependencies that are imported but not included as a `[[Constraint]]` in `Gopkg.toml`?
-`dep` updates the dependency to the latest semver tag. If there are no semver tags, `dep` uses the tip of master.
-
-## What external tools are supported?
-
-During `dep init` configuration from other dependency managers is detected
-and imported, unless `-skip-tools` is specified.
-
-The following tools are supported: `glide`, `godep`, `vndr`, `govend`, `gb`, `gvt`, `govendor` and `glock`.
-
-See [#186](https://github.com/golang/dep/issues/186#issuecomment-306363441) for
-how to add support for another tool.
-
-## Why is `dep` ignoring a version constraint in the manifest?
-
-Only your project's directly imported dependencies are affected by a `constraint` entry
-in the manifest. Transitive dependencies are unaffected. See [How do I constrain a transitive dependency's version](#how-do-i-constrain-a-transitive-dependency-s-version)?
-
-## Why did `dep` use a different revision for package X instead of the revision in the lock file?
-
-Sometimes the revision specified in the lock file is no longer valid. There are a few
-ways this can occur:
-
-* When you generated the lock file, you had an unpushed commit in your local copy of package X's repository in your `GOPATH`. (This case will be going away soon)
-* After generating the lock file, new commits were force pushed to package X's repository, causing the commit revision in your lock file to no longer exist.
-
-To troubleshoot, you can revert dep's changes to your lock, and then run `dep ensure -v -n`.
-This retries the command in dry-run mode with verbose logs enabled. Check the output
-for a warning like the one below, indicating that a commit in the lock is no longer valid.
-
-```
-Unable to update checked out version: fatal: reference is not a tree: 4dfc6a8a7e15229398c0a018b6d7a078cccae9c8
-```
-
-> The lock file represents a set of precise, typically immutable versions for the entire transitive closure of dependencies for a project. But "the project" can be, and is, decomposed into just a bunch of arguments to an algorithm. When those inputs change, the lock may need to change as well.
->
-> Under most circumstances, if those arguments don't change, then the lock remains fine and correct. You've hit one of the few cases where that guarantee doesn't apply. The fact that you ran dep ensure and it DID a solve is a product of some arguments changing; that solving failed because this particular commit had become stale is a separate problem.
->
-> [@sdboyer in #405](https://github.com/golang/dep/issues/405#issuecomment-295998489)
-
-## Why is `dep` slow?
-
-There are two things that really slow `dep` down. One is unavoidable; for the other, we have a plan.
-
-The unavoidable part is the initial clone. `dep` relies on a cache of local
-repositories (stored under `$GOPATH/pkg/dep`), which is populated on demand.
-Unfortunately, the first `dep` run, especially for a large project, may take a
-while, as all dependencies are cloned into the cache.
-
-Fortunately, this is just an _initial_ clone - pay it once, and you're done.
-The problem repeats itself a bit when you're running `dep` for the first time
-in a while and there's new changesets to fetch, but even then, these costs are
-only paid once per changeset.
-
-The other part is the work of retrieving information about dependencies. There are three parts to this:
-
-1.  Getting an up-to-date list of versions from the upstream source
-2.  Reading the `Gopkg.toml` for a particular version out of the local cache
-3.  Parsing the tree of packages for import statements at a particular version
-
-The first requires one or more network calls; the second two usually mean
-something like a `git checkout`, and the third is a filesystem walk, plus
-loading and parsing `.go` files. All of these are expensive operations.
-
-Fortunately, we can cache the second and third. And that cache can be permanent
-when keyed on an immutable identifier for the version - like a git commit SHA1
-hash. The first is a bit trickier, but there are reasonable staleness tradeoffs
-we can consider to avoid the network entirely. There's an issue to [implement
-persistent caching](https://github.com/golang/dep/issues/431) that's the
-gateway to all of these improvements.
-
-There's another major performance issue that's much harder - the process of picking versions itself is an NP-complete problem in `dep`'s current design. This is a much trickier problem 😜
-
-## How does `dep` handle symbolic links?
-
-> because we're not crazy people who delight in inviting chaos into our lives, we need to work within one `GOPATH` at a time. -[@sdboyer in #247](https://github.com/golang/dep/pull/247#issuecomment-284181879)
-
-Out of convenience, one might create a symlink to a directory within their `GOPATH/src`, e.g. `ln -s ~/go/src/github.com/user/awesome-project ~/Code/awesome-project`.
-
-When `dep` is invoked with a project root that is a symlink, it will be resolved according to the following rules:
-
-* If the symlink is outside `GOPATH` and links to a directory within a `GOPATH`, or vice versa, then `dep` will choose whichever path is within `GOPATH`.
-* If the symlink is within a `GOPATH` and the resolved path is within a _different_ `GOPATH`, then an error is thrown.
-* If both the symlink and the resolved path are in the same `GOPATH`, then an error is thrown.
-* If neither the symlink nor the resolved path are in a `GOPATH`, then an error is thrown.
-
-This is the only symbolic link support that `dep` really intends to provide. In keeping with the general practices of the `go` tool, `dep` tends to either ignore symlinks (when walking) or copy the symlink itself, depending on the filesystem operation being performed.
-
-## Does `dep` support relative imports?
-
-No.
-
-> dep simply doesn't allow relative imports. this is one of the few places where we restrict a case that the toolchain itself allows. we disallow them only because:
->
-> * the toolchain already frowns heavily on them<br>
-> * it's worse for our case, as we start venturing into [dot dot hell](http://doc.cat-v.org/plan_9/4th_edition/papers/lexnames) territory when trying to prove that the import does not escape the tree of the project
->
-> [@sdboyer in #899](https://github.com/golang/dep/issues/899#issuecomment-317904001)
-
-For a refresher on Go's recommended workspace organization, see the ["How To Write Go Code"](https://golang.org/doc/code.html) article in the Go docs. Organizing your code this way gives you a unique import path for every package.
-
-## How do I make `dep` resolve dependencies from my `GOPATH`?
-
-`dep init` provides an option to scan the `GOPATH` for dependencies by doing
-`dep init -gopath`, which falls back to network mode when the packages are not
-found in `GOPATH`. `dep ensure` doesn't work with projects in `GOPATH`.
-
-## Will `dep` let me use git submodules to store dependencies in `vendor`?
-
-No, with just one tiny exception: `dep` preserves `/vendor/.git`, if it exists. This was added at [cockroachdb](https://github.com/cockroachdb/cockroach)'s request, who rely on it to keep `vendor` from bloating their primary repository.
-
-The reasons why git submodules will not be a part of dep are best expressed as a pro/con list:
-
-**Pros**
-
-* git submodules provide a well-structured way of nesting repositories within repositories.
-
-**Cons**
-
-* The nesting that git submodules perform is no more powerful or expressive than what dep already does, but dep does it both more generally (for bzr and hg) and more domain-specifically (e.g. elimination of nested vendor directories).
-* Incorporating git submodules in any way would new fork new paths in the logic to handle the submodule cases, meaning nontrivial complexity increases.
-* dep does not currently know or care if the project it operates on is under version control. Relying on submodules would entail that dep start paying attention to that. That it would only be conditionally does not make it better - again, more forking paths in the logic, more complexity.
-* Incorporating submodules in a way that is at all visible to the user (and why else would you do it?) makes dep's workflows both more complicated and less predictable: _sometimes_ submodule-related actions are expected; _sometimes_ submodule-derived workflows are sufficient.
-* Nesting one repository within another implies that changes could, potentially, be made directly in that subrepository. This is directly contrary to dep's foundational principle that `vendor` is dead code, and directly modifying anything in there is an error.
-
-## How does `dep` work without changing my packages imports?
-
-`dep` doesn't require imports (or the `$GOPATH`) to be updated because [go has native support for a vendor directory since version 1.5](https://golang.org/cmd/go/#hdr-Vendor_Directories). You do not need to update import paths to be relative. For instance, `import github.com/user/awesome-project` will be found in the project's `/vendor/github.com/user/awesome-project` before looking to `$GOPATH/src/github.com/user/awesome-project`.
-
-## Best Practices
-
-### Should I commit my vendor directory?
-
-It's up to you:
-
-**Pros**
-
-* It's the only way to get truly reproducible builds, as it guards against upstream renames,
-  deletes and commit history overwrites.
-* You don't need an extra `dep ensure` step to sync `vendor/` with `Gopkg.lock` after most operations,
-  such as `go get`, cloning, getting latest, merging, etc.
-
-**Cons**
-
-* Your repo will be bigger, potentially a lot bigger,
-  though [`prune`](Gopkg.toml.md#prune) can help minimize this problem.
-* PR diffs will include changes for files under `vendor/` when `Gopkg.lock` is modified,
-  however files in `vendor/` are [hidden by default](https://github.com/github/linguist/blob/v5.2.0/lib/linguist/generated.rb#L328) on GitHub.
-
-## How do I roll releases that `dep` will be able to use?
-
-In short: make sure you've committed your `Gopkg.toml` and `Gopkg.lock`, then
-just create a tag in your version control system and push it to the canonical
-location. `dep` is designed to work automatically with this sort of metadata
-from `git`, `bzr`, and `hg`.
-
-It's strongly preferred that you use [semver](http://semver.org)-compliant tag
-names. We hope to develop documentation soon that describes this more precisely,
-but in the meantime, the [npm](https://docs.npmjs.com/misc/semver) docs match
-our patterns pretty well.
-
-## What semver version should I use?
-
-This can be a nuanced question, and the community is going to have to work out
-some accepted standards for how semver should be applied to Go projects. At the
-highest level, though, these are the rules:
-
-* Below `v1.0.0`, anything goes. Use these releases to figure out what you want
-  your API to be.
-* Above `v1.0.0`, the general Go best practices continue to apply - don't make
-  backwards-incompatible changes - exported identifiers can be added to, but
-  not changed or removed.
-* If you must make a backwards-incompatible change, then bump the major version.
-
-It's important to note that having a `v1.0.0` does not preclude you from having
-alpha/beta/etc releases. The semver spec allows for [prerelease
-versions](http://semver.org/#spec-item-9), and `dep` is careful to _not_ allow
-such versions unless `Gopkg.toml` contains a range constraint that explicitly
-includes prereleases: if there exists a version `v1.0.1-alpha4`, then the
-constraint `>=1.0.0` will not match it, but `>=1.0.1-alpha1` will.
-
-Some work has been done towards [a tool
-to](https://github.com/bradleyfalzon/apicompat) that will analyze and compare
-your code with the last release, and suggest the next version you should use.
-
-## Is it OK to make backwards-incompatible changes now?
-
-Yes. But.
-
-`dep` will make it possible for the Go ecosystem to handle
-backwards-incompatible changes more gracefully. However, `dep` is not some
-magical panacea. Version and dependency management is hard, and dependency hell
-is real. The longstanding community wisdom about avoiding breaking changes
-remains important. Any `v1.0.0` release should be accompanied by a plan for how
-to avoid future breaking API changes.
-
-One good strategy may be to add to your API instead of changing it, deprecating
-old versions as you progress. Then, when the time is right, you can roll a new
-major version and clean out a bunch of deprecated symbols all at once.
-
-Note that providing an incremental migration path across breaking changes (i.e.,
-shims) is tricky, and something we [don't have a good answer for
-yet](https://groups.google.com/forum/#!topic/go-package-management/fp2uBMf6kq4).
-
-## <a id="my-dependers-don-t-use-dep-yet-what-should-i-do"></a>My dependers don't use `dep` yet. What should I do?
-
-For the most part, you needn't do anything differently.
-
-The only possible issue is if your project is ever consumed as a library. If
-so, then you may want to be wary about committing your `vendor/` directory, as
-it can [cause
-problems](https://groups.google.com/d/msg/golang-nuts/AnMr9NL6dtc/UnyUUKcMCAAJ).
-If your dependers are using `dep`, this is not a concern, as `dep` takes care of
-stripping out nested `vendor` directories.
-
-## <a id="how-do-i-configure-a-dependency-that-doesn-t-tag-its-releases"></a>How do I configure a dependency that doesn't tag its releases?
-
-Add a constraint to `Gopkg.toml` that specifies `branch: "master"` (or whichever branch you need) in the `[[constraint]]` for that dependency. `dep ensure` will determine the current revision of your dependency's master branch, and place it in `Gopkg.lock` for you. See also: [What is the difference between Gopkg.toml and Gopkg.lock?](#what-is-the-difference-between-gopkgtoml-the-manifest-and-gopkglock-the-lock)
-
-## How do I use `dep` with Docker?
-
-`dep ensure -vendor-only` creates the vendor folder from a valid `Gopkg.toml` and `Gopkg.lock` without checking for Go code.
-This is especially useful for builds inside docker utilizing cache layers.
-
-Sample Dockerfile:
-
-```Dockerfile
-FROM golang:1.9 AS builder
-
-RUN curl -fsSL -o /usr/local/bin/dep https://github.com/golang/dep/releases/download/vX.X.X/dep-linux-amd64 && chmod +x /usr/local/bin/dep
-
-RUN mkdir -p /go/src/github.com/***
-WORKDIR /go/src/github.com/***
-
-COPY Gopkg.toml Gopkg.lock ./
-# copies the Gopkg.toml and Gopkg.lock to WORKDIR
-
-RUN dep ensure -vendor-only
-# install the dependencies without checking for go code
-
-...
-```
-
-## How do I use `dep` in CI?
-
-Since `dep` is expected to change until `v1.0.0` is released, it is recommended to rely on a released version.
-You can find the latest binary from the [releases](https://github.com/golang/dep/releases) page.
-
-Sample configuration for Travis CI:
-
-```yml
-# ...
-
-env:
-  - DEP_VERSION="X.X.X"
-
-before_install:
-  # Download the binary to bin folder in $GOPATH
-  - curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
-  # Make the binary executable
-  - chmod +x $GOPATH/bin/dep
-
-install:
-  - dep ensure
-```
-
-Caching can also be enabled but there are a couple of caveats you should be aware of:
-
-> Until recently, we have had intermittent cache corruption that would have been super annoying if it was breaking Travis build too.
->
-> Also according to https://docs.travis-ci.com/user/caching/#Things-not-to-cache, they don't recommend it for larger caches.
->
-> https://docs.travis-ci.com/user/caching/#How-does-the-caching-work%3F
->
-> > Note that this makes our cache not network-local, it's still bound to network bandwidth and DNS resolutions for S3.
-> > That impacts what you can and should store in the cache. If you store archives larger than a few hundred megabytes in the cache, it's unlikely that you'll see a big speed improvement.
->
-> [@carolynvs in #1293](https://github.com/golang/dep/pull/1293#issuecomment-342969292)
-
-If you are sure you want to enable caching on Travis, it can be done by adding `$GOPATH/pkg/dep`, the default location for `dep` cache, to the cached directories:
-
-```yml
-# ...
-
-cache:
-  directories:
-    - $GOPATH/pkg/dep
-```
diff --git a/vendor/github.com/golang/dep/docs/Gopkg.lock.md b/vendor/github.com/golang/dep/docs/Gopkg.lock.md
deleted file mode 100644
index 80c3920c030da6e184c4ecdb832000f5ee21aeb9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/Gopkg.lock.md
+++ /dev/null
@@ -1,105 +0,0 @@
----
- title: Gopkg.lock
----
-
-The `Gopkg.lock` file is generated by `dep ensure` and `dep init`. It is the output of [the solving function](ensure-mechanics.md#functional-flow): a transitively complete snapshot of a project's dependency graph, expressed as a series of `[[project]]` stanzas. That means:
-
-* Every package a project needs to compile
-* Plus any [`required`](Gopkg.toml.md#required) packages
-* Less any [`ignored`](Gopkg.toml.md#ignored) packages
-
-`Gopkg.lock` also contains some metadata about the algorithm and inputs used to arrive at the final graph, under `[solve-meta]`.
-
-`Gopkg.lock` always includes a `revision` for all listed dependencies, as the semantics of `revision` guarantee them to be immutable. Thus, the `Gopkg.lock` acts as a reproducible build list - as long as the upstream remains available, all dependencies can be precisely reproduced.
-
-`Gopkg.lock` is autogenerated; editing it manually is generally an antipattern. If there is a goal you can only achieve by hand-editing `Gopkg.lock`, it is at least a feature request, and likely a bug.
-
-## `[[projects]]`
-
-The dependency graph is expressed as a series of `[[projects]]` stanzas, each representing a single dependency project. A given project can only appear once in the list, and the version information expressed about them encompasses all contained packages - it is not possible to have multiple packages from a single project at different versions.
-
-These are all the properties that can appear in a `[[projects]]` stanza, and whether or not they are guaranteed to be present/must be present for a stanza to be valid.
-
-| **Property** | **Always present?** |
-| ------------ | ------------------- |
-| `name`       | Y                   |
-| `packages`   | Y                   |
-| `source`     | N                   |
-| `revision`   | Y                   |
-| `version`    | N                   |
-| `branch`     | N                   |
-| `pruneopts`  | Y                   |
-| `digest`     | Y                   |
-
-### `name`
-
-The project to which the stanza applies, as identified by its [project root](glossary.md#project-root).
-
-### `source`
-
-If present, it indicates the upstream source from which the project should be retrieved. It has the same properties as [`source` in `Gopkg.toml`](Gopkg.toml.md#source).
-
-### `packages`
-
-A complete list of directories from within the source that dep determined to be necessary for the build.
-
-In general, this is the set of packages that were found to be participants in the package import graph, through at least one but as many as all of the following mechanisms:
-
-* Being in the current project's [`required`](Gopkg.toml.md#required) list
-* Being imported by a package from either the current project or a different dependency
-* Being imported by a package from within this project that, directly or transitively, is imported by a package from a different project
-
-### `pruneopts`
-
-A compactly-encoded form of the [prune options designated in `Gopkg.toml`](Gopkg.toml.md#prune) . Each character represents one of the three possible rules:
-
-| Character | Pruning Rule in `Gopkg.toml` |
-| --------- | ---------------------------- |
-| `N`       | `non-go`                     |
-| `U`       | `unused-packages`            |
-| `T`       | `go-tests`                   |
-
-If the character is present in `pruneopts`, the pruning rule is enabled for that project. Thus, `NUT` indicates that all three pruning rules are active.
-
-### `digest`
-
-The hash digest of the contents of `vendor/` for this project, _after_ pruning rules have been applied. The digest is versioned, by way of a colon-delimited prefix; the string is of the form `<version>:<hex-encoded digest>` . The hashing algorithm corresponding to version 1 is SHA256, as implemented in the stdlib package `crypto/sha256`.
-
-There are some tweaks that differentiate the hasher apart from a naive filesystem tree hashing implementation:
-
-* Symlinks are ignored.
-* Line endings are normalized to LF (using an algorithm similar to git's) in order to ensure digests do not vary across platforms.
-
-### Version information: `revision`, `version`, and `branch`
-
-In order to provide reproducible builds, it is an absolute requirement that every project stanza contain a `revision`, no matter what kinds of constraints were encountered in `Gopkg.toml` files. It is further possible that exactly one of either `version` or `branch` will _additionally_ be present.
-
-When one of the other two are present, the `revision` is understood to be the underlying, immutable identifier that corresponded to that `version` or `branch` _at the time when the `Gopkg.lock` was written_.
-
-## `[solve-meta]`
-
-Metadata contained in this section tells us about the algorithm that was used to generate the `Gopkg.lock` file. These are very coarse indicators, primarily used to trigger a re-evaluation of the lock when it might have become invalid, as well as warn a team when its members are using algorithms with potentially subtly different effects.
-
-More details on "analyzer" and "solver" follow, but the versioning principle is the same: algorithmic changes that result in a decrease to the set of acceptable solutions for at least one input set generally require a version bump, while changes that increase the size of that set do not. However, this is not a formal definition; we leave room for judgment calls on small changes and bug fixes, and we bump at most once per release.
-
-By bumping versions only on solution set contractions, but not expansions, it allows us to avoid having to bump constantly (which could make using dep across teams awkward), while still making it likely that when the solver and version numbers match between `Gopkg.lock` and a running version of dep, what's recorded in the file is acceptable by the running version's rules.
-
-### `input-imports`
-
-A sorted list of all the import inputs that were present at the time the `Gopkg.lock` was computed. This list includes both actual `import` statements from the project, as well as any `required` import paths listed in `Gopkg.toml`, excluding any that were `ignored`.
-
-### `analyzer-name` and `analyzer-version`
-
-The analyzer is an internal dep component responsible for interpreting the contents of `Gopkg.toml` files, as well as metadata files from any tools dep knows about: `glide.yaml`, `vendor.json`, etc.
-
-The analyzer is named because the dep needs to identify itself to its engine, gps (`github.com/golang/dep/gps`); gps knows nothing about dep. The analyzer version is bumped when something in the analyzer's logic begins treating data that it already accepted in a significantly different way, or stops accepting a particular class of data. It is _not_ changed when support for entirely new types of data are added.
-
-For example, if dep's analyzer stopped supporting automated conversions from glide, then that would not require bumping the analyzer version, as doing so makes _more_ solutions possible. Adding support for converting from a new tool, or changing the interpretation of `version` fields in `Gopkg.toml` so that it was only allowed to specify minimum versions, would entail a version bump.
-
-### `solver-name` and `solver-version`
-
-The solver is the algorithm behind [the solving function](ensure-mechanics.md#functional-flow). It selects all the versions that ultimately appear in `Gopkg.lock` by finding a combination that satisfies all the rules, including those from `Gopkg.toml` (fed to the solver by the analyzer).
-
-The solver is named because, like the analyzer, it is pluggable; an alternative algorithm could be written that applies different rules to achieve the same goal. The one dep uses, "gps-cdcl", is named after [the general class of SAT solving algorithm it most resembles](https://en.wikipedia.org/wiki/Conflict-Driven_Clause_Learning), though the algorithm is actually a specialized, domain-specific [SMT solver](https://en.wikipedia.org/wiki/Satisfiability_modulo_theories).
-
-The same general principles of version-bumping apply to the solver version: if the solver starts enforcing [Go 1.4 import path comments](https://golang.org/cmd/go/#hdr-Import_path_checking), that entails a bump, because it can only narrow the solution set. If it were to later relax that requirement, it would not require a bump, as that can only expand the solution set.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/docs/Gopkg.toml.md b/vendor/github.com/golang/dep/docs/Gopkg.toml.md
deleted file mode 100644
index c759e927373bce852d902347b0d8d668eb062d4d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/Gopkg.toml.md
+++ /dev/null
@@ -1,310 +0,0 @@
----
-title: Gopkg.toml
----
-
-The `Gopkg.toml` file is initially generated by `dep init`, and is primarily hand-edited. It contains several types of rule declarations that govern dep's behavior:
-
-* _Dependency rules:_ [`constraints`](#constraint) and [`overrides`](#override) allow the user to specify which versions of dependencies are acceptable, and where they should be retrieved from.
-* _Package graph rules:_ [`required`](#required) and [`ignored`](#ignored) allow the user to manipulate the import graph by including or excluding import paths, respectively.
-* [`metadata`](#metadata) are a user-defined maps of key-value pairs that dep will ignore. They provide a data sidecar for tools building on top of dep.
-* [`prune`](#prune) settings determine what files and directories can be deemed unnecessary, and thus automatically removed from `vendor/`.
-* [`noverify`](#noverify) is a list of project roots for which [vendor verification](glossary.md#vendor-verification) is skipped.
-
-Note that because TOML does not adhere to a tree structure, the `required` and `ignored` fields must be declared before any `[[constraint]]` or `[[override]]`.
-
-There is a full [example](#example) `Gopkg.toml` file at the bottom of this document. `dep init` will also, by default, generate a `Gopkg.toml` containing some example values, for guidance.
-
-## Dependency rules: `[[constraint]]` and `[[override]]`
-
-Most of the rule declarations in a `Gopkg.toml` will be either `[[constraint]]` or `[[override]]` stanzas. Both of these types of stanzas allow exactly the same types of values, but dep interprets them differently. Each allows the following values:
-
-* `name` - the import path corresponding to the [source root](glossary.md#source-root) of a dependency (generally: where the VCS root is)
-* At most one [version rule](#version-rules)
-* An optional [`source` rule](#source)
-* [`metadata`](#metadata) that is specific to the `name`'d project
-
-A full example (invalid, actually, as it has more than one version rule, for illustrative purposes) of either one of these stanzas looks like this:
-
-```toml
-[[constraint]]
-  # Required: the root import path of the project being constrained.
-  name = "github.com/user/project"
-  # Recommended: the version constraint to enforce for the project.
-  # Note that only one of "branch", "version" or "revision" can be specified.
-  version = "1.0.0"
-  branch = "master"
-  revision = "abc123"
-
-  # Optional: an alternate location (URL or import path) for the project's source.
-  source = "https://github.com/myfork/package.git"
-
-  # Optional: metadata about the constraint or override that could be used by other independent systems
-  [metadata]
-  key1 = "value that convey data to other systems"
-  system1-data = "value that is used by a system"
-  system2-data = "value that is used by another system"
-```
-
-### `[[constraint]]`
-
-A `[[constraint]]` stanza defines rules for how a [direct dependency](glossary.md#direct-dependency) must be incorporated into the dependency graph. Dep respects these declarations from the current project's `Gopkg.toml`, as well as the `Gopkg.toml` files found in any dependencies.
-
-**Use this for:** having a [direct dependency](FAQ.md#what-is-a-direct-or-transitive-dependency) use a specific branch, version range, revision, or alternate source (such as a fork).
-
-### `[[override]]`
-
-An `[[override]]` stanza differs from a `[[constraint]]` in that it applies to all dependencies, [direct](glossary.md#direct-dependency) and [transitive](glossary.md#transitive-dependency), and supersedes all other `[[constraint]]` declarations for that project. However, only overrides from the current project's `Gopkg.toml` are incorporated.
-
-**Use this for:** Overrides are primarily intended as a way of eliminating disagreements between multiple irreconcilable `[[constraint]]` declarations on a single dependency. However, they will also be your primary recourse if you need to [constrain a transitive dependency's version?](FAQ.md#how-do-i-constrain-a-transitive-dependencys-version)
-
-Overrides should be used cautiously and temporarily, when possible.
-
-### `source`
-
-A `source` rule can specify an alternate location from which the `name`'d project should be retrieved. It is primarily useful for temporarily specifying a fork for a repository.
-
-`source` rules are generally brittle and should only be used when there is no other recourse. Using them to try to circumvent network reachability issues is typically an antipattern.
-
-### Version rules
-
-Version rules can be used in either `[[constraint]]` or `[[override]]` stanzas. There are three types of version rules - `version`, `branch`, and `revision`. At most one of the three types can be specified.
-
-#### `version`
-
-`version` is a property of `constraint`s and `override`s. It is used to specify version constraint of a specific dependency. It can be used to target an arbitrary VCS tag, or a semantic version, or a range of semantic versions.
-
-Specifying semantic version ranges can be done using the following operators:
-
-* `=`: equal
-* `!=`: not equal
-* `>`: greater than
-* `<`: less than
-* `>=`: greater than or equal to
-* `<=`: less than or equal to
-* `-`: literal range. E.g., 1.2 - 1.4.5 is equivalent to >= 1.2, <= 1.4.5
-* `~`: minor range. E.g., ~1.2.3 is equivalent to >= 1.2.3, < 1.3.0
-* `^`: major range. E.g., ^1.2.3 is equivalent to >= 1.2.3, < 2.0.0
-* `[xX*]`: wildcard. E.g., 1.2.x is equivalent to >= 1.2.0, < 1.3.0
-
-You might, for example, include a rule that specifies `version = "=2.0.0"` to pin a dependency to version 2.0.0, or constrain to minor releases with: `version = "~2.1.0"`. Refer to the [semver library](https://github.com/Masterminds/semver) documentation for more info.
-
-**Note**: When you specify a version _without an operator_, `dep` automatically uses the `^` operator by default. `dep ensure` will interpret the given version as the min-boundary of a range, for example:
-
-* `1.2.3` becomes the range `>=1.2.3, <2.0.0`
-* `0.2.3` becomes the range `>=0.2.3, <0.3.0`
-* `0.0.3` becomes the range `>=0.0.3, <0.1.0`
-
-`~` and `=` operators can be used with the versions. When a version is specified without any operator, `dep` automatically adds a caret operator, `^`. The caret operator pins the left-most non-zero digit in the version. For example:
-
-```
-^1.2.3 means 1.2.3 <= X < 2.0.0
-^0.2.3 means 0.2.3 <= X < 0.3.0
-^0.0.3 means 0.0.3 <= X < 0.1.0
-```
-
-To pin a version of direct dependency in manifest, prefix the version with `=`. For example:
-
-```toml
-[[constraint]]
-  name = "github.com/pkg/errors"
-  version = "=0.8.0"
-```
-
-#### `branch`
-
-Using a `branch` constraint will cause dep to use the named branch (e.g., `branch = "master"`) for a particular dependency. The revision at the tip of the branch will be recorded into `Gopkg.lock`, and almost always remain the same until a change is requested, via `dep ensure -update`.
-
-In general, you should prefer semantic versions to branches, when a project has made them available.
-
-#### `revision`
-
-A `revision` is the underlying immutable identifier - like a git commit SHA1. While it is allowed to constrain to a `revision`, doing so is almost always an antipattern.
-
-Usually, folks are inclined to pin to a revision because they feel it will somehow improve their project's reproducibility. That is not a good reason. `Gopkg.lock` provides reproducibility. Only use `revision` if you have a good reason to believe that _no_ other version of that dependency _could_ work.
-
-## Package graph rules: `required` and `ignored`
-
-As part of normal operation, dep analyzes import statements in Go code. These import statements connect packages together, ultimately forming a graph. The `required` and `ignored` rules manipulate that graph, in ways that are roughly dual to each other: `required` adds import paths to the graph, and `ignored` removes them.
-
-### `required`
-
-`required` lists a set of packages (not projects) that must be included in Gopkg.lock. This list is merged with the set of packages imported by the current project.
-
-```toml
-required = ["github.com/user/thing/cmd/thing"]
-```
-
-**Use this for:** linters, generators, and other development tools that
-
-* Are needed by your project
-* Aren't `import`ed by your project, [directly or transitively](FAQ.md#what-is-a-direct-or-transitive-dependency)
-* You don't want to put them in your `GOPATH`, and/or you want to lock the version
-
-Please note that this only pulls in the sources of these dependencies. It does not install or compile them. So, if you need the tool to be installed you should still run the following (manually or from a `Makefile`) after each `dep ensure`:
-
-```bash
-cd vendor/pkg/to/install
-go install .
-```
-
-This only works reliably if this is the only project to install these executables. This is not enough if you want to be able to run a different version of the same executable depending on the project you're working. In that case you have to use a different `GOBIN` for each project, by doing something like this before running the above commands:
-
-```bash
-export GOBIN=$PWD/bin
-export PATH=$GOBIN:$PATH
-```
-
-You might also try [virtualgo](https://github.com/GetStream/vg), which installs dependencies in the `required` list automatically in a project specific `GOBIN`.
-
-### `ignored`
-
-`ignored` lists a set of packages (not projects) that are ignored when dep statically analyzes source code. Ignored packages can be in this project, or in a dependency.
-
-```toml
-ignored = ["github.com/user/project/badpkg"]
-```
-
-Use `*` to define a package prefix to be ignored. This will cause any lexical wildcard match to be ignored, including the literal string prior to the `*`.
-
-```toml
-ignored = ["github.com/user/project/badpkg*"]
-```
-
-**Use this for:** preventing a package, and any of that package's unique dependencies, from being incorporated in `Gopkg.lock`.
-
-## `metadata`
-
-`metadata` can exist at the root as well as under `constraint` and `override` declarations.
-
-`metadata` declarations are ignored by dep and are meant for usage by other independent systems.
-
-The root `metadata` declaration defines information about the project itself, while a `metadata` declaration under a `[[constraint]]` or an `[[override]]` defines metadata about that rule, for the `name`d project.
-
-```toml
-[metadata]
-key1 = "value that convey data to other systems"
-system1-data = "value that is used by a system"
-system2-data = "value that is used by another system"
-```
-
-## `prune`
-
-`prune` defines the global and per-project prune options for dependencies. The options determine which files are discarded when writing the `vendor/` tree.
-
-The following are the current available options:
-
-* `unused-packages` indicates that files from directories that do not appear in the package import graph should be pruned.
-* `non-go` prunes files that are not used by Go.
-* `go-tests` prunes Go test files.
-
-Out of an abundance of caution, dep non-optionally preserves files that may have legal significance.
-
-Pruning options are disabled by default. However, generating a `Gopkg.toml` via `dep init` will add lines to enable `go-tests` and `unused-packages` prune options at the root level.
-
-```toml
-[prune]
-  go-tests = true
-  unused-packages = true
-```
-
-The same prune options can be defined per-project. An additional `name` field is required and, as with `[[constraint]]` and `[[override]]`, should be a [source root](glossary.md#source-root), not just any import path.
-
-```toml
-[prune]
-  non-go = true
-
-  [[prune.project]]
-    name = "github.com/project/name"
-    go-tests = true
-    non-go = false
-```
-
-Almost all projects will be fine without setting any project-specific rules, and enabling the following pruning rules globally:
-
-```toml
-[prune]
-  unused-packages = true
-  go-tests = true
-```
-
-It is usually safe to set `non-go = true`, as well. However, as dep only has a clear model for the role played by Go files, and non-Go files necessarily fall outside that model, there can be no comparable general definition of safety.
-
-## `noverify`
-
-The `noverify` field is a list of [project roots](glossary.md#project-root) to exclude from [vendor verification](glossary.md#vendor-verification).
-
-Dep uses per-project hash digests, computed after pruning and recorded in [Gopkg.lock](Gopkg.lock.md#digest), to determine if the contents of `vendor/` are as expected. If the recorded digest and the hash of the corresponding tree in `vendor/` differ, that project is considered to be out of sync:
-
-* `dep ensure` will regenerate it
-* `dep check` will complain of a hash mismatch and exit 1
-
-It is strongly preferable for almost all workflows that you leave `vendor/` unmodified, in whatever state dep puts it in. However, this isn't always an option. If you have no choice but to modify `vendor/` for a particular project, then add the project root for that project to `noverify`. This will have the following effects:
-
-* `dep ensure` will ignore hash mismatches for the project, and only regenerate it in `vendor/` if absolutely necessary (prune options change, package list changes, version changes)
-* `dep check` will continue to report hash mismatches (albeit with an annotation about `noverify`) for the project, but will no longer exit 1. 
-
-## Scope
-
-`dep` evaluates
-
-* `[[override]]`
-* `required`
-* `ignored`
-
-only in the root project, i.e. the project where `dep` runs. For example, if you have a project: `github.com/urname/goproject`, and `github.com/foo/bar` is a dependency for your project, then dep will evaluate the `Gopkg.toml` files of these projects as follows:
-
-| github.com/urname/goproject | github.com/foo/bar |
-| --------------------------- | ------------------ |
-| [[constraint]] ✔            | [[constraint]] ✔   |
-| [[override]] ✔              | [[override]] ✖     |
-| required ✔                  | required ✖         |
-| ignored ✔                   | ignored ✖          |
-
-✔ : Evaluated
-✖ : Not evaluated
-
-# Example
-
-A sample `Gopkg.toml` with most elements present:
-
-```toml
-required = ["github.com/user/thing/cmd/thing"]
-
-ignored = [
-  "github.com/user/project/pkgX",
-  "bitbucket.org/user/project/pkgA/pkgY"
-]
-
-noverify = ["github.com/something/odd"]
-
-[metadata]
-codename = "foo"
-
-[prune]
-  non-go = true
-
-  [[prune.project]]
-    name = "github.com/project/name"
-    go-tests = true
-    non-go = false
-
-[[constraint]]
-  name = "github.com/user/project"
-  version = "1.0.0"
-
-  [metadata]
-  property1 = "value1"
-  property2 = 10
-
-[[constraint]]
-  name = "github.com/user/project2"
-  branch = "dev"
-  source = "github.com/myfork/project2"
-
-[[override]]
-  name = "github.com/x/y"
-  version = "2.4.0"
-
-  [metadata]
-  propertyX = "valueX"
-```
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyFlat.png b/vendor/github.com/golang/dep/docs/assets/DigbyFlat.png
deleted file mode 100644
index d014debf4cd4e4d32d8a220a2e851f5f4a9bd587..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/DigbyFlat.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyFlat.svg b/vendor/github.com/golang/dep/docs/assets/DigbyFlat.svg
deleted file mode 100644
index ae67f6ca87543f50eebddcc63ef8c7a9ca87cc84..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/assets/DigbyFlat.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 720.07 762.53"><defs><style>.cls-1{fill:#ced8d2}.cls-2{fill:#1d1d1b}.cls-3{fill:#ccbca8}.cls-4{fill:#b7a38d}.cls-5{fill:#b79765}.cls-6{fill:#fff}.cls-7{fill:#d7b89b}.cls-8{opacity:.27}.cls-9{opacity:.51}.cls-10{fill:#e3fbfc}.cls-11{opacity:.39}.cls-12{fill:none;stroke:#1d1d1b;stroke-linecap:round;stroke-linejoin:round;stroke-width:5px}</style></defs><title>BoyeFlat</title><g id="BACKGROUND_OCLOR" data-name="BACKGROUND OCLOR"><path class="cls-1" d="M604,97c102.41,62,170.85,174.54,170.85,303,0,195.53-158.51,354-354,354s-354-158.51-354-354A352.48,352.48,0,0,1,139,185.68l6.95-8.83A356,356,0,0,1,220.64,108Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M774.33,418.17H743a2.5,2.5,0,0,1,0-5h31.33a2.5,2.5,0,0,1,0,5Z" transform="translate(-60.79 2.5)"/></g><g id="COLOR"><path class="cls-3" d="M379.67,631.39l50.88-10.2,110.17-24.29,74.73-16.24-13.42-60L594.42,482H680l66-17.43V289l-50.12-6.6V177.1l-23.14-25.84-5.41-2.66L604,148V12.67L539,0,400,5V32H290L222,46V174.2l-83,2.89V312.74L80,314l-3.72,4.24,1,154.1,1.75,2,57.45,11.84,57.15-.53L343,454.5c-.07,0,4.24,22.37,4.47,23.62l4.68,24.73c1.64,8.67,3.73,18.35,2.53,27.22-.51,3.75-.49,7.66-.68,11.44-.17,3.33-.59,6.81,3.25,7.49,1.29.23,2.84-.51,3.7.5s.4,3.3.62,4.55c.37,2.13,1.11,4.34,1.52,6.52l2.81,14.86,5,26.61,5.49,29s.05.34.06.34Z" transform="translate(-60.79 2.5)"/><polygon class="cls-4" points="134.41 488.2 78.21 488.68 13.87 477.07 16.52 316.5 280.95 315.24 352.71 324.5 352.71 390.84 343.71 391 134.41 488.2"/><polygon class="cls-4" points="355.21 150.5 355.21 297.5 635.1 295.83 635.1 179.59 624.21 167 611.96 153.75 591.85 151.83 355.21 150.5"/><polygon class="cls-4" points="161.71 172.5 161.21 48.46 229.21 34.5 366.21 34.5 366.21 148.95 355.21 150.5 354.38 177.49 227.43 179.46 161.71 172.5"/><path class="cls-5" d="M345.88,628.62a19.34,19.34,0,0,0-3.63,1.85c-2.64,1.58-5.9,2.39-8.78,3.45-3.7,1.36-7.63,3.4-11.49,4.23L304,642l-23,.65-32.85-9.12-7.9,6.43-9.5,4.29-10.13,2L217.74,642l4.69-12.72,8.29-7.88-10.09-12.88-6.8-21.21c-.15-4.54-.28-9.09-.46-13.63-.3-7.38-4.83-1.22-7.93-5.12-2.19-2.75,1.31-8.37,2.14-11.07,1.07-3.46,3.65-6.93,4.39-10.37.4-1.85-.79-3.32-.72-5.08,0-1.19.59-1.75.76-2.79.45-2.78-.62-5.74-.77-8.51a117.36,117.36,0,0,0-1.67-11.85c-.45-2.87-.2-6.63-2.31-8.89-1.73-1.86-4.94-2-6.25-4.25-1.1-1.9.2-3.86,0-6-.46-5.23-3.43-9.56-5.81-14.05l-6.84-12.87-8.25-15.52-7.75-20.06,1.3-22.67L182,391.63l3.62-6.63-6.09-2.31-4.76-8.25-.58-11,2.6-4.53,6.43-3.44,5.21,1.25,9.51,9L222.55,355l38.54-8.5,1-7.65,2.74-5.2,5.88-1,3.44,2.58,4.14,9.6,24,.7,32,5.52L350,363.07l8.4-3.82L373.94,355l11.35.35,4.29,3.65L365.95,378.2l6.22,22,14.59,20.54,7.77,6.22-.82,12.28-.82,3.44L343,454.5c-.52.12,6.72,41.69,7.34,45.53.84,5.22,1.15,10.56,2.18,15.72a45.42,45.42,0,0,1,.49,8.61V535.8c0,3.16-.7,9.73,1.75,12.08,1.49,1.43,2.23-.07,3.76.62,2.49,1.13,3,8.54,3.63,11.14L365,572.22c1.27,5.54,3,11.17,3.86,16.79l6.24,40.78,3.37,3.93,3.22-.31.51,6.09-8.08,3.15c-7.9-3.34-15.36-6.95-21.87-12.71a6,6,0,0,0-1.84-1.28A6.58,6.58,0,0,0,345.88,628.62Z" transform="translate(-60.79 2.5)"/><path class="cls-6" d="M367.71,375s25.05-15.79,25.17-15.79,4.73,6.38,4.73,6.38l6.18,19.06-3.15,14-5.14,6.35-5.92,2.45-5.69-4.41-4.45-2.88.39-7.3L371,391.63Z" transform="translate(-60.79 2.5)"/><polygon class="cls-6" points="268 386.47 240.1 389.87 209.14 394.5 194.94 395.41 192.21 407.55 197.47 425.94 207.9 439.05 220.17 446.08 230.11 448.31 240.1 448.06 252.46 444.82 262.21 437.75 268.24 430.09 273.17 419.72 275.01 407.55 273.81 397.65 268 386.47"/><path class="cls-2" d="M362.47,402.31a4.84,4.84,0,0,0,1.79,1l3.11,1.18a10.32,10.32,0,0,0,3.91.92c2.44-.07,4.46-1.82,6.24-3.49a6,6,0,0,0,2.17-3.23A4.82,4.82,0,0,0,378,394.8c-2.45-2.47-7.94-4.68-11.46-3.35C363.61,392.55,359.91,399.72,362.47,402.31Z" transform="translate(-60.79 2.5)"/><path class="cls-7" d="M355,414.41c.84,3.95,4.6,7.43,8.59,6.85,2.93-.42,5.19-2.74,7.93-3.87,4.64-1.92,9.9-.21,14.92-.33a5,5,0,0,0,2-.35,3.89,3.89,0,0,0,1.84-4.23,10.3,10.3,0,0,0-2.31-4.34q-2.11-2.7-4.46-5.2c-1.22-1.3-3-2.65-4.61-1.88a6.15,6.15,0,0,0-1.74,1.69,7.77,7.77,0,0,1-7,2.48c-3.49-.58-7.21-4.17-10.76-2.09S354.24,410.71,355,414.41Z" transform="translate(-60.79 2.5)"/><g class="cls-8"><path class="cls-6" d="M368.81,388.34l-1.1-23.69s8.48-17.33,8.09-18,6.68-6.06,6.68-6.06l13-1,8.29,1.85,9.82,12.28,7.21,15.07L424.21,386l-4.71,21.73-6.39,11.59-8.61,4.11L390.36,422l-5.08-3.31,3.67-3.79v-5.42l-4-6.79-5.56-2.47-1.51-7.57Z" transform="translate(-60.79 2.5)"/></g><g class="cls-8"><polygon class="cls-6" points="226.66 366.6 237.24 361.46 250.18 361.46 265.7 366.6 279.96 384.01 285.01 395.42 287.35 407.55 286.4 422.15 279.23 440.12 268 452.2 253.91 456.94 235.27 454.47 220.17 446.08 208.28 425.94 205.61 398.57 213.7 378.9 226.66 366.6"/></g><g class="cls-9"><path class="cls-6" d="M409,439.75c2.36,4.34,2.22,12.12,2.69,17.5.09,1.06-.14,3.22.56,4,1.48,1.65,1-.36,2.56-.69.63-.14,1.51.46,1.75.39.58-.16,1.31-1.06,1.76-1.16,1.15-.24,3,.52,4.19,0,.76-.35,1-1.35,1.69-1.59.86-.31,1.44.2,2.31.08,1.47-.21,4-2,4.8-.05,1.43.12,1.21-1.24,2.15-1.49.72-.19,1.17.59,1.7.51.9-.12,3.54-.38,4.45-1,2.39-1.52,1-8.77.9-11.83A110.37,110.37,0,0,0,439,431.52c-2.13,0-4.39,1.84-6.54,2.33-5.92,1.36-12,1.57-17.91,3.15" transform="translate(-60.79 2.5)"/></g><g class="cls-9"><path class="cls-6" d="M536.5,417c-1.36,2.71.54,8.93,1.31,12,.62,2.48,1.22,5,1.73,7.46,1.31-.76,1.41-1.43,3-1.49a14.4,14.4,0,0,0,1.74.77c1.14.13,1.75-.4,2.77-.56,1.84-.29,4.55-.88,6.77-.28-2.06-4.24-3-8.94-3.79-13.6-.18-1,.13-3.81-.67-4.58C547.82,415.29,542.06,417.06,536.5,417Z" transform="translate(-60.79 2.5)"/></g><g class="cls-9"><path class="cls-6" d="M547.25,294.25c0,9.83-1.48,19.55-1.25,29.38,0,1-.43,3.13,0,4,1.14,2.17,1,.14,2.53.12s2.27,1.32,4.2,1.26c1.21,0,2.66-.62,4-.76,3.52-.36,8.43.88,11.46,2.23.67-11.62-.15-23.39-.24-34.95-.89,0-1.82,0-2.72,0" transform="translate(-60.79 2.5)"/></g><g class="cls-9"><path class="cls-6" d="M374.75,251c-.19,4,.75,8,.75,12,0,3.31-.18,6.68,0,10,.21,3.74.35,7.47.54,11.21,1.38.2,3.73-1.36,4.73-1,1.66.62.39,3.52,2.47,3.79,1.05.14,1.18-1.19,2-1.3s1.31.73,2,.73,1.89-.48,2.52-.4,1.11.91,1.41.91c4.59,0,3.49-6.39,3.58-10.1.13-5.21,1.23-10.28,1.25-15.49,0-1.39.84-6.83-.05-7.82-.59-.65-1.81-.24-2.59-.25-4.44,0-8.91.19-13.36.19" transform="translate(-60.79 2.5)"/></g><g class="cls-9"><path class="cls-6" d="M106.25,316.25c-1.22.56-1,9.29-1,11.36,0,3.62.17,7.29,0,10.9-.18,4,.39,8.06.28,12,1.35-.75,2.9-3.06,4.67-2.25.54.25.24,1.64,1,1.93.91.36,1.25-.45,2.07-.48,1.63-.05,2.85.13,4.37-.9,2.49-1.67,1.66-4,1.38-7a76.43,76.43,0,0,1,.5-16.47c.16-1.27,1.52-4.07.75-5.3-1.56-2.48-7.92.65-10.25-1.75" transform="translate(-60.79 2.5)"/></g><g class="cls-9"><path class="cls-6" d="M164.25,177.75c-1.19,3.13-.24,7.9-.49,11.31a68.35,68.35,0,0,0,.46,11.07c.29,3.43-.16,7.73,1.25,10.84,1-.46,1.46-1.42,2.82-1.47.78,0,2,.77,2.82,1,2.6.78,4.87,1.11,5.37-1.72,1.86-10.4-1.63-22.08,1-32.28" transform="translate(-60.79 2.5)"/></g><g class="cls-9"><path class="cls-6" d="M314.75,177.5c0,7.1,1,13.7,1.73,20.63.29,2.92-.35,7.68,1,10.32,1.16,2.23.77.49,2.85-.06,2.62-.7,1.29.93,3.27,1.47.61.17,2.79-.54,3.55-.66a40.06,40.06,0,0,0,4.08-.44c.39-.1,2-.76,2.13-.74.87.11,1.12.85,1.65,1,1.47.41,3.44.31,4.72,1.27,2.09-1.86,1.25-6.75,1.25-9.29a111.45,111.45,0,0,1,.28-11.35c.43-4.23,2.08-8.41,2-12.67,0,.13-.45.23-.75.54" transform="translate(-60.79 2.5)"/></g><path class="cls-6" d="M638.75,149.5c0,7.67-.1,15.3-.27,22.94.64-1.54,2.45-3.17,4.22-2.9.54,3.11,1,3.66,3.49,1.74,1.22,3.69,3.36-.27,4.8-1s3.29.33,4.75,0c2-.47,2.21-2.73,2.48-4.73.72-5.42,1.62-10.88,2.52-16.27" transform="translate(-60.79 2.5)"/><g class="cls-9"><path class="cls-6" d="M565.25,4.5c-1.2,3.83-.25,9.22-.25,13.24s-.2,8.22.13,12.26c.34,4.2,1,8.33,1.41,12.49.65-.46,1.79-2.75,2.71-2.77.62,0,1.28,1.34,2,1.55-.51-.15,2.6-.36,2.12-.27.58-.11,1.29.45,2.08-.47,0,.81.59,1.27.81,1.76a1.44,1.44,0,0,1,1.94-.08c1.62-2.72,1.09-7.6,1.24-10.71s.35-6.07.57-9.07c.26-3.51-1.82-10.46-.26-13.18" transform="translate(-60.79 2.5)"/></g><g class="cls-9"><path class="cls-6" d="M344,32c-.48,1,.06,2.92,0,4.3-.19,2.38-1.19,4.66-1.53,7-.46,3.24-.18,6.66-.18,9.93,0,4-.57,8.72.5,12.48,1.9-1.32,4.18-5.76,6.51-6,.23.57.47,2.78,1.23,3,1.51.34,1.67-2.51,2.77-2.78,1.7-.43,1.94,2.07,3.94.33,1,2.63,1.73,0,3-.48s2.08.81,3.71-.52c.4,1.15,1.06,2.27,2.23,2.45,1.38-2.07,1.35-4.43,1.62-6.86.37-3.41,1.16-6.53,1.19-10,0-4.25-.05-8.71,1.25-12.62" transform="translate(-60.79 2.5)"/></g><g class="cls-9"><path class="cls-6" d="M247.5,41.25c-.35,3.5,1.76,7.33,2.25,10.81.25,1.81.14,4,1.25,5.48,1.82-3,4.84,1.18,5.79-1,6.84,1.07,2.63-13.17,5-16.54" transform="translate(-60.79 2.5)"/></g><g class="cls-9"><path class="cls-6" d="M709.67,295.33c2.33,3.49,2,11.62,2,16a48.19,48.19,0,0,1-1.63,14c1.82-1.77,2.28-.66,4.27-.64,1.46,0,2.63.09,4.2,0,4.21-.25,4.85.8,4.83-4.4,0-9,1.83-19.42,1.67-27.6" transform="translate(-60.79 2.5)"/></g><path class="cls-5" d="M372.5,517.5c-1,0-4.6-.61-5.25-.27-1.44.77-.83,5.27-1.06,7.08a86.53,86.53,0,0,0-.65,15.65c3.48.21,7.31-1.35,10.34-2.82,2.46-1.19,7-2.37,8.37-5,1.23-2.26-.15-5.42-1.3-7.43C380.22,520,375.95,520.66,372.5,517.5Z" transform="translate(-60.79 2.5)"/><path class="cls-6" d="M364,513.75c-1.64,0-3.47.25-5-.4-1-.43-1.89-2-2.87-2.21-2.63-.57-3.64,4.44-3.93,6.55-.65,4.7,0,9.78-.21,14.56-.18,3.54-.83,7.5-.49,11,.27,2.77,5.17,7.86,7,3.79,2.07,0,2.24,1.42,4.13-.47,2.36-2.36,2.43-8.28,2.58-11.46A89.06,89.06,0,0,0,364,513.75Z" transform="translate(-60.79 2.5)"/><path class="cls-6" d="M346.75,488.75c-4.43-.36-9,1.44-13.25,2.5s-8.35,2.19-12.6,2.12a119.23,119.23,0,0,0-14.92.71c-9.72,1-19.31,3-29,4.43-8,1.18-16.07.42-24.15.8a160.73,160.73,0,0,1-21.67-.3c-3.36-.3-6.5-1.24-9.81-1.71s-7.16.62-10.52,0c-2.57-.5-10.5-4.42-12.24-.89-1.1,2.24,1.65,9,3.37,10.62,1.91,1.8,3.77,2.19,5.08,4.74s1.34,5.38,2.05,8a61.06,61.06,0,0,1,2,12c.21,3.07-.48,6-.26,9,.41,5.51-1.6,10.3-2.13,15.74-.27,2.81-1.92,4.91-2.43,7.58-.45,2.35-1.55,4.24.74,5.47,1.78,1,4.4.33,6.33.6,4.14.59,8.24,1.38,12.37,2.18,10.84,2.11,23,2.42,34,1.95a173.24,173.24,0,0,1,25.22.5c7.15.72,14.39,1.51,21.56,1.87s13.5.73,20.7-.13c4.43-.53,8.73-1,13.2-1.3,3.77-.21,7.17-.5,10.6-2,2.85-1.28,10.28-3.3,11-6.25.81-3.33-1.57-7.8-2-11.1-.3-2.5-.36-4.25-1.34-6.51-5.43.15-6.21-5.74-6.47-10.28-.19-3.35,1.7-6.78,2.08-10.14a70.7,70.7,0,0,0,.18-8.57c-.06-4.81-1.46-9.9-2.56-14.55-.51-2.15-4.41-14.24-4.69-14.24" transform="translate(-60.79 2.5)"/><path class="cls-6" d="M367.67,422.33c-.24-.33.24-.54-.26-.66-.48,7.73,6.38,11.62,12.85,8.57,5.41-2.54,7.2-11,.74-12.92A11.57,11.57,0,0,0,367.67,422.33Z" transform="translate(-60.79 2.5)"/><path class="cls-10" d="M231,391.5c-3,2.57-14.36,15.14-8,18.65C227.9,412.85,231.23,401.12,231,391.5Z" transform="translate(-60.79 2.5)"/><path class="cls-10" d="M230.5,419c-3.25,2.7-10.29,24.24-2.73,21.27C233.1,438.17,229.89,425.67,230.5,419Z" transform="translate(-60.79 2.5)"/></g><g id="DETAILS"><path class="cls-2" d="M391.56,572.73a1,1,0,0,1-.25-2l33.32-8.69a1,1,0,0,1,.5,1.94l-33.32,8.69A1,1,0,0,1,391.56,572.73Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M398.8,603.88a1,1,0,0,1-.93-.63c-4.16-10.56-5.82-20.87-7.3-31.38a1,1,0,1,1,2-.28c1.46,10.39,3.1,20.57,7.18,30.93a1,1,0,0,1-.93,1.37Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M398.8,603.88a1,1,0,0,1-.24-2c11.3-2.76,24.26-5.85,34.69-7.87a1,1,0,1,1,.38,2c-10.39,2-23.32,5.09-34.6,7.85A1,1,0,0,1,398.8,603.88Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M433.44,596a1,1,0,0,1-.92-.61c-2.65-6.23-4.23-13.44-5.76-20.4-.92-4.17-1.78-8.11-2.84-11.69a1,1,0,0,1,1.92-.57c1.08,3.65,2,7.62,2.87,11.83,1.51,6.88,3.07,14,5.65,20a1,1,0,0,1-.92,1.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M430.55,564.05a1,1,0,0,1-.25-2l33.32-8.69a1,1,0,0,1,.5,1.94L430.8,564A1,1,0,0,1,430.55,564.05Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M437.79,595.21a1,1,0,0,1-.93-.63c-4.16-10.56-5.82-20.87-7.3-31.38a1,1,0,1,1,2-.28c1.46,10.39,3.11,20.57,7.18,30.93a1,1,0,0,1-.93,1.37Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M437.79,595.21a1,1,0,0,1-.24-2c11.3-2.76,24.26-5.85,34.69-7.87a1,1,0,1,1,.38,2c-10.39,2-23.32,5.09-34.6,7.85A1,1,0,0,1,437.79,595.21Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M472.43,587.35a1,1,0,0,1-.92-.61c-2.65-6.23-4.24-13.44-5.76-20.4-.92-4.17-1.78-8.11-2.84-11.69a1,1,0,0,1,1.92-.57c1.08,3.65,1.95,7.62,2.87,11.83,1.51,6.88,3.07,14,5.65,20a1,1,0,0,1-.92,1.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M469.54,555.13a1,1,0,0,1-.25-2l33.32-8.69a1,1,0,1,1,.5,1.94l-33.32,8.69A1,1,0,0,1,469.54,555.13Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M476.78,586.28a1,1,0,0,1-.93-.63c-4.16-10.56-5.82-20.87-7.3-31.38a1,1,0,1,1,2-.28c1.46,10.39,3.11,20.57,7.18,30.93a1,1,0,0,1-.93,1.37Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M476.78,586.28a1,1,0,0,1-.24-2c11.31-2.76,24.27-5.86,34.69-7.87a1,1,0,0,1,.38,2c-10.38,2-23.31,5.09-34.6,7.85A1,1,0,0,1,476.78,586.28Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M511.42,578.43a1,1,0,0,1-.92-.61c-2.65-6.23-4.23-13.44-5.76-20.4-.92-4.17-1.78-8.11-2.84-11.69a1,1,0,1,1,1.92-.57c1.08,3.65,1.95,7.62,2.87,11.83,1.51,6.88,3.07,14,5.65,20a1,1,0,0,1-.92,1.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M411,594.15a1,1,0,0,1-1-.75,147.58,147.58,0,0,1-3-14.59,1,1,0,0,1,2-.3,146,146,0,0,0,2.94,14.39,1,1,0,0,1-1,1.25Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M404.8,579.33a.31.31,0,0,0,0,.19c0,.18.32.13.49,0a15.4,15.4,0,0,1,5.9-1.86,13.93,13.93,0,0,1-2.23-2.31c-.38-.46-1.53-2.3-2.17-2.28-.82,0-.82,2.22-.95,2.8A23.77,23.77,0,0,1,404.8,579.33Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M417.37,592.77a1,1,0,0,1-1-.75,147.58,147.58,0,0,1-3-14.59,1,1,0,0,1,2-.3,146,146,0,0,0,2.94,14.39,1,1,0,0,1-1,1.25Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M411.2,578a.31.31,0,0,0,0,.19c0,.18.32.13.49,0a15.4,15.4,0,0,1,5.9-1.86,13.93,13.93,0,0,1-2.23-2.31c-.38-.46-1.53-2.3-2.17-2.28-.82,0-.82,2.22-.95,2.8A23.77,23.77,0,0,1,411.2,578Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M408.18,597.66a1,1,0,0,1-.14-2,113.17,113.17,0,0,0,12.62-2.59,1,1,0,0,1,.51,1.93,115.38,115.38,0,0,1-12.84,2.63Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M455.14,587.53l-.29,0a3,3,0,0,1-2.33-2.1,16.6,16.6,0,0,1-.68-2l-2.24-7.76a1,1,0,1,1,1.92-.55l2.24,7.76a14.83,14.83,0,0,0,.59,1.77c.22.52.52.88.75.91a.8.8,0,0,0,.62-.44,4.3,4.3,0,0,0,.38-1.52,1,1,0,0,1,2,.26,6,6,0,0,1-.64,2.26A2.74,2.74,0,0,1,455.14,587.53Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M443.83,577.65a1.81,1.81,0,0,1-1.5-.64c-.86-1.07,0-2.7.28-3.23a9.06,9.06,0,0,1,5.24-4.79,13.43,13.43,0,0,1,5.21-.59,7.57,7.57,0,0,1,4.56,1.92c.75.55,2.14,1.58,2.24,3.18a1,1,0,0,1-.77,1c-3.13.75-6.31,1.44-9.45,2.06-.59.12-1.19.21-1.79.31a28,28,0,0,0-2.87.56A4.39,4.39,0,0,1,443.83,577.65Zm8.13-7.28a10.64,10.64,0,0,0-3.46.52,7.11,7.11,0,0,0-4.12,3.83,4.21,4.21,0,0,0-.38.92,3.18,3.18,0,0,0,.45-.09,29.36,29.36,0,0,1,3.08-.61c.58-.09,1.15-.18,1.72-.3,2.74-.54,5.51-1.14,8.25-1.78a6.36,6.36,0,0,0-1.07-.93,5.68,5.68,0,0,0-3.49-1.53Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M449.68,569.86a1,1,0,0,1-.95-.68l-.65-1.95a1,1,0,1,1,1.89-.64l.66,2a1,1,0,0,1-.95,1.32Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M487.63,569.34a7.54,7.54,0,0,1-2.89-.62,4.08,4.08,0,0,1-1.66-1.15,4.62,4.62,0,0,1-.81-2l-1.89-9.07a1,1,0,0,1,2-.41l1.89,9.07a3,3,0,0,0,.41,1.2,2.27,2.27,0,0,0,.87.55,5.12,5.12,0,0,0,2.67.42,2.93,2.93,0,0,0,2-1.2c.79-1.21.35-3-.12-4.65L488.21,555a1,1,0,0,1,1.92-.56l1.89,6.42c.6,2,1.14,4.39-.12,6.31a4.88,4.88,0,0,1-3.42,2.08A5.85,5.85,0,0,1,487.63,569.34Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M481.41,557a1,1,0,0,1-.38-1.93,10,10,0,0,1,2.29-.55l5.71-.89a1,1,0,1,1,.31,2l-5.71.89a8.28,8.28,0,0,0-1.84.43A1,1,0,0,1,481.41,557Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M490.11,579a1,1,0,0,1-1-.73c-.84-3-1.53-6.16-2.07-9.27a1,1,0,0,1,2-.34c.53,3,1.21,6.1,2,9.07a1,1,0,0,1-1,1.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M486.73,580.72a1,1,0,0,1-.4-1.92,11.07,11.07,0,0,1,2.91-.69l.95-.14a13.12,13.12,0,0,0,2.83-.84,1,1,0,1,1,.78,1.84,15.09,15.09,0,0,1-3.26,1l-1,.16a9.4,9.4,0,0,0-2.39.54A1,1,0,0,1,486.73,580.72Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M539.23,438.62h-.05a1,1,0,0,1-.92-.76,100.06,100.06,0,0,1-2.75-19.47,1,1,0,1,1,2-.08,98.07,98.07,0,0,0,2.08,16.38q.29-.45.62-.87a1,1,0,0,1,1.55,0,3,3,0,0,0,1.45,1.13.67.67,0,0,0,.6-.23,1,1,0,0,1,1.91-.48.66.66,0,0,0,.78.29,2.38,2.38,0,0,0,.25-.15,2.75,2.75,0,0,1,1-.43,2.79,2.79,0,0,1,1.72.3l.35.14h.05a1,1,0,0,1,1.57-.38,4,4,0,0,0,1.15.68c-1.13-6.06-2.51-12.14-4.09-18.09a1,1,0,1,1,1.93-.51c1.72,6.47,3.2,13.1,4.39,19.69a1,1,0,0,1-.23.83.94.94,0,0,1-.79.34,6.06,6.06,0,0,1-2.82-.83,2.28,2.28,0,0,1-1.79.15c-.17-.06-.34-.13-.52-.2a2,2,0,0,0-.52-.18,1.72,1.72,0,0,0-.28.16,4.4,4.4,0,0,1-.47.27,2.6,2.6,0,0,1-2,.06l-.29-.12,0,0a2.66,2.66,0,0,1-2.24.61,3.67,3.67,0,0,1-1.69-.87,10.64,10.64,0,0,0-.95,2A1,1,0,0,1,539.23,438.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M413.45,463.26a1,1,0,0,1-.8-.4c-1.36-1.8-1.36-4.11-1.36-6.14v-.54a34.58,34.58,0,0,0-3.39-14.73,1,1,0,1,1,1.8-.87,36.62,36.62,0,0,1,3.59,15.59v.55a13.41,13.41,0,0,0,.31,3.6l.66-.92a1,1,0,0,1,1.67.06.37.37,0,0,0,.31.11.38.38,0,0,0,.31-.12l.07-.15a2.15,2.15,0,0,1,.55-.8c1.06-.91,2.17-.05,2.7.36a3.14,3.14,0,0,0,.62.41.21.21,0,0,0,.19,0,3,3,0,0,0,1-1.69,1,1,0,0,1,1.81-.24,2,2,0,0,0,3.34-.39,1,1,0,0,1,1.69-.34,3.62,3.62,0,0,0,2.06,1.31.43.43,0,0,0,.31-.13,2.09,2.09,0,0,0,.27-.51,4.56,4.56,0,0,1,.43-.81,2.72,2.72,0,0,1,2.6-1.06,3,3,0,0,1,1.39.55l.45-.45a1,1,0,0,1,1.59.25.43.43,0,0,0,.78-.35,1,1,0,0,1,1.77-.91,2.4,2.4,0,0,0,.38.45l-1.72-21.17a1,1,0,0,1,2-.16l1.86,22.86a1,1,0,0,1-1.15,1.07A4.46,4.46,0,0,1,440,457a2.36,2.36,0,0,1-.95.8,2.48,2.48,0,0,1-2.26-.15l-.54.54a1,1,0,0,1-1.64-.35.78.78,0,0,0-.64-.4.79.79,0,0,0-.72.23,3,3,0,0,0-.23.46,3.62,3.62,0,0,1-.64,1.07,2.39,2.39,0,0,1-1.79.77,4.43,4.43,0,0,1-2.59-1.09,4,4,0,0,1-2.48,1.18,4.09,4.09,0,0,1-2.49-.47,3.7,3.7,0,0,1-1.47,1.51,2.18,2.18,0,0,1-1.77.1,4.43,4.43,0,0,1-1.15-.7l-.26-.2-.09.18a2.34,2.34,0,0,1-2,1.14,2.22,2.22,0,0,1-1-.18l-1,1.45a1,1,0,0,1-.8.42Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M568,334.05a2,2,0,0,1-1.63-.84q-.62-.86-1.14-1.78a2.62,2.62,0,0,1-1.57.53,3.26,3.26,0,0,1-2.43-1.15l-.8-.81a3.77,3.77,0,0,1-4.27.95,4,4,0,0,1-1.4-1.09l-.28.46a2.83,2.83,0,0,1-4.34.92l-1.78-1.15a13.94,13.94,0,0,1-1.61,1.75,2,2,0,0,1-3.34-1.73,114.37,114.37,0,0,0,.86-19.86c0-.71-.07-1.42-.11-2.13a46.28,46.28,0,0,1,.41-11.9,2,2,0,0,1,3.92.81,42.57,42.57,0,0,0-.33,10.87c0,.72.08,1.45.11,2.17a118.36,118.36,0,0,1-.32,15.26,2,2,0,0,1,.92.31l2.7,1.75,1.05-1.76a2,2,0,0,1,1.89-1,4,4,0,0,1,3,2.11l.21.31a4.35,4.35,0,0,0,.77-1.08,2,2,0,0,1,3.2-.48l1.59,1.62a2.92,2.92,0,0,1,2.11-1.48,2,2,0,0,1,1.14.17c.08-3.24-.09-6.52-.25-9.73-.35-7-.71-14.15,1.29-21.07a2,2,0,1,1,3.84,1.11c-1.81,6.28-1.48,12.83-1.13,19.77.27,5.39.55,11-.26,16.43a2,2,0,0,1-2,1.71Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M723.53,328.85a2,2,0,0,1-1.7-.94h0a3.37,3.37,0,0,1-1.62.17,3.55,3.55,0,0,1-1.3-.46,2,2,0,0,1-1.19.4,2,2,0,0,1-1.59-.77,4.51,4.51,0,0,0-1.65-1.3,8.46,8.46,0,0,1-2.29,2.39,2,2,0,0,1-3.14-1.52,48.11,48.11,0,0,1,.34-7.82c.06-.61.12-1.22.17-1.83a90.75,90.75,0,0,0-.81-22.43,2,2,0,0,1,3.95-.64,94.8,94.8,0,0,1,.84,23.42c-.06.62-.12,1.25-.18,1.87s-.15,1.48-.21,2.21a2,2,0,0,1,.52,0,8.49,8.49,0,0,1,3.76,1.46,3.43,3.43,0,0,0,4.1-.29h0c.07-9.84.45-19.76,1.14-29.55a2,2,0,0,1,4,.28c-.78,11.06-1.17,22.29-1.15,33.37a2,2,0,0,1-2,2Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M637.16,177a2,2,0,0,1-2-2.4,143.33,143.33,0,0,0,2.81-24,2,2,0,0,1,4,.13,147.05,147.05,0,0,1-1.22,14.67,2.79,2.79,0,0,1,2.14,1.26l1.59,2.13a3.5,3.5,0,0,1,.5-.66,3.06,3.06,0,0,1,4.17-.17l.15-.26a2,2,0,0,1,1.79-1,2,2,0,0,1,1.73,1.1q.29.58.56,1.17l1.26-1.74a2.6,2.6,0,0,1,2.63-1.2,63.58,63.58,0,0,0,2.49-16.74,2,2,0,0,1,2-2h0a2,2,0,0,1,2,2,67.58,67.58,0,0,1-4,22,2,2,0,0,1-2,1.32,2,2,0,0,1-1.54-.82l-1.84,2.54a3.31,3.31,0,0,0-4.89.84,2,2,0,0,1-1.91-.57l-.1-.11a3.58,3.58,0,0,1-.21.34,2,2,0,0,1-1.61.85,2.09,2.09,0,0,1-1.63-.81l-3-4.05L639,175.74A2,2,0,0,1,637.16,177Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M578.34,48.08a2,2,0,0,1-1-.25,5.11,5.11,0,0,1-2.11-2.27,3,3,0,0,1-1.94-.21,3.58,3.58,0,0,1-1.52-1.43,2,2,0,0,1-3.17-.08L568,43a18.65,18.65,0,0,0-.65,2.92,2,2,0,0,1-4-.28q0-18.63,0-37.26a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2q0,14.29,0,28.57h0a2,2,0,0,1,1.76.82l.71,1q.19-.25.41-.48a2,2,0,0,1,3.22.4l1,1.85a2,2,0,0,1,1.76-1.37c-.05-9.67.38-19.39,1.28-29a2,2,0,1,1,4,.38A288.91,288.91,0,0,0,580.34,46a2,2,0,0,1-2,2.06Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M341.35,72.24a2,2,0,0,1-2-2.07c.46-12.23,1.44-24.6,2.91-36.75a2,2,0,1,1,4,.48c-1,8.09-1.74,16.27-2.27,24.44a2,2,0,0,1,2.25-.33,11,11,0,0,1,2.36,1.58l.3-.64a2,2,0,0,1,3.7.19l.48,1.37a3.47,3.47,0,0,1,2.3-1.8,2,2,0,0,1,1.66.4l.16.15.08-.15a2,2,0,0,1,2.43-.89q.18-.64.32-1.28a2,2,0,0,1,3.93.11q0,.25.09.51a2,2,0,0,1,2-1.12l2.38-24.32a2,2,0,0,1,4,.39l-3.12,31.83a2,2,0,0,1-3.57,1,8.93,8.93,0,0,1-.56-.81,2,2,0,0,1-3-.59l-.26-.48q-.31.63-.65,1.25a9.33,9.33,0,0,0-4.17,1,2,2,0,0,1-1.71-.68l-.2-.24a3.67,3.67,0,0,1-1.7,1.06,2.83,2.83,0,0,1-2.46-.47,2.94,2.94,0,0,1-.64-.68,2,2,0,0,1-3.08-.44,6.92,6.92,0,0,0-.75-1,31,31,0,0,1-3.55,8A2,2,0,0,1,341.35,72.24Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M250.94,60a2,2,0,0,1-2-1.71L246.6,42.31a2,2,0,1,1,4-.58L252,51.65a2,2,0,0,1,1.31.75l.35.44a2,2,0,0,1,2.52.09,3.33,3.33,0,0,1,.47.5,2.46,2.46,0,0,1,.74-.33,2,2,0,0,1,1,0,2,2,0,0,1,1.21-.66c.05-4.25.07-8.52,0-12.75a2,2,0,0,1,2-2,2,2,0,0,1,2,2c0,5.9,0,11.88-.12,17.78a2,2,0,0,1-3,1.67,5.14,5.14,0,0,1-.61-.43,2,2,0,0,1-2.39-.14,2.66,2.66,0,0,1-1.36.08A3.1,3.1,0,0,1,255,58.1a2,2,0,0,1-1.1.3,2,2,0,0,1-1-.27,2,2,0,0,1-1.82,1.81Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M340.36,215.29h-.1a2,2,0,0,1-1.83-1.51c0-.09-.06-.22-.1-.37a2,2,0,0,1-2.54-.55,5.77,5.77,0,0,1-.38-.57,1.5,1.5,0,0,0-2,.7,2.42,2.42,0,0,1-2.31-1.24,3.3,3.3,0,0,1-.73.66,3.23,3.23,0,0,1-2.57.42,3.9,3.9,0,0,1-1.72-.94L326,212a7.25,7.25,0,0,0-3.9.33,2,2,0,0,1-1.52-.63q-.69-.73-1.3-1.52l-.78,1.1a2,2,0,0,1-3.63-1,286.61,286.61,0,0,1-.45-32.05,2,2,0,0,1,2.08-1.91,2,2,0,0,1,1.91,2.08c-.37,8.76-.33,17.62.13,26.4a2,2,0,0,1,2.54.87q.33.6.71,1.16a13.67,13.67,0,0,0,5.52-1.38,2,2,0,0,1,1.48,2v.13a3.09,3.09,0,0,1,3.68-1.4,2.81,2.81,0,0,1,.86.51l.5-1a2,2,0,0,1,3.78.82l0,.35a2,2,0,0,1,1,2,3.47,3.47,0,0,1,.74.11,50.87,50.87,0,0,0,.36-7.37v-.84a208.41,208.41,0,0,1,1.46-24.08,2,2,0,1,1,4,.47,204.43,204.43,0,0,0-1.43,23.61v.84c0,4.07,0,8.28-1.47,12.29A2,2,0,0,1,340.36,215.29Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M388.18,290.76a2.88,2.88,0,0,1-2.64-1.93,2,2,0,0,1-2.78-.7l-.18.21a2,2,0,0,1-3.18-.19q-.27-.4-.56-.78a16.48,16.48,0,0,0-.57,1.72,2,2,0,0,1-3.93-.47l-1-34.89a2,2,0,1,1,4-.12l.84,28.28a2,2,0,0,1,1.56.52q.68.62,1.29,1.31.2-.34.38-.69A2,2,0,0,1,383.1,282a2,2,0,0,1,1.77,1l.06.11a2,2,0,0,1,3.53.81l.19.87.92-1.57a2,2,0,0,1,3.72.89q0,.2,0,.39l.06,0c1.1-7.19,2-14.54,1.41-21.78,0-.57-.1-1.13-.16-1.7a28.16,28.16,0,0,1,0-7.76,2,2,0,1,1,3.94.7,24.78,24.78,0,0,0,.07,6.67c.06.59.12,1.18.16,1.76.73,8.92-.66,17.76-2,26.32a4,4,0,0,1-6.32.89,2.86,2.86,0,0,1-1.82,1.19A2.66,2.66,0,0,1,388.18,290.76Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M176,215.44a2,2,0,0,1-1.12-.34,8,8,0,0,1-1.65-1.5l-.06.07a2,2,0,0,1-3,.23q-.18-.17-.35-.36a2,2,0,0,1-2.12-.32q-.42-.37-.82-.77l0,.15a2,2,0,0,1-3.94-.14,198.32,198.32,0,0,1-1.3-35.58,2,2,0,1,1,4,.21,194.37,194.37,0,0,0,.65,29.33h.13a2,2,0,0,1,1.72,1,10,10,0,0,0,.56.9l.19-.32a2,2,0,0,1,3.55.21,2,2,0,0,1,2.92.93,2,2,0,0,1,.22-.25,104.51,104.51,0,0,0-.31-12.64c-.42-6.48-.85-13.19.58-19.75a2,2,0,1,1,3.91.85c-1.31,6-.92,12.15-.5,18.64a89.68,89.68,0,0,1,.08,15.77,2,2,0,0,1-1.27,1.64l-.2.61a2,2,0,0,1-1.9,1.38Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M105.57,354.11a2,2,0,0,1-2-2.32,82.63,82.63,0,0,0,.84-19.26c-.09-1.22-.21-2.43-.32-3.65a61.71,61.71,0,0,1-.39-10.8,2,2,0,1,1,4,.32,57.8,57.8,0,0,0,.39,10.1c.12,1.25.24,2.49.33,3.74a86.64,86.64,0,0,1,0,13.21l.17.05a2,2,0,0,1,1.25,1.26,2,2,0,0,1,3.41-.55,2,2,0,0,1,2.72-.39c-.92-8.6.7-17.35,2.13-25.16a2,2,0,0,1,3.93.72c-1.59,8.64-3.24,17.58-1.78,26.27.41,2.42-.13,4.09-1.6,4.95a2,2,0,0,1-2.71-.67,2,2,0,0,1-1.35-.21,2,2,0,0,1-2.37-.24l-.42-.4a3.82,3.82,0,0,1-2.09.58,3.71,3.71,0,0,1-1.5-.36l-.84,1.69A2,2,0,0,1,105.57,354.11Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M312.16,134.92a.81.81,0,0,1,0-1.62L340,133a.83.83,0,0,1,.82.8.81.81,0,0,1-.8.82l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M311.72,160.82a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.55.44-26.09a.81.81,0,0,1,1.61.17c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M340.48,161.46h0c-8.56-.47-19.33-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M340.48,161.46a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,1.62-.07c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M344.5,135.77a.81.81,0,0,1,0-1.62l27.89-.27a.81.81,0,1,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M344.06,161.67a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.81.81,0,0,1,1.61.17c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M372.82,162.31h0c-8.55-.47-19.32-.58-28.72-.64a.81.81,0,0,1-.81-.81.8.8,0,0,1,.81-.81c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M372.82,162.31a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.8.8,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M376.88,136.43a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M376.44,162.33a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.55.44-26.09a.81.81,0,1,1,1.61.17c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M405.21,163h0c-8.57-.47-19.33-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.41.05,20.2.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M405.21,163a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.84.84,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M323.19,155.57a.81.81,0,0,1-.81-.8,119.45,119.45,0,0,1,.53-12,.81.81,0,1,1,1.61.15,117.78,117.78,0,0,0-.52,11.88.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M321.06,142.69a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,321.06,142.69Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M328.49,155.74a.81.81,0,0,1-.81-.8,119.74,119.74,0,0,1,.53-12,.81.81,0,1,1,1.61.15,118.08,118.08,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M326.36,142.86a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,326.36,142.86Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M359.46,159.08a1.87,1.87,0,0,1-.68-.13,2.44,2.44,0,0,1-1.42-2.11,13.4,13.4,0,0,1-.14-1.71L357,148.6a.81.81,0,1,1,1.62-.06l.24,6.54a12,12,0,0,0,.12,1.51c.07.45.23.79.41.86a.65.65,0,0,0,.57-.23,3.52,3.52,0,0,0,.6-1.12.81.81,0,1,1,1.5.6,4.84,4.84,0,0,1-.94,1.65A2.32,2.32,0,0,1,359.46,159.08Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M364.67,149.6h0c-2.6,0-5.24-.11-7.83-.24-.48,0-1-.07-1.46-.11a22.82,22.82,0,0,0-2.37-.12c-1,0-1.7-.28-2-.89-.46-1,.53-2.12.86-2.48a7.33,7.33,0,0,1,5.06-2.73,10.84,10.84,0,0,1,4.21.56,6.13,6.13,0,0,1,3.2,2.4,3.77,3.77,0,0,1,1.13,2.94A.81.81,0,0,1,364.67,149.6Zm-11.45-2.09c.77,0,1.54.07,2.28.13.47,0,.94.08,1.4.1,2.26.11,4.56.19,6.83.22a5.18,5.18,0,0,0-.66-.94,4.6,4.6,0,0,0-2.44-1.89,9.3,9.3,0,0,0-3.58-.49,5.76,5.76,0,0,0-4,2.2,3.41,3.41,0,0,0-.48.65,2.61,2.61,0,0,0,.37,0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M358.38,144.1a.81.81,0,0,1-.81-.75l-.13-1.66a.81.81,0,0,1,1.61-.13l.13,1.66a.81.81,0,0,1-.74.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M389.22,151.27l-.45,0a5.75,5.75,0,0,1-2.82-1.17,3.27,3.27,0,0,1-1.08-1.23,3.75,3.75,0,0,1-.23-1.76l.3-7.5a.82.82,0,0,1,.84-.78.81.81,0,0,1,.78.84l-.3,7.49a2.47,2.47,0,0,0,.09,1,1.72,1.72,0,0,0,.57.6,4.14,4.14,0,0,0,2,.86,2.37,2.37,0,0,0,1.83-.54c.86-.8.88-2.32.82-3.68l-.22-5.41a.81.81,0,1,1,1.62-.07l.22,5.41c.07,1.72,0,3.67-1.34,4.94A3.88,3.88,0,0,1,389.22,151.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M392.22,140.66h-.07l-4.66-.42a6.73,6.73,0,0,0-1.53,0,.81.81,0,0,1-.23-1.6,8.12,8.12,0,0,1,1.91,0l4.66.42a.81.81,0,0,1-.07,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M388.35,159.23a.81.81,0,0,1-.81-.79c-.06-2.56,0-5.14.2-7.69a.81.81,0,0,1,1.62.12c-.19,2.49-.25,5-.19,7.53a.81.81,0,0,1-.79.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M389.16,160.06q-.43,0-.86,0l-.83-.08a7.63,7.63,0,0,0-2,0,.81.81,0,0,1-.26-1.6,8.9,8.9,0,0,1,2.41,0l.78.07a10.65,10.65,0,0,0,2.38-.1.81.81,0,0,1,.25,1.6A12.24,12.24,0,0,1,389.16,160.06Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M436.16,110.93a.81.81,0,0,1,0-1.62L464,109a.85.85,0,0,1,.82.8.81.81,0,0,1-.8.82l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M435.72,136.83a.81.81,0,0,1-.8-.71c-1.19-9.11-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M464.49,137.47h0c-8.55-.47-19.32-.58-28.73-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M464.48,137.47a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75A.81.81,0,0,1,464,109a.84.84,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M468.5,111.78a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M468.06,137.69a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M496.82,138.33h0c-8.55-.47-19.32-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M496.82,138.33a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M500.89,112.44a.81.81,0,0,1,0-1.62l27.89-.27a.84.84,0,0,1,.82.8.81.81,0,0,1-.8.82l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M500.45,138.34a.81.81,0,0,1-.8-.71c-1.19-9.11-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M529.21,139h0c-8.55-.47-19.32-.59-28.73-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.22.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M529.21,139a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M447.2,131.58a.81.81,0,0,1-.81-.8,119.88,119.88,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.36,118.36,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M445.07,118.7a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,445.07,118.7Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M452.5,131.76a.81.81,0,0,1-.81-.8,119.9,119.9,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.39,118.39,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M450.37,118.88a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,450.37,118.88Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M483.46,135.1a1.87,1.87,0,0,1-.68-.13,2.44,2.44,0,0,1-1.42-2.11,13.51,13.51,0,0,1-.14-1.71l-.24-6.54a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78l.24,6.54a12.11,12.11,0,0,0,.12,1.51c.08.45.24.79.41.86a.64.64,0,0,0,.57-.23,3.54,3.54,0,0,0,.6-1.12.81.81,0,1,1,1.5.6,4.78,4.78,0,0,1-.94,1.65A2.32,2.32,0,0,1,483.46,135.1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M488.68,125.61h0c-2.61,0-5.24-.11-7.83-.24-.48,0-1-.07-1.46-.11a21.9,21.9,0,0,0-2.37-.12c-1,0-1.7-.28-2-.89-.46-1,.53-2.12.86-2.48a7.33,7.33,0,0,1,5.06-2.73,10.85,10.85,0,0,1,4.21.56,6.13,6.13,0,0,1,3.2,2.4,3.77,3.77,0,0,1,1.13,2.94A.81.81,0,0,1,488.68,125.61Zm-11.45-2.09c.77,0,1.54.07,2.28.13.47,0,.94.08,1.4.1,2.26.11,4.55.19,6.83.22a5.15,5.15,0,0,0-.66-.94,4.59,4.59,0,0,0-2.44-1.89,9.34,9.34,0,0,0-3.58-.49,5.76,5.76,0,0,0-4,2.2,3.38,3.38,0,0,0-.48.65l.37,0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M482.39,120.11a.81.81,0,0,1-.81-.75l-.13-1.66a.81.81,0,0,1,1.62-.13l.13,1.66a.81.81,0,0,1-.74.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M513.23,127.28l-.45,0a5.74,5.74,0,0,1-2.82-1.17,3.27,3.27,0,0,1-1.08-1.23,3.76,3.76,0,0,1-.23-1.76l.3-7.5a.85.85,0,0,1,.84-.78.81.81,0,0,1,.78.84l-.3,7.49a2.48,2.48,0,0,0,.09,1,1.84,1.84,0,0,0,.57.6,4.14,4.14,0,0,0,2,.86,2.39,2.39,0,0,0,1.83-.54c.86-.8.88-2.32.82-3.68l-.22-5.41a.81.81,0,0,1,.78-.84.8.8,0,0,1,.84.78l.22,5.41c.07,1.72,0,3.67-1.34,4.94A3.88,3.88,0,0,1,513.23,127.28Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M516.23,116.68h-.07l-4.66-.42a6.78,6.78,0,0,0-1.53,0,.81.81,0,1,1-.23-1.6,8.16,8.16,0,0,1,1.91,0l4.66.42a.81.81,0,0,1-.07,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M512.36,135.24a.81.81,0,0,1-.81-.79c-.06-2.55,0-5.14.2-7.69a.82.82,0,0,1,.87-.75.81.81,0,0,1,.75.87c-.19,2.5-.25,5-.19,7.53a.81.81,0,0,1-.79.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M513.16,136.07q-.43,0-.86,0l-.83-.08a7.66,7.66,0,0,0-2,0,.81.81,0,1,1-.26-1.6,9,9,0,0,1,2.42,0l.77.07a10.62,10.62,0,0,0,2.38-.1.81.81,0,0,1,.25,1.6A12.27,12.27,0,0,1,513.16,136.07Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M490.5,258.07a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M490.06,284a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M518.83,284.61h0c-8.55-.47-19.32-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M518.83,284.61a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M522.84,258.92a.81.81,0,0,1,0-1.62l27.89-.27a.79.79,0,0,1,.82.8.81.81,0,0,1-.8.82l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M522.4,284.82a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.55.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M551.17,285.46h0c-8.55-.47-19.32-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M551.17,285.46a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M555.23,259.58a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M554.79,285.48a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M583.56,286.12h0c-8.55-.47-19.32-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M583.55,286.12a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M501.54,278.72a.81.81,0,0,1-.81-.8,119.9,119.9,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.39,118.39,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M499.41,265.84a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,499.41,265.84Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M506.84,278.89a.81.81,0,0,1-.81-.8,119.9,119.9,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.39,118.39,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M504.71,266a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,504.71,266Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M537.81,282.23a1.86,1.86,0,0,1-.68-.13,2.44,2.44,0,0,1-1.42-2.11,13.51,13.51,0,0,1-.14-1.71l-.24-6.54a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78l.24,6.54a12.11,12.11,0,0,0,.12,1.51c.08.45.24.79.41.86a.65.65,0,0,0,.57-.23,3.49,3.49,0,0,0,.6-1.12.81.81,0,1,1,1.51.6,4.85,4.85,0,0,1-.94,1.65A2.32,2.32,0,0,1,537.81,282.23Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M543,272.75h0c-2.6,0-5.24-.11-7.83-.24-.48,0-1-.07-1.46-.11a23.26,23.26,0,0,0-2.38-.12c-1,0-1.7-.28-2-.89-.46-1,.53-2.12.86-2.48a7.33,7.33,0,0,1,5.06-2.73,10.88,10.88,0,0,1,4.21.56,6.13,6.13,0,0,1,3.2,2.4,3.76,3.76,0,0,1,1.13,2.94A.81.81,0,0,1,543,272.75Zm-11.45-2.09c.77,0,1.54.07,2.28.13.47,0,.94.08,1.4.1,2.26.11,4.55.19,6.83.22a5.25,5.25,0,0,0-.66-.94,4.6,4.6,0,0,0-2.44-1.89,9.31,9.31,0,0,0-3.58-.49,5.76,5.76,0,0,0-4,2.2,3.47,3.47,0,0,0-.48.65,2.52,2.52,0,0,0,.37,0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M536.73,267.24a.81.81,0,0,1-.81-.75l-.13-1.66a.81.81,0,0,1,1.62-.13l.13,1.66a.81.81,0,0,1-.74.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M567.57,274.42l-.45,0a5.76,5.76,0,0,1-2.82-1.17,3.26,3.26,0,0,1-1.08-1.23,3.8,3.8,0,0,1-.23-1.76l.3-7.49a.81.81,0,0,1,.81-.78h0a.81.81,0,0,1,.78.84l-.3,7.49a2.49,2.49,0,0,0,.09,1,1.85,1.85,0,0,0,.57.6,4.15,4.15,0,0,0,2,.86,2.37,2.37,0,0,0,1.83-.54c.86-.8.88-2.32.82-3.68l-.22-5.41a.81.81,0,0,1,1.62-.07l.22,5.41c.07,1.72,0,3.67-1.34,4.94A3.88,3.88,0,0,1,567.57,274.42Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M570.57,263.81h-.07l-4.66-.42a6.7,6.7,0,0,0-1.53,0,.81.81,0,1,1-.23-1.6,8.16,8.16,0,0,1,1.91,0l4.66.42a.81.81,0,0,1-.07,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M566.7,282.37a.81.81,0,0,1-.81-.79c-.06-2.55,0-5.13.2-7.69a.82.82,0,0,1,.87-.75.81.81,0,0,1,.75.87c-.19,2.5-.25,5-.19,7.53a.81.81,0,0,1-.79.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M567.51,283.21q-.43,0-.86,0l-.83-.08a7.59,7.59,0,0,0-2,0,.81.81,0,1,1-.26-1.6,9,9,0,0,1,2.42,0l.77.07a10.58,10.58,0,0,0,2.38-.1.81.81,0,0,1,.25,1.6A12.27,12.27,0,0,1,567.51,283.21Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M587.27,441.82a.81.81,0,0,1,0-1.62l23.12-.22a.81.81,0,1,1,0,1.62l-23.12.22Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M610.83,468.41h0c-5.06-.28-11.42-.46-19.44-.56a.81.81,0,0,1,0-1.62h0c8,.1,14.43.28,19.51.56a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M610.82,468.41a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M614.84,442.72a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M614.4,468.62a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M643.17,469.26h0c-8.55-.47-19.32-.58-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M643.16,469.26a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.86.86,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M647.23,443.38a.81.81,0,0,1,0-1.62l27.89-.27a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M646.79,469.28a.81.81,0,0,1-.8-.71c-1.19-9.11-.47-17.54.44-26.09a.81.81,0,1,1,1.61.17c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M675.55,469.92h0c-8.57-.47-19.33-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.41.05,20.2.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M675.55,469.92a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M593.54,462.51a.81.81,0,0,1-.81-.8,119.92,119.92,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.4,118.4,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M591.41,449.64a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,591.41,449.64Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M598.84,462.69a.81.81,0,0,1-.81-.8,119.87,119.87,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.37,118.37,0,0,0-.52,11.88.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M596.71,449.81a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,596.71,449.81Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M629.8,466a1.87,1.87,0,0,1-.68-.13,2.44,2.44,0,0,1-1.42-2.11,13.55,13.55,0,0,1-.14-1.71l-.24-6.54a.81.81,0,0,1,.78-.84.84.84,0,0,1,.84.78l.24,6.54a11.94,11.94,0,0,0,.12,1.51c.07.45.24.79.41.86a.64.64,0,0,0,.57-.23,3.49,3.49,0,0,0,.6-1.12.81.81,0,0,1,1.51.6,4.82,4.82,0,0,1-.94,1.65A2.32,2.32,0,0,1,629.8,466Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M635,456.54h0c-2.59,0-5.23-.11-7.83-.24-.48,0-1-.07-1.47-.11-.79-.07-1.6-.13-2.37-.12-1,0-1.71-.28-2-.89-.46-1,.53-2.12.86-2.48a7.32,7.32,0,0,1,5.06-2.73,10.87,10.87,0,0,1,4.21.56,6.13,6.13,0,0,1,3.2,2.4,3.77,3.77,0,0,1,1.13,2.94A.81.81,0,0,1,635,456.54Zm-11.45-2.09c.76,0,1.53.07,2.28.13.47,0,.94.08,1.41.1,2.27.11,4.56.19,6.83.22a5.12,5.12,0,0,0-.66-.94,4.59,4.59,0,0,0-2.44-1.89,9.45,9.45,0,0,0-3.58-.49,5.76,5.76,0,0,0-4,2.2,3.43,3.43,0,0,0-.48.65l.37,0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M628.73,451a.81.81,0,0,1-.81-.75l-.13-1.66a.81.81,0,0,1,.74-.87.8.8,0,0,1,.87.74l.13,1.66a.81.81,0,0,1-.75.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M659.57,458.22l-.45,0A5.76,5.76,0,0,1,656.3,457a3.27,3.27,0,0,1-1.08-1.23A3.76,3.76,0,0,1,655,454l.3-7.49a.81.81,0,0,1,.81-.78h0a.81.81,0,0,1,.78.84l-.3,7.49a2.51,2.51,0,0,0,.09,1,1.72,1.72,0,0,0,.57.6,4.16,4.16,0,0,0,2,.86,2.39,2.39,0,0,0,1.83-.54c.86-.8.88-2.32.82-3.68l-.22-5.41a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78l.22,5.41c.07,1.72,0,3.67-1.34,4.94A3.88,3.88,0,0,1,659.57,458.22Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M662.57,447.61h-.07l-4.66-.42a6.67,6.67,0,0,0-1.53,0,.81.81,0,0,1-.23-1.6,8,8,0,0,1,1.91,0l4.66.42a.81.81,0,0,1-.07,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M658.7,466.17a.81.81,0,0,1-.81-.79c-.06-2.55,0-5.14.2-7.69a.81.81,0,1,1,1.62.12c-.19,2.5-.25,5-.19,7.53a.81.81,0,0,1-.79.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M659.5,467c-.29,0-.57,0-.86,0l-.83-.08a7.66,7.66,0,0,0-2,0,.81.81,0,1,1-.26-1.6,9,9,0,0,1,2.42,0l.77.07a10.54,10.54,0,0,0,2.38-.1.81.81,0,1,1,.25,1.6A12.16,12.16,0,0,1,659.5,467Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M649.15,174.82a1.5,1.5,0,0,1-1.06-2.56l1.28-1.28a1.5,1.5,0,0,1,2.12,2.12l-1.29,1.28A1.5,1.5,0,0,1,649.15,174.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M646.76,297.47a1.91,1.91,0,0,1-.54-.08c-.46-.14-2-.78-1.73-3.32a821.6,821.6,0,0,0,2-121.16,1.5,1.5,0,1,1,3-.17,824.54,824.54,0,0,1-1.89,120.89,1.64,1.64,0,0,1,.42.25,2.14,2.14,0,0,1,.42,2.58A1.82,1.82,0,0,1,646.76,297.47Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M720.11,472.24h0a1.5,1.5,0,0,1-1.49-1.51c.17-47.52-.5-95.68-2-143.15a1.5,1.5,0,0,1,1.45-1.55,1.48,1.48,0,0,1,1.55,1.45c1.5,47.5,2.17,95.7,2,143.26A1.5,1.5,0,0,1,720.11,472.24Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M580,590.51c-.85,0-2.61-.4-3.33-3.53l-34.2-149.63a1.5,1.5,0,0,1,2.92-.67L579.55,586a1.76,1.76,0,0,1,1.05,0,2.53,2.53,0,0,1,1.49,2.71,2,2,0,0,1-1.94,1.81Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M509.61,417.68a1.5,1.5,0,0,1-1.49-1.35c-.91-9-1.45-18.11-1.61-27.13a1.5,1.5,0,0,1,1.47-1.53h0a1.5,1.5,0,0,1,1.5,1.47c.16,8.93.69,18,1.59,26.88a1.5,1.5,0,0,1-1.34,1.64Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M172.54,314.24a1.5,1.5,0,0,1-1.5-1.4c-2.16-33.64-3.43-67.8-3.77-101.51a1.5,1.5,0,0,1,1.48-1.52h0a1.5,1.5,0,0,1,1.5,1.48c.34,33.66,1.61,67.76,3.77,101.35a1.5,1.5,0,0,1-1.4,1.59Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M102.22,479.3a1.5,1.5,0,0,1-1.5-1.5,976.48,976.48,0,0,1,8.15-126.63,1.5,1.5,0,0,1,3,.39,973.51,973.51,0,0,0-8.13,126.24,1.5,1.5,0,0,1-1.5,1.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M382.09,318.12a1.5,1.5,0,0,1-1.5-1.46,137.6,137.6,0,0,1,2.19-27.88,1.5,1.5,0,0,1,3,.54,134.6,134.6,0,0,0-2.15,27.27,1.5,1.5,0,0,1-1.46,1.53Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M567,147.95h-.11a1.5,1.5,0,0,1-1.39-1.61c2.5-34.22,3.92-69,4.21-103.28a1.5,1.5,0,0,1,1.5-1.49h0a1.5,1.5,0,0,1,1.49,1.51c-.29,34.38-1.71,69.19-4.22,103.47A1.5,1.5,0,0,1,567,147.95Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M254.41,176.21a1.5,1.5,0,0,1-1.5-1.49l-.43-115.58A1.5,1.5,0,0,1,254,57.63h0a1.5,1.5,0,0,1,1.5,1.49l.43,115.58a1.5,1.5,0,0,1-1.49,1.51Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M323.06,194a.88.88,0,0,1-.34-1.68,20.41,20.41,0,0,0,8.61-6.82.88.88,0,1,1,1.42,1A21.88,21.88,0,0,1,323.4,194,.88.88,0,0,1,323.06,194Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M329.51,195.91a.88.88,0,0,1-.31-1.69,7.32,7.32,0,0,0,3.11-2.27.87.87,0,0,1,1.37,1.09,9.07,9.07,0,0,1-3.85,2.81A.88.88,0,0,1,329.51,195.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M383.94,269.31a.88.88,0,0,1-.59-1.52,18.54,18.54,0,0,0,4.38-6.13.87.87,0,1,1,1.6.7,20.31,20.31,0,0,1-4.8,6.71A.88.88,0,0,1,383.94,269.31Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M387,272.83a.87.87,0,0,1-.61-1.5l3-3a.87.87,0,0,1,1.22,1.25l-3,3A.87.87,0,0,1,387,272.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M550.94,316.28a.87.87,0,0,1-.46-1.62,10.51,10.51,0,0,0,4.81-7.27.88.88,0,0,1,1.73.26,12.29,12.29,0,0,1-5.62,8.49A.87.87,0,0,1,550.94,316.28Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M555.08,319.94a.88.88,0,0,1-.68-1.43l4.05-5a.88.88,0,0,1,1.36,1.11l-4.05,5A.87.87,0,0,1,555.08,319.94Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M646.36,158.78a.87.87,0,0,1-.72-1.36l6.27-9.32a.87.87,0,1,1,1.45,1l-6.27,9.32A.87.87,0,0,1,646.36,158.78Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M647.38,163.19a.88.88,0,0,1-.49-1.6,22.85,22.85,0,0,0,6.44-6.52.88.88,0,0,1,1.47,1,24.63,24.63,0,0,1-6.94,7A.87.87,0,0,1,647.38,163.19Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M715.47,312.87a.88.88,0,0,1-.23,0,.87.87,0,0,1-.61-1.08,45.45,45.45,0,0,0,1.57-9.31.87.87,0,0,1,1.75.11,47.17,47.17,0,0,1-1.63,9.67A.87.87,0,0,1,715.47,312.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M717.5,317.38a.87.87,0,0,1-.87-.87V314a.88.88,0,0,1,1.75,0v2.5A.87.87,0,0,1,717.5,317.38Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M569.57,20.39h-.13a.88.88,0,0,1-.74-1l.52-3.5a.87.87,0,1,1,1.73.26l-.52,3.5A.88.88,0,0,1,569.57,20.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M572.25,30a.86.86,0,0,1-.28,0,.88.88,0,0,1-.55-1.11A43.82,43.82,0,0,0,573.68,17a.91.91,0,0,1,.92-.83.87.87,0,0,1,.83.92,45.63,45.63,0,0,1-2.35,12.32A.88.88,0,0,1,572.25,30Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M351.81,47.69a.88.88,0,0,1-.63-1.48,27.74,27.74,0,0,0,5.53-8.54.87.87,0,1,1,1.62.66,29.07,29.07,0,0,1-5.89,9.08A.87.87,0,0,1,351.81,47.69Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M356.83,51.68a.88.88,0,0,1-.58-1.53A45.23,45.23,0,0,0,362,44.08a.87.87,0,1,1,1.38,1.08,47,47,0,0,1-5.94,6.3A.87.87,0,0,1,356.83,51.68Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M255.46,48.4a.87.87,0,0,1-.77-.46L253.09,45a.87.87,0,1,1,1.54-.83l1.59,2.95a.87.87,0,0,1-.77,1.29Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M173.55,192.77a.87.87,0,0,1-.4-.1,12.56,12.56,0,0,1-6.25-7.89.88.88,0,0,1,1.7-.43,10.78,10.78,0,0,0,5.36,6.77.88.88,0,0,1-.41,1.65Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M171.49,204.89a.87.87,0,0,1-.48-.15,10,10,0,0,1-4.38-8.8.88.88,0,1,1,1.75.11,8.22,8.22,0,0,0,3.6,7.23.87.87,0,0,1-.48,1.6Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M114,331.87a.88.88,0,0,1-.81-.53l-1.49-3.5a.88.88,0,0,1,1.61-.69l1.49,3.5a.87.87,0,0,1-.8,1.22Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M112.89,344.45a.88.88,0,0,1-.72-.38,24.28,24.28,0,0,1-3.57-7.84.87.87,0,0,1,1.7-.43,22.53,22.53,0,0,0,3.32,7.28.87.87,0,0,1-.72,1.37Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M190.82,374.17a.88.88,0,0,1-.82-.58,9.05,9.05,0,0,0-7.67-5.79.88.88,0,0,1,.12-1.75,10.85,10.85,0,0,1,9.19,6.94.87.87,0,0,1-.82,1.17Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M189.51,373.73a.87.87,0,0,1-.62-.25,4.18,4.18,0,0,0-5.15-.45.87.87,0,0,1-1-1.43,5.92,5.92,0,0,1,7.39.64.88.88,0,0,1-.62,1.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M269.07,343.71a.87.87,0,0,1-.86-.72,17.45,17.45,0,0,1-.2-4.76.88.88,0,0,1,1.74.17,15.71,15.71,0,0,0,.18,4.28.87.87,0,0,1-.71,1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M268.36,343.16a.87.87,0,0,1-.57-1.54l3.13-2.7a.87.87,0,1,1,1.14,1.33l-3.13,2.7A.87.87,0,0,1,268.36,343.16Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M377.93,433.36h-.11a.88.88,0,0,1-.76-1,26.76,26.76,0,0,0-1.74-14.15.88.88,0,1,1,1.63-.63,28.38,28.38,0,0,1,1.85,15A.88.88,0,0,1,377.93,433.36Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M420.89,450.7a1,1,0,0,1-.53-1.85l9.92-6.12a1,1,0,0,1,1,1.7l-9.92,6.12A1,1,0,0,1,420.89,450.7Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M424.36,453.7a1,1,0,0,1-.45-1.89l2.94-1.46a1,1,0,1,1,.89,1.79l-2.93,1.46A1,1,0,0,1,424.36,453.7Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M544.14,426.87a1,1,0,0,1-.45-1.89l2-1a1,1,0,1,1,.89,1.79l-2,1A1,1,0,0,1,544.14,426.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M545.1,431.23h-.49a1,1,0,0,1,0-2h.49a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M475.12,219.77a1,1,0,0,1,0-2A235.3,235.3,0,0,0,547,203.46a1,1,0,0,1,.69,1.88,237.28,237.28,0,0,1-72.48,14.43Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M510.53,226.27a1,1,0,0,1-.25-2l9.8-2.54a1,1,0,0,1,.5,1.94l-9.8,2.54A1,1,0,0,1,510.53,226.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M544.37,369.75a1,1,0,0,1-.07-2c16.71-1.22,32.23-8.25,47.24-15.05a1,1,0,0,1,.83,1.82c-14.46,6.55-30.85,14-47.92,15.23Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M580.71,394.05a1,1,0,0,1-.45-1.89l5.5-2.76a1,1,0,0,1,.9,1.79l-5.5,2.76A1,1,0,0,1,580.71,394.05Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M454.49,60.42a1,1,0,0,1,0-2,214.71,214.71,0,0,0,53.3-9.11,1,1,0,1,1,.58,1.91,216.68,216.68,0,0,1-53.8,9.19Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M327.29,102.14a1,1,0,0,1-.06-2,192.46,192.46,0,0,0,70.27-18,1,1,0,1,1,.86,1.81,194.47,194.47,0,0,1-71,18.23Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M432.07,510.83c-10.54,0-21-1.47-31.26-2.9a1,1,0,1,1,.28-2c12.26,1.72,24.94,3.49,37.49,2.68,13.92-.91,25.89-5.09,34.6-12.1a1,1,0,1,1,1.25,1.56c-9,7.27-21.39,11.6-35.73,12.54C436.49,510.76,434.28,510.83,432.07,510.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M450.56,528.21h-.06c-9.42-.56-19-.73-28.4-.49h0a1,1,0,0,1,0-2c9.48-.23,19.09-.06,28.57.5a1,1,0,0,1-.06,2Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M359,529.5a1,1,0,0,1-1-1,55.34,55.34,0,0,1,.78-8.08c.31-2.13.63-4.32.73-6.47a1,1,0,0,1,1-1,1,1,0,0,1,1,1,66.87,66.87,0,0,1-.74,6.67,53.91,53.91,0,0,0-.75,7.79,1,1,0,0,1-1,1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M357.5,544.5a1,1,0,0,1-1-1v-6a1,1,0,0,1,2,0v6A1,1,0,0,1,357.5,544.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M227.31,549.06c-4.17,0-11.51-.6-15.38-4.5a1.5,1.5,0,1,1,2.13-2.11c3.07,3.09,9.95,3.87,15.35,3.56a1.5,1.5,0,0,1,.17,3C229,549,228.26,549.06,227.31,549.06Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M227.5,541a1.46,1.46,0,0,1-.31,0,20.42,20.42,0,0,0-5.58-.47,1.5,1.5,0,0,1-.22-3,23.41,23.41,0,0,1,6.42.53,1.5,1.5,0,0,1-.31,3Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M328.5,560a1.5,1.5,0,0,1-.7-2.83c1.12-.59,2.3-1.27,3.42-2a1.5,1.5,0,1,1,1.57,2.56c-1.17.72-2.41,1.43-3.58,2A1.48,1.48,0,0,1,328.5,560Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M340,561a1.5,1.5,0,0,1-.55-2.9,4.24,4.24,0,0,0,1.83-1.48,1.5,1.5,0,1,1,2.44,1.74,7.21,7.21,0,0,1-3.17,2.52A1.5,1.5,0,0,1,340,561Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M230.5,604a1.5,1.5,0,0,1-1.07-.45,8.85,8.85,0,0,1-2.42-4.84,1.5,1.5,0,0,1,3-.43,5.86,5.86,0,0,0,1.58,3.16A1.5,1.5,0,0,1,230.5,604Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M236.5,613a1.49,1.49,0,0,1-.89-.29,5.41,5.41,0,0,1-2.11-4.15,1.5,1.5,0,0,1,1.44-1.55,1.47,1.47,0,0,1,1.55,1.44,2.46,2.46,0,0,0,.89,1.85,1.5,1.5,0,0,1-.89,2.71Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M239.5,604.5a1.5,1.5,0,0,1-1.16-.55,3.88,3.88,0,0,1-.81-3.23,1.5,1.5,0,0,1,2.95.56.86.86,0,0,0,.19.77,1.5,1.5,0,0,1-1.16,2.45Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M184.5,419a1.5,1.5,0,0,1-1.48-1.25,8,8,0,0,1,.7-5,1.5,1.5,0,0,1,2.57,1.55,5.2,5.2,0,0,0-.3,3,1.5,1.5,0,0,1-1.23,1.73Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M186,431.5a1.5,1.5,0,0,1-1.22-.63,7.49,7.49,0,0,1-1.28-4.41,1.5,1.5,0,1,1,3,.07,4.53,4.53,0,0,0,.72,2.59A1.5,1.5,0,0,1,186,431.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M192,424.5a1.5,1.5,0,0,1-1.37-.9,14.86,14.86,0,0,1-1.11-3.89,1.5,1.5,0,1,1,3-.42,11.86,11.86,0,0,0,.89,3.11,1.5,1.5,0,0,1-1.37,2.1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M204.5,533h-36a1.5,1.5,0,0,1,0-3h36a1.5,1.5,0,0,1,0,3Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M204,549.5H185.5a1.5,1.5,0,0,1,0-3H204a1.5,1.5,0,0,1,0,3Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M189.5,578.5c-6,0-12.13-.13-18-.25s-12-.25-18-.25a1.5,1.5,0,0,1,0-3c6,0,12.13.13,18,.25s12,.25,18,.25a1.5,1.5,0,0,1,0,3Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M194.74,597.1c-1.16,0-2.31,0-3.45-.05s-2.2,0-3.29,0a1.5,1.5,0,0,1,0-3h0c1.11,0,2.23,0,3.36,0a47.35,47.35,0,0,0,10.34-.52,1.5,1.5,0,0,1,.6,2.94A37.75,37.75,0,0,1,194.74,597.1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M204.57,643.61c-1.36,0-2.93-.29-3.46-1.53a1.5,1.5,0,0,1,2.52-1.56,6.25,6.25,0,0,0,2.15,0,1.5,1.5,0,0,1,.43,3A11.65,11.65,0,0,1,204.57,643.61Zm-.69-2.69h0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M224.41,412a4.41,4.41,0,0,1-2.14-.58,4.94,4.94,0,0,1-2.65-4c-.63-6.22,8.66-15.66,10.4-17.13a1.5,1.5,0,0,1,2.47,1.11c.19,7.81-1.82,17.46-5.91,19.94A4.16,4.16,0,0,1,224.41,412Zm5-16.86c-3.19,3.51-7.12,8.94-6.81,12a2,2,0,0,0,1.11,1.64,1.14,1.14,0,0,0,1.3,0C227.15,407.56,229,401.53,229.42,395.18Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M226.47,442.05a3.21,3.21,0,0,1-2.82-1.63c-2.75-4.65,2.88-20.07,5.89-22.57a1.5,1.5,0,0,1,2.45,1.29,49.5,49.5,0,0,0,.16,7c.44,6.71.89,13.65-3.83,15.5A5.05,5.05,0,0,1,226.47,442.05ZM229,424.37c-2.07,4.91-4,12.42-2.8,14.52.07.11.18.3,1,0,2.69-1.05,2.27-7.41,1.94-12.52C229.11,425.68,229.07,425,229,424.37Z" transform="translate(-60.79 2.5)"/><g class="cls-11"><path class="cls-2" d="M659,528.67a1,1,0,0,1-.06-2l1.29-.08c4.56-.29,8.88-.57,13.44-.59h0a1,1,0,0,1,0,2c-4.5,0-8.79.29-13.32.58l-1.29.08Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M680.33,545.33H669.67a1,1,0,0,1,0-2h10.67a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M638.33,570H633a1,1,0,0,1,0-2h5.33a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M421,664.7c-.45,0-.91,0-1.36,0a1,1,0,0,1,.1-2,43.87,43.87,0,0,0,6.81-.34c1.22-.12,2.49-.25,3.75-.32a1,1,0,0,1,1.06.94,1,1,0,0,1-.94,1.06c-1.22.07-2.46.2-3.66.32A57,57,0,0,1,421,664.7Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M457.67,654a1,1,0,0,1-.36-1.93c3.28-1.27,7.31-1.07,11.22-.87,1.35.07,2.62.13,3.81.13a1,1,0,0,1,0,2c-1.25,0-2.54-.07-3.91-.14-3.69-.19-7.51-.38-10.39.74A1,1,0,0,1,457.67,654Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M503,674H490.33a1,1,0,1,1,0-2H503a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M340.77,690.77a22.36,22.36,0,0,1-6-.81,1,1,0,1,1,.54-1.93,21.35,21.35,0,0,0,7.64.63,1,1,0,0,1,.19,2Q341.92,690.77,340.77,690.77Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M393,700h-8a1,1,0,0,1,0-2h8a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M645,630.67h-7.33a1,1,0,0,1,0-2H645a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M731,508.67h-2.67a1,1,0,0,1,0-2H731a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M630.33,513.33a1,1,0,0,1-.35-1.94,11.21,11.21,0,0,1,4.38-.73,1,1,0,0,1,1,1,1,1,0,0,1-1,1,9.37,9.37,0,0,0-3.62.6A1,1,0,0,1,630.33,513.33Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M753,472h-2.67a1,1,0,1,1,0-2H753a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M765.67,446H763a1,1,0,0,1,0-2h2.67a1,1,0,1,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M111,505.33h-5.33a1,1,0,1,1,0-2H111a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M144.33,500.67h-4a1,1,0,1,1,0-2h4a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-2" d="M120.56,518.83a7.62,7.62,0,0,1-4.12-1,1,1,0,0,1,1.14-1.65,7.18,7.18,0,0,0,4.58.51,1,1,0,1,1,.38,2A10.47,10.47,0,0,1,120.56,518.83Z" transform="translate(-60.79 2.5)"/></g></g><g id="LINEART"><path class="cls-12" d="M145.95,176.85" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M255.72,395.42a2.5,2.5,0,0,1-.07-5c14.6-.4,26.34-2.39,38.77-4.49a316.57,316.57,0,0,1,34.2-4.45,2.5,2.5,0,0,1,.32,5,312.48,312.48,0,0,0-33.68,4.38c-12,2-24.51,4.16-39.46,4.56Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M365,378.9a2.5,2.5,0,0,1-1.06-4.76c5.28-2.48,9.35-5.59,13.65-8.88a95.33,95.33,0,0,1,12-8.2,2.5,2.5,0,0,1,2.42,4.38,91.32,91.32,0,0,0-11.39,7.8c-4.33,3.31-8.8,6.72-14.56,9.43A2.49,2.49,0,0,1,365,378.9Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M371.49,408.63a13.15,13.15,0,0,1-1.43-.08,12.82,12.82,0,0,1-8.47-4.94,9.18,9.18,0,0,1-1.83-7.18c1.23-6.66,9.76-7.66,14.6-7.21h0a9.63,9.63,0,0,1,4.79,1.55,8.4,8.4,0,0,1,3.17,7.19,11.07,11.07,0,0,1-6.4,9.79A11.23,11.23,0,0,1,371.49,408.63Zm.79-14.5c-3.31,0-7.17.89-7.6,3.21a4.26,4.26,0,0,0,.92,3.28,7.71,7.71,0,0,0,5,3,6.7,6.7,0,0,0,3.36-.42,6.08,6.08,0,0,0,3.38-5.35,3.59,3.59,0,0,0-1.08-3,5.2,5.2,0,0,0-2.35-.64h0C373.39,394.15,372.85,394.13,372.29,394.13Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M363.66,424.5a11.22,11.22,0,0,1-7.68-3,12.76,12.76,0,0,1-3.34-12.21,15.39,15.39,0,0,1,7.71-9.63,2.5,2.5,0,0,1,2.39,4.39,10.53,10.53,0,0,0-5.24,6.45,7.79,7.79,0,0,0,1.94,7.37,6.05,6.05,0,0,0,6.84,1,13.26,13.26,0,0,0,1.65-1.22,18.82,18.82,0,0,1,2.06-1.53c3.61-2.23,8-2,11.37-1.58,1.91.24,4,.51,5-.3s.89-3.23,0-5c-1.06-2.1-5.27-5.48-8-6.77a2.5,2.5,0,0,1,2.15-4.51c3.08,1.47,8.52,5.54,10.28,9s2,8.39-1.34,11.12c-2.66,2.14-6.14,1.7-8.68,1.37s-5.91-.53-8.19.87a14.67,14.67,0,0,0-1.52,1.14,17.46,17.46,0,0,1-2.31,1.68A10.19,10.19,0,0,1,363.66,424.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M376.27,435a8.13,8.13,0,0,1-4-1,13,13,0,0,1-3.16-2.74,12,12,0,0,1-1.82-2.39c-1.18-2.18-2.32-5.7-2-8.26a2.5,2.5,0,1,1,5,.56,11.53,11.53,0,0,0,1.46,5.31,8.1,8.1,0,0,0,1.12,1.4,8.88,8.88,0,0,0,1.92,1.75,4,4,0,0,0,4-.44,6.94,6.94,0,0,0,2.53-4.42,20.49,20.49,0,0,0-.59-7,2.5,2.5,0,1,1,4.89-1,24.37,24.37,0,0,1,.62,8.94,11.8,11.8,0,0,1-4.51,7.58A9.3,9.3,0,0,1,376.27,435Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M388.38,410.24a2.5,2.5,0,0,1-.38-5c5.57-.87,10.41-5.64,12.34-12.16,2.08-7,.34-14.44-1.48-19.41a28.74,28.74,0,0,0-3.29-6.64c-4.09-5.88-11.69-9.55-19.85-9.6h-.15c-9,0-17,4.08-22.08,7.51a2.5,2.5,0,0,1-2.79-4.15c8.19-5.51,16.84-8.38,25-8.36,9.76,0,18.92,4.55,23.93,11.74a33.58,33.58,0,0,1,3.88,7.78c3,8.15,3.54,16,1.58,22.56-2.48,8.36-8.9,14.52-16.37,15.68Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M291.58,645.16a94,94,0,0,1-26.67-3.83,95.29,95.29,0,0,1-38-21.85c-11.07-10.39-14.37-23.33-16.28-35.77a40.63,40.63,0,0,1,0-12.24,2.5,2.5,0,0,1,5,.53,35.69,35.69,0,0,0,0,11c2.05,13.35,5.35,24,14.76,32.88a89.3,89.3,0,0,0,82.71,21.78c2-.48,4-.93,6-1.37,10.24-2.28,19.91-4.44,28.15-10.85a2.5,2.5,0,0,1,3.07,3.95c-9.13,7.1-19.33,9.38-30.14,11.79-2,.44-3.95.88-5.94,1.36A97.5,97.5,0,0,1,291.58,645.16Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M200.22,497.51a2.5,2.5,0,0,1-2.21-1.33c-2.34-4.4-4.81-8.85-7.19-13.15-2.67-4.82-5.43-9.81-8-14.76-6.07-11.51-11.81-24-12.76-37.34-1-13.78,3-28.47,12.17-44.91,4.35-7.8,8.33-13.25,12.9-17.67a67.46,67.46,0,0,1,17.65-11.86c27.92-13.6,60.15-14.28,88-13.15,28.91,1.17,48.72,11.29,66.24,33.85a2.5,2.5,0,1,1-3.95,3.07c-16.52-21.27-35.21-30.82-62.49-31.92s-58.7-.46-85.61,12.65a62.58,62.58,0,0,0-16.36,11c-4.2,4.06-7.9,9.15-12,16.51C177.87,404,174.09,417.8,175,430.58c.88,12.41,6.39,24.33,12.2,35.36,2.59,4.91,5.34,9.87,8,14.67,2.39,4.32,4.87,8.79,7.23,13.22a2.5,2.5,0,0,1-2.21,3.68Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M261.89,349a2.49,2.49,0,0,1-1.67-.64,4.61,4.61,0,0,1-1.32-3.69,34.16,34.16,0,0,1,.75-6.35,12.71,12.71,0,0,1,2-5,8.89,8.89,0,0,1,9.85-3.06c3,1.06,5.42,3.7,7.23,8.08a43.72,43.72,0,0,1,2,5.84,2.5,2.5,0,0,1-4.84,1.25,38.8,38.8,0,0,0-1.73-5.17c-1.24-3-2.63-4.71-4.25-5.28a3.88,3.88,0,0,0-4.19,1.3,8.26,8.26,0,0,0-1.17,3.09,29.18,29.18,0,0,0-.64,5.42c0,.09,0,.16,0,.21a2.5,2.5,0,0,1-2,4Zm1.67-4.36h0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M183.89,387.5a2.52,2.52,0,0,1-.41,0c-3.94-.65-7.3-3.73-9.72-8.89-2.67-5.71-3.34-11.18-1.95-15.82,1.62-5.36,7.07-10.44,13.41-9.67,5,.61,8.67,4.6,11.1,7.24l4.87,5.3a2.5,2.5,0,1,1-3.68,3.38l-4.87-5.3c-2.55-2.78-5.08-5.3-8-5.66-3.68-.45-7,2.84-8,6.15-1.31,4.35.2,9.06,1.69,12.25,1.17,2.51,3.17,5.61,6,6.08a2.5,2.5,0,0,1-.41,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M294.85,448.5A43.45,43.45,0,1,1,338.3,405,43.5,43.5,0,0,1,294.85,448.5Zm0-81.9A38.45,38.45,0,1,0,333.3,405,38.49,38.49,0,0,0,294.85,366.6Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M394.52,444.82a2.5,2.5,0,0,1-2.5-2.41c-.18-4.94-.79-11.63-1.59-17.47a4.05,4.05,0,0,1,0-1.16A2.53,2.53,0,0,1,392.5,421a2.46,2.46,0,0,1,2.86,2,4.07,4.07,0,0,1,0,1.28c.82,6,1.44,12.85,1.63,17.9a2.5,2.5,0,0,1-2.41,2.59Zm-4.09-20.91h0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M375.87,636.22a2.5,2.5,0,0,1-2.46-2l-16-84.58a2.5,2.5,0,0,1,4.91-.93l15.56,82L537.75,595,500.12,420.84,344.73,456.22l10,56.84a2.5,2.5,0,0,1-4.92.87l-10.45-59.18a2.5,2.5,0,0,1,1.91-2.87l160.17-36.47a2.5,2.5,0,0,1,3,1.91l38.69,179a2.5,2.5,0,0,1-1.9,3L376.42,636.16A2.45,2.45,0,0,1,375.87,636.22Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M542.38,599.64a2.5,2.5,0,0,1-.49-5c23.54-4.76,47.28-10.1,70.61-15.88L578,417l-53.49,1.44c-6.61.18-13.44.36-20.07,1a2.5,2.5,0,0,1-.51-5c6.82-.7,13.74-.89,20.44-1.07L580,411.91a2.46,2.46,0,0,1,2.51,2l35.43,166.24a2.5,2.5,0,0,1-1.84,2.95c-24.16,6-48.78,11.58-73.18,16.51A2.48,2.48,0,0,1,542.38,599.64Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M339.58,545.66a2.5,2.5,0,0,1-.67-4.91A92.52,92.52,0,0,1,350.66,539l1.36-.16a2.5,2.5,0,0,1,.57,5l-1.36.15a94.18,94.18,0,0,0-11,1.58A2.5,2.5,0,0,1,339.58,545.66Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M365,542.15a2.5,2.5,0,0,1-.41-5c10.27-1.72,16.43-4,18.3-6.92a3.28,3.28,0,0,0,.4-2.81c-1-4-7.08-6.94-18-8.69a2.5,2.5,0,0,1,.79-4.94c8.44,1.36,19.9,4.12,22,12.38a8.33,8.33,0,0,1-1.05,6.79c-2.78,4.27-9.46,7.09-21.67,9.13A2.49,2.49,0,0,1,365,542.15Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M353,517.24l-.28,0A200,200,0,0,0,330.45,516a2.5,2.5,0,0,1,0-5,205,205,0,0,1,22.86,1.26,2.5,2.5,0,0,1-.27,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M374.91,644.09a19.3,19.3,0,0,1-7.71-1.6,35.5,35.5,0,0,1-5.75-3.38l-23.4-15.86a2.5,2.5,0,0,1,2.8-4.14L364.26,635a31.89,31.89,0,0,0,4.94,2.93,14.31,14.31,0,0,0,7.26,1.1,4.63,4.63,0,0,0,2.48-.81c1-.83,1-2.61.47-3.86a2.5,2.5,0,0,1,4.65-1.85c1.39,3.49.62,7.4-1.87,9.52a9.29,9.29,0,0,1-5.17,2A19.23,19.23,0,0,1,374.91,644.09Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M224.4,649.13a19.38,19.38,0,0,1-5.42-.75,5.09,5.09,0,0,1-3-2,5.2,5.2,0,0,1-.74-3c.17-10,7.38-17.73,14.76-24.76a2.5,2.5,0,1,1,3.45,3.62c-6.61,6.3-13.07,13.13-13.21,21.23v.08l.14,0c4.2,1.22,9.32.4,14-2.26,4.56-2.56,8.4-6.47,11.86-10.31a2.5,2.5,0,0,1,3.71,3.35c-3.75,4.16-7.94,8.4-13.13,11.32A25.75,25.75,0,0,1,224.4,649.13Zm-4.15-5.26h0Zm-.31-.44Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M559.82,416.91a2.5,2.5,0,0,1-2.5-2.5V390.84H404.5a2.5,2.5,0,0,1,0-5H559.82a2.5,2.5,0,0,1,2.5,2.5v26.08A2.5,2.5,0,0,1,559.82,416.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M447.94,433.1a2.5,2.5,0,0,1-2.5-2.5V388.34a2.5,2.5,0,0,1,5,0V430.6A2.5,2.5,0,0,1,447.94,433.1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M682,484.5H594.42a2.5,2.5,0,1,1,0-5H679.5v-182h-243v90.84a2.5,2.5,0,0,1-5,0V295a2.5,2.5,0,0,1,2.5-2.5H682a2.5,2.5,0,0,1,2.5,2.5V482A2.5,2.5,0,0,1,682,484.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M682,484.5a2.5,2.5,0,0,1-.66-4.91l62.16-16.93V291.75l-61.27,5.74a2.5,2.5,0,1,1-.47-5l64-6A2.5,2.5,0,0,1,748.5,289V464.57a2.5,2.5,0,0,1-1.84,2.41l-64,17.43A2.52,2.52,0,0,1,682,484.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M598,297.5a2.5,2.5,0,0,1-2.5-2.5V150.5H417.66v142H434a2.5,2.5,0,0,1,0,5H415.16a2.5,2.5,0,0,1-2.5-2.5V148a2.5,2.5,0,0,1,2.5-2.5H598a2.5,2.5,0,0,1,2.5,2.5V295A2.5,2.5,0,0,1,598,297.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M670.74,151.74h0L598,150.5a2.5,2.5,0,1,1,.09-5l72.74,1.24a2.5,2.5,0,0,1,0,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M695.88,296.2a2.5,2.5,0,0,1-2.5-2.5V177.1a2.5,2.5,0,0,1,5,0V293.7A2.5,2.5,0,0,1,695.88,296.2Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M604,150.5a2.5,2.5,0,0,1-2.5-2.5V16L541.5,3.1V148a2.5,2.5,0,0,1-5,0V0a2.5,2.5,0,0,1,.93-1.94,2.5,2.5,0,0,1,2.1-.5l65,14a2.5,2.5,0,0,1,2,2.44V148A2.5,2.5,0,0,1,604,150.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M400,30.5a2.5,2.5,0,0,1-2.5-2.5V5a2.5,2.5,0,0,1,2.41-2.5l139-5A2.51,2.51,0,0,1,541.5-.09a2.5,2.5,0,0,1-2.41,2.59L402.5,7.41V28A2.5,2.5,0,0,1,400,30.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M415.16,179.6H289.78l-68-5.1A2.5,2.5,0,0,1,219.5,172V46a2.5,2.5,0,0,1,2-2.45l68-14a2.49,2.49,0,0,1,.5-.05H427a2.5,2.5,0,0,1,2.5,2.5V148a2.5,2.5,0,0,1-5,0V34.5H290.25L224.5,48V169.68l65.56,4.92h125.1a2.5,2.5,0,0,1,0,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M290,179.6h0a2.5,2.5,0,0,1-2.5-2.5l0-145.1a2.5,2.5,0,0,1,2.5-2.5h0a2.5,2.5,0,0,1,2.5,2.5l0,145.1A2.5,2.5,0,0,1,290,179.6Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M290,316.5H139a2.5,2.5,0,0,1-2.5-2.5V177.1a2.5,2.5,0,0,1,2.41-2.5L242,171a2.5,2.5,0,1,1,.17,5L141.5,179.51v132h146l0-59.5a2.5,2.5,0,0,1,.74-1.77,2.38,2.38,0,0,1,1.78-.72l125.16,1a2.5,2.5,0,1,1,0,5l-122.64-1,0,59.48A2.5,2.5,0,0,1,290,316.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M199.36,316.5a2.5,2.5,0,0,1-2.5-2.5V175a2.5,2.5,0,0,1,5,0V314A2.5,2.5,0,0,1,199.36,316.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M415.16,324.62H144l-.3,0L77,316.48a2.5,2.5,0,0,1,.3-5H139a2.5,2.5,0,0,1,0,5H118.54l25.61,3.12H369.87l-28.15-3.12H290a2.5,2.5,0,0,1,0-5h51.88l.27,0,73.31,8.12a2.5,2.5,0,0,1-.28,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M195.71,489.21H139a2.51,2.51,0,0,1-.5-.05L76.81,476.45a2.5,2.5,0,0,1-2-2.45V314a2.5,2.5,0,0,1,5,0V472l59.44,12.25h56.46a2.5,2.5,0,0,1,0,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M144,489.21a2.5,2.5,0,0,1-2.5-2.5V322.12a2.5,2.5,0,0,1,5,0v164.6A2.5,2.5,0,0,1,144,489.21Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M415.16,391a2.5,2.5,0,0,1-2.5-2.5V322.12a2.5,2.5,0,0,1,5,0V388.5A2.5,2.5,0,0,1,415.16,391Z" transform="translate(-60.79 2.5)"/><circle class="cls-2" cx="268" cy="397.88" r="4.97"/><circle class="cls-2" cx="332.92" cy="374.31" r="4.97"/><path class="cls-2" d="M746,291.5l-.33,0-50.12-6.6a2.5,2.5,0,1,1,.65-5l50.12,6.6a2.5,2.5,0,0,1-.32,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M260.2,516c-11.18,0-22.1-.85-32.78-1.67-5.72-.44-11.25-1.28-17.79-2.41-.42-.07-1.15-.13-1.93-.2-3.83-.31-6.88-.7-8.48-2.55-2.33-2.7-2.49-14.1-2.49-14.21a2.5,2.5,0,0,1,.76-1.78,2.43,2.43,0,0,1,1.81-.7,86.45,86.45,0,0,1,11.45,1.34c2.72.44,5.53.9,8.3,1.14,2.19.19,4.39.43,6.52.67,2.37.27,4.82.54,7.24.73,11.37.88,23.05.62,37.87-.85,4.78-.47,9.53-.91,14.27-1.34,8.69-.79,17.68-1.62,26.58-2.67,6.31-.75,12-1.48,17.45-2.22,4.9-.67,9.64-1.59,14.23-2.48l3-.57a2.5,2.5,0,0,1,.94,4.91l-3,.57c-4.65.9-9.46,1.83-14.5,2.52-5.46.75-11.2,1.48-17.54,2.23-9,1.06-18,1.89-26.71,2.69-4.73.43-9.47.87-14.23,1.34-15.12,1.5-27.08,1.76-38.75.86-2.5-.19-5-.47-7.41-.74-2.1-.23-4.26-.48-6.39-.66-3-.25-5.88-.73-8.69-1.18s-5.43-.89-8.12-1.12c.21,3.07.69,7.15,1.22,8.31.74.45,3.75.69,5.05.8.93.08,1.73.14,2.37.25,6.4,1.1,11.79,1.92,17.33,2.35,16.15,1.25,32.85,2.55,49.94.84,3.43-.34,7-.56,10.36-.78,4.63-.29,9.41-.59,14-1.2,3.91-.53,7.81-1.15,11.58-1.76a221.82,221.82,0,0,1,23.71-2.93c2.85-.15,5.73-.1,8.52-.05,1.38,0,2.75,0,4.11,0a2.5,2.5,0,0,1,0,5c-1.39,0-2.8,0-4.2,0-2.7,0-5.49-.1-8.17,0a215,215,0,0,0-23.18,2.88c-3.81.61-7.74,1.25-11.71,1.78-4.73.63-9.6.94-14.31,1.23-3.36.21-6.84.43-10.18.76C272.16,515.75,266.14,516,260.2,516Zm-57.09-10Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M312.32,579.89q-1.43,0-2.86,0c-15-.5-31.12-1.47-50.81-3.05-3.23-.26-6.56-.34-9.77-.42-3.72-.09-7.57-.19-11.4-.55a74,74,0,0,1-8.77-1.55c-2-.44-4.12-.9-6.18-1.21a55.21,55.21,0,0,0-9.94-.29c-2.27.07-4.62.13-7,0a2.5,2.5,0,0,1-2.38-2.36c-.21-3.82-.29-8.26,1.5-12.54a66.07,66.07,0,0,0,3.9-11.72,3.41,3.41,0,0,0-.06-2.55l-.09-.07a4.08,4.08,0,0,1-1.68-3.3,3.78,3.78,0,0,1,1.78-2.78l.12-.09c1.49-5.19-.17-11.18-1.78-17a76.62,76.62,0,0,1-2.05-8.66,2.5,2.5,0,0,1,4.94-.76,71.94,71.94,0,0,0,1.93,8.08c1.86,6.69,3.78,13.6,1.57,20.34a3.23,3.23,0,0,1-.73,1.2,3.74,3.74,0,0,1,.63,1.13,7.77,7.77,0,0,1,.32,5.48,70.61,70.61,0,0,1-4.19,12.63,19.26,19.26,0,0,0-1.21,8c1.44,0,2.85,0,4.33-.08a59.92,59.92,0,0,1,10.83.34c2.22.33,4.4.81,6.51,1.27a69.34,69.34,0,0,0,8.18,1.46c3.64.35,7.4.44,11,.53,3.29.08,6.68.16,10.05.43,19.61,1.58,35.68,2.55,50.57,3,12.67.43,25.17-2.26,37.24-4.86,7.23-1.55,12.09-2.88,14.44-3.93a2.5,2.5,0,0,1,2,4.56c-2.71,1.21-7.75,2.6-15.43,4.25C336.44,577.34,324.6,579.89,312.32,579.89Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M372,620.83a2.49,2.49,0,0,1-1.73-.69c-1.32-1.27-2.55-2.67-3.74-4a39,39,0,0,0-5.07-5.14,2.5,2.5,0,0,1,3.07-3.94,43.31,43.31,0,0,1,5.76,5.79c1.17,1.33,2.27,2.59,3.43,3.71a2.5,2.5,0,0,1-1.73,4.31Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M357,551.65a5.21,5.21,0,0,1-2.67-1c-5.24-3.3-4.58-11.16-4.14-16.36.07-.8.13-1.54.16-2.18.06-1.23.14-2.47.22-3.7.17-2.67.34-5.43.34-8.11,0-.37-.07-1-.15-1.64-.32-2.75-.76-6.51,1.74-8.64a5,5,0,0,1,2.09-1,4.05,4.05,0,0,1,3.34.57,3.84,3.84,0,0,1,.47-.26,2.5,2.5,0,0,1,3.11.82l.07.09a3.77,3.77,0,0,1,5.15,1c1.64,2.09,1.54,5.24,1.47,7.55,0,.38,0,.72,0,1,0,4.07,0,8.45-.34,12.9,0,.57-.06,1.32-.08,2.17-.17,6.18-.56,11.92-3.51,14.29-.94.76-1.91,1.54-3.26,1.25a2.59,2.59,0,0,1-1.34-.75,2.73,2.73,0,0,1-2.64,2Zm-1.41-37.47a16,16,0,0,0,.13,3.87,20.36,20.36,0,0,1,.18,2.21c0,2.84-.18,5.68-.35,8.43-.08,1.21-.15,2.42-.21,3.64,0,.69-.1,1.49-.17,2.34-.28,3.34-.73,8.69,1.06,11l.18-.14a3.3,3.3,0,0,1,3.06-2,2.86,2.86,0,0,1,2.16.91c.92-2.23,1.07-7.73,1.13-9.73,0-.93,0-1.74.09-2.36.28-4.31.32-8.59.33-12.58,0-.35,0-.75,0-1.18a22.32,22.32,0,0,0-.07-3.18,2.63,2.63,0,0,1-3.27.36,2.5,2.5,0,0,1-3.7-.65l-.09-.14C355.94,514.73,355.76,514.44,355.59,514.19Zm4.89,30.51h0Zm-4.74-30.9h0Zm-1.62-1.9h0Z" transform="translate(-60.79 2.5)"/></g><g id="circle"><path class="cls-2" d="M153.52,177.1A349.71,349.71,0,0,1,222,114.31L221,102a6,6,0,0,0-3.76,1,361.7,361.7,0,0,0-75.95,70.06,6,6,0,0,0-1.31,4.4" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M139.38,195.21A344.77,344.77,0,0,0,72.79,400c0,191.91,156.13,348,348,348s348-156.13,348-348c0-121.6-61.55-232-164.86-296l.87-13a6,6,0,0,1,2.24.81A359.84,359.84,0,0,1,780.86,400,360.13,360.13,0,0,1,89.08,540.14,360.53,360.53,0,0,1,134.23,182a6,6,0,0,1,3.74-2.26Z" transform="translate(-60.79 2.5)"/></g><g id="layers"><g class="cls-8"><path class="cls-6" d="M368.81,388.34l-1.1-23.69s8.48-17.33,8.09-18,6.68-6.06,6.68-6.06l13-1,8.29,1.85,9.82,12.28,7.21,15.07L424.21,386l-4.71,21.73-6.39,11.59-8.61,4.11L390.36,422l-5.08-3.31,3.67-3.79v-5.42l-4-6.79-5.56-2.47-1.51-7.57Z" transform="translate(-60.79 2.5)"/></g><g class="cls-8"><polygon class="cls-6" points="226.66 366.6 237.24 361.46 250.18 361.46 265.7 366.6 279.96 384.01 285.01 395.42 287.35 407.55 286.4 422.15 279.23 440.12 268 452.2 253.91 456.94 235.27 454.47 220.17 446.08 208.28 425.94 205.61 398.57 213.7 378.9 226.66 366.6"/></g><path class="cls-2" d="M426,376.14c-2.08-12-7.08-22.86-14.06-30.5-7.32-8-16-11.61-24.38-10.16s-15.34,7.76-19.54,17.76c-3.34,7.95-4.62,17.52-3.76,27.46a26.09,26.09,0,0,0-17.18,6.73c-8.49-20.91-28.27-34.1-48.45-30.6-23.83,4.13-39.32,30-34.53,57.59,4.35,25.11,24,43.19,45.38,43.19a38.08,38.08,0,0,0,6.5-.56c11.63-2,21.63-9.18,28.14-20.17a55,55,0,0,0,6.39-37.42c-.32-1.87-.74-3.7-1.23-5.49a19.71,19.71,0,0,1,15.78-7.13c.22,1.27.63,3.21.91,4.42a3.06,3.06,0,0,0,6-1.36c-.26-1.15-.67-3.1-.87-4.24-1.89-10.9-1-21.56,2.6-30,3.37-8,8.67-13,14.95-14.1s13,1.85,18.82,8.26c6.2,6.78,10.66,16.52,12.54,27.41,3.81,22-4.06,41.81-17.54,44.14a13,13,0,0,1-3.13.12,23.62,23.62,0,0,1-10.67-3.64,11.5,11.5,0,0,0-1.58-1.14c-.49-.19-1.28.36-1.83.46a9.58,9.58,0,0,0-1.67.32,1.45,1.45,0,0,0-1,1.23,2.66,2.66,0,0,0,.7,1.39,13,13,0,0,1,.83,1.85c.22.45.71.67,1.13.94a28.53,28.53,0,0,0,15.33,4.73,17.49,17.49,0,0,0,3-.24C420.27,424.45,430.38,401.47,426,376.14Zm-87.14,57.62c-5.59,9.43-14.08,15.56-23.92,17.26-20.5,3.55-40.6-13.34-44.81-37.64s9-47,29.55-50.52a32.07,32.07,0,0,1,5.48-.47c18.49,0,35.5,16,39.33,38.11A48.84,48.84,0,0,1,338.85,433.76Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M309.47,458.61c-22.09,0-42-18.92-46.37-44-4.88-28.17,11-54.53,35.35-58.75,19.89-3.45,39.86,8.82,49,29.93a27.19,27.19,0,0,1,15.71-6,58.73,58.73,0,0,1,3.92-26.87c4.34-10.33,11.55-16.85,20.3-18.36s17.73,2.2,25.29,10.47c7.11,7.77,12.19,18.78,14.3,31h0c4.48,25.87-6,49.37-23.34,52.37a18.5,18.5,0,0,1-3.14.25,29.35,29.35,0,0,1-15.87-4.89l-.23-.14a3,3,0,0,1-1.25-1.2c-.13-.27-.23-.54-.33-.81a4.14,4.14,0,0,0-.42-.92l-.16-.22a2.91,2.91,0,0,1-.72-1.74,2.4,2.4,0,0,1,1.67-2.16,5.81,5.81,0,0,1,1.34-.29l.5-.07a3.31,3.31,0,0,0,.46-.17,2.52,2.52,0,0,1,1.92-.24,4.9,4.9,0,0,1,1.26.85,5.44,5.44,0,0,0,.5.39,21.77,21.77,0,0,0,3.33,1.76,21.47,21.47,0,0,0,6.86,1.72,12,12,0,0,0,2.89-.11c12.94-2.24,20.45-21.52,16.73-43-1.85-10.71-6.22-20.27-12.3-26.91-5.63-6.15-12-9-17.91-7.95s-11,5.82-14.2,13.51c-3.49,8.3-4.39,18.77-2.53,29.48.2,1.14.6,3.06.86,4.19a4.06,4.06,0,1,1-7.91,1.81c-.22-1-.53-2.43-.77-3.66a18.76,18.76,0,0,0-13.84,6.39c.45,1.71.82,3.41,1.11,5.07a56,56,0,0,1-6.51,38.1C338.31,448.64,328.07,456,316.15,458A39.24,39.24,0,0,1,309.47,458.61Zm-4.33-101.34a37.16,37.16,0,0,0-6.35.55c-23.28,4-38.41,29.35-33.72,56.44,4.18,24.15,23.27,42.36,44.4,42.36a37.25,37.25,0,0,0,6.33-.54c11.34-2,21.09-9,27.45-19.69a54,54,0,0,0,6.26-36.74c-.31-1.77-.71-3.58-1.21-5.4l-.14-.5.32-.4a20.76,20.76,0,0,1,16.59-7.5l.81,0,.14.79c.23,1.3.63,3.22.9,4.37a2.06,2.06,0,0,0,2.47,1.55,2.06,2.06,0,0,0,1.55-2.47c-.27-1.16-.68-3.13-.88-4.3-1.92-11.08-1-21.95,2.66-30.59,3.5-8.33,9.08-13.56,15.7-14.7s13.62,1.89,19.73,8.57C414.49,356,419,365.93,420.95,377c3.9,22.55-4.33,42.87-18.36,45.3a14,14,0,0,1-3.37.13,23.47,23.47,0,0,1-7.5-1.87,23.81,23.81,0,0,1-3.64-1.93,7.5,7.5,0,0,1-.69-.53,5.15,5.15,0,0,0-.63-.48,4.85,4.85,0,0,0-.5.19,4.3,4.3,0,0,1-.86.29l-.6.09a4.18,4.18,0,0,0-.89.18.65.65,0,0,0-.38.3,1.91,1.91,0,0,0,.33.55l.19.27a5.89,5.89,0,0,1,.65,1.35c.08.21.16.42.26.63a1.78,1.78,0,0,0,.49.36l.29.18a27.71,27.71,0,0,0,14.78,4.57,16.5,16.5,0,0,0,2.8-.22c16.26-2.82,26-25.27,21.71-50.06h0c-2.05-11.85-7-22.5-13.81-30-7.08-7.75-15.42-11.24-23.47-9.85S373,344,368.94,353.64c-3.27,7.78-4.54,17.11-3.68,27l.09,1.08h-1.09a25.09,25.09,0,0,0-16.52,6.47l-1.06,1-.54-1.33C338.55,369.1,322.28,357.27,305.14,357.27Zm4.32,95.22c-19,0-36.41-16.32-40.32-38.94-4.3-24.85,9.32-48,30.36-51.67a33.19,33.19,0,0,1,5.65-.49c19.14,0,36.48,16.74,40.32,38.94a49.84,49.84,0,0,1-5.75,33.94C334,444,325.23,450.25,315.1,452A33,33,0,0,1,309.46,452.49Zm-4.31-89.1a31.2,31.2,0,0,0-5.31.46c-20,3.46-32.85,25.6-28.73,49.36S294.8,453.49,314.76,450c9.55-1.65,17.8-7.61,23.23-16.79h0a47.84,47.84,0,0,0,5.5-32.58C339.81,379.42,323.32,363.39,305.14,363.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M371.49,408.63a13.15,13.15,0,0,1-1.43-.08,12.82,12.82,0,0,1-8.47-4.94,9.18,9.18,0,0,1-1.83-7.18c1.23-6.66,9.76-7.66,14.6-7.21h0a9.63,9.63,0,0,1,4.79,1.55,8.4,8.4,0,0,1,3.17,7.19,11.07,11.07,0,0,1-6.4,9.79A11.23,11.23,0,0,1,371.49,408.63Zm.79-14.5c-3.31,0-7.17.89-7.6,3.21a4.26,4.26,0,0,0,.92,3.28,7.71,7.71,0,0,0,5,3,6.7,6.7,0,0,0,3.36-.42,6.08,6.08,0,0,0,3.38-5.35,3.59,3.59,0,0,0-1.08-3,5.2,5.2,0,0,0-2.35-.64h0C373.39,394.15,372.85,394.13,372.29,394.13Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M363.66,424.5a11.22,11.22,0,0,1-7.68-3,12.76,12.76,0,0,1-3.34-12.21,15.39,15.39,0,0,1,7.71-9.63,2.5,2.5,0,0,1,2.39,4.39,10.53,10.53,0,0,0-5.24,6.45,7.79,7.79,0,0,0,1.94,7.37,6.05,6.05,0,0,0,6.84,1,13.26,13.26,0,0,0,1.65-1.22,18.82,18.82,0,0,1,2.06-1.53c3.61-2.23,8-2,11.37-1.58,1.91.24,4,.51,5-.3s.89-3.23,0-5c-1.06-2.1-5.27-5.48-8-6.77a2.5,2.5,0,0,1,2.15-4.51c3.08,1.47,8.52,5.54,10.28,9s2,8.39-1.34,11.12c-2.66,2.14-6.14,1.7-8.68,1.37s-5.91-.53-8.19.87a14.67,14.67,0,0,0-1.52,1.14,17.46,17.46,0,0,1-2.31,1.68A10.19,10.19,0,0,1,363.66,424.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M376.27,435a8.13,8.13,0,0,1-4-1,13,13,0,0,1-3.16-2.74,12,12,0,0,1-1.82-2.39c-1.18-2.18-2.32-5.7-2-8.26a2.5,2.5,0,1,1,5,.56,11.53,11.53,0,0,0,1.46,5.31,8.1,8.1,0,0,0,1.12,1.4,8.88,8.88,0,0,0,1.92,1.75,4,4,0,0,0,4-.44,6.94,6.94,0,0,0,2.53-4.42,20.49,20.49,0,0,0-.59-7,2.5,2.5,0,1,1,4.89-1,24.37,24.37,0,0,1,.62,8.94,11.8,11.8,0,0,1-4.51,7.58A9.3,9.3,0,0,1,376.27,435Z" transform="translate(-60.79 2.5)"/></g></svg>
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyFlatScene2.png b/vendor/github.com/golang/dep/docs/assets/DigbyFlatScene2.png
deleted file mode 100644
index 80632cd43421bf747c3c24515afbeac765a7b59c..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/DigbyFlatScene2.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyFlatScene2.svg b/vendor/github.com/golang/dep/docs/assets/DigbyFlatScene2.svg
deleted file mode 100644
index 80cbf313da81dff0220e9714c70332112cc2c998..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/assets/DigbyFlatScene2.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 725.13 841.56"><defs><style>.cls-1{fill:#1c1c1b}.cls-2{fill:#ced8d2}.cls-3{opacity:.2}.cls-4{opacity:.45}.cls-5{fill:#ccbca8}.cls-6{fill:#b79765}.cls-7{fill:#fff}.cls-8{opacity:.38}.cls-9{fill:#f6d2a2}.cls-10{fill:#b7a38d}.cls-11{fill:#1d1d1b}.cls-12{opacity:.19}</style></defs><title>BoyerFlatScene2</title><g id="Capa_10" data-name="Capa 10"><path class="cls-1" d="M764.83,322.58A357.59,357.59,0,0,0,608.13,193.31l.36-11,36.64-58.43a2.5,2.5,0,0,0-2.34-3.82l-24.27,2.17,11.87-36.4a2.5,2.5,0,0,0-1.76-3.2l-134.5-34a2.5,2.5,0,0,0-3.05,1.89l-21.16,96.39L429.15,79.7a2.51,2.51,0,0,0-2.31-1.2L276.83,89a2.5,2.5,0,0,0-2.15,3.41l3.72,9.52-17.26-4.35a2.5,2.5,0,0,0-2.5,4.06l53.29,61.29V202.7a3.52,3.52,0,0,0-3.42-.16,357.58,357.58,0,1,0,456.3,120Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M468.33,885.06a362.61,362.61,0,0,1-162-687q.32-.16.65-.29v-33l-52.07-59.88a7.5,7.5,0,0,1,7.49-12.19l7.84,2-.18-.47A7.5,7.5,0,0,1,276.48,84l150-10.5a7.49,7.49,0,0,1,6.93,3.59l34.28,56.48,18.48-84.19a7.5,7.5,0,0,1,9.15-5.67l134.51,34a7.5,7.5,0,0,1,5.29,9.6l-9.52,29.2L642.34,115a7.5,7.5,0,0,1,7,11.45l-35.92,57.28-.2,6.29a362.56,362.56,0,0,1-144.91,695ZM310,207.39a352.51,352.51,0,1,0,296.15-9.48L603,196.57l.51-15.82,34.68-55.31-26.8,2.39L624.8,86.77,495.4,54.06,472.12,160.13,425.66,83.6,280.58,93.76l6,15.39-18.95-4.78,49.29,56.69v50.56Z" transform="translate(-105.77 -43.5)"/></g><g id="background_color" data-name="background color"><path class="cls-2" d="M606.14,196.29C733.21,250,822.37,375.85,822.37,522.5c0,195.53-158.51,354-354,354s-354-158.51-354-354c0-138.66,79.71-258.7,195.81-316.8" transform="translate(-105.77 -43.5)"/></g><g id="background_shadows" data-name="background shadows"><g class="cls-3"><polygon points="655.41 575.12 531.59 650.5 494.43 631.06 496.06 597.66 556.54 578.75 655.41 575.12"/></g><g class="cls-3"><path d="M168.51,577.42l-52.39,5.17s20.59,65.66,26.2,78.18S178.74,727,185.62,737.5s37.45,40.32,37.45,40.32L383.61,705Z" transform="translate(-105.77 -43.5)"/></g></g><g id="Capa_9" data-name="Capa 9"><path class="cls-1" d="M770.15,537.19c-5.12,0-9.59-.48-13-1.76a2.5,2.5,0,0,1,1.78-4.67c7.58,2.88,23.89.83,38.27-1,8.92-1.12,17.34-2.18,23.83-2.18a2.5,2.5,0,0,1,0,5c-6.19,0-14.46,1-23.21,2.14C788.21,535.95,778.35,537.19,770.15,537.19Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M116.11,585.09a2.5,2.5,0,0,1-.58-4.93c12-2.85,23.67-3.07,36.58-3.07a2.5,2.5,0,0,1,0,5h0c-12.64,0-24,.21-35.42,2.93A2.48,2.48,0,0,1,116.11,585.09Z" transform="translate(-105.77 -43.5)"/><g class="cls-4"><path class="cls-1" d="M307.84,758.67h-4.67a2.5,2.5,0,0,1,0-5h4.67a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M348.51,782.67h-6a2.5,2.5,0,1,1,0-5h6a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M491.18,824.67h-2.67a2.5,2.5,0,1,1,0-5h2.67a2.5,2.5,0,1,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M546.51,806h-2.67a2.5,2.5,0,0,1,0-5h2.67a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M693.18,678.67a2.5,2.5,0,0,1-1-4.78,9.8,9.8,0,0,1,4.46-.89,2.5,2.5,0,0,1,2.41,2.59,2.53,2.53,0,0,1-2.59,2.41,4.85,4.85,0,0,0-2.2.44A2.49,2.49,0,0,1,693.18,678.67Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M671.17,663.33a2.5,2.5,0,0,1-.21-5l3.06-.29c1.43-.14,2.86-.28,4.3-.38a2.5,2.5,0,0,1,.36,5c-1.4.1-2.79.24-4.18.37l-3.13.29Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M743.84,654h-6a2.5,2.5,0,0,1,0-5h6a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M787.18,579.33h-8a2.5,2.5,0,0,1,0-5h8a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M628.13,800.15a18.45,18.45,0,0,1-6.49-1,2.5,2.5,0,1,1,1.73-4.69c2.16.8,4.77.7,7.54.59,1,0,2-.07,2.94-.07a2.5,2.5,0,0,1,0,5h-.09c-.87,0-1.75,0-2.65.07S629.13,800.15,628.13,800.15Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M302.11,802.76a25.61,25.61,0,0,1-6.21-.84,2.5,2.5,0,0,1,1.22-4.85,18.38,18.38,0,0,0,6.44.61,2.5,2.5,0,1,1,.57,5A17.58,17.58,0,0,1,302.11,802.76Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M354.79,816.06a18.53,18.53,0,0,1-8-1.64,2.5,2.5,0,0,1,2.15-4.51,14.84,14.84,0,0,0,7.42,1.1,2.5,2.5,0,0,1,.35,5Q355.72,816.06,354.79,816.06Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M239.84,748.67h-5.33a2.5,2.5,0,1,1,0-5h5.33a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g></g><g id="COLOR"><path class="cls-5" d="M636.94,672.51l.8-29.52,123.44-24.37V376.75L670.5,347.84,601.4,325l3.79-143.43L643,122.5,615,125,627.37,87,493.51,51,468.33,152.25,427,81,277,91.5l5.55,14.05L262,101.71,313.76,162l.69,106.83L247.51,274l-11.2-.75,8.12,48.44-1.59,103.56v2.92l-42.58,5.43V470.5l-50.82,8v45l-4.36,2,12.4,36-2,100.22,95.38,63.2c.75.5,131-19.64,131-19.64Z" transform="translate(-105.77 -43.5)"/><path class="cls-6" d="M488,791.08c1.73.41,3.46.83,5.22,1.13,6.25,1.07,11.6,2.26,18.06,1.63,15.87-1.55,33.24-1.7,48.46-6.84,9.3-3.14,17.6-8.61,25.79-14l21.6-14.3c7.14-4.73,14.35-9.51,20.21-15.76,3.07-3.27,6-7.1,10.28-8.44,3.42-1.07,6.91,0,10.21-1s6.54-3.75,8.88-6.16a28.13,28.13,0,0,0,8.11-19.64c-.06-4.51-1.64-9.52-5.69-11.52-5.15-2.55-8.9,1.34-12.27,4.65-2.85,2.8-5.23,7.7-7.65,2-1.27-3-1-5.72-1.82-8.82-2-7.49-2.87-17.1-6.28-24.09s-13.47-5.69-19.9-5c-3.27.35-6.28,2.14-9.35,2.57-5.08.73-10.24-.11-15.36.77-10,1.71-20.73,3.63-30.14,7.61-10.29,4.35-19,11.78-28.48,17.55-6.62,4-8.49,8.54-12.51,14.63-2.18,3.29-2.85,4.21-7.09,4.81a13.21,13.21,0,0,0-7.4,3,133.18,133.18,0,0,0-20,17.45A147.06,147.06,0,0,0,464.33,755c-2.47,4-4.95,7.94-7.57,11.93-2.18,3.31-7.21,7.6-8.2,11.21,4.48.44,9.38,4.8,13.63,6.63,4,1.74,8.69,4.48,13,5.08,2.75.39,5.59-.06,8.33.34C485,790.4,486.49,790.73,488,791.08Z" transform="translate(-105.77 -43.5)"/><path class="cls-6" d="M577.72,629.6q1.12-1.14,2.21-2.32c2.31-2.5,6.69-5.41,7.4-8.85a12.6,12.6,0,0,0-.2-4.62c-.49-2.9-4-13.59-1.07-15.25a6.65,6.65,0,0,1,2.48-.54c4.88-.6,8.84-4.32,11.51-8.45,7.67-11.89,6.78-30.25-1.48-41.48l-5.77-7.85a42.81,42.81,0,0,0-6.15-7.19,24.19,24.19,0,0,0-19.1-5.79c-5.24.6-10.62,1.84-15.71.44-6.12-1.68-10.55-6.81-15.62-10.61-11.44-8.57-26.51-10.51-40.81-10.52a6.36,6.36,0,0,1-3.58-.7,7.41,7.41,0,0,1-2-2.67,19.85,19.85,0,0,0-6.55-6.83,7,7,0,0,0-4.88-1.36,8.49,8.49,0,0,0-3.73,2.19c-2.45,2.07-5.11,4.3-6.63,7.19-1.34,2.55-.75,6.11-3.41,7.46-2.07,1.05-6.25,1-8.69,1.86q-6,2.11-11.86,4.63c-11.08,4.77-21.65,10.62-32.2,16.46-9.48,5.25-19.69,11.33-23.34,21.53-.76,2.13-2.21,3-3.16,5a22.16,22.16,0,0,0-23.17,2.28,10.31,10.31,0,0,0-4.1,5.86,10.86,10.86,0,0,0,1.44,6.8,28,28,0,0,0,16.12,13.78,4.73,4.73,0,0,1,2.38,1.28c1.42,1.8-.31,4.55-1,6.29a16.18,16.18,0,0,0-1.49,6.8v50.12c0,5.83.09,12,3.07,17,24.4.82,49.14-5.34,73.43-7.85,10.86-1.13,21.79-1.25,32.68-2,13.67-1,27.24-2.89,40.81-4.83,6.15-.88,12.4-1.86,18.23-4.11a93,93,0,0,0,25.29-15.26A110.36,110.36,0,0,0,577.72,629.6Z" transform="translate(-105.77 -43.5)"/><path class="cls-7" d="M551.14,648.24a67.44,67.44,0,0,1-9.66,4.38,66.76,66.76,0,0,1-13.13,2.49q-36.59,4.39-73.27,7.93c-22.21,2.14-43.57,6.23-65.86,7.06a40.19,40.19,0,0,0-15.61,3.34c-.16,3.1-.3,6.31.75,9.23s3.64,5.53,6.75,5.62a31.17,31.17,0,0,0,1.32,12.18,62.17,62.17,0,0,0,3.63,8.47c2.84,5.82,5.29,12.19,8.67,17.71,2.63,4.3,5.48,8.34,6.8,13.35,1.23,4.67,3.06,6.19,6.32,9.51,3.59,3.65,7.3,7.54,11,11.31,5.46,5.63,10.9,9.18,18,12.77,1.93,1,3.89,1.83,5.74,2.84,3.09,1.68,3.64,2.29,6.11-.71,3.95-4.81,7.13-10.25,11.23-14.92,3.41-3.88,6.75-7.86,9.78-12,4.73-6.42,9.78-12.61,14.9-18.73,4.32-5.16,10.41-8.76,15-13.52,2.82-2.94.35-3.06-.08-7.15-.74-7,2.48-24.26,12.5-18.55,3.65,2.08,4.47,6.22,7.77,7.92,1-2.83,4.22-5.08,6.75-6.63,4.12-2.52,7.95-5.48,12.35-7.42,6.86-3,13.52-6.36,20.46-9.1,7.16-2.83,14.43-6.14,22-7.72,8.37-1.74,16.44-1.92,25-2.34,6.53-.32,13.08-.12,19.43-1.12,0-1.92-3.18-4.81-4.48-6.45a70.75,70.75,0,0,0-5.79-6.52c-4.4-4.28-8.58-.64-12.84,2.51s-15.29,11-19.27,3.36c-4.43-8.46,2.81-15.4,10.76-15.85,4.41-.25,7.76.45,11.09,3.34,2.94,2.54,5,6.21,8.85,7.3,3.25-5.74-.65-13.37-5.28-16.92-5-3.86-11-3.82-15.33-8.71-1.53-1.75-3-6-5-7-2.57-1.27-4.3,2.26-6,4.44-4,5.2-7.54,10.85-13.37,14.23S557.26,645.07,551.14,648.24Z" transform="translate(-105.77 -43.5)"/><g class="cls-8"><path class="cls-7" d="M548.55,520.1a25.14,25.14,0,0,1,6.58-6.75,23.42,23.42,0,0,1,7.31-2.95,40.69,40.69,0,0,1,35.7,8.76c11.42,10,15.88,25.19,17.67,39.75.86,7,2.84,12.83,1.86,20a46.19,46.19,0,0,1-9.29,22.14,24.82,24.82,0,0,1-7.23,6.57c-4.26,2.37-9.29,2.79-14.15,3.17l-12.41,1c-3,.23-6.28.43-9-1-2.14-1.16-3.63-3.21-5-5.2C543.23,581.15,529,547.74,548.55,520.1Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-8"><path class="cls-7" d="M423.16,562.28a25.14,25.14,0,0,1,6.58-6.75c17.24-11.2,40.27-11.29,59.15-4.76,7.48,2.59,15,6.48,19.15,13.23,2.19,3.57,3.27,7.7,5.06,11.48,2.78,5.88,5.22,8.87,5.62,15.37.35,5.59,1.06,11.13,1.07,16.75,0,10.38-1.67,22-10.26,29-9.82,7.93-21.24,14.51-33.77,16-11.55,1.37-23.07-1.78-33.34-6.94-4.59-2.31-11.26-5.26-14.7-9.17-2.83-3.22-4.69-8.71-6.44-12.64C412.37,603.93,410,580.92,423.16,562.28Z" transform="translate(-105.77 -43.5)"/></g><path class="cls-9" d="M521.44,619.75a4.06,4.06,0,0,0,.1,2.17,3.59,3.59,0,0,0,1.47,1.52,10.39,10.39,0,0,0,11.8-.66c2.25-1.82,3.66-4.55,6-6.22,4.47-3.15,10.66-1.55,15.94-3a8.15,8.15,0,0,0,5.21-3.66c1.57-2.92.15-6.82-2.56-8.74s-6.3-2.16-9.56-1.52a7.14,7.14,0,0,0-2.58.94c-.5.33-.92.76-1.44,1.07a7.24,7.24,0,0,1-2.14.74,91,91,0,0,1-9.6,2.15c-1.8.21-4-.33-5.66.51C524.25,607.22,522.06,615.55,521.44,619.75Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M539.69,595.19a16.74,16.74,0,0,0-5.23,2.53,7.4,7.4,0,0,0-2.66,3.05,2.77,2.77,0,0,0-.21,1.58,3,3,0,0,0,1.52,1.83,8.09,8.09,0,0,0,4.66.9,34.56,34.56,0,0,0,4.74-.86,12.39,12.39,0,0,0,4.27-1.41,3.67,3.67,0,0,0,1.78-3.83,4.43,4.43,0,0,0-2.74-2.55,12.88,12.88,0,0,0-7.51-.78" transform="translate(-105.77 -43.5)"/><path class="cls-7" d="M538.59,620.55a4.57,4.57,0,0,0,.24,1.64c.34,1.06,2.86,5.74,4,6.17,3.37,1.25,12-3.91,12-7.67-.11-7-5.46-6-10.54-4.6C541.69,616.81,538.73,617.93,538.59,620.55Z" transform="translate(-105.77 -43.5)"/><path class="cls-6" d="M511.18,690.5c-9.54-4.09-12.13,7.26-11.68,14.67.27,4.56,1.43,7.6,6.67,7.33,4.82-.25,10.48-4.16,12.43-8.64S516.34,693.51,511.18,690.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-6" d="M601.84,640.83c-4.64-2.27-18.77,2-20.76,7.33-5.05,13.47,13.34,13.65,20.77,9.07C608.25,653.3,614.29,646.82,601.84,640.83Z" transform="translate(-105.77 -43.5)"/><polygon class="cls-10" points="261.69 395.02 182.17 404.84 135.41 383.03 140.61 281.16 130.54 229.75 142.41 232.33 236.08 222.66 247.41 240.66 251.49 239.66 264.08 210.62 310.13 222.66 306.47 236.45 312.74 236 302.08 275.33 302.33 355.11 274.9 357.33 280.37 390.09 254.85 381.34 261.69 395.02"/></g><g id="DETAILS"><path class="cls-11" d="M652,604.19a1.5,1.5,0,0,1-.3-3l27.16-5.51a1.5,1.5,0,0,1,.6,2.94l-27.15,5.51A1.5,1.5,0,0,1,652,604.19Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M656.45,629.7a1.5,1.5,0,0,1-1.43-1c-2.88-8.79-3.75-17.24-4.47-25.85a1.5,1.5,0,0,1,1.37-1.62,1.52,1.52,0,0,1,1.62,1.37c.7,8.42,1.55,16.68,4.33,25.16a1.5,1.5,0,0,1-1.43,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M656.44,629.7a1.5,1.5,0,0,1-.27-3c9.22-1.72,19.79-3.64,28.25-4.79a1.5,1.5,0,0,1,.41,3c-8.4,1.15-18.92,3.05-28.11,4.77Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M684.63,624.91a1.5,1.5,0,0,1-1.41-1c-1.87-5.22-2.81-11.14-3.73-16.87-.54-3.4-1.06-6.61-1.74-9.53a1.5,1.5,0,0,1,2.92-.68c.7,3,1.23,6.29,1.78,9.74.89,5.59,1.82,11.37,3.59,16.33a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M683.75,598.95a1.5,1.5,0,0,1-.3-3l27.16-5.51a1.5,1.5,0,1,1,.6,2.94l-27.15,5.51A1.5,1.5,0,0,1,683.75,598.95Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M688.15,624.45a1.5,1.5,0,0,1-1.43-1c-2.88-8.79-3.75-17.24-4.47-25.85a1.5,1.5,0,0,1,1.37-1.62,1.52,1.52,0,0,1,1.62,1.37c.7,8.42,1.55,16.68,4.33,25.16a1.5,1.5,0,0,1-1.43,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M688.15,624.45a1.5,1.5,0,0,1-.27-3c9.21-1.72,19.77-3.64,28.25-4.79a1.5,1.5,0,0,1,.41,3c-8.42,1.15-18.93,3.06-28.11,4.77Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M716.33,619.67a1.5,1.5,0,0,1-1.41-1c-1.87-5.22-2.81-11.14-3.73-16.87-.54-3.4-1.06-6.61-1.74-9.53a1.5,1.5,0,1,1,2.92-.68c.7,3,1.23,6.29,1.78,9.74.89,5.59,1.82,11.37,3.59,16.33a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M715.47,593.5a1.5,1.5,0,0,1-.3-3L742.33,585a1.5,1.5,0,0,1,.6,2.94l-27.16,5.51A1.49,1.49,0,0,1,715.47,593.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M719.87,619a1.5,1.5,0,0,1-1.43-1c-2.88-8.79-3.75-17.24-4.47-25.85a1.5,1.5,0,0,1,3-.25c.7,8.42,1.55,16.68,4.33,25.16a1.5,1.5,0,0,1-1.43,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M719.87,619a1.5,1.5,0,0,1-.27-3c9.21-1.72,19.76-3.64,28.25-4.79a1.5,1.5,0,1,1,.4,3c-8.43,1.15-18.94,3.06-28.11,4.77Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M748.05,614.22a1.5,1.5,0,0,1-1.41-1c-1.87-5.22-2.82-11.14-3.73-16.87-.54-3.4-1.06-6.61-1.74-9.53a1.5,1.5,0,0,1,2.92-.68c.7,3,1.23,6.29,1.78,9.74.89,5.59,1.82,11.38,3.59,16.33a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M666.66,622.38a1.5,1.5,0,0,1-1.47-1.21,120.78,120.78,0,0,1-1.74-12,1.5,1.5,0,1,1,3-.28,118,118,0,0,0,1.7,11.69,1.5,1.5,0,0,1-1.47,1.79Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M662.34,609.44a.26.26,0,0,0,0,.15c0,.15.25.12.39.05a12.33,12.33,0,0,1,4.83-1.24,11.24,11.24,0,0,1-1.68-2c-.28-.39-1.12-1.92-1.64-1.94s-.76,1.76-.89,2.22A19.33,19.33,0,0,1,662.34,609.44Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M671.86,621.56a1.5,1.5,0,0,1-1.47-1.21,120.75,120.75,0,0,1-1.74-12,1.5,1.5,0,1,1,3-.28,117.9,117.9,0,0,0,1.7,11.69,1.5,1.5,0,0,1-1.18,1.76Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M667.54,608.61a.26.26,0,0,0,0,.15c0,.15.25.12.39.05a12.33,12.33,0,0,1,4.83-1.24,11.24,11.24,0,0,1-1.68-2c-.28-.39-1.12-1.92-1.64-1.94s-.76,1.76-.89,2.22A19.33,19.33,0,0,1,667.54,608.61Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M702.49,619a2.52,2.52,0,0,1-.46,0,3.11,3.11,0,0,1-2.3-2.24,14.26,14.26,0,0,1-.48-1.74l-1.45-6.37a1.5,1.5,0,1,1,2.93-.67l1.45,6.37a12.26,12.26,0,0,0,.35,1.31,5.84,5.84,0,0,0,.14-.61,1.5,1.5,0,0,1,2.95.56,5.49,5.49,0,0,1-.71,2A2.91,2.91,0,0,1,702.49,619Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M693.91,610.54a2.17,2.17,0,0,1-1.89-.87c-.61-.85-.49-2,.34-3.36a8.16,8.16,0,0,1,4.83-3.94,11.49,11.49,0,0,1,4.48-.26,6.73,6.73,0,0,1,3.94,1.92,4.41,4.41,0,0,1,1.9,3.2,1.5,1.5,0,0,1-1.23,1.49c-2.55.46-5.14.88-7.71,1.25-.48.07-1,.12-1.47.17a21.5,21.5,0,0,0-2.27.32A4.39,4.39,0,0,1,693.91,610.54ZM700,605a7.29,7.29,0,0,0-2,.25,4.76,4.76,0,0,0-2.72,2.06c.51-.07,1-.12,1.51-.18s.91-.09,1.36-.16c1.77-.25,3.56-.53,5.33-.83a3.56,3.56,0,0,0-2.16-1.06A11.39,11.39,0,0,0,700,605Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M698.86,604.5a1.5,1.5,0,0,1-1.45-1.11l-.44-1.6a1.5,1.5,0,1,1,2.89-.79l.44,1.6a1.5,1.5,0,0,1-1.45,1.89Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M729.58,605.81a6.59,6.59,0,0,1-2.87-.71,4,4,0,0,1-1.54-1.23,4.38,4.38,0,0,1-.67-2l-1.1-7.41a1.5,1.5,0,1,1,3-.44l1.1,7.41a2.64,2.64,0,0,0,.16.7,1.16,1.16,0,0,0,.41.26,3.42,3.42,0,0,0,1.76.39,1.67,1.67,0,0,0,1.19-.6c.52-.71.27-2,0-3.21l-1.22-5.27a1.5,1.5,0,1,1,2.92-.68l1.22,5.27c.31,1.32.88,3.77-.5,5.66a4.62,4.62,0,0,1-3.34,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M724.92,595.53a1.5,1.5,0,0,1-.49-2.92,8.6,8.6,0,0,1,2-.38l4.62-.46a1.5,1.5,0,0,1,.3,3l-4.62.46a6.16,6.16,0,0,0-1.34.23A1.5,1.5,0,0,1,724.92,595.53Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M730.91,613.71a1.5,1.5,0,0,1-1.46-1.19c-.54-2.52-1-5.09-1.25-7.65a1.5,1.5,0,1,1,3-.34c.28,2.46.68,4.93,1.2,7.36a1.5,1.5,0,0,1-1.47,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M728.12,615a1.5,1.5,0,0,1-.52-2.91,9.5,9.5,0,0,1,2.54-.46l.75-.07A9.73,9.73,0,0,0,733,611a1.5,1.5,0,1,1,1,2.82,12.73,12.73,0,0,1-2.81.67l-.85.08a7.07,7.07,0,0,0-1.76.29A1.49,1.49,0,0,1,728.12,615Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M500.65,218.38a1.5,1.5,0,0,1-.13-3l27.59-2.52a1.5,1.5,0,1,1,.27,3l-27.59,2.52Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M502.24,244.21a1.5,1.5,0,0,1-1.47-1.19c-1.9-9.06-1.85-17.55-1.62-26.18a1.5,1.5,0,1,1,3,.08c-.23,8.44-.28,16.74,1.56,25.48a1.5,1.5,0,0,1-1.47,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M502.24,244.21a1.5,1.5,0,0,1-.11-3c9.34-.71,20.05-1.46,28.61-1.69h0a1.5,1.5,0,0,1,0,3c-8.49.22-19.15,1-28.46,1.68Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M530.77,242.53a1.5,1.5,0,0,1-1.46-1.15C528,236,527.73,230,527.44,224.2c-.17-3.44-.33-6.68-.69-9.66a1.5,1.5,0,0,1,3-.36c.37,3.08.53,6.38.71,9.87.28,5.66.57,11.51,1.79,16.63a1.5,1.5,0,0,1-1.46,1.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M532.74,216.62a1.5,1.5,0,0,1-.13-3l27.59-2.52a1.5,1.5,0,1,1,.27,3l-27.59,2.52Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M534.33,242.45a1.5,1.5,0,0,1-1.47-1.19c-1.9-9.06-1.85-17.55-1.62-26.18a1.5,1.5,0,1,1,3,.08c-.23,8.44-.28,16.74,1.56,25.48a1.5,1.5,0,0,1-1.47,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M534.33,242.45a1.5,1.5,0,0,1-.11-3c9.34-.71,20.05-1.46,28.61-1.69a1.5,1.5,0,0,1,.08,3c-8.49.22-19.15,1-28.46,1.68Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M562.86,240.77a1.5,1.5,0,0,1-1.46-1.15c-1.29-5.39-1.58-11.38-1.87-17.17-.17-3.44-.33-6.68-.69-9.66a1.5,1.5,0,0,1,3-.36c.37,3.08.53,6.38.71,9.87.28,5.66.57,11.51,1.79,16.63a1.5,1.5,0,0,1-1.46,1.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M564.86,214.67a1.5,1.5,0,0,1-.13-3l27.59-2.52a1.5,1.5,0,1,1,.27,3L565,214.66Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M566.45,240.5A1.5,1.5,0,0,1,565,239.3c-1.9-9.06-1.85-17.55-1.62-26.18a1.5,1.5,0,1,1,3,.08c-.23,8.44-.28,16.74,1.56,25.48a1.5,1.5,0,0,1-1.47,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M566.45,240.5a1.5,1.5,0,0,1-.11-3c9.33-.71,20-1.46,28.61-1.69a1.5,1.5,0,0,1,.08,3c-8.51.22-19.16,1-28.46,1.68Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M595,238.81a1.5,1.5,0,0,1-1.46-1.15c-1.29-5.39-1.58-11.38-1.87-17.18-.17-3.44-.33-6.68-.69-9.66a1.5,1.5,0,0,1,3-.36c.37,3.08.53,6.38.71,9.87.28,5.66.57,11.51,1.79,16.63a1.5,1.5,0,0,1-1.46,1.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M513.19,238.06a1.5,1.5,0,0,1-1.49-1.37,120.8,120.8,0,0,1-.42-12.11,1.52,1.52,0,0,1,1.52-1.48,1.5,1.5,0,0,1,1.48,1.52,118,118,0,0,0,.41,11.81,1.5,1.5,0,0,1-1.37,1.62Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M510.14,224.71a.26.26,0,0,0,0,.15c0,.15.24.14.38.09a12.33,12.33,0,0,1,4.93-.71,11.24,11.24,0,0,1-1.46-2.14c-.24-.42-.91-2-1.42-2.11s-.95,1.66-1.12,2.11A19.33,19.33,0,0,1,510.14,224.71Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M518.45,237.8a1.5,1.5,0,0,1-1.49-1.37,120.79,120.79,0,0,1-.42-12.11,1.5,1.5,0,0,1,1.5-1.48h0a1.5,1.5,0,0,1,1.48,1.52,118,118,0,0,0,.41,11.81,1.5,1.5,0,0,1-1.37,1.62Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M515.4,224.46a.26.26,0,0,0,0,.15c0,.15.24.14.38.09a12.33,12.33,0,0,1,4.93-.71,11.24,11.24,0,0,1-1.46-2.14c-.24-.42-.91-2-1.42-2.11s-.95,1.66-1.12,2.11A19.33,19.33,0,0,1,515.4,224.46Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M549.29,238.63a2.53,2.53,0,0,1-.73-.11,3.11,3.11,0,0,1-2-2.48,14,14,0,0,1-.28-1.78l-.75-6.5a1.5,1.5,0,1,1,3-.34l.74,6.49a12.42,12.42,0,0,0,.2,1.34,5.71,5.71,0,0,0,.21-.59,1.5,1.5,0,1,1,2.87.88,5.48,5.48,0,0,1-.93,2A3,3,0,0,1,549.29,238.63Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M541.83,229.26a2.3,2.3,0,0,1-2.2-1.1c-.51-.91-.27-2,.7-3.3a8.16,8.16,0,0,1,5.24-3.39,11.43,11.43,0,0,1,4.48.23,6.71,6.71,0,0,1,3.71,2.33,4.4,4.4,0,0,1,1.54,3.39,1.5,1.5,0,0,1-1.39,1.34c-2.58.18-5.21.32-7.8.4-.49,0-1,0-1.48,0a22.18,22.18,0,0,0-2.28.07Zm12-2h0Zm-6.65-2.92a6.64,6.64,0,0,0-1.09.09,4.76,4.76,0,0,0-2.93,1.75c.51,0,1,0,1.51,0s.92,0,1.37,0c1.79-.06,3.59-.14,5.39-.24a3.56,3.56,0,0,0-2-1.29A10,10,0,0,0,547.15,224.35Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M547.14,223.79a1.5,1.5,0,0,1-1.48-1.27l-.26-1.64a1.5,1.5,0,1,1,3-.47l.26,1.64a1.5,1.5,0,0,1-1.25,1.72Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M578,228.46h-.11a6.37,6.37,0,0,1-3.25-1,4,4,0,0,1-1.4-1.39,4.39,4.39,0,0,1-.46-2l-.29-7.49a1.5,1.5,0,0,1,3-.12l.29,7.49a2.64,2.64,0,0,0,.08.71,1.17,1.17,0,0,0,.38.3,3.4,3.4,0,0,0,1.7.58,1.69,1.69,0,0,0,1.25-.46c.6-.65.49-2,.35-3.19l-.64-5.37a1.5,1.5,0,0,1,3-.35l.64,5.37c.16,1.34.46,3.85-1.12,5.57A4.6,4.6,0,0,1,578,228.46Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M574,217.71a1.5,1.5,0,0,1-.33-3,8.77,8.77,0,0,1,2.05-.15l4.65,0a1.5,1.5,0,0,1,0,3h0l-4.64,0a6.15,6.15,0,0,0-1.35.08A1.53,1.53,0,0,1,574,217.71Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M578,236.44a1.5,1.5,0,0,1-1.49-1.35c-.26-2.55-.4-5.16-.41-7.74a1.5,1.5,0,0,1,1.49-1.51h0a1.5,1.5,0,0,1,1.5,1.49c0,2.48.14,5,.39,7.45a1.5,1.5,0,0,1-1.34,1.64Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M575.09,237.37a1.5,1.5,0,0,1-.36-3,9.55,9.55,0,0,1,2.58-.18h.75a9.75,9.75,0,0,0,2.19-.27,1.5,1.5,0,1,1,.71,2.92,12.81,12.81,0,0,1-2.87.36h-.85a7.06,7.06,0,0,0-1.79.1A1.52,1.52,0,0,1,575.09,237.37Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M266.5,686.83a1.5,1.5,0,0,1-.31-3l27.11-5.73a1.5,1.5,0,1,1,.62,2.94l-27.11,5.73A1.55,1.55,0,0,1,266.5,686.83Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M271.1,712.29a1.5,1.5,0,0,1-1.42-1c-3-8.77-3.9-17.21-4.68-25.81a1.5,1.5,0,1,1,3-.27c.76,8.41,1.68,16.66,4.53,25.13a1.5,1.5,0,0,1-.94,1.9A1.52,1.52,0,0,1,271.1,712.29Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M271.1,712.29a1.5,1.5,0,0,1-.29-3c9.18-1.79,19.71-3.79,28.21-5a1.5,1.5,0,0,1,.43,3c-8.43,1.22-18.92,3.21-28.07,5A1.46,1.46,0,0,1,271.1,712.29Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M299.24,707.28a1.5,1.5,0,0,1-1.41-1c-1.91-5.2-2.91-11.12-3.87-16.84-.57-3.39-1.11-6.6-1.81-9.51a1.5,1.5,0,0,1,2.92-.71c.73,3,1.28,6.27,1.86,9.72.94,5.59,1.91,11.36,3.73,16.3a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M298.16,681.32a1.5,1.5,0,0,1-.31-3L325,672.62a1.5,1.5,0,0,1,.62,2.94l-27.11,5.73A1.55,1.55,0,0,1,298.16,681.32Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M302.77,706.79a1.5,1.5,0,0,1-1.42-1c-3-8.77-3.9-17.22-4.68-25.81a1.5,1.5,0,1,1,3-.27c.76,8.41,1.68,16.66,4.53,25.13a1.5,1.5,0,0,1-.94,1.9A1.52,1.52,0,0,1,302.77,706.79Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M302.77,706.79a1.5,1.5,0,0,1-.29-3c9.2-1.8,19.75-3.8,28.21-5a1.5,1.5,0,1,1,.43,3c-8.4,1.21-18.9,3.21-28.07,5Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M330.91,701.78a1.5,1.5,0,0,1-1.41-1c-1.91-5.2-2.91-11.12-3.87-16.84-.57-3.39-1.11-6.6-1.81-9.51a1.5,1.5,0,0,1,2.92-.71c.73,3,1.28,6.27,1.86,9.72.94,5.58,1.91,11.36,3.73,16.3a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M329.83,675.62a1.5,1.5,0,0,1-.31-3l27.11-5.73a1.5,1.5,0,1,1,.62,2.94l-27.11,5.73A1.55,1.55,0,0,1,329.83,675.62Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M334.44,701.08a1.5,1.5,0,0,1-1.42-1c-3-8.77-3.9-17.21-4.68-25.81a1.5,1.5,0,1,1,3-.27c.76,8.41,1.68,16.66,4.53,25.12a1.5,1.5,0,0,1-.94,1.9A1.52,1.52,0,0,1,334.44,701.08Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M334.44,701.08a1.5,1.5,0,0,1-.29-3c9.19-1.79,19.74-3.8,28.21-5a1.5,1.5,0,0,1,.43,3c-8.41,1.22-18.91,3.21-28.07,5Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M362.58,696.07a1.5,1.5,0,0,1-1.41-1c-1.91-5.2-2.91-11.12-3.87-16.83-.57-3.39-1.11-6.6-1.82-9.52a1.5,1.5,0,0,1,2.92-.71c.73,3,1.28,6.28,1.86,9.72.94,5.58,1.91,11.36,3.73,16.3a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M281.26,704.9a1.5,1.5,0,0,1-1.47-1.2c-.81-3.95-1.43-8-1.84-12a1.5,1.5,0,1,1,3-.3c.4,3.9,1,7.83,1.79,11.68a1.5,1.5,0,0,1-1.17,1.77A1.54,1.54,0,0,1,281.26,704.9Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M276.84,692a.26.26,0,0,0,0,.15c0,.15.25.12.39,0a12.33,12.33,0,0,1,4.82-1.28,11.24,11.24,0,0,1-1.7-2c-.29-.39-1.14-1.92-1.66-1.93s-.75,1.76-.87,2.23A19.33,19.33,0,0,1,276.84,692Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M286.45,704a1.5,1.5,0,0,1-1.47-1.2,120.91,120.91,0,0,1-1.84-12,1.5,1.5,0,1,1,3-.3,118,118,0,0,0,1.79,11.68,1.5,1.5,0,0,1-1.17,1.77A1.53,1.53,0,0,1,286.45,704Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M282,691.12a.26.26,0,0,0,0,.15c0,.15.25.12.39,0a12.33,12.33,0,0,1,4.82-1.28,11.24,11.24,0,0,1-1.7-2c-.29-.39-1.14-1.92-1.66-1.93s-.75,1.76-.87,2.23A19.33,19.33,0,0,1,282,691.12Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M317.05,701.25a2.49,2.49,0,0,1-.44,0,3.11,3.11,0,0,1-2.32-2.23,14.09,14.09,0,0,1-.49-1.73l-1.5-6.36a1.5,1.5,0,0,1,2.92-.69l1.5,6.36a12.44,12.44,0,0,0,.36,1.31,5.79,5.79,0,0,0,.13-.61,1.5,1.5,0,1,1,3,.54,5.42,5.42,0,0,1-.7,2.05A2.91,2.91,0,0,1,317.05,701.25Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M308.39,692.83a2.17,2.17,0,0,1-1.87-.86c-.61-.84-.51-2,.31-3.36a8.15,8.15,0,0,1,4.8-4,11.42,11.42,0,0,1,4.48-.3,6.72,6.72,0,0,1,4,1.88,4.4,4.4,0,0,1,1.93,3.18,1.5,1.5,0,0,1-1.22,1.49c-2.56.49-5.15.93-7.7,1.31-.48.07-1,.13-1.46.18a21.61,21.61,0,0,0-2.27.33A4.39,4.39,0,0,1,308.39,692.83Zm6.15-5.59a7.42,7.42,0,0,0-2.07.27,4.76,4.76,0,0,0-2.71,2.08c.51-.08,1-.13,1.51-.19s.91-.1,1.36-.17c1.76-.26,3.54-.56,5.32-.87a3.57,3.57,0,0,0-2.17-1A11.49,11.49,0,0,0,314.55,687.24Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M313.31,686.76a1.5,1.5,0,0,1-1.44-1.09l-.45-1.6a1.5,1.5,0,1,1,2.89-.81l.45,1.6a1.5,1.5,0,0,1-1.44,1.91Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M344,687.81a6.59,6.59,0,0,1-2.83-.68,3.93,3.93,0,0,1-1.55-1.22,4.38,4.38,0,0,1-.69-2l-1.16-7.4a1.5,1.5,0,0,1,3-.47l1.16,7.4a2.62,2.62,0,0,0,.17.69,1.14,1.14,0,0,0,.41.26,3.37,3.37,0,0,0,1.76.38,1.67,1.67,0,0,0,1.18-.61c.52-.72.26-2,0-3.21l-1.27-5.26A1.5,1.5,0,0,1,347,675l1.27,5.26c.32,1.32.91,3.77-.46,5.66a4.62,4.62,0,0,1-3.33,1.84Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M339.3,677.57a1.5,1.5,0,0,1-.5-2.91,8.62,8.62,0,0,1,2-.39l4.62-.5a1.5,1.5,0,1,1,.32,3l-4.62.5a6.21,6.21,0,0,0-1.34.24A1.49,1.49,0,0,1,339.3,677.57Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M345.44,695.71a1.5,1.5,0,0,1-1.46-1.17c-.56-2.51-1-5.08-1.31-7.64a1.5,1.5,0,1,1,3-.36c.3,2.46.73,4.93,1.26,7.35a1.5,1.5,0,0,1-1.47,1.83Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M342.65,697a1.5,1.5,0,0,1-.53-2.9,9.58,9.58,0,0,1,2.54-.48l.74-.08a9.78,9.78,0,0,0,2.15-.53,1.5,1.5,0,0,1,1,2.81,12.85,12.85,0,0,1-2.81.69l-.84.09a7.08,7.08,0,0,0-1.77.31A1.5,1.5,0,0,1,342.65,697Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M698.06,387.11a3.52,3.52,0,0,1-1.07-.17c-19.51-6.22-39-13.58-57.77-20.69-27.37-10.35-55.66-21.06-84.39-28.32a3.53,3.53,0,1,1,1.73-6.84c29.12,7.36,57.61,18.14,85.16,28.56,18.72,7.08,38.09,14.41,57.42,20.57a3.53,3.53,0,0,1-1.07,6.89Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M233.85,453.13a3.53,3.53,0,0,1-.9-6.94c12.29-3.27,24.88-6.06,37.4-8.29a3.53,3.53,0,0,1,1.24,6.95c-12.33,2.19-24.72,4.94-36.82,8.16A3.55,3.55,0,0,1,233.85,453.13Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M557.18,676.67a1.5,1.5,0,0,1-1.35-.85,43.4,43.4,0,0,1-1.72-4.29c-1-2.89-1.94-5.39-4.29-7.6a1.5,1.5,0,1,1,2.05-2.19c2.88,2.7,4,5.79,5.06,8.78a41,41,0,0,0,1.6,4,1.5,1.5,0,0,1-1.35,2.15Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M564.18,672.33a1.5,1.5,0,0,1-1.22-.62,9.23,9.23,0,0,1-1.36-4.23,12.75,12.75,0,0,0-.42-2.11,8.8,8.8,0,0,0-1.28-2.19,8.19,8.19,0,0,1-1.89-4.25,1.5,1.5,0,0,1,3-.18,5.7,5.7,0,0,0,1.34,2.7,11.35,11.35,0,0,1,1.68,3,15.14,15.14,0,0,1,.54,2.62,6.87,6.87,0,0,0,.83,2.91,1.5,1.5,0,0,1-1.22,2.38Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M411.84,735.33a1.5,1.5,0,0,1-.95-2.66c4.89-4,15-6.91,21.52-7.33a1.5,1.5,0,1,1,.19,3c-6.1.39-15.52,3.16-19.81,6.67A1.49,1.49,0,0,1,411.84,735.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M425.84,743a1.5,1.5,0,0,1-.73-2.81c.79-.43,1.54-.93,2.35-1.46a21.68,21.68,0,0,1,4.89-2.64,1.5,1.5,0,0,1,1,2.84,19.12,19.12,0,0,0-4.21,2.31c-.81.54-1.66,1.09-2.55,1.58A1.49,1.49,0,0,1,425.84,743Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M492.18,698.67h-.07a1.5,1.5,0,0,1-1.43-1.57c.16-3.24,3.28-9.69,5.4-12a1.5,1.5,0,1,1,2.19,2.05c-1.71,1.82-4.47,7.53-4.6,10A1.5,1.5,0,0,1,492.18,698.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M492.18,708.33a1.5,1.5,0,0,1-1.37-2.12,14.94,14.94,0,0,0,1.2-4.79,1.5,1.5,0,0,1,3,.14,17.83,17.83,0,0,1-1.46,5.88A1.5,1.5,0,0,1,492.18,708.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M488.84,783.33a1.5,1.5,0,0,1-.57-.11c-.86-.35-1.75-.69-2.57-1a1.5,1.5,0,1,1,1-2.84c.89.3,1.84.66,2.76,1a1.5,1.5,0,0,1-.57,2.89Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M492.18,776.67H492a9.22,9.22,0,0,1-3.59-1.2,1.5,1.5,0,1,1,1.51-2.59,6.19,6.19,0,0,0,2.41.8,1.5,1.5,0,0,1-.17,3Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M498.45,782.38a6.56,6.56,0,0,1-2.51-.49,1.5,1.5,0,0,1,1.14-2.78,3.67,3.67,0,0,0,1.9.23,1.5,1.5,0,1,1,.39,3A7.09,7.09,0,0,1,498.45,782.38Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M631.18,690.67a1.5,1.5,0,0,1-1.5-1.5v-3a1.5,1.5,0,0,1,3,0v3A1.5,1.5,0,0,1,631.18,690.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M632.51,700.67h-.21A1.5,1.5,0,0,1,631,699a2.59,2.59,0,0,0-.21-1.5,1.5,1.5,0,0,1,2.72-1.26,5.58,5.58,0,0,1,.46,3.17A1.5,1.5,0,0,1,632.51,700.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M627.18,696.33a1.5,1.5,0,0,1-1.5-1.5v-1.67a1.5,1.5,0,0,1,3,0v1.67A1.5,1.5,0,0,1,627.18,696.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M372.18,581.33a1.5,1.5,0,0,1-.72-2.82c3.81-2.08,14.85-4.39,18.79-.4a1.5,1.5,0,1,1-2.13,2.11c-2.49-2.52-11.85-.91-15.21.93A1.49,1.49,0,0,1,372.18,581.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M388.51,580.33a1.5,1.5,0,0,1-1.14-.52,24.8,24.8,0,0,0-5.8-4.47c-3.37-2.12-6.86-4.32-8.77-8.56a1.5,1.5,0,1,1,2.74-1.23c1.54,3.42,4.5,5.28,7.63,7.25a27.44,27.44,0,0,1,6.47,5.05,1.5,1.5,0,0,1-1.14,2.48Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M510.58,669.36l-1.18,0h-1.23a1.5,1.5,0,0,1,0-3h1.29a13.85,13.85,0,0,0,4-.29,1.5,1.5,0,1,1,.81,2.89A13.35,13.35,0,0,1,510.58,669.36Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M521.51,671.33h-2a1.5,1.5,0,0,1,0-3h2a1.5,1.5,0,0,1,0,3Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M549.17,628a1.5,1.5,0,0,1-1.47-1.21A30,30,0,0,0,543,616.46a1.5,1.5,0,1,1,2.31-1.92c2.25,2.71,4.66,8.39,5.32,11.67a1.5,1.5,0,0,1-1.18,1.76A1.46,1.46,0,0,1,549.17,628Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M268.51,659a1.5,1.5,0,0,1-1.5-1.5v-4.67a1.5,1.5,0,0,1,3,0v4.67A1.5,1.5,0,0,1,268.51,659Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M267.84,666.67a1.5,1.5,0,0,1-1.49-1.33,8.15,8.15,0,0,1,.41-3.67,1.5,1.5,0,0,1,2.83,1,5.18,5.18,0,0,0-.26,2.33,1.5,1.5,0,0,1-1.32,1.66Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M273.17,659.33a1.5,1.5,0,0,1-1.48-1.3,4.89,4.89,0,0,1,.48-2.88,1.5,1.5,0,1,1,2.68,1.35,1.89,1.89,0,0,0-.19,1.12,1.5,1.5,0,0,1-1.28,1.69Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M165.51,652.67a1.5,1.5,0,0,1-1.4-.95,33.38,33.38,0,0,1-2.1-13,1.5,1.5,0,0,1,3,.16,30.59,30.59,0,0,0,1.9,11.7,1.5,1.5,0,0,1-1.39,2.05Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M170.51,646.67a1.5,1.5,0,0,1-1.2-.59,17.13,17.13,0,0,1-1.55-2.73c-.19-.39-.38-.77-.57-1.13a1.5,1.5,0,0,1,2.65-1.42c.21.39.41.81.62,1.22a15.28,15.28,0,0,0,1.25,2.25,1.5,1.5,0,0,1-1.19,2.41Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M270.84,441.67h0a1.5,1.5,0,0,1-1.5-1.5,15.5,15.5,0,0,0-.58-3.65,27.65,27.65,0,0,1-.57-2.81,30,30,0,0,1-.21-3.51c0-.44,0-.87,0-1.29a1.5,1.5,0,0,1-1.85-.73,8.88,8.88,0,0,1-.72-2.27,3.93,3.93,0,0,1-.73.54,1.5,1.5,0,0,1-2.2-.92l-.08-.3-.06-.22c-.17.32-.34.63-.53.93a1.5,1.5,0,0,1-2.17.42,6.21,6.21,0,0,1-.52-.43,28.48,28.48,0,0,1,.58,7.39,1.5,1.5,0,1,1-3-.26,27.61,27.61,0,0,0-.63-7.12,35.76,35.76,0,0,1-.73-6.67,1.5,1.5,0,0,1,2.74-.82,18.52,18.52,0,0,1,1.35,2.49c.26.54.51,1.07.78,1.55.22-.52.42-1.09.62-1.72a1.5,1.5,0,0,1,2.46-.64,5.09,5.09,0,0,1,1.07,1.51c.07-.19.13-.37.2-.55a1.5,1.5,0,0,1,2.78,0,12.55,12.55,0,0,1,.71,2.64,1.41,1.41,0,0,1,.86-.25,1.5,1.5,0,0,1,1.4,1,19,19,0,0,1,.69,5.67,27.31,27.31,0,0,0,.18,3.17,24.77,24.77,0,0,0,.52,2.51,18,18,0,0,1,.67,4.36A1.5,1.5,0,0,1,270.84,441.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M206.51,695.33a1.5,1.5,0,0,1-1.41-1c-1.2-3.37-.75-7-.32-10.57a34.32,34.32,0,0,0,.4-6.41,2.38,2.38,0,0,1-1.44.28c-1.77-.24-2.37-2.24-3-4.35l0-.13a4.77,4.77,0,0,1-1.67,2.22,1.5,1.5,0,0,1-2.18-.57,15.46,15.46,0,0,1-1.05-3.23l-.14-.57-.12.56a21.28,21.28,0,0,1-.67,2.66,1.5,1.5,0,0,1-1.35,1,1.49,1.49,0,0,1-1.43-.89,38.93,38.93,0,0,1-2-6.27c-.21-.8-.41-1.59-.62-2.35-.15.79-.28,1.6-.42,2.43s-.23,1.4-.35,2.12-.29,1.44-.47,2.28c-.65,3-1.64,7.55-.66,9.66a1.5,1.5,0,0,1-2.72,1.26c-1.41-3-.38-7.76.45-11.56.17-.8.33-1.54.45-2.17s.24-1.38.35-2.06a31.06,31.06,0,0,1,1.81-7.32,1.5,1.5,0,0,1,2.72-.09,34.45,34.45,0,0,1,2.38,7.07l.26,1a7.69,7.69,0,0,1,1.07-2.13,1.5,1.5,0,0,1,1.13-.61,1.53,1.53,0,0,1,1.19.49,9.35,9.35,0,0,1,1.9,4.11,9.09,9.09,0,0,1,.77-1.8,1.5,1.5,0,0,1,2.42-.22,11.77,11.77,0,0,1,1.88,4.24c.17.57.4,1.33.61,1.85a8.94,8.94,0,0,0,.62-.88,1.5,1.5,0,0,1,2.69.34c1.09,3.36.65,6.94.23,10.41s-.8,6.49.17,9.19a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M455.51,328.33a1.5,1.5,0,0,1-1.5-1.43c0-.59-.09-1.18-.15-1.76a24.68,24.68,0,0,1-.18-2.65,1.5,1.5,0,0,1,3,0,21.91,21.91,0,0,0,.17,2.33c.07.64.13,1.28.17,1.93a1.5,1.5,0,0,1-1.43,1.57Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M455.51,339.67a1.5,1.5,0,0,1-1.5-1.5v-2a1.5,1.5,0,0,1,3,0v2A1.5,1.5,0,0,1,455.51,339.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M462.18,330.33a1.5,1.5,0,0,1-1.45-1.13c-.24-.93-.51-2.33-.69-3.47a1.5,1.5,0,1,1,3-.47c.17,1,.43,2.36.64,3.2a1.5,1.5,0,0,1-1.46,1.87Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M496.84,441h-.06a1.5,1.5,0,0,1-1.44-1.56v-.35a26,26,0,0,1,.71-6,1.5,1.5,0,0,1,2.88.83,23.86,23.86,0,0,0-.6,5.29v.36A1.5,1.5,0,0,1,496.84,441Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M497.18,450.33a1.5,1.5,0,0,1-1.27-2.3,1.23,1.23,0,0,0,.13-.9,1.5,1.5,0,1,1,2.94-.6,4.22,4.22,0,0,1-.53,3.1A1.5,1.5,0,0,1,497.18,450.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M636.84,488.33a1.5,1.5,0,0,1-1.31-2.22,10.57,10.57,0,0,1,2.73-3.13,1.5,1.5,0,1,1,1.83,2.38,7.6,7.6,0,0,0-1.94,2.2A1.5,1.5,0,0,1,636.84,488.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M743.18,547a1.5,1.5,0,0,1-1.28-2.28,17.16,17.16,0,0,0,1.4-3.36c.16-.46.31-.93.48-1.38a1.5,1.5,0,0,1,2.81,1c-.16.43-.3.86-.45,1.3a19.66,19.66,0,0,1-1.67,4A1.5,1.5,0,0,1,743.18,547Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M747.18,559a1.5,1.5,0,0,1-1-2.61.53.53,0,0,0,.18-.47,1.5,1.5,0,0,1,3-.18,3.52,3.52,0,0,1-1.15,2.87A1.49,1.49,0,0,1,747.18,559Z" transform="translate(-105.77 -43.5)"/></g><g id="LINEART"><path class="cls-1" d="M389.53,594.58a2.5,2.5,0,0,1-.54-.06l-.89-.19c-12.57-2.76-33.6-7.38-31.41-25.13.7-5.64,2.85-9.58,6.39-11.73,7-4.23,17.46-.3,25.87,2.86,2.22.83,4.31,1.62,6.1,2.16a2.5,2.5,0,1,1-1.46,4.78c-1.94-.59-4.1-1.4-6.4-2.26-7.4-2.78-16.62-6.24-21.52-3.26-2.2,1.33-3.51,4-4,8.06-1.51,12.21,12.77,16.39,27.52,19.63l.89.2a2.5,2.5,0,0,1-.54,4.94Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M586.6,621.13h-.12a2.5,2.5,0,0,1-2.37-2.62c.31-6.34.06-8.26-.76-14.61-.25-1.94-.6-4-1-6a2.5,2.5,0,0,1,4.9-1c.45,2.18.81,4.33,1.08,6.39a67.68,67.68,0,0,1,.8,15.5A2.5,2.5,0,0,1,586.6,621.13Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M384.51,562.5a2.5,2.5,0,0,1-2.11-3.83,92.9,92.9,0,0,1,26.15-27.28,106.28,106.28,0,0,1,34-15.26c4.37-1.1,8.81-2.41,13.1-3.68,8.43-2.49,17.14-5.07,26.13-6.25,1.59-.21,3.17-.44,4.75-.66,6.18-.88,12.57-1.8,19-1.59,8.11.27,13.78,2.23,20.9,5a72,72,0,0,1,29.78,21.5,2.5,2.5,0,0,1-3.83,3.22,67.07,67.07,0,0,0-27.75-20.05c-6.87-2.65-11.92-4.4-19.27-4.65-6-.2-11.92.65-18.16,1.54-1.6.23-3.2.46-4.8.67-8.59,1.13-17.12,3.65-25.36,6.09-4.34,1.28-8.82,2.61-13.3,3.73a101.32,101.32,0,0,0-32.41,14.54,87.87,87.87,0,0,0-24.72,25.8A2.5,2.5,0,0,1,384.51,562.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M378.15,676a2.5,2.5,0,0,1-2.48-2.17c-3.25-24.48-5.7-53.7.79-84.83a2.5,2.5,0,0,1,4.89,1c-6.33,30.4-3.92,59.1-.73,83.16a2.5,2.5,0,0,1-2.15,2.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M519.25,702.13a2.5,2.5,0,0,1-1.5-4.5A210.35,210.35,0,0,1,546.49,679a136.83,136.83,0,0,1,39.61-13.51c3.2-.56,6.43-.83,9.57-1.09a92.3,92.3,0,0,0,9.49-1.1,104.21,104.21,0,0,1,15.61-1.72l-.75-.81c-3.51-3.81-7.88-8.55-11.65-8.77a2.5,2.5,0,0,1,.29-5c5.79.33,10.71,5.66,15,10.37a49.59,49.59,0,0,0,4.7,4.71,2.5,2.5,0,0,1-1.56,4.45h-.06a98.51,98.51,0,0,0-20.7,1.67,97,97,0,0,1-10,1.17c-3,.25-6.14.5-9.1,1a131.83,131.83,0,0,0-38.16,13,205.28,205.28,0,0,0-28.06,18.21A2.49,2.49,0,0,1,519.25,702.13Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M445.87,782.45a2.5,2.5,0,0,1-1.79-.76c-2.5-2.57-6-4.44-9.79-6.42a61.91,61.91,0,0,1-8-4.77c-1.3-1-2.69-1.91-4.17-2.91a59.53,59.53,0,0,1-9.12-7.07,16.94,16.94,0,0,1-3.32-5.47,13.19,13.19,0,0,0-2-3.59,10.17,10.17,0,0,0-1.83-1.43,10.61,10.61,0,0,1-4.93-6.24,12.12,12.12,0,0,0-.93-2,61.62,61.62,0,0,1-3-5.52c-.79-1.56-1.53-3-2.4-4.48-.58-1-1.24-1.9-1.93-2.89-.57-.81-1.16-1.65-1.71-2.52-1.32-2.08-2.37-4.14-3.38-6.14-.52-1-1-2.06-1.61-3.1C381,708,379.4,699.4,378,689.9a2.5,2.5,0,1,1,4.95-.74c1.35,9,2.83,17.18,7.38,25.56.59,1.08,1.13,2.16,1.67,3.22,1,2,1.95,3.84,3.14,5.71.49.78,1,1.53,1.59,2.33.71,1,1.45,2.07,2.13,3.19,1,1.61,1.79,3.24,2.58,4.81a57.23,57.23,0,0,0,2.78,5.08,16.18,16.18,0,0,1,1.37,2.9,5.94,5.94,0,0,0,3.08,3.91,14.23,14.23,0,0,1,2.74,2.23,17.39,17.39,0,0,1,2.87,4.94,12.66,12.66,0,0,0,2.3,4,55.94,55.94,0,0,0,8.36,6.44c1.46,1,3,2,4.35,3a57.43,57.43,0,0,0,7.38,4.36,57,57,0,0,1,8.81,5.36c3-4.17,6.22-8.18,9.37-12.08a177.59,177.59,0,0,0,12.68-17c7.6-12.15,18.9-24.48,32.7-35.65a2.5,2.5,0,0,1,3.15,3.88C490,726.16,479,738.06,471.72,749.75a181.62,181.62,0,0,1-13,17.53c-3.67,4.54-7.46,9.23-10.75,14.08a2.5,2.5,0,0,1-1.85,1.09Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M518.09,796a170.73,170.73,0,0,1-28.22-2.37c-5.62.34-10.17-1.06-15-2.54-1.41-.43-2.87-.88-4.37-1.29a104,104,0,0,1-23.77-9.44,2.5,2.5,0,1,1,2.44-4.37,99,99,0,0,0,22.64,9c1.59.43,3.09.89,4.54,1.34,4.63,1.43,8.63,2.66,13.46,2.31a2.51,2.51,0,0,1,.6,0,162.56,162.56,0,0,0,38.24,2c12.47-.88,24.46-5.86,34.53-10.61a2.5,2.5,0,0,1,2.13,4.52c-10.49,5-23,10.14-36.31,11.08C525.44,795.85,521.79,796,518.09,796Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M579.89,776.93a2.5,2.5,0,0,1-1.2-4.7,168.65,168.65,0,0,0,16.36-10.06c3.14-2.2,6.54-4.29,9.82-6.3,7.82-4.8,15.91-9.76,21.57-16.9,18.62-23.46,11.39-59.13-7-77.71-1.25-1.26-2.29-2.46-3.21-3.52-2.36-2.71-4.06-4.66-7.51-5.89a2.5,2.5,0,0,1,1.68-4.71c4.69,1.67,7.08,4.41,9.61,7.32.92,1.05,1.86,2.14,3,3.28,10.43,10.51,17.37,25.4,19,40.85,1.78,16.35-2.36,31.79-11.64,43.49-6.22,7.83-14.68,13-22.87,18.05-3.37,2.07-6.55,4-9.56,6.13a173.37,173.37,0,0,1-16.84,10.35A2.49,2.49,0,0,1,579.89,776.93Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M467.17,513.92l-.39,0a2.5,2.5,0,0,1-2.09-2.85c1.1-7.09,5.21-16,13.17-17.81,7.2-1.64,14,4.06,16.22,13.56a2.5,2.5,0,0,1-4.87,1.12c-1.32-5.73-5.27-10.94-10.24-9.81-5.13,1.16-8.43,7.92-9.33,13.7A2.5,2.5,0,0,1,467.17,513.92Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M537.44,607.22h-.74c-4-.16-6.74-1.62-7.5-4s.57-5,4-7.56c2.92-2.24,11.31-4.41,15.13-1.5,1,.74,3,2.91,1.3,7.16S542.27,607.22,537.44,607.22Zm-3.33-5.55a10.86,10.86,0,0,0,6,.29c2.43-.46,4.36-1.49,4.79-2.56h0a2.43,2.43,0,0,0,.29-1.33c-1-1-7.07,0-9,1.52A8.16,8.16,0,0,0,534.12,601.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M461.94,640.88c-1.43,0-2.8,0-4.09-.05-14.46-.36-26.11-9.2-32.81-24.88a71.6,71.6,0,0,1-3.63-12.73,55.67,55.67,0,0,1-1.47-13c.18-9.12,3.38-16.86,10.38-25.08,4.1-4.82,12-9.22,18.08-11.46,20.17-7.44,48.23-1.52,57.84,19.15A94.12,94.12,0,0,1,511,586.68c3.92,13.69,2.82,25.54-3.26,35.23-4.81,7.67-14,13.74-25.16,16.67A82.12,82.12,0,0,1,461.94,640.88ZM466,555.62a46.28,46.28,0,0,0-15.89,2.71c-5.42,2-12.66,6.08-16,10-6.2,7.28-9,14-9.18,21.94h0a50.76,50.76,0,0,0,1.36,11.86A67.88,67.88,0,0,0,429.64,614c3.41,8,11.62,21.43,28.33,21.85,6.55.16,15.12.07,23.35-2.08,9.81-2.57,18.1-8,22.19-14.49,5.3-8.44,6.2-18.94,2.69-31.2a90.18,90.18,0,0,0-4.51-13.16C495.66,561.92,480.59,555.62,466,555.62Zm-43.57,34.61h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M467.07,655.25a61.92,61.92,0,0,1-23.16-4.39,51.53,51.53,0,0,1-28.79-28c-2.13-5-3.34-10.51-4.51-15.82a69.67,69.67,0,0,1-1.84-16.21h0c.2-11.39,4.16-21,12.81-31.27,5.09-6,14.91-11.5,22.39-14.27,19.5-7.21,44.36-3.48,60.45,9.07,12.67,9.89,16,25.19,18.73,37.49,6.14,28-10.29,53.73-39.07,61.25A67.41,67.41,0,0,1,467.07,655.25Zm-2-106.55a54.06,54.06,0,0,0-18.65,3.16c-6.6,2.45-15.41,7.42-19.45,12.21-7.54,8.91-11,17.19-11.15,26.84h0a62.8,62.8,0,0,0,1.68,14.57c1.1,5,2.23,10.16,4.11,14.57,10.56,24.83,38.53,32,60.69,26.17,25.38-6.63,39.34-28.39,34-52.91-3.12-14.23-6.3-25.72-16.18-33.44C490.8,552.63,477.77,548.7,465.08,548.7ZM412.3,590.85h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M578.15,615.43c-5.87,0-12-1.19-17.83-6.13-8-6.76-13.43-15.13-18.08-28a126.1,126.1,0,0,1-4.16-15.7,97.31,97.31,0,0,1-2.3-15.87A51.14,51.14,0,0,1,543,519.87c3.39-5.84,10.34-10.84,15.73-13.2,14.07-6.15,32.68-.86,45.25,12.87,9.54,10.41,12.86,25.54,15.52,37.7,3.71,16.92,2.33,31.23-4.12,42.55-7.37,12.93-19.3,14.13-28.88,15.1A82.79,82.79,0,0,1,578.15,615.43Zm-7-104.21a24,24,0,0,0-9.66,1.92c-4.33,1.9-10,6-12.45,10.27a44.47,44.47,0,0,0-6.25,26h0A90.27,90.27,0,0,0,545,564.08a121,121,0,0,0,3.9,14.81c4.26,11.78,8.89,19,16,25,6.42,5.41,13.41,4.71,20.81,4,10.88-1.09,18.35-2.49,23.53-11.58,5.56-9.75,6.69-22.39,3.36-37.54-3.16-14.41-6.19-26.09-13.84-34.44S580.64,511.22,571.19,511.22Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M583.65,599.89c-12.91,0-24.11-8.93-30.41-24.49-6.2-15.29-11.87-34.24-.67-45.15h0c.33-.32.68-.64,1-.95,9.59-8.13,26.29-5.09,35.28,2.74,12.16,10.58,16.24,24.2,18.63,36.13a28.15,28.15,0,0,1-4.45,22,23,23,0,0,1-16,9.47A28.62,28.62,0,0,1,583.65,599.89ZM556,533.84c-9.16,8.93-3.35,26.93,1.82,39.69,2.86,7.05,11.35,23.23,28.56,21.2A18,18,0,0,0,599,587.28a23.14,23.14,0,0,0,3.59-18.12c-3.15-15.74-8.23-25.71-17-33.34-7.45-6.48-21.33-9-28.78-2.69-.28.24-.54.47-.79.72Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M502.34,715.06a12.41,12.41,0,0,1-1.45-.08,2.5,2.5,0,1,1,.59-5c3.81.45,12.26-2.27,14.54-5.22,1.69-2.17.74-5.17.25-6.36a12.76,12.76,0,0,0-10.33-7.21l-2.56-.05a2.5,2.5,0,0,1,0-5h0l2.66.06a17.75,17.75,0,0,1,14.8,10.31c1.72,4.21,1.38,8.33-.93,11.31C516.83,711.92,508,715.06,502.34,715.06Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M567.78,785.4a11.33,11.33,0,0,1-5.54-1.29,6.36,6.36,0,0,1-2.08-1.92h0c-1.34-2-1.28-4.29-1.24-6.16a54.15,54.15,0,0,1,.73-7.32,57.41,57.41,0,0,1,3.61-13.28c1.85-4.36,7.79-13.46,14.3-13.77,2.15-.11,5.22.7,7.6,5.1a20.48,20.48,0,0,1,2.14,10c0,8.79-3.16,17.45-8.36,23.17-3,3.28-6.47,5.15-10.1,5.42C568.57,785.38,568.21,785.4,567.78,785.4Zm10.15-38.76h-.14c-3.3.16-8.17,6.56-9.94,10.73a52.57,52.57,0,0,0-3.27,12.13,49.13,49.13,0,0,0-.66,6.58c0,1.34-.07,2.65.36,3.28h0a1.35,1.35,0,0,0,.47.41,7.22,7.22,0,0,0,3.72.59c2.94-.22,5.3-2.18,6.77-3.79,4.32-4.76,7-12.36,7.06-19.83a15.72,15.72,0,0,0-1.53-7.62C579.51,746.83,578.42,746.65,577.93,746.65Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M638.39,738.56a8.38,8.38,0,0,1-2.86-.48,7.6,7.6,0,0,1-4.72-5.53,2.5,2.5,0,1,1,4.82-1.34c.49,1.77,1.3,2.06,1.6,2.17,3.61,1.3,12-4.53,14.77-6.45l.64-.44c4.49-3.09,7.55-11.34,8.59-18.14.57-3.7.06-8.38-2-10.17-.35-.3-1.41-1.21-4-.4-5.1,1.57-10.45,7.24-12.17,12.9a2.5,2.5,0,1,1-4.78-1.46C640.4,702,647.05,695,653.69,693c4.37-1.34,7.19,0,8.78,1.39,3.87,3.34,4.41,10,3.69,14.71-.4,2.64-2.81,16.08-10.69,21.5l-.63.43C649.12,735,643.25,738.56,638.39,738.56Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M447.81,618.41c-8.8,0-17.45-1.38-23.25-7.2a2.5,2.5,0,0,1,3.54-3.53c6.33,6.33,18,6.1,28.43,5.37,16.86-1.17,34.34-8.73,52-22.5a2.5,2.5,0,0,1,3.08,3.94c-18.43,14.39-36.84,22.31-54.71,23.54C453.9,618.24,450.84,618.41,447.81,618.41Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M566.29,578.89a30.83,30.83,0,0,1-11.69-2.11,2.5,2.5,0,0,1,1.9-4.62c13.85,5.69,37.34-3,43.33-16.07a2.5,2.5,0,0,1,4.54,2.09C598.86,570.2,581.39,578.89,566.29,578.89Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M556.63,603.14a2.49,2.49,0,0,1-1.14-.28,30.21,30.21,0,0,0-8.12-2.49,2.5,2.5,0,0,1,.78-4.94,34.78,34.78,0,0,1,9.62,3,2.5,2.5,0,0,1-1.14,4.73Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M529.43,626.73a8,8,0,0,1-6-2.45c-2.56-2.71-2.92-7-1-12,2.31-6.09,4.85-10,7.76-12A2.5,2.5,0,1,1,533,604.5c-2,1.35-4,4.58-5.88,9.6-.55,1.45-1.66,5,0,6.75s5,.78,7.32-.94c1-.71,1.89-1.55,2.86-2.43a17.66,17.66,0,0,1,14-6c1.06-.05,2.07-.1,3-.23,2.09-.27,4.7-1.25,5.3-3.11,0-.29,0-.8.06-1.22s0-.87.05-1a2.5,2.5,0,1,1,5,.57c0,.05,0,.3,0,.6a10.56,10.56,0,0,1-.18,2.17c-1.16,4.34-5.68,6.42-9.53,6.92-1.17.15-2.32.21-3.43.27a13,13,0,0,0-10.91,4.69c-1,.92-2.08,1.88-3.24,2.74A13.82,13.82,0,0,1,529.43,626.73Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M519.85,593.87a3.53,3.53,0,0,1-2.47-6,44.74,44.74,0,0,1,26.81-12.52,3.53,3.53,0,0,1,.7,7,37.66,37.66,0,0,0-22.57,10.54A3.52,3.52,0,0,1,519.85,593.87Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M491.51,718.37a2.5,2.5,0,0,1-1.68-.65,6.89,6.89,0,0,1-.56-.57,3.4,3.4,0,0,1-2,.17c-3.42-.68-4.15-5.85-4.29-7.42-.39-4.33,1.18-20.68,7.72-27h0a8.46,8.46,0,0,1,7.46-2.49,2.5,2.5,0,0,1,1.95,1.64,4.71,4.71,0,0,1,1.85,0,2.5,2.5,0,0,1,1.12.58,4.43,4.43,0,0,1,3.88,1.52c1.49,2.13.1,4.4-.56,5.5a5.42,5.42,0,0,0-.3.51,66.63,66.63,0,0,0-2.4,9.82l0,.23c-1.5,7.72-1.78,11.54-1.71,12.87a2.5,2.5,0,0,1-1.77,4.15c-1.32.06-2.6.05-3.84,0-1,0-1.92,0-2.87,0a2.5,2.5,0,0,1-1.74,1Zm-2.59-5.64h0Zm1-2.27a2.43,2.43,0,0,1,.38,0,2.5,2.5,0,0,1,2.06,1.9c1.4-.07,2.75-.06,4-.05H497a81.17,81.17,0,0,1,1.79-13l0-.22a71.26,71.26,0,0,1,2.62-10.6,5,5,0,0,1,.23-.54,2.51,2.51,0,0,1-1.52-.41l0,0c-.31.25-.62.48-.92.67a2.5,2.5,0,0,1-3.83-2.3c0-.09,0-.19,0-.29a4.89,4.89,0,0,0-1.19.87h0c-4.59,4.42-6.62,18.44-6.21,22.93a10.75,10.75,0,0,0,.28,1.64A2.5,2.5,0,0,1,489.94,710.45ZM500,712.29h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M374,676.5a2.5,2.5,0,0,1-.3-5c52.83-6.38,114.94-14,175.09-21.86a2.5,2.5,0,1,1,.65,5c-60.17,7.9-122.3,15.49-175.14,21.87Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M550.07,654.18a2.5,2.5,0,0,1-1.68-4.35c4.28-3.89,9.64-7.94,14.83-11.86,9.22-7,18.75-14.15,22.48-20.59a2.5,2.5,0,1,1,4.33,2.51c-4.24,7.32-14.18,14.82-23.79,22.08-5.1,3.85-10.37,7.83-14.48,11.57A2.49,2.49,0,0,1,550.07,654.18Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M378.4,692q-2,0-3.93,0a2.5,2.5,0,0,1-2.42-2.2,88.85,88.85,0,0,1-.51-15.92,2.5,2.5,0,1,1,5,.29,83.89,83.89,0,0,0,.24,12.87c12.87.14,25.88-1.39,38.49-2.87,16.89-2,38.15-4.31,58.71-6.56s41.89-4.58,58.8-6.57a2.5,2.5,0,1,1,.58,5c-16.93,2-38.23,4.32-58.83,6.57s-41.8,4.58-58.67,6.55C403.63,690.55,391,692,378.4,692Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M637.74,676a2.5,2.5,0,0,1-2.5-2.5V517.87l-33.42,6.51a2.5,2.5,0,1,1-1-4.91l36.4-7.09a2.5,2.5,0,0,1,3,2.45V673.51A2.5,2.5,0,0,1,637.74,676Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M637.74,645.49a2.5,2.5,0,0,1-.48-5l121.42-24V378.4L641.23,396a2.51,2.51,0,0,1-1.25-.13l-140.5-52.67a2.5,2.5,0,0,1,.53-4.82l101-14.1a2.52,2.52,0,0,1,1.08.08l159.83,48.76h0a2.49,2.49,0,0,1,1.42,1.16h0l0,0h0a2.49,2.49,0,0,1,.26,1.17V618.63a2.5,2.5,0,0,1-2,2.45L638.22,645.45A2.52,2.52,0,0,1,637.74,645.49ZM510.46,341.95l130.67,49,108.74-16.27L601.14,329.29Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M640.86,433a2.5,2.5,0,0,1-2.5-2.5v-37a2.5,2.5,0,0,1,5,0v37A2.5,2.5,0,0,1,640.86,433Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M500.36,393.33a2.5,2.5,0,0,1-2.5-2.5V344a2.5,2.5,0,0,1,5,0v46.83A2.5,2.5,0,0,1,500.36,393.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M637.74,517.35a2.51,2.51,0,0,1-2.41-3.21c.7-2.41,15.84-32.87,22.19-45.59l-113,13.94-16.81,30a2.5,2.5,0,1,1-4.36-2.44l17.42-31.1a2.5,2.5,0,0,1,1.88-1.26L661.54,463a2.5,2.5,0,0,1,2.54,3.6c-9.21,18.41-23.18,46.64-23.95,48.94A2.48,2.48,0,0,1,637.74,517.35Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M467.63,512.6a2.49,2.49,0,0,1-.93-.18L398.53,485.2a2.5,2.5,0,0,1-1.13-.9L357,425.58a2.5,2.5,0,0,1,3.05-3.71l120.36,52a2.49,2.49,0,0,1,1.07.87l19.66,28.47a2.5,2.5,0,1,1-4.11,2.84l-19.26-27.88L366,429.91l35.05,50.93,67.48,26.95a2.5,2.5,0,0,1-.93,4.82Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M396.21,500.85a2.5,2.5,0,0,1-2.5-2.5V480.93a2.5,2.5,0,0,1,5,0v17.42A2.5,2.5,0,0,1,396.21,500.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M287.51,543a2.47,2.47,0,0,1-.38,0,2.5,2.5,0,0,1-2.11-2.19l-8.71-77L151.94,480.69V522.5a2.5,2.5,0,0,1-5,0v-44a2.5,2.5,0,0,1,2.16-2.48l129.07-17.5a2.5,2.5,0,0,1,2.82,2.2l8,70.3,29.27-66.52a2.5,2.5,0,0,1,3.34-1.26l106.5,49.33a2.5,2.5,0,0,1,1.32,3.06l-3.65,10.88a2.5,2.5,0,1,1-4.74-1.59l2.94-8.76L321.77,468.84l-32,72.67A2.5,2.5,0,0,1,287.51,543Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M256.51,614.13a2.5,2.5,0,0,1-2.47-2.87l10-66.48a2.5,2.5,0,0,1,2.15-2.11L404.9,524.54a2.5,2.5,0,0,1,2.82,2.48v9.9a2.5,2.5,0,0,1-5,0v-7.06l-134,17.53-9.22,61.32,118-16a2.5,2.5,0,0,1,.67,5L256.84,614.11Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M256.51,614.13a2.5,2.5,0,0,1-1.15-.28l-99-51.63a2.5,2.5,0,0,1-1.2-1.37l-13.5-37.5A2.5,2.5,0,0,1,145,520.2l79.5,33.5a2.5,2.5,0,0,1,1.18,1l33,55.63a2.5,2.5,0,0,1-2.15,3.78Zm-97-55.89,90.35,47.12L221.78,558l-73.49-31Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M207.35,551.69a2.5,2.5,0,0,1-.17-5l59.16-4a2.5,2.5,0,0,1,.34,5l-59.16,4Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M252.51,728.5a2.5,2.5,0,0,1-1.38-.42l-97-64.28a2.5,2.5,0,0,1-1.12-2.13L155,560a2.5,2.5,0,0,1,2.5-2.45h.05A2.5,2.5,0,0,1,160,560L158,660.4l95,63,130.14-20.83a2.5,2.5,0,1,1,.79,4.94l-131.1,21A2.56,2.56,0,0,1,252.51,728.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M252.51,728.5h-.09a2.5,2.5,0,0,1-2.41-2.58l4-114.37a2.5,2.5,0,0,1,5,.17l-4,114.37A2.5,2.5,0,0,1,252.51,728.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M454.71,468a2.5,2.5,0,0,1-.2-5l52.56-4.31-1.75-65.17L383.58,403l5.43,32.6a2.5,2.5,0,0,1-4.93.82l-5.88-35.29a2.5,2.5,0,0,1,2.27-2.9l127.09-9.92a2.5,2.5,0,0,1,2.69,2.43l1.88,70.17a2.5,2.5,0,0,1-2.29,2.56L454.92,468Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M560.41,480.52a2.49,2.49,0,0,1-.79-.13l-50.78-17a2.5,2.5,0,0,1,1.59-4.74l50.78,17a2.5,2.5,0,0,1-.79,4.87Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M645.36,469.64a2.5,2.5,0,0,1-2.17-3.73l15-26.56L538,396.62l-26.32,57.8a2.5,2.5,0,0,1-4.55-2.07l27.28-59.88a2.5,2.5,0,0,1,3.11-1.32l125.14,44.48a2.5,2.5,0,0,1,1.34,3.59l-16.48,29.15A2.5,2.5,0,0,1,645.36,469.64Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M279,468a2.5,2.5,0,0,1-.28-5l95.89-11a2.5,2.5,0,1,1,.57,5L279.3,468Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M200.26,474.11a2.5,2.5,0,0,1-2.5-2.5v-38a2.5,2.5,0,0,1,5,0v38A2.5,2.5,0,0,1,200.26,474.11Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M259,466.15a2.49,2.49,0,0,1-1.14-.27l-58.72-30.05a2.5,2.5,0,0,1,.82-4.71l42.58-5.43a2.53,2.53,0,0,1,1.33.2l44.76,19.9L369,436.54a2.5,2.5,0,1,1,.57,5l-81,9.31a2.5,2.5,0,0,1-1.3-.2l-44.74-19.89-33.87,4.32,51.52,26.37a2.5,2.5,0,0,1-1.14,4.73Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M288.23,450.84a2.5,2.5,0,0,1-2.5-2.43l-3.4-116.85-35.44-6.85L245.34,428.2a2.5,2.5,0,0,1-2.5,2.46h0a2.5,2.5,0,0,1-2.46-2.54l1.59-106.47a2.5,2.5,0,0,1,3-2.42L285.24,327a2.5,2.5,0,0,1,2,2.38l3.46,118.85a2.5,2.5,0,0,1-2.43,2.57Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M408.1,401.12a2.5,2.5,0,0,1-2.5-2.5V320c-12.94.83-77.13,7.39-120.57,12a2.5,2.5,0,0,1-2.61-3.33l14.87-41.24a2.5,2.5,0,0,1,2.17-1.65L418.63,277a2.5,2.5,0,0,1,2.59,3.17L410.6,317.82v80.8A2.5,2.5,0,0,1,408.1,401.12ZM301.44,290.62l-13,36c9.27-1,33.4-3.49,57.35-5.92,17.84-1.81,32.09-3.21,42.37-4.18s15.31-1.42,18-1.52l9.23-32.73Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M357.46,286.49a2.5,2.5,0,0,1-2.35-3.34l11.34-31.79a2.5,2.5,0,0,1,3-1.56l47.09,13.64a2.5,2.5,0,0,1,1.72,3.06l-3.88,14.14a2.5,2.5,0,1,1-4.82-1.32l3.23-11.76-42.46-12.3-10.55,29.58A2.5,2.5,0,0,1,357.46,286.49Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M351.79,286.91a2.5,2.5,0,0,1-2.23-1.37L341,268.81l-94.43,9a2.5,2.5,0,1,1-.47-5l96.12-9.12a2.49,2.49,0,0,1,2.46,1.35L354,283.27a2.5,2.5,0,0,1-2.23,3.63Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M284.76,332a2.5,2.5,0,0,1-2.47-2.12l-6.65-43.51-36.22-10.81,7.47,45.74a2.5,2.5,0,0,1-4.93.81l-8.12-49.69a2.5,2.5,0,0,1,3.18-2.8L278.59,282a2.5,2.5,0,0,1,1.76,2l6.89,45.08a2.5,2.5,0,0,1-2.09,2.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M601.34,329.24h-.08a2.5,2.5,0,0,1-2.42-2.58l4.57-142.37-163.65,17.2a2.5,2.5,0,0,1-.52-5L605.75,179a2.5,2.5,0,0,1,2.76,2.57l-4.67,145.24A2.5,2.5,0,0,1,601.34,329.24Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M436.5,398.9h0a2.5,2.5,0,0,1-2.46-2.54l3-195.5-120-35.51V268.83a2.5,2.5,0,0,1-5,0V162a2.5,2.5,0,0,1,3.21-2.4l125.06,37A2.5,2.5,0,0,1,442,199l-3,197.4A2.5,2.5,0,0,1,436.5,398.9Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M439.51,201.5a2.5,2.5,0,0,1-2.08-3.88l41-62a2.5,2.5,0,0,1,1.86-1.11L642.79,120a2.5,2.5,0,0,1,2.34,3.82l-37,59a2.5,2.5,0,0,1-4.24-2.66l34.33-54.73L481.93,139.38l-40.34,61A2.5,2.5,0,0,1,439.51,201.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M403.51,157.5a2.5,2.5,0,0,1-.17-5l66.33-4.57,21.4-97.47a2.5,2.5,0,0,1,3.05-1.89l134.5,34a2.5,2.5,0,0,1,1.76,3.2l-13,40a2.5,2.5,0,1,1-4.75-1.55L624.8,86.77,495.4,54.06l-21.25,96.78a2.5,2.5,0,0,1-2.27,2l-68.2,4.7Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M436.62,200.64a2.5,2.5,0,0,1-1.94-.92l-54.58-67L267.65,104.37l48.68,56a2.5,2.5,0,1,1-3.77,3.28l-53.91-62a2.5,2.5,0,0,1,2.5-4.06l121,30.5a2.51,2.51,0,0,1,1.33.85l55.11,67.64a2.5,2.5,0,0,1-1.94,4.08Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M468.33,151.57a2.5,2.5,0,0,1-2.14-1.2L425.66,83.6,280.58,93.76l3.26,8.33a2.5,2.5,0,1,1-4.66,1.82l-4.5-11.5A2.5,2.5,0,0,1,276.83,89l150-10.5a2.51,2.51,0,0,1,2.31,1.2l41.32,68.07a2.5,2.5,0,0,1-2.13,3.8Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M522.51,687.33a2.5,2.5,0,0,1-2-4,77.06,77.06,0,0,1,20-18.5c2.69-1.64,26.72-16.06,40.51-16.42h.07a2.5,2.5,0,0,1,.07,5c-10.15.27-28.69,10-38,15.69a71.62,71.62,0,0,0-18.59,17.2A2.5,2.5,0,0,1,522.51,687.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M540.51,669.67a2.5,2.5,0,0,1-2-4,33.69,33.69,0,0,0,2.67-5.27c1.9-4.25,3.69-8.26,6.47-9.77A2.5,2.5,0,0,1,550,655c-1.29.7-3.09,4.74-4.29,7.41a35.3,35.3,0,0,1-3.23,6.22A2.5,2.5,0,0,1,540.51,669.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M558.51,659.67a2.49,2.49,0,0,1-1.23-.33c-.71-.4-1.68-.83-2.71-1.29-2.24-1-4.78-2.11-6.47-3.76a2.5,2.5,0,1,1,3.49-3.58,19.25,19.25,0,0,0,5,2.77c1.14.5,2.22,1,3.15,1.51a2.5,2.5,0,0,1-1.23,4.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M484.51,715c-.87,0-1.8,0-2.85-.08-5.32-.27-26.21-3.31-31.25-13.33-1.28-2.54-2.08-6.67,1.4-11.88,6-8.94,19.6-7.5,30.55-6.35,3.06.32,5.94.63,8.15.63a2.5,2.5,0,0,1,0,5c-2.47,0-5.48-.32-8.67-.65-9.62-1-21.58-2.28-25.87,4.15-1.74,2.61-2.1,4.85-1.09,6.85,3.33,6.61,19.51,10.2,27,10.58,1,0,1.82.07,2.6.07a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M593,628a2.5,2.5,0,0,1-2.32-1.57,19.54,19.54,0,0,0-4-5.67,2.5,2.5,0,0,1,3.54-3.53,24.33,24.33,0,0,1,5,7.33A2.5,2.5,0,0,1,593,628Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M572.5,655a2.61,2.61,0,0,1-.7-.1,2.54,2.54,0,0,1-1.71-3.13c.92-3.26,15-19.9,15.16-20.06a25.2,25.2,0,0,0,2.06-3,22,22,0,0,1,3.52-4.63,2.5,2.5,0,0,1,3.38,3.69,18.24,18.24,0,0,0-2.66,3.61A29.11,29.11,0,0,1,589,635c-3.08,3.56-13.32,16.19-14.16,18.23A2.44,2.44,0,0,1,572.5,655Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M614.19,654a2.49,2.49,0,0,1-.67-.09c-3.05-.85-4.95-3.27-6.78-5.6-1.67-2.13-3.25-4.14-5.5-4.68a32.78,32.78,0,0,0-4.7.14c-6.27.42-10.21.53-12.15-1.51a3.61,3.61,0,0,1-1-3,2.49,2.49,0,0,1,.64-1.4,2.39,2.39,0,0,1,.14-.65c1.66-4.44,6-7.31,12-7.88h0a23.37,23.37,0,0,1,9.1.94,18.94,18.94,0,0,1,11.2,10.37,14.19,14.19,0,0,1,0,11.89A2.5,2.5,0,0,1,614.19,654Zm-13.86-15.42a9.08,9.08,0,0,1,2.07.19c3.95.94,6.25,3.87,8.27,6.46a29.17,29.17,0,0,0,2,2.43,10.16,10.16,0,0,0-.84-5,14,14,0,0,0-8.15-7.58,18.26,18.26,0,0,0-7.08-.72h0a11,11,0,0,0-6.19,2.33,2.58,2.58,0,0,1,.36.61,2.45,2.45,0,0,1,.05,1.71h0c1.82,0,4-.14,5.32-.23C597.94,638.62,599.27,638.54,600.33,638.54Zm-3.91-6.71h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M590.08,663.44a11.54,11.54,0,0,1-8.33-3.41,8.64,8.64,0,0,1-2.31-6.88c.26-4.44,2.92-9.72,6.2-12.28a2.5,2.5,0,0,1,3.08,3.94,13.56,13.56,0,0,0-4.29,8.63,4,4,0,0,0,.84,3c4.68,4.63,11.85,0,14.71-2.27,1.12-.87,2.2-1.82,3.34-2.84a53.86,53.86,0,0,1,4.76-3.91,2.5,2.5,0,1,1,2.87,4.1,49.44,49.44,0,0,0-4.31,3.56c-1.15,1-2.34,2.08-3.59,3C598.52,661.66,594.05,663.44,590.08,663.44Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M608.54,636a2.49,2.49,0,0,1-1.28-.35c-3.93-2.35-12.45-5.87-15.18-5.62a2.5,2.5,0,0,1-.48-5c5-.49,15.66,4.78,18.23,6.31a2.5,2.5,0,0,1-1.29,4.65Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M545.57,631.36h-.23c-3.13-.2-4.86-3.22-6.24-5.64a11.71,11.71,0,0,0-1.85-2.72,2.5,2.5,0,0,1,2.52-4.32c1.6.94,2.65,2.77,3.67,4.55a13.1,13.1,0,0,0,2.12,3.07,20.3,20.3,0,0,0,2-1.2,15.74,15.74,0,0,1,1.92-1.13,34.39,34.39,0,0,1,3.19-1.28c-.36-.67-.75-1.35-1.17-2a24.07,24.07,0,0,1-2.75-5.82,2.5,2.5,0,0,1,4.82-1.31,20.12,20.12,0,0,0,2.23,4.59,25.17,25.17,0,0,1,2.71,5.64,2.5,2.5,0,0,1-2.16,3.19,17.73,17.73,0,0,0-4.84,1.59c-.21.1-.81.48-1.25.76C548.38,630.53,547,631.36,545.57,631.36Z" transform="translate(-105.77 -43.5)"/></g><g id="circle"><g class="cls-12"><path class="cls-7" d="M412.3,590.85c.19-10.39,3.77-19.35,12-29.06C429,556.25,438.5,551,445.2,548.55c18-6.67,41.77-3.38,57.05,8.54,11.26,8.79,14.51,22.08,17.45,35.46,5.89,26.81-10.08,50.17-36.51,57.08-25.62,6.69-54-2.76-64.83-28.2-2-4.68-3.14-9.87-4.31-15.2A66.21,66.21,0,0,1,412.3,590.85Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-12"><path class="cls-7" d="M539.3,549.54a47.78,47.78,0,0,1,6.72-27.9c3-5.17,9.47-9.71,14.09-11.74,12.44-5.44,29.58-.7,41.23,12,8.59,9.38,11.74,22.69,14.68,36.07,3.29,15,2.67,28.79-3.74,40-6.27,11-15.81,12.29-26.17,13.33-7.79.78-15.93,1.62-23.52-4.77-8-6.75-12.87-15-17-26.51a122.75,122.75,0,0,1-4-15.26A93.72,93.72,0,0,1,539.3,549.54Z" transform="translate(-105.77 -43.5)"/></g><path class="cls-1" d="M467.07,655.25a61.92,61.92,0,0,1-23.16-4.39,51.53,51.53,0,0,1-28.79-28c-2.13-5-3.34-10.51-4.51-15.82a69.67,69.67,0,0,1-1.84-16.21h0c.2-11.39,4.16-21,12.81-31.27,5.09-6,14.91-11.5,22.39-14.27,19.5-7.21,44.36-3.48,60.45,9.07,12.67,9.89,16,25.19,18.73,37.49,6.14,28-10.29,53.73-39.07,61.25A67.41,67.41,0,0,1,467.07,655.25Zm-2-106.55a54.06,54.06,0,0,0-18.65,3.16c-6.6,2.45-15.41,7.42-19.45,12.21-7.54,8.91-11,17.19-11.15,26.84h0a62.8,62.8,0,0,0,1.68,14.57c1.1,5,2.23,10.16,4.11,14.57,10.56,24.83,38.53,32,60.69,26.17,25.38-6.63,39.34-28.39,34-52.91-3.12-14.23-6.3-25.72-16.18-33.44C490.8,552.63,477.77,548.7,465.08,548.7ZM412.3,590.85h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M578.15,615.43c-5.87,0-12-1.19-17.83-6.13-8-6.76-13.43-15.13-18.08-28a126.1,126.1,0,0,1-4.16-15.7,97.31,97.31,0,0,1-2.3-15.87A51.14,51.14,0,0,1,543,519.87c3.39-5.84,10.34-10.84,15.73-13.2,14.07-6.15,32.68-.86,45.25,12.87,9.54,10.41,12.86,25.54,15.52,37.7,3.71,16.92,2.33,31.23-4.12,42.55-7.37,12.93-19.3,14.13-28.88,15.1A82.79,82.79,0,0,1,578.15,615.43Zm-7-104.21a24,24,0,0,0-9.66,1.92c-4.33,1.9-10,6-12.45,10.27a44.47,44.47,0,0,0-6.25,26h0A90.27,90.27,0,0,0,545,564.08a121,121,0,0,0,3.9,14.81c4.26,11.78,8.89,19,16,25,6.42,5.41,13.41,4.71,20.81,4,10.88-1.09,18.35-2.49,23.53-11.58,5.56-9.75,6.69-22.39,3.36-37.54-3.16-14.41-6.19-26.09-13.84-34.44S580.64,511.22,571.19,511.22Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M519.85,593.87a3.53,3.53,0,0,1-2.47-6,44.74,44.74,0,0,1,26.81-12.52,3.53,3.53,0,0,1,.7,7,37.66,37.66,0,0,0-22.57,10.54A3.52,3.52,0,0,1,519.85,593.87Z" transform="translate(-105.77 -43.5)"/><g class="cls-12"><path class="cls-7" d="M594.18,528.83c-2.91-2.27-6.89-1-6.33,3,.48,3.5,3.92,7.78,5.33,11.35,1.52,3.85,1.69,9.59,4.15,12.83,6.11,8,5.64-6.3,4.59-9.76C600,539.94,598.74,534.06,594.18,528.83Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-12"><path class="cls-7" d="M496.84,563.83c-1-3.57-9.51-2.83-8.77,1.67.41,2.44,3.62,5.41,4.9,7.54a40.24,40.24,0,0,1,4.21,9.12c1.7,5.77-.86,14.73,3.3,19.67,3.29,3.9,6.35,1.12,6.68-2.86.42-5.1-.18-10.25-.7-15.28C505.86,577.61,503,567.14,496.84,563.83Z" transform="translate(-105.77 -43.5)"/></g></g><g id="layers"><path class="cls-1" d="M468.33,880.06a357.61,357.61,0,0,1-159.8-677.52,3.53,3.53,0,1,1,3.16,6.31c-119.58,59.84-193.86,180-193.86,313.64C117.82,715.77,275.06,873,468.33,873S818.84,715.77,818.84,522.5a350,350,0,0,0-214.08-323,3.53,3.53,0,0,1,2.75-6.5,357.56,357.56,0,0,1-139.18,687Z" transform="translate(-105.77 -43.5)"/></g></svg>
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyScene2Flat.png b/vendor/github.com/golang/dep/docs/assets/DigbyScene2Flat.png
deleted file mode 100644
index 712f82fb46289d7b89d20ca381120fd6380ffe2a..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/DigbyScene2Flat.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyScene2Flat.svg b/vendor/github.com/golang/dep/docs/assets/DigbyScene2Flat.svg
deleted file mode 100644
index df6de66d8275ddc924c61db51e222d9019877459..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/assets/DigbyScene2Flat.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 688.25 700.83"><defs><style>.cls-1{fill:none}.cls-2{fill:#474747}.cls-3{opacity:.2}.cls-4{fill:#edc0e3}.cls-5{fill:#e8e5e3}.cls-6{fill:#aaa39f}.cls-7{fill:#fff}.cls-8{fill:#c4d8ba}.cls-9{fill:#807e6e}.cls-10{fill:#d7b89b}.cls-11{fill:#efe6da}.cls-12{opacity:.44}.cls-13{fill:#995967}.cls-14{opacity:.72}.cls-15{fill:#829e93}.cls-16{opacity:.61}.cls-17{fill:#a7d8bf}.cls-18{opacity:.59}.cls-19{fill:#d1b288}.cls-20{fill:#606282}.cls-21{opacity:.46}.cls-22{fill:#51483e}.cls-23{fill:#6e607f}.cls-24{fill:#1d1d1b}.cls-25{clip-path:url(#clip-path)}.cls-26{clip-path:url(#clip-path-2)}.cls-27{clip-path:url(#clip-path-3)}.cls-28{clip-path:url(#clip-path-4)}.cls-29{clip-path:url(#clip-path-5)}.cls-30{clip-path:url(#clip-path-6)}.cls-31{clip-path:url(#clip-path-7)}.cls-32{fill:#b79765}.cls-33{fill:#e9e9f2}.cls-34{fill:#3d3d3d}.cls-35{opacity:.68}.cls-36{opacity:.17}.cls-37{opacity:.36}</style><clipPath id="clip-path" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M64.1,446.5,68,327c0-.74,110.68.57,120.76.64q30.51.22,61,.33c6.75,0,15.67-2.86,18.19,5,1.69,5.22-.25,11.23,0,16.58a66.07,66.07,0,0,0,2,13.25c1.3,5,2,6.21,0,10.75-3.71,8.44-8.65,15.92-13.38,24.23a58.76,58.76,0,0,0-4.67,11c-1.6,4.92-1.3,10.78-3.33,15.37s-6.67,8.57-9.26,12.9c-2.48,4.16-4.41,10-9.47,11.12-5.52,1.28-15.14-.81-21.12-.85q-24.31-.15-48.62-.34C152.13,446.9,64.12,445.91,64.1,446.5Z"/></clipPath><clipPath id="clip-path-2" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M547.52,426.07A19.5,19.5,0,0,1,543,417c-1.22-5.73-3.79-10.48-5.95-16-6.29-16.22-11.85-27-11.27-44.83.32-9.71.48-19.43,1-29.13,0-.74,110.68.57,120.76.64q30.51.22,61,.33c6.38,0,12.68-.67,19.06-.19,4,11.39,4.55,23,6.27,35.07,1.86,13.09,4.55,25.42,3.85,39-.63,12.08-.29,26.9-4,38.38-1.72,5.29-1.34,5.51-7.3,6.15-4.38.47-8.93-.24-13.33,0-15.44.84-30.18,1.06-45.52,1q-24.31-.15-48.63-.34c-11.71-.09-23.42-.23-35.13-.34-6.18-.06-16.86,2.13-22.47-.37-5.11-2.28-5.82-8.72-8.39-13.08A51.57,51.57,0,0,0,547.52,426.07Z"/></clipPath><clipPath id="clip-path-3" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M132.33,613.67c3-.92,8.1.34,11.5.67a101.15,101.15,0,0,0,14.08,0c8.09-.4,16.39-.28,24.51-.67a108.86,108.86,0,0,1,11.88-.28,17.65,17.65,0,0,0-1.35,4.55c-5.19-.07-3.06,3.59-1.4,6.15-3.62,1.72-3.81,5.09.74,5,0,2.42,0,5.84,1.7,7.78,1,1.1,2.72,1.61,3.56,2.78,1,1.36,1.07,3.37,1.7,4.94a22.28,22.28,0,0,0,6.36,8.73c5.62,4.73,13.19,6.71,20.4,7.06,3.64.18,7.32-.15,10.95,0,.35,7,1,14.28.22,21.25-.66,6.16-2.13,12.08-2.57,18.27-1.4-2.33-5.52-4.06-7.76-5.57-3.65-2.46-7.27-3.34-11.15-5.16-7.75-3.64-13.38-9.11-20.36-13.93-7.53-5.2-15.21-9-22.15-15.08a173,173,0,0,1-22.18-24c-2.75-3.56-6-6.48-8.67-10.07-2.39-3.16-6.59-7.57-8-11.09"/></clipPath><clipPath id="clip-path-4" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M661.33,612.33c-11.53,0-23.3,1.39-34.74,2.33-7.67.63-15.22-.38-22.87.06a6.61,6.61,0,0,0-.34,3.56c3.57.37,3.12,4.64.31,5.63,1.48.49,2.61,1.47,2.59,3-4.54.55-2.26,4.19-3.27,7.39-.52,1.64-1.08,1.92-2.16,3-.36.36-1.26-.21-1.77.39s-.45,1.93-.81,2.67c-2.6,5.29-5.11,10.83-10.45,13.92-4.11,2.37-9.38,3.66-13.82,5.25a32.68,32.68,0,0,1-12.27,2.13c-.65,4.82.62,10.54.62,15.51,0,6.61-.91,14,.34,20.42,4,.09,8.51-3.94,11.64-6.28,5.48-4.09,11.25-7.68,16.78-11.7,5.72-4.15,10.69-9,16.23-13.34s11.78-8.28,17-13.27c4.31-4.15,8.76-8.19,13.34-12,4.43-3.73,7.79-7.72,11.83-11.78C652.16,626.52,662.91,616.69,661.33,612.33Z"/></clipPath><clipPath id="clip-path-5" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M579.07,484.41c-.8,4.09-1.75,8.25-2.81,12.34-2.06,7.88-6.13,15.35-9.25,22.91-1.85,4.48-3.71,6.52-8.28,8.4.2-.08.35,8.66.44,9.64.36,3.72,1.64,7.27,2.7,10.83,2.2,7.37,3.58,13.61-1.5,20.06.48-.61,9.82,2.94,10.61,3.5,2.42,1.71,4.69,3.82,7.21,5.6a47.82,47.82,0,0,1,5.91,5.44c2.74,2.71,4.32,5.41,8.4,5.21,5.13-.25,10.46-1.11,15.65-.58,8,.83,16,.73,24,1.07s16.17-.83,24.31-.83c6.07,0,12.15,0,18.19-.26,5.07-.24,6.21.26,8.85-4.21,2.51-4.26,6.39-7.32,9.59-11,3.9-4.51,5.95-9.54,8.61-14.76,3.82-7.47,5.77-15.67,8-23.71,2.16-7.84,6.43-14.87,9.36-22.45,2.19-5.66,4.22-11.21,4.93-17.26a124.32,124.32,0,0,1,2.34-13.68c.62-2.7,1.77-6.43,1.27-9.27-38.84-2.08-78.82-1.69-117.78,0q-10.63.45-21.24,1.36c-2.39.21-8-.29-9.27,1.76C578.16,476.28,579.53,482,579.07,484.41Z"/></clipPath><clipPath id="clip-path-6" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M141.17,586c8.14.29,16,1.67,24.41,1.67,9.44,0,18.67.29,28-.17,3.4-.17,6.65-.41,10.06-.5,4.37-.12,4.93-2.93,8-6,6-5.95,13.79-9.37,20.88-13.73-1.29-5.55-4.27-8.69-4.28-14.83,0-7.27,4.87-15.19,3.32-22.24-.32-1.47-2.51-3-2.26-4.78s2.46-3.63,2.94-5.42c1-3.89.57-9.75-.41-13.59-1.61-6.29-7-10.59-8.18-17-.63-3.39-.23-6.81-.74-10.19-.35-2.34-1.66-4.32-1.71-6.81-7.93-.44-16-.07-24-.05-10.2,0-20.36-1.34-30.64-1.33-17.24,0-34.65,0-51.82-.67a289.65,289.65,0,0,0-39.92,1c-2,.2-6.86-.45-7.95,1.35-1.41,2.34,3.64,10,4.3,12.3,1.76,6,3.44,12,5.3,17.93,5.63,18.05,11.86,35.93,17.48,54,3,9.49,7.26,19.28,14.09,26.65,4.48,4.84,7.5,4.35,13.9,3.82S134.75,585.77,141.17,586Z"/></clipPath><clipPath id="clip-path-7" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M260.38,162.7c55.06.06,110.12.66,165.17.93s110,.24,164.94-1q11.49-.25,23-.58c6.76-.19,14.57.48,21.18-.81-2.12-2.56-2.84-5.8-5.31-8.27a49.21,49.21,0,0,0-8.75-6.93c-3.43-2.17-6.39-5.18-9.92-7.17s-7.45-3.18-10.4-6.06c-2.57-2.52-3.58-5.46-6.65-7.58-3.92-2.7-8.47-4.14-12.53-6.6-8.77-5.33-15.26-12.33-24.56-16.66-5.63-2.62-9.94-7.32-15.43-10-5.2-2.54-11.11-3.46-16.43-5.68C519,84,513.78,80.24,508,78.17c-11.9-4.27-24.91-5.63-37-9.42-6-1.89-11.6-2.33-17.86-2.73-6.58-.43-13.28-2.26-19.83-3.1a194.85,194.85,0,0,0-31.88-1.22c-4.19.15-7.08-1.83-11.21-1.81s-8.06,1.46-12.12,1.87c-10.28,1-20.62,1.18-30.91,2.28-16.38,1.76-32.39,8-48.07,12.63-10.5,3.1-21.41,6.09-31.32,10.75-9.51,4.47-18.42,10-27.82,14.64-9,4.48-18.56,8.06-26.82,13.94-3.55,2.52-6.66,5.4-10.63,7.35-4.14,2-8.49,3.57-12.18,6.41-7.21,5.55-14.07,12.07-21,17.93-2.51,2.12-15.05,10-10.75,14,2.39,2.2,12.65.55,15.86.57l17.34.12Q226.08,162.62,260.38,162.7Z"/></clipPath></defs><title>BoyerScene2Flat</title><g id="COLOR"><path class="cls-2" d="M411.55,62.33C592.55,69.76,737,218.85,737,401.67c0,187.57-152.06,339.62-339.62,339.62S57.75,589.24,57.75,401.67,209.81,62,397.38,62h3Z" transform="translate(-53.25 -44.96)"/><g class="cls-3"><path d="M411.55,62.33C592.55,69.76,737,218.85,737,401.67c0,187.57-152.06,339.62-339.62,339.62S57.75,589.24,57.75,401.67,209.81,62,397.38,62h3Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-4" d="M89.49,418.2c.15-3,.16-6,.34-9.05.16-2.72.88-5.49.78-8.19s-.8-5.19,2.15-6.53a49.56,49.56,0,0,1,10.52-3.06c5.41-1.11,11.86-.2,17.44-.35,6.67-.18,13.51,0,20.13-.73,5.79-.66,11.57,2.28,17.41.66,4.71-1.3,1.34-16.9.49-20.44-.92-3.87-2.37-5.83-4.24-9.25-1.77-3.25-2.63-4.83-5.59-7.05-3.61-2.71-6.83-5.59-11.24-7-4-1.23-9.3-.66-13.37-.25a149.55,149.55,0,0,0-15.43,2.48c-7.23,1.5-13.51-4.77-15.24-11.31a15.92,15.92,0,0,1-.43-6.7c.71-3.35,2.92-4.58,6.15-4.63,2,0,3.83-.42,5.79-.51s5.19-.69,6.93-.16c2.42.73,3.93,4.59,5.11,6.67.4.69.56,2.46,1.48,2.68s4.9-2.71,5.85-3.19c5.28-2.67,10.15-4.48,16.08-4.7,8.39-.31,16.79-.16,25.19,0,7.38.17,14.71.78,22.06.17,5-.41,9.91-.5,14.91-.5,5.15,0,10.31-.07,15.45.17,2.67.12,5.91.73,8.14,2.3,2,1.4,5.57,5,8.15,4.47,2.23-.5,3.46-3.4,5.18-4.67,3-2.22,7.08-2.77,10.8-2.43,3.53.32,6.58.76,8.5,3.85s.88,5.93-.23,9.07a54.25,54.25,0,0,1-6.23,12.12,3.82,3.82,0,0,0-2.87-1,13.92,13.92,0,0,1-5.53-1.33c-4.15-2.12-7.94-3.68-12.69-3.83a37.3,37.3,0,0,0-16,3.29c-4.25,1.8-9.81,4.19-13.05,7.58-6,6.26-6.8,14.53-7.53,22.8-.29,3.31-.68,6.73,0,10,.42,2,.9,2.61,3,2.63a68.9,68.9,0,0,0,10.13-.75c8.26-1.17,16.85-3.06,25.24-2.38,4.65.38,9.17.43,13.79,1.32,2.23.43,4.37,1.06,6.63,1.38a14.25,14.25,0,0,1,4,.83c.16,2.13-1.9,5-2.87,6.84-2.06,3.94-3.08,8.38-4.95,12.42a43.33,43.33,0,0,0-2.5,6.58c-.66,2.33-.74,5.27-1.67,7.46-1,2.4-3.9,4.89-5.55,7.09a105.22,105.22,0,0,1-7,8.37c-1.79,1.93-3.67,4.55-5.59,6.25-2.14,1.89-6.41.88-9.08.79-7.44-.26-14.64-1.68-22.17-1.13-6.64.49-13.72-.28-20.44-.32-7.34,0-14.67,0-22,.3-18.33.83-36.7-3.1-54.85-.54a26,26,0,0,1-6.08.2c-1.8-.16-4.23.14-4.82-1.77-.72-2.33.22-6.49.33-9C88.72,430.24,89.19,424.23,89.49,418.2Z" transform="translate(-53.25 -44.96)"/><path class="cls-5" d="M727.5,327.5c0-.64,0-1.28-.09-1.91-.34-5.38-.65-22.82-6.92-23.84-4.21-.69-9.54.16-13.88.16h-41c-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-65.54-.07-126.07-1.17-191.59-1.17L68,327c65.51,0,130.74.93,196.28,1,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0H728" transform="translate(-53.25 -44.96)"/><path class="cls-5" d="M637.53,161.53c-3.9,0-7.8,0-11.68.17-120.91,3.89-243.85,1.14-365.47,1-34.45,0-68.81-.31-103.17-.56l-23.62,24.93c42.24.28,84.46.68,126.79.73,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0" transform="translate(-53.25 -44.96)"/><path class="cls-5" d="M64.1,446.5c65.51,0,130.74.93,196.28,1,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0,20.81,0,51.3,2.07,72.11,2.07L730,470.8c-20.81,0-47.47.79-68.28.79-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-65.54-.07-130.77-1-196.28-1" transform="translate(-53.25 -44.96)"/><path class="cls-5" d="M681,588.06c-6.91-.23-13.49-.4-19.3-.4-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-48.95-.05-97.73-.59-146.58-.85L131.17,613c43,.28,86.06.7,129.21.75,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0" transform="translate(-53.25 -44.96)"/><path class="cls-6" d="M727.5,327.5c0-.64,0-1.28-.09-1.91-.34-5.38-.65-22.82-6.92-23.84-4.21-.69-9.54.16-13.88.16h-41c-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-65.54-.07-126.07-1.17-191.59-1.17L68,327c65.51,0,130.74.93,196.28,1,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0H728" transform="translate(-53.25 -44.96)"/><path class="cls-6" d="M637.53,161.53c-3.9,0-7.8,0-11.68.17-120.91,3.89-243.85,1.14-365.47,1-34.45,0-68.81-.31-103.17-.56l-23.62,24.93c42.24.28,84.46.68,126.79.73,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0" transform="translate(-53.25 -44.96)"/><path class="cls-6" d="M64.1,446.5c65.51,0,130.74.93,196.28,1,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0,20.81,0,51.3,2.07,72.11,2.07L730,470.8c-20.81,0-47.47.79-68.28.79-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-65.54-.07-130.77-1-196.28-1" transform="translate(-53.25 -44.96)"/><path class="cls-6" d="M681,588.06c-6.91-.23-13.49-.4-19.3-.4-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-48.95-.05-97.73-.59-146.58-.85L131.17,613c43,.28,86.06.7,129.21.75,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M689.33,345.33c-15.88.07-27.4,7.39-33.93,21.91-3.35,7.46-4.21,16-1.49,23.75.63,1.79,2.24,7.45,4.14,8.28s7.59-1.84,9.76-1.94c4.4-.21,8.78-.44,13.16-.67,9.14-.47,19-2.15,28-.83,5.14.75,10.82,4.1,15.95,3.49,0-6.61,2.86-12.73,2.39-19.62-.37-5.43-3.36-10.23-6.19-14.69s-6.29-10.2-10.14-13.95C706.06,346.23,699.6,346.58,689.33,345.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M577.33,345.67c-8.13,2.74-16.2,6.05-22.67,12-7.18,6.59-8,16.39-8,25.65,0,5,.58,12.8,4,16.73,9.37-6.75,25.31-5.33,36.26-4.37,6,.52,11.95.82,17.84,1.91,3.54.65,7.58,1.86,11.19,1.37,1.49-6.31,5.31-10,5.06-17a39.76,39.76,0,0,0-5.5-18.32C607.56,350.39,597,346.33,577.33,345.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-8" d="M584.47,330.32c-2.69,1.39-5.71,4.62-8.4,5.3-3.34-7-9.64-7-16.73-6.62-4,.22-7-.06-6.67,4.58.38,5.94,3.06,14.31,9.5,16,5.45,1.42,10.87-1.23,16.15-2.22,6.6-1.23,12.53-1.2,18.85,1,14.85,5.24,21.87,18,21.17,33.56-.16,3.48,0,16.13-4.19,18.05-1.58.72-7.86-1.67-9.82-2-8-1.24-16-2.9-24.13-3.7s-14.79.94-22.37,3.32c-2.75.86-6.43,1.58-8.2,3.86s-2.1,6.88-2.3,9.51c-.45,5.79-2,12.06.31,17.62,1.53,3.63,4.42,6.53,7.44,8.93,3.53,2.82,4.78,5.89,6.65,10.07,14.65.9,29-2.15,43.76-2.28,9-.08,18-.93,26.84-1,9.1-.07,17.51,1.92,26.5,2.68,10.45.88,21,.63,31.53.81,9.78.17,19.79.78,29.48.75,4.8,0,2.74-3,2.71-7.43,0-5.1.57-10.23-.2-15.3-.52-3.43-1.15-6.67-1.35-10.15-.15-2.71-1.27-6.44-.67-9,.75-3.19,3.76-4.87,3.28-8.62-11.35-.63-22.56-1.38-33.94-1.38s-22.47,3.56-33.34,1.83c.18-4-1.47-7.84-1.67-11.83s-.33-8-.33-12c0-8.39,4.09-14.09,10.68-19.41,9.93-8,21.7-11.6,34.67-9.23,3.63.66,7.27,3.77,10.65,4.14,4.87.54,7.91-8.54,8.51-12.84,1.2-8.69-1.45-10.79-9.68-11.17-3.57-.16-6.87-.6-9.85,1.68s-5,5.72-8.22,7.79c-5.52-9.81-22.7-9.3-32.08-9.3-17.09,0-34.29.82-51.35,1.67-3.94.2-8-.88-11.91-1C590.64,326.75,588.76,328.11,584.47,330.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-9" d="M638,393.67c-3.35,0-15.51-.26-14.36,5.67.5,2.58,6,4.42,8.19,4.83,3,.56,5.94.31,8.16-1.82C641.55,400.86,645.87,392.58,638,393.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-10" d="M626,400.67c-8.15-1.58-12.48,17.44-3.33,18.33,3.87.38,6.87-2.06,10.41-2.92,4.88-1.19,10.23.45,15.19,0,5.93-.57,6.78-6.25,4-11.05-1.75-3-4.79-3.2-7.18-5.3-2,5.4-13.39,5.35-16.08,1" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M628,418.33c-.19,2.28-1.39,7.7-.18,9.85,1.32,2.33,6,2.67,8.35,2.49,2.92-.23,5.64-1.43,6.58-4.33.44-1.35,1.15-8,.59-9.17C641.86,414.17,631,415,628,418.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-9" d="M183.67,393c-3.93,0-20.42-1.1-18.35,6,1.15,3.93,8.21,4.93,11.58,5C182.73,404.09,186.51,400.8,183.67,393Z" transform="translate(-53.25 -44.96)"/><path class="cls-10" d="M161.75,404.35c-1.93,2.57-4.11,7.18-2.35,10.26s6.5,4.14,9.6,3.32A43,43,0,0,1,179.5,416c3.4-.11,8.91,1.1,12-.37,7.94-3.79.72-11.47-3.41-14.71-3.25-2.55-3.86.42-6.92,2.25-2.62,1.56-5.68,2.94-8.67,1.7C168.19,403.07,166,398.74,161.75,404.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M168.33,417.33c0,7,.59,11.56,8.33,12.34,3.34.33,6.66.05,8.26-3.17,1-2.07,1.55-7.61.22-9.49C182.34,413.05,174.9,415.3,168.33,417.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M88.5,394.33a48.2,48.2,0,0,1-.21-22.53A27.33,27.33,0,0,1,96,358.64c2-2,3.92-4.38,6.43-5.77a53.9,53.9,0,0,1,8-3.24c6.09-2.19,12.16-3.64,18.69-3.3a36.48,36.48,0,0,1,10.33,2.26c2.89,1.05,4.92,3.18,7.24,5.1,2.08,1.72,4.25,2.94,5.92,5a29.06,29.06,0,0,1,3.73,6.56c2.84,6.42,3.69,12.08,3.68,19.05,0,1.77.92,6.87-.68,8.23-1.13,1-4.26-.81-5.46-1.24-3.84-1.37-8-1.5-12-1.5-9.57,0-19.67.27-29.12,1.88C104.76,393.07,96,393.51,88.5,394.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M196,392c-1.79-1.75-1.89-6.26-2-8.63a33.15,33.15,0,0,1,.46-8c.9-4.59,3.49-9.41,5.67-13.5,7.79-14.61,29.4-17.66,44-13.87,4.77,1.24,9.79,2.87,12.87,6.92,2.27,3,5.88,7.5,6.46,11.25" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M248.67,351.33c.78,1.44,2.61,2.29,3.84,3.33a44,44,0,0,1,4.62,4.63,40.35,40.35,0,0,1,5.83,8.8,52,52,0,0,1,3.62,7.83c.95,3.06-2.19,6-3.86,8.48-2.07,3.07-4.34,6.07-6.27,9.26-2.39-2.19-6.42-2.57-9.56-3.09a103.84,103.84,0,0,0-17.2-1.23c-10.86,0-21.52,2.53-32.37,2.67" transform="translate(-53.25 -44.96)"/><path class="cls-11" d="M180.17,162.33c-4.89,0-5.59-1.1-7.57-5.41-.55-1.2-2.47-4.28-2.28-5.58.35-2.33,3.06-3.08,5-4.35,6.52-4.23,12.36-9.33,18.49-14.16,7.48-5.9,15.18-10.77,23.17-15.93,5.58-3.61,11.35-6.67,17.1-10,11.44-6.63,24.34-10.63,36.4-16.08A352.56,352.56,0,0,1,347.35,66a242.15,242.15,0,0,1,28.52-3.37c3-.23,17.34-2.79,18.83,1,.22.58-.92,3.37-1,4.17-.23,1.6-.25,3.32-.33,4.91-.22,4.5-2.48,16.8.83,20.26,1.57,1.65,2.82.45,5.18,0,3.1-.59,6.36-.33,9.51-.33,6.7,0,13.33,0,20,.67,1.42.14,4.8-.14,5.55,1,.59.87-.24,4.17-.34,5.19-.67,6.65-.65,13.76-.68,20.51,0,10-.34,19.9-.28,29.86,0,2.6-1.23,9.56.09,11.76,1.22,2,4.81,1.58,6.81,2-.32-.07.52-32.62.49-35.66-.1-10.61-.77-21.25-.77-32,0-5-2-14.61.39-18.94,5-.32,9.91-.19,14.89-.44.14-2.75-1-7.18,1.38-8.28,3.14-1.44,9.33,1.6,12.88,1.38-.32,0,.45,22.21.45,24.2,0,5.69-.34,11.33-.59,17-.54,12.46.59,24.71.59,37.15,0,5.16-.47,10.06-.72,15.2-4.26.57-9.19-.62-13.58-.62-5.59,0-11.39-.35-16.94.24-15.7,1.69-32.27.91-48.16.09-10.62-.55-21.43.27-32.14.1-12.09-.19-24.18-.44-36.27-.44-29.6,0-59,1-88.57,1-8.16,0-16.68.73-24.62-.76-2.89-.54-5.9-1-8.74-1.49C193.6,160.38,186.58,162.33,180.17,162.33Z" transform="translate(-53.25 -44.96)"/><g class="cls-3"><path d="M440.17,158.78c-.13-10.26.36-20.52.26-30.82-.1-10.61-.77-21.25-.77-32,0-5-2-14.61.39-18.94,5-.32,9.91-.19,14.89-.44.14-2.75-1-7.18,1.38-8.28,3.14-1.44,9.33,1.6,12.88,1.38-.32,0,.45,22.21.45,24.2,0,5.69-.34,11.33-.59,17-.54,12.46.59,24.71.59,37.15,0,5.16-.47,10.06-.72,15.2,0,.76-19.65-.13-21.13-.32a10.14,10.14,0,0,0-4.14,0c-1.13.34-2.28,1.1-3.39.72Q440.2,161.24,440.17,158.78Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M303.55,161.86c-.81-12.51,1.83-24.9,2.8-37.33a114.16,114.16,0,0,0-.45-18.9c-.5-5.93.14-12.09.09-18.06q0-4.55-.21-9.1c8.46-5.27,18.63-7.23,28.31-9.56,7.08-1.7,14.13-3.37,21.41-1.81-3.48,13.14-.1,27-.06,40.58,0,3.35-.18,6.7-.33,10a355.09,355.09,0,0,0,.93,45.51c-.07-.88-31.13-.58-34.17-.58-1.33,0-18.28-.34-18.21.53Q303.59,162.53,303.55,161.86Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-14"><path class="cls-15" d="M239.27,163.84a64.66,64.66,0,0,0,2.63-13.77l4.88-41.94a19,19,0,0,1,1.28-5.73c1.72-3.78,6.3-4.89,9.83-6.3,4.23-1.69,8.45-3.38,12.6-5.26a188.12,188.12,0,0,1,24.76-9.16L294,102.77c-.4,6.47-1.61,13.54-.9,19.93a203.82,203.82,0,0,1,1.36,23.14c0,3.86-.17,7.72-.48,11.57s0,5.17-3.94,5.26c-8.35.18-16.71.58-25.05.71q-7,.11-14.07.19C247.54,163.6,242.35,165,239.27,163.84Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M180.17,162.33c-4.89,0-5.59-1.1-7.57-5.41-.55-1.2-2.47-4.28-2.28-5.58.35-2.33,3.06-3.08,5-4.35,6.52-4.23,12.36-9.33,18.49-14.16,7.48-5.9,15.18-10.77,23.17-15.93,5.58-3.61,11.35-6.67,17.1-10,4.47-2.59,9.16-5.63,14.1-7.05a1.67,1.67,0,0,1,1-.08c.77.26.74,1.35.55,2.14a479.38,479.38,0,0,0-8.47,47.41c-.42,3.28.1,9.24-1.38,12.13-1.2,2.34-5,2.19-7.76,2.21-7.81.06-15.73.68-23.45-.76-2.89-.54-5.9-1-8.74-1.49C193.6,160.38,186.58,162.33,180.17,162.33Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M499.64,86.89c-.77-1.42-1.53-2.84-2.27-4.28-3-5.84-6.46-6.27-12.5-8.39-4.32-1.51-8.84-3.06-13.48-2.84-.63,4,6.39,10.9,8.54,14.28,3.41,5.36,5,11,7.49,16.75,2.83,6.54,8,11.93,11.25,18.33,3.69,7.21,8.86,13.26,12.93,20.29,4,6.84,9.36,13.51,14.4,19.55,5.21-1.43,7.56-8.46,13.61-9.2,1.34,3.76-.71,7.55-.23,11.23a520.91,520.91,0,0,0,78.88-1.94c4.88-.48,9.81-.13,14.71-.39-2.19-3-3.55-6.49-6.15-9.47-3.41-3.91-7.1-6.63-11.26-9.64-6.7-4.85-14.37-8.71-20.69-14-3.87-3.24-7.56-6.62-11.76-9.5a196.87,196.87,0,0,0-30.18-16.75c-2.57-1.15-10.73-6.6-13.35-3.61-1.39,1.58-.13,8.08-.23,10.18-.44,9.22,1.55,18,1.65,27.17.05,4.4,1.27,12.09-1,15.71-4.13-2.63-4.54-9.06-6.61-13.08-2.44-4.74-6.06-8.74-8.82-13.29-3.25-5.35-7-9.85-10.51-15-1.79-2.64-3-5.7-4.81-8.32C506,96,502.37,91.94,499.64,86.89Z" transform="translate(-53.25 -44.96)"/><g class="cls-16"><path class="cls-17" d="M499.64,86.89c-.77-1.42-1.53-2.84-2.27-4.28-3-5.84-6.46-6.27-12.5-8.39-4.32-1.51-8.84-3.06-13.48-2.84-.63,4,6.39,10.9,8.54,14.28,3.41,5.36,5,11,7.49,16.75,2.83,6.54,8,11.93,11.25,18.33,3.69,7.21,8.86,13.26,12.93,20.29,4,6.84,9.36,13.51,14.4,19.55,5.21-1.43,7.56-8.46,13.61-9.2,1.34,3.76-.71,7.55-.23,11.23a520.91,520.91,0,0,0,78.88-1.94c4.88-.48,9.81-.13,14.71-.39-2.19-3-3.55-6.49-6.15-9.47-3.41-3.91-7.1-6.63-11.26-9.64-6.7-4.85-14.37-8.71-20.69-14-3.87-3.24-7.56-6.62-11.76-9.5a196.87,196.87,0,0,0-30.18-16.75c-2.57-1.15-10.73-6.6-13.35-3.61-1.39,1.58-.13,8.08-.23,10.18-.44,9.22,1.55,18,1.65,27.17.05,4.4,1.27,12.09-1,15.71-4.13-2.63-4.54-9.06-6.61-13.08-2.44-4.74-6.06-8.74-8.82-13.29-3.25-5.35-7-9.85-10.51-15-1.79-2.64-3-5.7-4.81-8.32C506,96,502.37,91.94,499.64,86.89Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M499.64,86.89c-.77-1.42-1.53-2.84-2.27-4.28-3-5.84-6.46-6.27-12.5-8.39-4.32-1.51-8.84-3.06-13.48-2.84-.63,4,6.39,10.9,8.54,14.28,3.41,5.36,5,11,7.49,16.75,2.83,6.54,8,11.93,11.25,18.33,3.69,7.21,8.86,13.26,12.93,20.29,4,6.84,9.36,13.51,14.4,19.55,5.21-1.43,7.56-8.46,13.61-9.2,1.34,3.76-.71,7.55-.23,11.23a520.91,520.91,0,0,0,78.88-1.94c4.88-.48,9.81-.13,14.71-.39-2.19-3-3.55-6.49-6.15-9.47-3.41-3.91-7.1-6.63-11.26-9.64-6.7-4.85-14.37-8.71-20.69-14-3.87-3.24-7.56-6.62-11.76-9.5a196.87,196.87,0,0,0-30.18-16.75c-2.57-1.15-10.73-6.6-13.35-3.61-1.39,1.58-.13,8.08-.23,10.18-.44,9.22,1.55,18,1.65,27.17.05,4.4,1.27,12.09-1,15.71-4.13-2.63-4.54-9.06-6.61-13.08-2.44-4.74-6.06-8.74-8.82-13.29-3.25-5.35-7-9.85-10.51-15-1.79-2.64-3-5.7-4.81-8.32C506,96,502.37,91.94,499.64,86.89Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M92.25,301.5c0-6-.5-12-.5-18.06,0-5.5-1-10.71-.75-16.21s-.53-10.74,1.4-16c3.53-9.57,9.82-18.41,15.56-26.75,3.87-5.62,7.07-11.13,14-12.82q.13-.15,0,0a3.67,3.67,0,0,1-.62.54c3.43-.59,7-2.53,10.66-1.41,5.14,1.6,6.51,6.61,7.46,11.3,3.59,17.89,6,36.34,7.92,54.46.51,4.84.5,13.41,4.64,16.72,1.58-5.82,1-12.05.73-18-.09-2.2,1-6.55-1-8,0,0,1.38-62,1.31-63s9.69-2,9.69-2l8.44,1.41,1.06,4.33L174,195.93h20.67v14.55l12.33.13V195.93l19-.65s12.92,3.72,12.84,4.22.17,76.75.17,76.75l.47,16.25,16.16-28.11,31.47-48.05L297.25,201l11.54,8L310.67,188l13.09-.23L323.18,219l17.32.25L338.75,304l-28.66-1V213l-1.84-1L274,271l-11.25,20L253,302l-12-8.67-2,1.09,1.33,6.85Z" transform="translate(-53.25 -44.96)"/><g class="cls-18"><path class="cls-19" d="M92.25,301.5c0-6-.5-12-.5-18.06,0-5.5-1-10.71-.75-16.21s-.53-10.74,1.4-16c3.53-9.57,9.82-18.41,15.56-26.75,3.87-5.62,7.07-11.13,14-12.82q.13-.15,0,0a3.67,3.67,0,0,1-.62.54c3.43-.59,7-2.53,10.66-1.41,5.14,1.6,6.51,6.61,7.46,11.3,3.59,17.89,6,36.34,7.92,54.46.36,3.41.41,6.88,1.22,10.23s3,6.57,2.57,10.21c-.92,7-12.72,4.42-17.57,4.43l-21.11,0Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-14"><path class="cls-15" d="M310.09,301.5V253.82c0-17.45.39-34.95-.69-52.32-.06-1,1.2-13.52,1.27-13.52l13.09-.23L323.18,219l17.32.25L338.75,304l-28.66-1Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M253,302c-2.25-1.63-4.71-2.95-7-4.5-1.06-.72-5.47-2.36-5.74-3.5a2.51,2.51,0,0,1,.14-1.25c2.85-9.95,10.06-19.35,15.24-28.36l31.47-48.05L297.25,201c4.1,2.86,9.46,5.37,12.37,9.43a3.46,3.46,0,0,1-1.25,3.18c-3.48,2.74-5.36,7.38-7.58,11.2l-8.67,14.93-15.74,27.11L274,271l-11.25,20Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-20" d="M153,295.9c-.63-6.8,0-13.85-.26-20.65-.09-2.2,1-6.55-1-8,0,0,1.38-62,1.31-63s9.69-2,9.69-2l8.44,1.41,1.06,4.33L174,195.93h20.67v14.55l12.33.13V195.93l19-.65s12.92,3.72,12.84,4.22.17,76.74.17,76.75c0,2.8.16,5.61.24,8.41.11,4-.6,8.55.14,12.4.4,2.11,2.31,3.77,2.05,6.09-10.6.4-21.52-1-32.17-1.15s-21.12,0-31.67.34c-7.47.26-15.09.63-22.26-1.48a3,3,0,0,1-1.46-.77,3,3,0,0,1-.55-1.55C153.19,297.68,153.08,296.79,153,295.9Z" transform="translate(-53.25 -44.96)"/></g><polygon class="cls-11" points="292.81 257.04 292.37 188.62 331.25 188.69 332.25 161.42 375.58 161.42 377.25 158.59 388.74 157.38 392.75 158.09 396.14 159.65 397.6 150.81 419.52 150.97 418.91 163.79 431.27 164.54 431.3 151.68 445.66 150.81 454.25 150.63 462.5 152.7 463.08 178.06 474.5 177.82 477.54 175.78 476.5 171.22 496 164.54 500.75 165.29 513 237.04 518.25 258.54 486.5 258.79 479.75 205.44 476.5 185.51 474.5 188.04 474.5 259.72 388.74 258.79 372.42 251.62 363.92 248.75 359.76 249.29 360.52 252.7 346.42 254.29 327.96 255.7 320.75 255.7 292.81 257.04"/><g class="cls-16"><path class="cls-17" d="M536.48,277.9,533,250.4c-1.67-10.25-2.32-20.24-3.6-30.5a7,7,0,0,1-.06-2c.57-3.44,8.49-4.49,11.35-5.47l8.57-2.94,4.75.75L566.25,282l5.25,21.5-31.75.25Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M473.47,293.73c-1.74-26.81.49-53.82-1.55-80.62a4.35,4.35,0,0,1,.27-2.4c1-1.92,12.33-1.69,12.33-1.21l0-12.86,14.36-.87,8.59-.19,8.25,2.08.58,25.36c2.8-.06,10.63-1.71,11.76,1.59a7.14,7.14,0,0,1,.21,2.63c-.69,16-.55,32.12-.55,48.19v29.24s-17.26-.19-18.27-.2l-18.3-.2-9.55-.1c-1.55,0-5.71,1.2-6.72,0a4.87,4.87,0,0,1-.81-2.69Q473.72,297.6,473.47,293.73Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M425.5,293.74a206.26,206.26,0,0,1-.69-22.25l.26-51.15a30.31,30.31,0,0,0-.76-8.51,7.25,7.25,0,0,1-.48-2.53c.14-1.71,1.71-2.93,3.28-3.62,5-2.2,9.39-2.75,14.88-3.33l4,.71,3.39,1.56,1.45-8.84,21.92.16c-.27,5.63.18,11.07-.14,16.67-.46,8.18-.88,16.36-1.09,24.55-.41,16.12,0,32.31,2.46,48.27.91,5.88,2.09,11.73,2.51,17.66.16,2.26-.67,1.84-2,1.84-.19,0-1.31-.76-1.64-.85-1.21-.34-3,0-4.25,0L455,303.89l-13-.14c-2,0-5.17-2.27-7-3.05-2.68-1.18-9-2.58-9.43-6Q425.55,294.23,425.5,293.74Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-19" d="M346.06,302l-.45-68.42,38.88.07,1-27.27h16.62c8.39,0,18.24-1.41,26.4.12a68.46,68.46,0,0,1-.41,12.13l-2.78,29.79c-.43,4.65-.87,9.3-.88,14,0,3.8.25,7.6.52,11.39.52,7.46,4,19.43,3.88,26.89-3.05.17-7.48-.41-10.33,0l-4.62-.25h0L400,300.5l-18.79.17H374Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-20" d="M433.26,162.79c-.09-1.68-.12-3.36-.15-5l-.53-29.61a72.4,72.4,0,0,0-.4-7.61c-.31-2.49-.88-5-1-7.47-.28-6.72,2.75-13.46,1.35-20a1.53,1.53,0,0,0-.45-.93,1.6,1.6,0,0,0-1-.22c-7.26,0-14.53.07-21.78.32-2.6.09-4.76,1-7.28,1.19-2.21.18-6.4-.33-6.61,3-.06.92.31,2.07-.45,2.59-2.09-11,1.69-22.46-.31-33.48a3,3,0,0,0-.73-1.72,3.17,3.17,0,0,0-2.4-.51c-11.48.7-23,1.4-34.34,3.2a4.31,4.31,0,0,0-2.25.82c-1.21,1.08-1.59,5.31-2,6.89-.75,3.31.08,7.37.39,10.71,1.19,12.69.41,25.42.46,38.17q.08,19.88,1,39.74,20.06,1.58,40.21,1.38C398.23,164.17,433.25,162.64,433.26,162.79Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M714.75,284.75c1.42,1.82,1.16,5.24,1.75,7.45s2,3.71,2.85,5.67c2.21,5.24-8.77,4.26-11.58,4.29l-18.26.18-52,.51L635.34,210l-2.86-3.52S622.35,250.08,616.92,266s-12.28,36-12.28,36l-14.84-6.92-2.55,7.29L571.5,303.5l-2.5-97,.75-2.25,11.8-1.16H587l1.5,3.28-.12,6.5-1.13,54.83.25,23.8,26.19-77,5.56-13.75L620,194l13,3.25,2.34,2.5-1.1,4.5,18.27-1.2,2.69,3.45,1.1,2.25V195l8-.33s31,44.17,38.25,58.88" transform="translate(-53.25 -44.96)"/><g class="cls-18"><path class="cls-19" d="M714.75,284.75c1.42,1.82,1.16,5.24,1.75,7.45s2,3.71,2.85,5.67c2.21,5.24-8.77,4.26-11.58,4.29l-18.26.18-52,.51-1-42.75-.73-31.8-.27-11.63c0-1.28-.74-11.06-1.42-10.63,5.27-3.33,12.27-2.59,18.43-3l2.69,3.45,1.1,2.25V195l8-.33s31,44.17,38.25,58.88" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M635.34,199.75c-1.38,5.62-3.78,10.93-5.29,16.55-1.63,6.07-2.86,12.23-4.4,18.32-2.66,10.52-5.23,21.14-8.72,31.42-5.42,16-12.28,36-12.28,36l-14.84-6.92-2.55,7.29L571.5,303.5l-2.5-97,.75-2.25,11.8-1.16H587l1.5,3.28-.12,6.5-1.13,54.83.25,23.8,26.19-77,5.56-13.75L620,194l13,3.25Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M82,522.25l5.82-27.41,20.8,5.82,5.19,3.67L111.33,509l8.5-.68,4,.74,1.66-3V484.25l12.81-2.65h8l6.21.9,3.5.32.5,14.42L168,495.5l1.14-.66.11-13.09,16.5.75h5.91v9.65l1,2.69,5.11-5.88,4.59-.52,4.57.52,5.1.67.6,5.21,4.79-2.88,4.73-.25,3.63-1s7,15.41,8.11,18.2-.1,4.09-.1,4.09l-2,8.21L229.5,544.5l-2.88,12.27v5.56l2.63,3.86,2.76,1.43-13.26,8.62L206,587.76l-92.21.05Z" transform="translate(-53.25 -44.96)"/><g class="cls-21"><path class="cls-22" d="M82,522.25l5.82-27.41,20.8,5.82,5.19,3.67L111.33,509l8.5-.68,4,.74,1.66-3V484.25l12.81-2.65h8l6.21.9,3.5.32.5,14.42L168,495.5l1.14-.66.11-13.09,16.5.75h5.91v9.65l1,2.69,5.11-5.88,4.59-.52,4.57.52,5.1.67.6,5.21,4.79-2.88,4.73-.25,3.63-1s7,15.41,8.11,18.2-.1,4.09-.1,4.09l-2,8.21L229.5,544.5l-2.88,12.27v5.56l2.63,3.86,2.76,1.43-13.26,8.62L206,587.76l-92.21.05Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M592.09,588l14.61-9.7-.15,9.23,31.78.81,44.33-.81s8.87-18.31,18-38c9-19.49,18.24-40.34,19.36-46.2,2.25-11.78,0-5.95,0-5.95a36.4,36.4,0,0,1-5.55-.79c-1.25-.39-2.24-2.22-3.75-.67-.92.95-1,2.4-1.12,3.72-.61,7.11-3.47,13.81-5,20.78a67.44,67.44,0,0,0-1.42,17.29c.17,4.31.64,8.82-1.1,12.76s-5.5,6.72-7.62,10.51a101.78,101.78,0,0,1-.84-11.9q.65-29.68,1.3-59.37c-3.89.63-7.49-1.87-11.53-1.89a9.74,9.74,0,0,0-4.33.8,4.84,4.84,0,0,0-2.73,3.3,16.64,16.64,0,0,1-.3,2.3c-.25.74-1,1.39-1.76,1.09-1.23-.52-1.5-11.2-1.48-13-1.88-.13-20.08-1.41-20.08-1.38l-1.12,14.8-13.22,1s.25-13.54.33-14.21-31.5,1.57-31.5,1.57l-1.5,90.54-2-1.6-35.11-56.86-7.33,10.78-3,3,21.07,38.54" transform="translate(-53.25 -44.96)"/><path class="cls-11" d="M175.14,629.45a13.91,13.91,0,0,1,6.19,6.09l-.49-13.79a26.83,26.83,0,0,1,8.37,1.08,8.38,8.38,0,0,1-.92,4.7c1.39-.45,2.83.81,3.26,2.21a17.53,17.53,0,0,1,.27,4.36c.07,1.46.59,3.08,1.91,3.71.45.21,1,.29,1.42.49a5.55,5.55,0,0,1,2.35,2.88c2.91,5.91,6.45,12,12.24,15.11a28.83,28.83,0,0,0,8.88,2.75,78.46,78.46,0,0,0,10.7,1.11,9.41,9.41,0,0,1,4.68.93c1.89,1.17,2.62,3.54,3,5.73a62.61,62.61,0,0,1,.5,9.74v15.57c0,2.63-.39,5.87-2.83,6.85s-5.12-1.25-7.11-3.15a92.58,92.58,0,0,0-11-8.45c-7.57-5.3-15-10.82-22.31-16.47-8.51-6.58-16.64-13.72-25.3-20.1-6.14-4.53-9.18-8.39-8.43-16.6.31-3.47,1.82-3.48,5-3.79Z" transform="translate(-53.25 -44.96)"/><g class="cls-18"><path class="cls-23" d="M175.14,629.45a13.91,13.91,0,0,1,6.19,6.09l-.49-13.79a26.83,26.83,0,0,1,8.37,1.08,8.38,8.38,0,0,1-.92,4.7c1.39-.45,2.83.81,3.26,2.21a17.53,17.53,0,0,1,.27,4.36c.07,1.46.59,3.08,1.91,3.71.45.21,1,.29,1.42.49a5.55,5.55,0,0,1,2.35,2.88c2.91,5.91,6.45,12,12.24,15.11a28.83,28.83,0,0,0,8.88,2.75,78.46,78.46,0,0,0,10.7,1.11,9.41,9.41,0,0,1,4.68.93c1.89,1.17,2.62,3.54,3,5.73a62.61,62.61,0,0,1,.5,9.74v15.57c0,2.63-.39,5.87-2.83,6.85s-5.12-1.25-7.11-3.15a92.58,92.58,0,0,0-11-8.45c-7.57-5.3-15-10.82-22.31-16.47-8.51-6.58-16.64-13.72-25.3-20.1-6.14-4.53-9.18-8.39-8.43-16.6.31-3.47,1.82-3.48,5-3.79Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M560.6,661.45a34,34,0,0,0,27-8c4-3.55,7.13-8,10.2-12.41a101.21,101.21,0,0,0-3,33c5-2.15,10.08-4.38,13.87-8.25a42,42,0,0,0,5.77-8.14,71.54,71.54,0,0,0,6.35-12.44c.93-2.62,1.55-5.34,2.28-8a104.45,104.45,0,0,1,4.87-14,1.57,1.57,0,0,1,.44-.67,1.54,1.54,0,0,1,1-.19,25,25,0,0,1,13.82,5.09c-5.61,4.68-5.11,13.61-9.43,19.5a27.5,27.5,0,0,1-6.13,5.57q-18.32,13.5-37.27,26.11-9.35,6.22-18.84,12.22c-1.75,1.1-6.93,5.66-9,5.23-2.86-.6-1.62-6.71-1.62-8.86S561.4,661.57,560.6,661.45Z" transform="translate(-53.25 -44.96)"/><g class="cls-18"><path class="cls-23" d="M560.6,661.45a34,34,0,0,0,27-8c4-3.55,7.13-8,10.2-12.41a101.21,101.21,0,0,0-3,33c5-2.15,10.08-4.38,13.87-8.25a42,42,0,0,0,5.77-8.14,71.54,71.54,0,0,0,6.35-12.44c.93-2.62,1.55-5.34,2.28-8a104.45,104.45,0,0,1,4.87-14,1.57,1.57,0,0,1,.44-.67,1.54,1.54,0,0,1,1-.19,25,25,0,0,1,13.82,5.09c-5.61,4.68-5.11,13.61-9.43,19.5a27.5,27.5,0,0,1-6.13,5.57q-18.32,13.5-37.27,26.11-9.35,6.22-18.84,12.22c-1.75,1.1-6.93,5.66-9,5.23-2.86-.6-1.62-6.71-1.62-8.86S561.4,661.57,560.6,661.45Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-20" d="M618.76,481.46c-3.58,0-7.92.36-9.5,3.58a9.59,9.59,0,0,0-.68,4.06l-2.13,98.17a180.81,180.81,0,0,0,34.45-.75c-2.21-6.75-2.28-14-2.32-21.09l-.17-28.76a101.28,101.28,0,0,1,.41-12c.47-4.13,1.45-8.2,1.66-12.35.25-4.95-.6-9.85-.78-14.79-.12-3.56,1.07-7.89-.42-11.27C636.27,479.39,624.51,481.52,618.76,481.46Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-23" d="M652.25,544q.42-27.32-.87-54.62c-.13-2.8,0-6.14,2.34-7.64a8,8,0,0,1,4.52-.82l11.28.18a2.46,2.46,0,0,1,3,2.44l1.86,9.92c1.53-.69,1.42-3.21,2.93-3.93a3.4,3.4,0,0,1,1.64-.2A117.76,117.76,0,0,1,694.3,491a1.45,1.45,0,0,1,1.53,1.88l-3.67,40.48a59.81,59.81,0,0,0-.35,9.87c.26,3.51,1.15,6.95,1.53,10.45a48.07,48.07,0,0,1-.17,10.79,10.67,10.67,0,0,1-.59,2.76,12.66,12.66,0,0,1-2.09,3.11,67.57,67.57,0,0,0-10.11,17.14,147.26,147.26,0,0,0-16.07-.7c-3.72,0-9.24,1.46-12.55-.81-2.9-2-2.75-5.51-2.27-8.6.83-5.29,1.67-10.51,2.07-15.86C652,555.68,652.16,549.82,652.25,544Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-21"><path class="cls-22" d="M590.16,587.71c-1.45-5.44-5.88-9.46-9.16-14-5.17-7.2-7.61-16.07-12.71-23.33a50.69,50.69,0,0,1-3.54-5.18c-.9-1.69-1.47-3.54-2.34-5.24-1-2-2.55-4-2.77-6.23a11.73,11.73,0,0,1,1.12-5.19c1.69-4.42,3.58-9.11,7.45-11.83,5.85,6.16,8.57,14.61,13.45,21.56,1.1,1.56,2.3,3,3.44,4.56A135.37,135.37,0,0,1,593.95,557q2.83,5,5.65,10,1.41,2.5,2.8,5c.74,1.34,2.23,3.11,2.42,4.65.31,2.54-3.39,4-5.15,5.19Q595.06,585,590.16,587.71Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-21"><path class="cls-22" d="M639.06,496.73c-1.32,8.89-1.12,17.92-.91,26.91l.18,7.91c.31,13.59.63,27.17.85,40.76a79.15,79.15,0,0,1-.68,14.6l11.23-1.48q1.41-23.59,1.67-47.24c.07-6.84.07-13.68.08-20.52v-8.08c0-2.4,0-4.79-.09-7.19-.06-1.61.23-4.24-.84-5.61S639.17,496,639.06,496.73Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M709.39,497.13a.65.65,0,0,0-.78.67l-3.88,25.33c-1,6.83-2.1,13.74-1.52,20.62,4.23-4.28,5.51-10.58,8.36-15.89,1.36-2.54,3.1-4.87,4.28-7.5a39.23,39.23,0,0,0,2.33-8.3c.85-4.17,2.49-9.42,1.85-13.69-.32-2.18-1.46-1.82-3.46-1.69Z" transform="translate(-53.25 -44.96)"/></g></g><g id="DETAILS"><path class="cls-24" d="M636.33,431.17a1.5,1.5,0,0,1-1.46-1.14c-.77-3.17-.62-6.77-.48-10.25.05-1.32.11-2.57.11-3.77a1.5,1.5,0,0,1,3,0c0,1.26-.05,2.6-.11,3.89-.13,3.28-.27,6.67.4,9.42a1.5,1.5,0,0,1-1.46,1.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M177.34,430.83h-.21a1.5,1.5,0,0,1-1.28-1.69,37.15,37.15,0,0,0-.09-7.5c-.13-1.65-.26-3.35-.26-5a1.5,1.5,0,0,1,3,0c0,1.5.12,3.07.25,4.73a39.23,39.23,0,0,1,.07,8.14A1.5,1.5,0,0,1,177.34,430.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M569,342.17a1.5,1.5,0,0,1-.73-.19c-.63-.35-1.23-.71-1.83-1.07-2.38-1.43-4.43-2.67-7.31-2.41a1.5,1.5,0,1,1-.27-3c3.84-.34,6.53,1.27,9.12,2.83.57.34,1.14.69,1.74,1a1.5,1.5,0,0,1-.73,2.81Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M569,341.5a1.5,1.5,0,0,1-1.42-1,17.5,17.5,0,0,1-.48-6.45c0-.7.07-1.39.07-2a1.5,1.5,0,0,1,3,0c0,.7,0,1.44-.07,2.19a15.14,15.14,0,0,0,.32,5.32,1.5,1.5,0,0,1-1.42,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M700.66,342.78a1.44,1.44,0,0,1-.71-.18,1.46,1.46,0,0,1-.59-2l0-.08c1.39-2.46,3.29-5.84,3.43-8.59a1.5,1.5,0,0,1,3,.15c-.18,3.46-2.28,7.19-3.81,9.91A1.58,1.58,0,0,1,700.66,342.78Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M701,343.83a1.5,1.5,0,0,1-.85-2.74,24.7,24.7,0,0,1,9.93-3.58,1.5,1.5,0,0,1,.5,3,21.84,21.84,0,0,0-8.74,3.09A1.49,1.49,0,0,1,701,343.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M242.33,343.5a1.5,1.5,0,0,1-1.32-2.21l.54-1c1.08-1.95,2.57-4.61,3-6.9a1.5,1.5,0,1,1,3,.52c-.49,2.79-2.11,5.71-3.3,7.84l-.52.95A1.5,1.5,0,0,1,242.33,343.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M243.26,342.84l-.4,0a1.5,1.5,0,1,1,.28-3,28.1,28.1,0,0,0,6.41-1.27,1.5,1.5,0,0,1,.9,2.86A32.77,32.77,0,0,1,243.26,342.84Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M110.33,344.17a1.5,1.5,0,0,1-1.41-1c-.71-1.92-4.84-5.23-6.7-5.36a1.5,1.5,0,0,1,.21-3c3.27.23,8.26,4.49,9.3,7.31a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M109.67,343.5a1.5,1.5,0,0,1-1.38-.9c-1-2.2-1.91-9.32.22-11.89a1.5,1.5,0,1,1,2.31,1.91c-1,1.17-.69,6.68.22,8.78a1.5,1.5,0,0,1-1.37,2.1Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M215.83,217.59c-3.24,0-6.29-.39-8.5-1.78a1.25,1.25,0,0,1,1.33-2.11c3,1.87,8.76,1.43,13.43,1.07,1.78-.14,3.47-.26,4.9-.26,3.17,0,6.77-.09,9.56-1.17a1.25,1.25,0,0,1,.9,2.33C234.27,216.9,230.38,217,227,217c-1.33,0-3,.12-4.71.26C220.18,217.42,218,217.59,215.83,217.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M215.7,222.35c-3.13,0-6.2-.35-8.59-1.77a1.25,1.25,0,1,1,1.28-2.15c3,1.77,7.8,1.49,12,1.24,1.43-.08,2.77-.16,4-.16.82,0,1.7,0,2.59.06,2.9.1,5.89.21,8-.71a1.25,1.25,0,1,1,1,2.29c-2.61,1.14-6,1-9.06.92-.86,0-1.71-.06-2.5-.06-1.15,0-2.47.08-3.86.16C219,222.25,217.34,222.35,215.7,222.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M220.25,211.33c-1.06,0-2.08-.74-3-2.2-1.12-1.69-1.28-6.22.52-7.53.38-.27,1.73-1,3.25.87A1.25,1.25,0,0,1,219,204a7.39,7.39,0,0,0,0,3,1.25,1.25,0,0,1,.73-.95,4.58,4.58,0,0,1,2.71-.3,1.25,1.25,0,0,1,1,1.47c-.59,3-1.82,3.82-2.75,4A2.33,2.33,0,0,1,220.25,211.33Zm-.47-2.92a1.84,1.84,0,0,0,.45.39,1.47,1.47,0,0,0,.22-.32A1.26,1.26,0,0,1,219.78,208.41Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M226.3,210.34a3.82,3.82,0,0,1-1-.15,2.84,2.84,0,0,1-2-2,8.61,8.61,0,0,1,1.22-6.48,3.12,3.12,0,0,0,1.05-.76,1.25,1.25,0,0,1,1.72.41c.31.5,2.64,5.81,1,8A2.38,2.38,0,0,1,226.3,210.34Zm-.38-5.79a5.77,5.77,0,0,0-.2,2.89c.09.31.19.33.23.34a1,1,0,0,0,.4.05C226.61,207.44,226.32,205.89,225.92,204.55Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M218.77,281.3c-4.57,0-9.06-.65-11-3.31a1.25,1.25,0,1,1,2-1.48c2.21,3,11.17,2.31,16,1.94,1.14-.09,2.15-.17,3-.2,3.06-.12,7.16-1.07,8.9-2.87a1.25,1.25,0,0,1,1.79,1.74c-2.39,2.46-7.2,3.49-10.6,3.63-.79,0-1.77.11-2.87.19C223.8,281.11,221.27,281.3,218.77,281.3Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M223.15,285c-4.72,0-9.85-.19-14.16-2.12a1.25,1.25,0,1,1,1-2.28c4.34,1.95,9.67,1.92,14.82,1.9h1.82c2.67,0,8.25,0,10.18-2.09a1.25,1.25,0,1,1,1.84,1.69c-2.67,2.92-8.75,2.91-12,2.91h-3.49Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M260.15,291.5c-5.17,0-12.44-6.59-14.82-9.15a1.25,1.25,0,1,1,1.83-1.7c3.24,3.49,9.38,8.35,13,8.35h.11a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M262.75,289a1.24,1.24,0,0,1-.31,0c-5.06-1.3-11.1-5.88-14.85-9.85a1.25,1.25,0,0,1,1.82-1.72c3.38,3.59,9.1,8,13.65,9.15a1.25,1.25,0,0,1-.31,2.46Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M297.25,229.5l-.23,0c-4.42-.83-9.93-2.35-13.26-6.72a1.25,1.25,0,0,1,2-1.52c2.82,3.69,7.75,5,11.74,5.78a1.25,1.25,0,0,1-.23,2.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M299.5,227.5h0c-3.75,0-7.37-2.34-10.56-4.39a43.46,43.46,0,0,0-3.75-2.25,1.25,1.25,0,1,1,1.12-2.23,44.92,44.92,0,0,1,4,2.38c3,2,6.19,4,9.21,4a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M302.75,224.25h-.07c-4.22-.24-7.69-3.18-10.75-5.78-1.18-1-2.3-1.94-3.39-2.69a1.25,1.25,0,0,1,1.41-2.06,45.3,45.3,0,0,1,3.59,2.85c2.9,2.45,5.89,5,9.27,5.19a1.25,1.25,0,0,1-.07,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M225.2,288.58a84.79,84.79,0,0,1-18-1.61,1.25,1.25,0,0,1,.53-2.44c9,1.94,18.55,1.63,27.82,1.33l3.38-.11a1.25,1.25,0,0,1,.07,2.5l-3.37.11C232.21,288.47,228.71,288.58,225.2,288.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M203.42,226.89a23.26,23.26,0,0,1-6.81-1.45,1.25,1.25,0,0,1,.78-2.37c1.72.57,5.76,1.9,7.58,1.05a1.25,1.25,0,1,1,1.05,2.27A6.16,6.16,0,0,1,203.42,226.89Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M203.75,230.5h0a24.26,24.26,0,0,1-4.32-.53,19.58,19.58,0,0,0-3.91-.47h0a1.25,1.25,0,0,1,0-2.5,22.23,22.23,0,0,1,4.4.51,22.07,22.07,0,0,0,3.88.49,1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M204.21,291.25a17,17,0,0,1-3.78-.54,17.39,17.39,0,0,0-2.75-.47,1.25,1.25,0,0,1-1.17-1.32,1.24,1.24,0,0,1,1.32-1.17,19.55,19.55,0,0,1,3.15.52,13.65,13.65,0,0,0,3.48.48,1.25,1.25,0,0,1,.08,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M183.25,211.87c-.81,0-1.63,0-2.42-.06s-1.28-.05-1.83-.05a1.25,1.25,0,0,1,0-2.5h0c.58,0,1.23,0,1.93.05,2,.08,4.55.18,5.76-.42a1.25,1.25,0,0,1,1.11,2.24A10.66,10.66,0,0,1,183.25,211.87Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M182.34,216.06a6,6,0,0,1-3-.5,1.25,1.25,0,0,1,1.28-2.15,15.14,15.14,0,0,0,3.34.11l1.28,0a1.25,1.25,0,0,1,0,2.5l-1.2,0C183.43,216,182.86,216.06,182.34,216.06Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M184.5,286.5h-.25a1.25,1.25,0,0,1,0-2.5h.25a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M162.75,220.25a30,30,0,0,1-6.77-.53,1.25,1.25,0,1,1,.55-2.44,27.88,27.88,0,0,0,6.17.47l.05,1.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M160,229a1.25,1.25,0,0,1-.42-.07c-.27-.09-.63-.26-1-.45s-.71-.33-1.06-.47a1.25,1.25,0,0,1-2-.8,1.55,1.55,0,0,1,.56-1.52c.91-.7,2.12-.13,3.53.53.32.15.61.29.82.36A1.25,1.25,0,0,1,160,229Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M159,295.25a1.25,1.25,0,0,1-.73-2.26,7,7,0,0,1,2.65-1l.75-.18a1.25,1.25,0,1,1,.67,2.41l-.86.21a5.26,5.26,0,0,0-1.74.6A1.24,1.24,0,0,1,159,295.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M121.9,229.57a22.28,22.28,0,0,1-5.46-.61,1.25,1.25,0,0,1,.61-2.42,25,25,0,0,0,8.56.33l1-.09c2.75-.25,7.34-.67,9.07-2.21a1.25,1.25,0,1,1,1.66,1.87c-2.35,2.09-7.26,2.54-10.51,2.84l-1,.09C124.43,229.5,123.12,229.57,121.9,229.57Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M119,234.75a1.25,1.25,0,0,1,0-2.5c1.84,0,3.7-.15,5.49-.28,1.06-.08,2.13-.16,3.2-.22a1.25,1.25,0,0,1,.13,2.5c-1.05.05-2.1.13-3.14.21-1.84.14-3.74.28-5.67.29Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M130.92,292.79c-.6,0-1.2,0-1.75-.06l-.4,0a1.25,1.25,0,0,1-1-.66,1.87,1.87,0,0,1-.22-1.13,1.27,1.27,0,0,1,1.11-1.4,1.24,1.24,0,0,1,1.29.74c1.71.08,3.4.05,4.51-.94a1.25,1.25,0,1,1,1.67,1.86A7.39,7.39,0,0,1,130.92,292.79Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M100.65,293a16.77,16.77,0,0,1-6.1-1.1,1.25,1.25,0,0,1,.91-2.33,14.75,14.75,0,0,0,6,.92,1.25,1.25,0,1,1,.12,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M103,253.75H96.75a1.25,1.25,0,0,1,0-2.5H103a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M316.38,201.63a28.3,28.3,0,0,1-4.06-.39,1.25,1.25,0,1,1,.35-2.47h0c2.75.4,4.92.71,7.29-.4a1.25,1.25,0,1,1,1.06,2.26A10.62,10.62,0,0,1,316.38,201.63Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M315.5,206h0a4,4,0,0,1-2.92-1.45,1.25,1.25,0,1,1,1.92-1.6,1.47,1.47,0,0,0,1.08.55,1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M317.84,298.77a10.29,10.29,0,0,1-3-.57,8,8,0,0,0-2.3-.45,1.25,1.25,0,0,1-.06-2.5,9.52,9.52,0,0,1,3.08.55,7.1,7.1,0,0,0,2.6.45,1.25,1.25,0,1,1,.21,2.49Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M315.81,294a2,2,0,0,1-1.5-.7A1.25,1.25,0,0,1,316,291.5h0a1.25,1.25,0,0,1,.26,2.47A2.16,2.16,0,0,1,315.81,294Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M331.74,237.75a12.81,12.81,0,0,1-4.15-.82,1.25,1.25,0,1,1,.81-2.37,10.12,10.12,0,0,0,3.55.68,1.25,1.25,0,1,1,.09,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M367.76,250.38c-1,0-2,0-3-.07-1.61-.06-3.14-.07-4.72,0-2.81.1-5.73.2-8.4-1.19a1.25,1.25,0,1,1,1.15-2.22c2.1,1.09,4.56,1,7.17.91,1.64-.06,3.23,0,4.9,0,3,.1,6.07.21,8.68-.74a1.25,1.25,0,1,1,.85,2.35A19.37,19.37,0,0,1,367.76,250.38Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M366.25,253.75c-4,0-7.73-.17-11.37-.51a1.25,1.25,0,0,1,.23-2.49c3.56.33,7.2.49,11.13.49a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M404.37,234.9a10.12,10.12,0,0,1-2.15-.23,10.85,10.85,0,0,1-7.26-5,10.7,10.7,0,0,1-.75-8.67c1.15-3.67,5.93-7.72,10.18-7.23,7.43.77,10.94,7.22,10.61,11.58a10.23,10.23,0,0,1-4.18,7.39A10.8,10.8,0,0,1,404.37,234.9Zm-.69-18.68c-2.82,0-6.29,3-7.09,5.52a8.24,8.24,0,0,0,.53,6.67,8.39,8.39,0,0,0,5.63,3.82,8.13,8.13,0,0,0,6.57-1.51,7.74,7.74,0,0,0,3.18-5.57c.24-3.26-2.6-8.31-8.38-8.91h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M416.68,242.27c-2.57,0-5.17,0-7.74-.14-1.52-.07-3-.16-4.58-.25-3.16-.19-6.45-.35-9.62-.37-.59,0-1.3,0-2.08.07-2.88.14-6.14.3-7.83-.77a1.25,1.25,0,0,1,1.33-2.12c1,.64,4.24.49,6.38.39.89,0,1.67-.08,2.34-.08,3.22,0,6.48.19,9.63.38,1.52.09,3,.18,4.54.25,3.52.16,7.14.15,10.64.13h3.05a1.25,1.25,0,0,1,0,2.5h-6.07Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M432.44,215.28c-.42,0-.84,0-1.25,0a1.25,1.25,0,1,1,.12-2.5,57.87,57.87,0,0,0,8.39-.51c2.29-.25,4.45-.48,6.3-.49h0a1.25,1.25,0,0,1,0,2.5c-1.72,0-3.82.23-6,.47A72.52,72.52,0,0,1,432.44,215.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M430.5,219.5a1.25,1.25,0,0,1-.23-2.48,76.8,76.8,0,0,1,14.48-1,1.25,1.25,0,0,1,0,2.5,74.64,74.64,0,0,0-14,1Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M456.75,222c-.43,0-.87,0-1.3,0a1.25,1.25,0,0,1-1.1-1.68c.67-1.81,1.26-3.74,1.83-5.61.72-2.38,1.47-4.84,2.42-7.15a1.25,1.25,0,0,1,2.27-.08,32.87,32.87,0,0,0,2.57,4c2.06,2.9,4.19,5.89,4,8.87a1.25,1.25,0,0,1-1.25,1.18h0a39.69,39.69,0,0,0-4.91.25C459.8,221.86,458.29,222,456.75,222ZM460,210.86c-.52,1.49-1,3-1.44,4.53-.41,1.35-.83,2.74-1.29,4.1,1.23,0,2.48-.14,3.77-.26s2.52-.23,3.81-.27c-.44-1.86-2-4-3.45-6.1C460.93,212.21,460.45,211.53,460,210.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M460.45,247.43a5.05,5.05,0,0,1-4.72-2.68c-1.77-3.28-.51-8.47,1.76-10.75a3.53,3.53,0,0,1,4.22-.91c3.38,1.05,5.33,5.14,5.2,8.38a5.74,5.74,0,0,1-4.7,5.77A8.85,8.85,0,0,1,460.45,247.43Zm-.21-12.19a1.42,1.42,0,0,0-1,.53c-1.57,1.58-2.5,5.64-1.33,7.8.24.45,1,1.8,3.79,1.23a3.28,3.28,0,0,0,2.7-3.41c.1-2.59-1.54-5.35-3.52-5.92a1.25,1.25,0,0,1-.24-.1A.86.86,0,0,0,460.24,235.23Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M461.06,273.63a15,15,0,0,1-3.85-.46,1.25,1.25,0,0,1-.92-1.17c0-.92-.15-1.86-.27-2.85a23.47,23.47,0,0,1-.27-4.48,1.27,1.27,0,0,1,.1-.42,12.49,12.49,0,0,1,7.33-6.77,3.17,3.17,0,0,1,2.82.29c1.53,1.12,1.8,4.45,1.75,9.83,0,.5,0,.9,0,1.15V269c.08,2.88-.22,3.68-3.23,4.32A16.94,16.94,0,0,1,461.06,273.63Zm-2.33-2.69a15.17,15.17,0,0,0,5.28-.11,8.3,8.3,0,0,0,1.24-.33,10.35,10.35,0,0,0,0-1.47v-.22c0-.28,0-.71,0-1.24.05-5.74-.38-7.41-.75-7.8-.79-.27-4.62,1.71-6.27,5.28a22.69,22.69,0,0,0,.27,3.79C458.59,269.53,458.67,270.23,458.73,270.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M499.19,228.22a9.21,9.21,0,0,1-1.77-.17c-4.48-.87-6.68-3.57-6.92-8.47-.19-3.88,1.83-10.92,6-13.49a6.41,6.41,0,0,1,6.88.07,1.25,1.25,0,0,1-1.23,2.18,4,4,0,0,0-4.34-.12c-3.12,1.93-5,8-4.8,11.24.19,3.77,1.56,5.49,4.9,6.14,2.67.52,5.84-.58,6.76-3.7.62-2.12-.39-6.15-2.41-7.65a2.53,2.53,0,0,0-3.18.08c-.92.6-2.12,3.18-2.24,5.5-.06,1.18.19,1.82.45,2a1,1,0,0,0,1.2.09,1.88,1.88,0,0,0,.89-1.13,1.29,1.29,0,0,1-.42-1.63,1.21,1.21,0,0,1,1.61-.56,2.32,2.32,0,0,1,1.32,2.15,4.19,4.19,0,0,1-2.43,3.49,3.43,3.43,0,0,1-3.74-.46c-1-.8-1.47-2.22-1.37-4.1.14-2.62,1.46-6.22,3.37-7.46a5,5,0,0,1,6,0c2.94,2.19,4.2,7.37,3.32,10.36A8,8,0,0,1,499.19,228.22Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M496.25,258.25A1.25,1.25,0,0,1,495,257a38,38,0,0,1,.89-8.09c.27-1.5.53-2.92.68-4.3.06-.55.09-1.32.12-2.21.12-3.34.26-7.49,2.26-9.16a1.25,1.25,0,0,1,1.93.44c.62,1.34,1.31,2.72,2,4.05.49,1,1,1.95,1.45,2.92.17.36.41.8.67,1.29,1.5,2.84,2.72,5.34,2.52,7.25-.26,2.38-2.82,3.8-5.29,5.17a15.92,15.92,0,0,0-3.27,2.14,1.25,1.25,0,0,1-1.36.28l-.07,0s0,.1,0,.15a1.25,1.25,0,0,1-1.2,1.3Zm3.59-10.6a39.39,39.39,0,0,0-.52,5.53c.54-.33,1.1-.64,1.66-.95l1-.58a1.24,1.24,0,0,1-.52-.4A12.68,12.68,0,0,1,499.84,247.65Zm-.17-4.88a1.25,1.25,0,0,1,1.06.59,16,16,0,0,1,1.44,3.39,11.14,11.14,0,0,0,1.32,3,1.24,1.24,0,0,1,.25.8A2.77,2.77,0,0,0,505,249c.14-1.3-1.35-4.12-2.24-5.81-.28-.52-.52-1-.71-1.37-.46-1-.95-1.93-1.43-2.89l-.93-1.86a32.17,32.17,0,0,0-.52,5.49v.33a1.24,1.24,0,0,1,.47-.1Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M493.31,296.12a1.23,1.23,0,0,1-1-.54c-.24-.34-.51-1,.32-1.93a1.25,1.25,0,0,1,1.77-.07,1.17,1.17,0,0,1,.15.17,1.25,1.25,0,0,1-.25,2.14A2.35,2.35,0,0,1,493.31,296.12Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M501.16,296a1.21,1.21,0,0,1-.92-.39c-.37-.42-.61-1.1.33-2a1.29,1.29,0,0,1,1.8,0,1.21,1.21,0,0,1,0,1.73l-.14.13a1.2,1.2,0,0,1-.17.17A1.4,1.4,0,0,1,501.16,296Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M507.58,295.18h-.17a1.33,1.33,0,0,1-1.16-1.3,1.37,1.37,0,1,1,2.67,0l0,.08C508.63,294.79,508.19,295.18,507.58,295.18Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M494.91,292.32c-1.58,0-3.16,0-4.72,0s-3.13,0-4.69,0a1.25,1.25,0,0,1,0-2.5c1.57,0,3.14,0,4.72,0a135.16,135.16,0,0,0,14.23-.34c.88-.08,1.9-.13,3-.18,2.7-.12,6.06-.26,7.75-1.14a1.25,1.25,0,1,1,1.14,2.22c-2.18,1.12-5.69,1.28-8.78,1.41-1,0-2,.09-2.86.17C501.45,292.25,498.17,292.32,494.91,292.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476.59,238.29l-2.13,0-2,0a1.25,1.25,0,1,1,0-2.5h0l2,0a37.3,37.3,0,0,0,8.23-.49,1.25,1.25,0,1,1,.54,2.44A31.24,31.24,0,0,1,476.59,238.29Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M482,243c-1.25,0-2.52-.07-3.74-.15a42.49,42.49,0,0,0-4.93-.11,1.25,1.25,0,0,1-.14-2.5,45.62,45.62,0,0,1,5.22.11c1.19.07,2.43.14,3.6.14a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M472.5,233a1.25,1.25,0,0,1,0-2.5c1.46,0,2.95-.13,4.39-.25a48.2,48.2,0,0,1,5.41-.25,1.25,1.25,0,0,1,1.21,1.29,1.27,1.27,0,0,1-1.29,1.21,45.31,45.31,0,0,0-5.12.24c-1.49.13-3,.26-4.59.26Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M473,227.25a1.25,1.25,0,0,1-.31-2.46,40.15,40.15,0,0,1,11.14-1,1.25,1.25,0,1,1-.15,2.5,37.41,37.41,0,0,0-10.36,1A1.25,1.25,0,0,1,473,227.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M518.75,239.75a1.25,1.25,0,0,1,0-2.5c2.07,0,5.69-.13,9-.25a1.25,1.25,0,1,1,.09,2.5C524.51,239.62,520.86,239.75,518.75,239.75Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M517.75,235.5a1.25,1.25,0,0,1-.19-2.49,39.94,39.94,0,0,1,6.62-.28l1.82,0a1.25,1.25,0,0,1,0,2.5l-1.85,0a38.16,38.16,0,0,0-6.21.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M542.16,236.15a7.76,7.76,0,0,1-.82,0,5.72,5.72,0,0,1-4.17-2.31,6.49,6.49,0,0,1-.72-5.35,3.89,3.89,0,0,1,2.29-2.58c3-1.57,8.68-3.08,11.54-1.37a3.39,3.39,0,0,1,1.72,2.66c.25,2.56-2.09,5.4-3.36,6.54A10.13,10.13,0,0,1,542.16,236.15Zm4.82-9.92a17.25,17.25,0,0,0-7.15,1.88l-.18.08a1.42,1.42,0,0,0-.82,1,4,4,0,0,0,.36,3.13,3.24,3.24,0,0,0,2.41,1.29,7.54,7.54,0,0,0,5.36-1.8c1.32-1.19,2.66-3.26,2.54-4.44a.91.91,0,0,0-.51-.75A4.07,4.07,0,0,0,547,226.23Zm-7.73.77h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M538.5,227.75a1.25,1.25,0,0,1-1-.45,4.76,4.76,0,0,1-.92-2,1.25,1.25,0,0,1,1.09-1.48,3.57,3.57,0,0,1,2.5.67,2.31,2.31,0,0,1-1.7,3.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M549.25,226a1.72,1.72,0,0,0-2.39-.31,1.25,1.25,0,0,1-.79-1.58,3.66,3.66,0,0,1,1.82-2.2,1.25,1.25,0,0,1,1.72.66,5.17,5.17,0,0,0,.29.57,5.47,5.47,0,0,1,.57,1.31,1.25,1.25,0,0,1-1.21,1.55Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M533,244a1.25,1.25,0,0,1-.51-2.39c4.39-1.94,9.74-3,14.45-4,1.23-.25,2.43-.5,3.59-.76l1.25-.28a41.06,41.06,0,0,1,5.87-1,1.25,1.25,0,1,1,.19,2.49,39.3,39.3,0,0,0-5.51,1l-1.26.29c-1.17.26-2.38.51-3.62.76-4.82,1-9.8,2-13.95,3.85A1.25,1.25,0,0,1,533,244Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M538.5,293.5a1.25,1.25,0,0,1,0-2.5,79.17,79.17,0,0,0,18.59-2.62c.84-.21,1.75-.38,2.72-.56a20.92,20.92,0,0,0,5.82-1.65,1.25,1.25,0,0,1,1.25,2.17,22,22,0,0,1-6.6,1.94c-.93.18-1.81.34-2.59.53a81.57,81.57,0,0,1-19.18,2.69Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M541.59,299.51h-.87a1.25,1.25,0,0,1,0-2.5h0c7.63.21,15.26-2.72,22.6-5.55l2.92-1.12a1.25,1.25,0,0,1,.88,2.34l-2.91,1.11C557,296.6,549.45,299.51,541.59,299.51Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M572.38,217.43a8,8,0,0,1-3.12-.53,1.25,1.25,0,0,1,1-2.3c1.75.74,4.88.13,7.64-.41a32.09,32.09,0,0,1,4.32-.66c.54,0,1.08-.08,1.63-.13a19.47,19.47,0,0,1,3.27-.14,1.25,1.25,0,0,1,1.16,1.33,1.23,1.23,0,0,1-1.33,1.16,17.49,17.49,0,0,0-2.85.13c-.58.06-1.17.11-1.75.14a30.63,30.63,0,0,0-4,.62A32.48,32.48,0,0,1,572.38,217.43Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M584.5,221H571a1.25,1.25,0,0,1,0-2.5h13.5a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M587.25,283.25c-2.46,0-4.94-.13-7.34-.26-2.84-.15-5.78-.31-8.63-.24h0a1.25,1.25,0,0,1,0-2.5c2.94-.07,5.93.09,8.82.24,2.37.13,4.82.26,7.21.26a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M588.5,286.75H572.75a1.25,1.25,0,0,1,0-2.5H588.5a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M632,210h-.12a37.79,37.79,0,0,1-14-4.64,1.25,1.25,0,1,1,1.18-2.2,35.33,35.33,0,0,0,13,4.36A1.25,1.25,0,0,1,632,210Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M631.25,215.75a1.25,1.25,0,0,1-.42-.07c-1.36-.49-2.75-1.08-4.22-1.71-3.66-1.56-7.44-3.17-10.88-3.22a1.25,1.25,0,1,1,0-2.5c3.93.05,7.94,1.76,11.82,3.42,1.44.61,2.79,1.19,4.08,1.66a1.25,1.25,0,0,1-.42,2.43Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M599.66,291.29a4.59,4.59,0,0,1-4.13-2.24,6.26,6.26,0,0,1,.39-6.52,4.15,4.15,0,0,1,4.34-1.75,1.25,1.25,0,0,1,.84.62,5,5,0,0,1-.73,9.86A6.58,6.58,0,0,1,599.66,291.29Zm-1.06-7.92a2,2,0,0,0-.66.61,3.81,3.81,0,0,0-.26,3.8,2.25,2.25,0,0,0,2.42,1,2.52,2.52,0,0,0-.52-5A1.25,1.25,0,0,1,598.6,283.37Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M639.25,294a1.25,1.25,0,0,1-.7-2.28c2.92-2,11-1.56,14.28-.67a1.25,1.25,0,1,1-.65,2.41c-3.16-.86-10.25-1-12.22.33A1.25,1.25,0,0,1,639.25,294Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M636,217.5a1.25,1.25,0,0,1-.61-2.34c3.3-1.83,11.37-3.43,15.33-1.81a1.25,1.25,0,1,1-.95,2.31c-3.11-1.27-10.41.15-13.17,1.69A1.25,1.25,0,0,1,636,217.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M643.45,235.79a5,5,0,0,1-.9-.08,4.68,4.68,0,0,1-3.91-5.66c.44-2.71,2.64-5.27,5.59-4.85h0a5.23,5.23,0,0,1,2.33,1,5.41,5.41,0,0,1-3.11,9.6Zm.19-8.14c-1.25,0-2.3,1.39-2.53,2.79a2.2,2.2,0,0,0,1.9,2.8,2.56,2.56,0,0,0,2.82-1.7,2.7,2.7,0,0,0-.73-3.34,2.76,2.76,0,0,0-1.21-.54h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M645.13,254.09a5,5,0,0,1-.9-.08,4.68,4.68,0,0,1-3.91-5.66c.44-2.71,2.65-5.27,5.59-4.85h0a5.22,5.22,0,0,1,2.33,1,5.41,5.41,0,0,1-3.11,9.6Zm.19-8.14c-1.25,0-2.3,1.39-2.53,2.79a2.2,2.2,0,0,0,1.9,2.8,2.56,2.56,0,0,0,2.82-1.7,2.7,2.7,0,0,0-.73-3.34,2.76,2.76,0,0,0-1.21-.54h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M644.82,272.38a5,5,0,0,1-.9-.08,4.68,4.68,0,0,1-3.91-5.66c.44-2.71,2.65-5.26,5.59-4.85h0a5.22,5.22,0,0,1,2.33,1,5.41,5.41,0,0,1-3.11,9.6Zm.19-8.14c-1.25,0-2.3,1.39-2.53,2.79a2.2,2.2,0,0,0,1.9,2.8,2.56,2.56,0,0,0,2.82-1.7,2.7,2.7,0,0,0-.73-3.34,2.76,2.76,0,0,0-1.21-.54h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M675.75,217a1.25,1.25,0,0,1-.53-.12c-.87-.41-2.74-.3-4.24-.21-.65,0-1.26.07-1.79.07-1.54,0-3.14-.06-4.66-.13s-2.86-.12-4.29-.12a1.25,1.25,0,0,1,0-2.5h0c1.48,0,3,.07,4.39.13s2.95.12,4.42.12h.12c.49,0,1.05,0,1.65-.07,1.87-.11,4-.24,5.44.44a1.25,1.25,0,0,1-.53,2.38Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M676.5,228.25a1.26,1.26,0,0,1-.47-.09,13.36,13.36,0,0,0-3.59-.54l-1.28-.1a67.49,67.49,0,0,1-12.24-2.62,1.25,1.25,0,0,1-.44-2.18c2.77-2.21,6.45-3.5,10-4.74a49.15,49.15,0,0,0,6.44-2.59,1.25,1.25,0,0,1,1.16,2.21,51.72,51.72,0,0,1-6.78,2.73,47.88,47.88,0,0,0-7.06,2.89,53.81,53.81,0,0,0,9.15,1.8l1.22.09a14.9,14.9,0,0,1,4.35.72,1.25,1.25,0,0,1-.47,2.41Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M666.44,283.13c-4.71,0-5.74-.45-6.11-1.44a1.25,1.25,0,0,1,2.06-1.32c1.56.5,9.36.15,12.74,0,1.5-.07,2.72-.12,3.38-.13h0a1.25,1.25,0,0,1,.44.08,1.31,1.31,0,0,1,.91,1.26,1.29,1.29,0,0,1-.95,1.21,1.25,1.25,0,0,1-1.4,0l-2.28.1C671.4,283,668.55,283.13,666.44,283.13Zm12.8-.63h0Zm-16.58-1.7h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M239,158.58l-.21,0a73.4,73.4,0,0,1-10.64-2.37,57.77,57.77,0,0,1-5.62-2.28c-3.74-1.67-7.61-3.36-10.84-3.33a1.23,1.23,0,0,1-1.27-1.22,1.25,1.25,0,0,1,1.23-1.27c3.8-.07,7.92,1.76,11.91,3.54a56.19,56.19,0,0,0,5.36,2.19,71.43,71.43,0,0,0,10.3,2.29,1.25,1.25,0,0,1-.21,2.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M240.33,154.58h-.07a23.16,23.16,0,0,1-7.07-1.93c-.85-.33-1.73-.68-2.59-1-1.62-.55-3.37-1-5.22-1.47-4.74-1.21-9.64-2.47-13.21-5.61a1.25,1.25,0,1,1,1.65-1.87c3.12,2.75,7.72,3.93,12.17,5.06,1.81.46,3.69.94,5.4,1.52.92.31,1.83.67,2.71,1a21,21,0,0,0,6.3,1.76,1.25,1.25,0,0,1-.07,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M200,158.92c-2.45,0-4.2-1.83-4.39-4.59s1.22-5.62,3.88-5.9h0a1.25,1.25,0,0,1,1.6-.57,7,7,0,0,1,3.75,7.29,4.58,4.58,0,0,1-4.71,3.77Zm.62-8.5a1.25,1.25,0,0,1-.87.49c-1.09.12-1.75,1.8-1.65,3.25,0,.7.35,2.32,2,2.26a2.12,2.12,0,0,0,2.33-1.74A4.57,4.57,0,0,0,200.66,150.42Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M252.67,154.58a1.25,1.25,0,0,1,0-2.5,39,39,0,0,0,7.44-.64,1.25,1.25,0,1,1,.47,2.46,41.36,41.36,0,0,1-7.9.69Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M252.33,149.92a1.25,1.25,0,0,1-.21-2.48,18.9,18.9,0,0,1,2.8-.19,9.51,9.51,0,0,0,3.21-.37,1.25,1.25,0,1,1,1.07,2.26,10.79,10.79,0,0,1-4.24.62,16.86,16.86,0,0,0-2.41.15Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M295.33,148.92a1.25,1.25,0,0,1-.1-2.5c1.15-.09,2.34-.12,3.5-.16a37.78,37.78,0,0,0,6-.49,1.25,1.25,0,0,1,.48,2.45,39.59,39.59,0,0,1-6.44.54c-1.17,0-2.28.07-3.37.15Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M295.38,154.58h-.05a1.25,1.25,0,0,1-1.25-1.25,1.27,1.27,0,0,1,1.25-1.25,28.42,28.42,0,0,0,4.5-.5,25.18,25.18,0,0,1,5.92-.5,1.25,1.25,0,1,1-.17,2.49,22.63,22.63,0,0,0-5.33.47A29.61,29.61,0,0,1,295.38,154.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M301.32,98.77a5.18,5.18,0,0,1-1.74-.33c-2.41-.86-3.2-3.61-2.71-5.75a3.86,3.86,0,0,1,4.26-3.26,1.25,1.25,0,0,1,.87,2,4.61,4.61,0,0,1,2.24,5.4A3,3,0,0,1,301.32,98.77Zm-1.57-6.47a2.06,2.06,0,0,0-.44.94c-.25,1.09.11,2.49,1.12,2.85.47.17,1.28.37,1.48-.15a2.16,2.16,0,0,0-1.37-2.44A1.25,1.25,0,0,1,299.75,92.3Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M327,87.25H308.67a1.25,1.25,0,0,1,0-2.5H327a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M310,92.25h-2a1.25,1.25,0,0,1,0-2.5h1c3.62,0,7.36,0,11-.17.69,0,1.48,0,2.31,0,1.7,0,3.82.07,4.86-.39a1.25,1.25,0,0,1,1,2.29c-1.54.68-3.76.64-5.92.6-.79,0-1.53,0-2.15,0C316.74,92.24,313.31,92.25,310,92.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M317.48,117.31c-1.41,0-2.81,0-4.16-.11a1.25,1.25,0,0,1-1.18-1.11,9.07,9.07,0,0,1,1.23-5,7.35,7.35,0,0,0,1.05-3.93,6.4,6.4,0,0,0,2.2-1.49,1.25,1.25,0,0,1,1.74.32l.5.72c1.76,2.5,4.42,6.29,4,9.44a1.25,1.25,0,0,1-1.17,1.08C320.3,117.27,318.89,117.31,317.48,117.31Zm-2.82-2.55c1.87.07,3.8.07,5.69,0-.34-2.07-2.2-4.75-3.43-6.51a11.59,11.59,0,0,1-1.28,3.88A10.13,10.13,0,0,0,314.65,114.76Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M317.93,132.87a1.25,1.25,0,0,1-.87-.35c-1.54-1.49-2.12-3.64-2.68-5.72-.47-1.75-.91-3.4-1.85-4.18a1.25,1.25,0,0,1,.57-2.19,1.25,1.25,0,0,1,1.75-.91,10.12,10.12,0,0,0,3.66.28c.74,0,1.5,0,2.19,0a1.25,1.25,0,0,1,1.1,1.68,28.14,28.14,0,0,0-1.06,4.49,24.54,24.54,0,0,1-1.69,6.19,1.25,1.25,0,0,1-.91.69Zm-2.54-10.64a16.54,16.54,0,0,1,1.41,3.92,24.47,24.47,0,0,0,.81,2.63c.27-1,.48-2.16.67-3.26s.4-2.17.66-3.23h-.36A19.72,19.72,0,0,1,315.38,122.23Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M323,153.58a1.25,1.25,0,0,1-.28,0c-3.24-.73-7-.58-10.64-.43-1.47.06-3,.12-4.42.12a1.25,1.25,0,0,1,0-2.5c1.39,0,2.81-.06,4.32-.12,3.8-.16,7.72-.32,11.29.49a1.25,1.25,0,0,1-.27,2.47Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M340.6,87.54a5.83,5.83,0,0,1-5.79-4.18A7.23,7.23,0,0,1,338,74.92a2.56,2.56,0,0,0,2.84-.48c3.51.62,5.56,4.49,5.43,7.71a5.26,5.26,0,0,1-4.94,5.36A7.74,7.74,0,0,1,340.6,87.54Zm-.82-11a1.24,1.24,0,0,1-.5.53,4.72,4.72,0,0,0-2.1,5.51A3.44,3.44,0,0,0,341.13,85a2.79,2.79,0,0,0,2.7-3c.08-2.14-1.28-4.78-3.37-5.15A1.24,1.24,0,0,1,339.79,76.55Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M347,101.58H332.33a1.25,1.25,0,0,1,0-2.5H347a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M347.33,118.25a1.24,1.24,0,0,1-.45-.09c-2.59-1-6.67-.84-10.28-.69-1.28.05-2.49.1-3.6.1a1.25,1.25,0,0,1,0-2.5c1.06,0,2.24,0,3.5-.1,3.85-.16,8.22-.35,11.29.86a1.25,1.25,0,0,1-.46,2.41Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M356.33,79.58a1.25,1.25,0,0,1,0-2.5c7.22,0,14.81-.33,22.56-1,1-.09,2.15-.15,3.28-.2a35.06,35.06,0,0,0,8.44-1.08,1.25,1.25,0,1,1,.76,2.38,36.78,36.78,0,0,1-9.07,1.2c-1.1.06-2.18.11-3.2.2C371.28,79.25,363.62,79.58,356.33,79.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M358,87.58a1.25,1.25,0,0,1,0-2.5c5.58,0,11.25-.61,16.73-1.17s11.28-1.15,16.94-1.17h0a1.25,1.25,0,0,1,0,2.5c-5.54,0-11.21.6-16.69,1.16s-11.27,1.15-17,1.18Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M373.19,127.89c-4.6,0-9.16-1.46-11.59-5.48a18.94,18.94,0,0,1,0-19.05,13.71,13.71,0,0,1,12.76-6.94h0c9.7.78,14.87,4.9,15.81,12.61.66,5.4.64,13-7.13,16.69A24.1,24.1,0,0,1,373.19,127.89Zm.43-29a11.12,11.12,0,0,0-9.83,5.74,16.6,16.6,0,0,0,0,16.48c3.35,5.52,12.95,4.89,18.3,2.35,4.94-2.34,6.65-6.57,5.72-14.13-.8-6.52-5-9.73-13.51-10.42Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M367.44,123.21H367a1.25,1.25,0,0,1-1.2-1.15c-.32-3.86.8-7.22,1.88-10.47a28.1,28.1,0,0,1,1.69-3.72c1-1.87,1.94-3.8,2-5.27a1.25,1.25,0,0,1,2.15-.79,21.29,21.29,0,0,1,3.1,4.13,15.17,15.17,0,0,0,1.41,2.06,22.93,22.93,0,0,0,2.73,2.5c2.12,1.75,4.3,3.57,5,6.11a1.25,1.25,0,0,1-1.08,1.58,28.36,28.36,0,0,0-7.69,2.39C373.93,121.87,370.7,123.21,367.44,123.21Zm5.86-17.86a34.89,34.89,0,0,1-1.7,3.65,28.41,28.41,0,0,0-3.35,11.68,27.38,27.38,0,0,0,7.85-2.41A39.11,39.11,0,0,1,382.8,116a18.07,18.07,0,0,0-3.59-3.55,25.06,25.06,0,0,1-3-2.8,17.36,17.36,0,0,1-1.65-2.38C374.16,106.63,373.78,106,373.3,105.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M392.33,145.58h-35a1.25,1.25,0,0,1,0-2.5h35a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M363.79,154.26h-6.46a1.25,1.25,0,0,1,0-2.5h3.23c7.16,0,14.57,0,21.67-.66a38.38,38.38,0,0,1,4.64,0c2.65.08,5.65.17,7.31-.54a1.25,1.25,0,1,1,1,2.3c-2.16.93-5.32.83-8.37.74a36.82,36.82,0,0,0-4.32,0C376.32,154.18,370,154.26,363.79,154.26Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M426.47,108.22c-1.47,0-3-.1-4.37-.19-.73,0-1.4-.09-2-.11-3.38-.13-6.82-.48-10.15-.82-3.74-.38-7.61-.78-11.33-.85a1.25,1.25,0,0,1-1.23-1.27,1.24,1.24,0,0,1,1.27-1.23c3.82.07,7.74.47,11.54.86,3.29.34,6.69.69,10,.81.6,0,1.29.07,2,.12,2.74.18,6.5.43,8.23-.35a1.25,1.25,0,1,1,1,2.28A13.1,13.1,0,0,1,426.47,108.22Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M446.35,89.6c-.93,0-1.85,0-2.77,0-1.69,0-3.44-.08-5.17,0a1.25,1.25,0,1,1-.15-2.5c1.83-.11,3.64-.07,5.38,0a33,33,0,0,0,9.05-.61,1.25,1.25,0,1,1,.61,2.42A28.08,28.08,0,0,1,446.35,89.6Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M453.67,95.58H439.33a1.25,1.25,0,0,1,0-2.5h14.33a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M463.67,82.58h-6a1.25,1.25,0,0,1,0-2.5h6a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M462.26,153.33a8.62,8.62,0,0,1-3.07-.51,1.25,1.25,0,0,1,1-2.31c1.1.45,3.63.44,4.44-.17a1.25,1.25,0,1,1,1.51,2A6.56,6.56,0,0,1,462.26,153.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M520,149.25a1.25,1.25,0,0,1-1-2,50,50,0,0,1,8.81-8.32c.92-.74,1.83-1.47,2.71-2.21a1.25,1.25,0,1,1,1.61,1.92c-.9.75-1.82,1.5-2.76,2.24a48.07,48.07,0,0,0-8.38,7.89A1.25,1.25,0,0,1,520,149.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M522.33,153.58a1.25,1.25,0,0,1-1.13-1.78,17,17,0,0,1,3.55-4.58,13.25,13.25,0,0,0,3.08-4,1.25,1.25,0,1,1,2.32.93,15.26,15.26,0,0,1-3.62,4.84,15,15,0,0,0-3.08,3.89A1.25,1.25,0,0,1,522.33,153.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M481.93,87.59h-.31a1.25,1.25,0,1,1,.09-2.5c2.23.08,5-1.11,7.63-2.27a40.11,40.11,0,0,1,4.3-1.68,1.25,1.25,0,0,1,.71,2.4,38.48,38.48,0,0,0-4,1.58C487.53,86.33,484.63,87.59,481.93,87.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M484,92.92a1.25,1.25,0,0,1-.7-2.29c2.45-1.66,5.83-2.61,9.09-3.53,1.52-.43,3-.83,4.18-1.28a1.25,1.25,0,0,1,.86,2.35c-1.31.48-2.79.9-4.36,1.34-3.07.86-6.25,1.76-8.37,3.19A1.24,1.24,0,0,1,484,92.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M555.52,157.85a6.45,6.45,0,0,1-5.64-3.1,8.58,8.58,0,0,1,1.6-10.51c3.37-3.32,6.34-2.72,7.82-2.07,2.79,1.24,4.72,4.63,4.58,8.07a7.61,7.61,0,0,1-5.44,7.08h0A8.89,8.89,0,0,1,555.52,157.85Zm2.5-1.7h0Zm-1.11-12a5.43,5.43,0,0,0-3.68,1.85,6.06,6.06,0,0,0-1.24,7.41c1.13,1.82,3.18,2.38,5.61,1.54h0a5.14,5.14,0,0,0,3.76-4.83,6.07,6.07,0,0,0-3.09-5.68A3.35,3.35,0,0,0,556.92,144.17Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M570.67,149.58h-4.33a1.25,1.25,0,0,1,0-2.5h4.33a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M542.6,151.64a9.44,9.44,0,0,1-1.08-.06,1.25,1.25,0,1,1,.29-2.48,8.67,8.67,0,0,0,3.19-.3,1.25,1.25,0,1,1,.67,2.41A11.65,11.65,0,0,1,542.6,151.64Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M549.58,132.21h-.91a1.25,1.25,0,0,1-1.16-1.61,52.47,52.47,0,0,1,3.39-8,42.37,42.37,0,0,0,3.88-9.88,1.25,1.25,0,0,1,2.42-.12,56.07,56.07,0,0,0,2.43,6.07c1.63,3.67,3.32,7.46,3.24,10.94a1.25,1.25,0,0,1-1.06,1.21l-1.26.2A73.36,73.36,0,0,1,549.58,132.21ZM556.15,117a67.5,67.5,0,0,1-3,6.74,65.08,65.08,0,0,0-2.7,6,79.31,79.31,0,0,0,9.71-1.12l.17,0c-.25-2.67-1.58-5.67-3-8.83C556.94,118.82,556.53,117.91,556.15,117Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M603,150.25c-2.34,0-5.13-.15-8.08-.32-3.61-.2-7.34-.41-10.56-.35a1.28,1.28,0,0,1-1.27-1.23,1.25,1.25,0,0,1,1.23-1.27c3.33-.06,7.1.15,10.75.35,2.91.16,5.67.31,7.94.31a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M585.67,144.58a1.25,1.25,0,0,1-.4-2.43c4.81-1.65,10.6-1.54,15.7-1.44,1.27,0,2.52,0,3.7,0h0a1.25,1.25,0,0,1,0,2.5c-1.22,0-2.47,0-3.75,0-5.14-.1-10.45-.19-14.85,1.31A1.25,1.25,0,0,1,585.67,144.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M610.35,152.6H609a1.25,1.25,0,0,1,0-2.5h0c3.29.07,7.09-.14,10.76-.35,2.76-.16,5.37-.3,7.54-.31h0a1.25,1.25,0,0,1,0,2.5c-2.11,0-4.68.16-7.41.31C616.71,152.41,613.39,152.6,610.35,152.6Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M147.76,501.88c-3.43,0-6.88-.24-10.26-.48s-6.79-.48-10.13-.48h0a1.25,1.25,0,0,1-1.25-1.25,1.29,1.29,0,0,1,1.28-1.25c3.43,0,6.92.25,10.31.49,6.05.43,12.31.87,18.12-.13a1.25,1.25,0,1,1,.42,2.46A49.74,49.74,0,0,1,147.76,501.88Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M138.33,525.58h-.1c-.51,0-1-.1-1.53-.15a18.61,18.61,0,0,0-3-.18,1.23,1.23,0,0,1-1.31-1.19,1.25,1.25,0,0,1,1.19-1.31,21.27,21.27,0,0,1,3.38.19c.48.05,1,.11,1.44.14a1.25,1.25,0,0,1-.09,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M146.58,580.92a90.71,90.71,0,0,1-12-1c-.57-.07-1.27-.11-2-.15-2.76-.14-6.19-.31-7.88-2.71a1.25,1.25,0,1,1,2-1.44c1,1.4,3.74,1.54,6,1.65.79,0,1.54.08,2.2.17a95.08,95.08,0,0,0,11.83,1H147c3.33,0,5.73,0,8.49-1.23a1.25,1.25,0,1,1,1,2.29c-3.24,1.43-6,1.43-9.5,1.44h-.43Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M189.67,506.92h0c-4.84,0-13.33-.8-17.81-1.34a1.25,1.25,0,1,1,.3-2.48c4.42.53,12.79,1.29,17.53,1.33a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M182.45,514.29c-4.67,0-9.59-.2-13.8-1.43a1.25,1.25,0,0,1,.7-2.4c4.87,1.42,11,1.36,16.42,1.3l3.57,0a1.25,1.25,0,0,1,0,2.5,3.43,3.43,0,0,1-.44,0l-3.1,0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M202.33,564.63c-1.34,0-2.86-.1-4.5-.23-1-.08-1.9-.15-2.5-.15a1.25,1.25,0,0,1,0-2.5c.69,0,1.62.07,2.69.16,1.9.15,6.94.55,7.66-.35a1.25,1.25,0,0,1,2,1.56C206.71,564.28,204.82,564.63,202.33,564.63Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M208.67,570.58h-13a1.25,1.25,0,0,1,0-2.5h13a1.25,1.25,0,1,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M201,581.92h-.23c-2.67-.14-3.68-1.28-4.05-2.21-.54-1.35-.05-3,1.31-4.48s3.48-2.61,5.7-1.88c2.5.83,3.09,2.69,2.82,4.15A5.94,5.94,0,0,1,201,581.92Zm1.39-6.29a3.88,3.88,0,0,0-2.54,1.3c-.71.75-.95,1.51-.81,1.84s.66.59,1.86.65h0a3.45,3.45,0,0,0,3.18-2.39c0-.26.17-.88-1.15-1.31A1.71,1.71,0,0,0,202.38,575.63Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M110.35,517.29a22.47,22.47,0,0,1-8.32-1.93,75.86,75.86,0,0,1-7.71-3.87L93,510.76a23.18,23.18,0,0,0-2.32-1c-1.85-.75-3.94-1.6-5.3-3.27a1.25,1.25,0,1,1,1.94-1.58c1,1.17,2.66,1.86,4.3,2.53a25.54,25.54,0,0,1,2.58,1.16l1.34.74a74.18,74.18,0,0,0,7.45,3.74,18.35,18.35,0,0,0,8.25,1.7,1.25,1.25,0,0,1,.22,2.49Q110.91,517.29,110.35,517.29Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M110,522.92a1.25,1.25,0,0,1-.33,0c-3.36-.9-6.88-2.06-10.49-3.27-.66-.22-1.43-.46-2.26-.72-4.57-1.43-10.83-3.38-13.24-6.44a1.25,1.25,0,0,1,2-1.54c1.93,2.45,8,4.35,12,5.6.85.27,1.64.51,2.31.74,3.57,1.2,7,2.34,10.34,3.23a1.25,1.25,0,0,1-.32,2.46Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M114.33,529.92a1.25,1.25,0,0,1-.47-2.41c2.22-.91,5.17-.72,7.78-.55,1,.06,1.89.12,2.7.12a1.25,1.25,0,1,1,0,2.5c-.89,0-1.84-.06-2.86-.13-2.34-.15-5-.32-6.67.37A1.24,1.24,0,0,1,114.33,529.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M121.32,533c-2.07,0-4.35-.2-6-1.25a1.25,1.25,0,0,1,1.35-2.1c1.53,1,4.41.89,6.51.82h.44a1.22,1.22,0,0,1,1.29,1.21,1.25,1.25,0,0,1-1.21,1.29h-.43C122.67,533,122,533,121.32,533Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M204.06,502.94c-1.59,0-3.19-.1-4.71-.19s-2.79-.17-4-.17a1.25,1.25,0,1,1,0-2.5c1.31,0,2.7.08,4.17.17,3.66.22,7.8.47,10.68-.74a1.25,1.25,0,0,1,1,2.31A18.59,18.59,0,0,1,204.06,502.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M210.65,507.25c-3.38,0-6.75-.28-10-.54-2.19-.18-4.46-.36-6.69-.46a1.25,1.25,0,1,1,.11-2.5c2.28.1,4.57.29,6.79.47,3.21.26,6.52.53,9.8.53h0a1.25,1.25,0,1,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M626.88,500.82c-2.73,0-5.52-.16-8.27-.32-3.4-.19-6.62-.38-9.55-.25a1.25,1.25,0,1,1-.1-2.5c3.05-.12,6.33.06,9.8.26,6.67.38,13.56.77,18.82-1.18a1.25,1.25,0,0,1,.87,2.34A33.57,33.57,0,0,1,626.88,500.82Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M638.67,506.25c-4.2,0-8.52-.31-12.7-.6a122.36,122.36,0,0,0-17.87-.4,1.25,1.25,0,0,1-.2-2.49,124.15,124.15,0,0,1,18.24.4c4.14.29,8.42.6,12.53.6a1.25,1.25,0,1,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M634.9,576.77c-1.72,0-3.45-.16-5.06-.3-1-.09-2-.18-2.9-.23-1.46-.07-2.93-.09-4.49-.11-4.54-.06-9.24-.12-13.52-1.62a1.25,1.25,0,1,1,.83-2.36c3.9,1.37,8.38,1.43,12.73,1.48,1.52,0,3.08,0,4.59.12,1,0,2,.14,3,.23,3.09.28,6.3.57,8.93-.19a1.25,1.25,0,1,1,.69,2.4A17.52,17.52,0,0,1,634.9,576.77Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M622.24,579.36a123.7,123.7,0,0,1-13.37-.78,1.25,1.25,0,0,1,.27-2.49,111.6,111.6,0,0,0,17.55.66c.93,0,2-.06,3-.06,2.82,0,6,0,8.2-.86a1.25,1.25,0,0,1,.87,2.34c-2.59,1-6,1-9,1-1,0-2,0-2.91.06Q624.58,579.36,622.24,579.36Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M662.25,493.36a39.46,39.46,0,0,1-6.09-.66,32.89,32.89,0,0,0-3.53-.45,1.25,1.25,0,1,1,.09-2.5,34,34,0,0,1,3.84.48,26,26,0,0,0,7.42.5,31.79,31.79,0,0,0,4.85-1.31c1-.34,2.11-.69,3.19-1a1.25,1.25,0,1,1,.63,2.42c-1,.26-2,.58-3,.93a34.23,34.23,0,0,1-5.24,1.4A13.65,13.65,0,0,1,662.25,493.36Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M663.41,498.84a35.43,35.43,0,0,1-10.82-1.66,1.25,1.25,0,1,1,.81-2.36c4.77,1.64,14,2.52,18.25-.2a1.25,1.25,0,0,1,1.35,2.1C670.63,498.25,667.07,498.84,663.41,498.84Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M620.51,540.9a5.16,5.16,0,0,1-4.57-2.22c-2-3-.88-8.07,1.28-11.54,1.94-3.12,4.47-4.72,6.94-4.38h0c4.22.63,6.67,3.05,6.71,6.65.06,4.85-4.34,10.57-8.72,11.33A9.76,9.76,0,0,1,620.51,540.9Zm3-15.68c-1.36,0-2.9,1.19-4.18,3.24-1.92,3.09-2.52,7.05-1.33,8.82.66,1,1.92,1.31,3.73,1,3.15-.55,6.69-5.25,6.65-8.83,0-2.34-1.57-3.76-4.57-4.21Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M661.55,536.59a4.66,4.66,0,0,1-4.27-2.25c-1.38-2.4-.59-6,.9-8.31,1.32-2,3.12-3.11,4.94-2.93h0a1.25,1.25,0,0,1,.83.18,8.54,8.54,0,0,1,3.58,9,5.74,5.74,0,0,1-5.69,4.35Zm1.18-11a3.33,3.33,0,0,0-2.45,1.81c-1.22,1.89-1.59,4.4-.83,5.71.15.27.62,1.08,2.32,1a3.28,3.28,0,0,0,3.38-2.49,6,6,0,0,0-2.21-6h-.21Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M685,507.44a75.46,75.46,0,0,1-8.17-.54,1.25,1.25,0,1,1,.27-2.48c5.78.64,12.24,1,16.33-.89a1.25,1.25,0,0,1,1.06,2.26A22.82,22.82,0,0,1,685,507.44Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M676.67,512.58a1.25,1.25,0,0,1,0-2.5c2.87,0,5.77-.25,8.58-.5,2.64-.23,5.38-.47,8.07-.5h0a1.25,1.25,0,0,1,0,2.5c-2.6,0-5.17.25-7.88.49S679.64,512.58,676.67,512.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M663.94,579.51c-2.27,0-4.67-.17-6.95-.33-2-.14-3.82-.27-5.33-.27a1.25,1.25,0,0,1,0-2.5c1.6,0,3.5.13,5.5.27,4.81.34,10.79.76,13.55-.78a1.25,1.25,0,1,1,1.21,2.19C670,579.19,667.07,579.51,663.94,579.51Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M662.37,583.61c-2,0-4.06-.11-5.92-.21-1.42-.08-2.76-.15-3.79-.15a1.25,1.25,0,0,1,0-2.5c1.09,0,2.47.07,3.92.15,4.14.22,9.8.53,12.94-.73a1.25,1.25,0,0,1,.93,2.32A22.89,22.89,0,0,1,662.37,583.61Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M678.95,578c-.41,0-.77,0-1.07,0a1.25,1.25,0,1,1,.25-2.49c1.78.19,6.62-.33,8.56-1.49a1.25,1.25,0,1,1,1.29,2.14C685.8,577.38,681.47,578,678.95,578Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M707,514.25a1.27,1.27,0,0,1-.28,0,1.25,1.25,0,0,1-.95-1.49c.41-1.81,3-1.88,6.57-2a21,21,0,0,0,3.64-.28,1.25,1.25,0,0,1,.68,2.41,20.75,20.75,0,0,1-4.25.37,20.78,20.78,0,0,0-4.34.38A1.25,1.25,0,0,1,707,514.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M587.67,582.58a1.25,1.25,0,0,1-1-2c3.71-5.15,8.35-9.53,12.43-11.71a1.25,1.25,0,0,1,1.18,2.21c-3.75,2-8.08,6.1-11.57,11A1.25,1.25,0,0,1,587.67,582.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M583.67,576.58a1.25,1.25,0,0,1-1.07-1.9c2.1-3.48,10.42-10.32,14.9-10.93a1.25,1.25,0,0,1,.33,2.48c-3.31.45-11.2,6.6-13.1,9.74A1.25,1.25,0,0,1,583.67,576.58Z" transform="translate(-53.25 -44.96)"/></g><g id="BACKGROUND"><path class="cls-24" d="M479.9,331.07c-37.71,0-75.29-.27-112.34-.54-33.89-.24-68.94-.49-103.29-.53-31.44,0-63.33-.27-94.18-.5-33.44-.25-68-.5-102.1-.5a2,2,0,0,1,0-4c34.1,0,68.68.26,102.13.5,30.83.23,62.72.46,94.15.5,34.36,0,69.41.29,103.31.53,86.22.62,175.37,1.26,262.09-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08H728a2,2,0,0,1,0,4H665.58c-4,0-8,0-12-.08-7.82-.08-15.9-.17-23.81.08C580.3,330.59,530,331.07,479.9,331.07Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M479.9,306c-37.71,0-75.29-.27-112.33-.54-33.89-.24-68.94-.49-103.29-.53-31.7,0-62.72-.31-92.72-.58-32-.29-65-.59-98.87-.59a2,2,0,1,1,0-4c33.84,0,66.92.3,98.91.59,30,.27,61,.55,92.69.58,34.36,0,69.41.29,103.31.53,86.22.62,175.37,1.26,262.09-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08h56.53a2,2,0,0,1,0,4H665.58c-4,0-8,0-12-.09-7.82-.08-15.9-.17-23.81.08C580.3,305.5,530,306,479.9,306Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476,190.86c-37.71,0-75.29-.27-112.33-.54-33.89-.24-68.94-.49-103.29-.53-31.42,0-63.29-.27-94.12-.5l-32.69-.23a2,2,0,0,1-2-2,2,2,0,0,1,2-2l32.69.23c30.82.23,62.68.46,94.09.5,34.36,0,69.41.29,103.31.53,86.22.62,175.37,1.26,262.09-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08a2,2,0,0,1,0,4c-4,0-8,0-12-.09-7.82-.08-15.9-.17-23.81.08C576.4,190.38,526.09,190.86,476,190.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476,165.77c-37.71,0-75.29-.27-112.33-.54-33.89-.24-68.94-.49-103.29-.53-31.52,0-63.48-.27-94.4-.5l-8.79-.06a2,2,0,0,1,0-4h0l8.79.06c30.91.23,62.87.46,94.38.5,34.36,0,69.41.29,103.31.53,86.22.62,175.37,1.26,262.09-1.53,3.52-.11,7.36-.17,11.75-.17h0a2,2,0,0,1,0,4c-4.34,0-8.14.06-11.62.17C576.4,165.29,526.09,165.77,476,165.77Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476,475.66c-37.71,0-75.29-.27-112.35-.54-33.89-.24-68.93-.5-103.27-.53-31.45,0-63.35-.27-94.2-.5-33.43-.25-68-.5-102.07-.5a2,2,0,1,1,0-4c34.09,0,68.66.25,102.1.5,30.84.23,62.74.46,94.18.5,34.35,0,69.4.29,103.29.53,86.23.62,175.39,1.26,262.11-1.53,8-.25,16.12-.17,24-.09,4,0,7.95.08,11.91.08,10.39,0,22.44-.2,34.11-.4s23.75-.4,34.17-.4a2,2,0,0,1,0,4c-10.39,0-22.45.2-34.11.4s-23.75.4-34.17.4c-4,0-8,0-12-.08-7.82-.08-15.91-.17-23.81.08C576.39,475.19,526.08,475.66,476,475.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M733.78,450.57c-10.44,0-23.51-.53-36.14-1s-25.61-1-36-1c-4,0-8,0-12-.08-7.82-.08-15.91-.17-23.81.08-86.79,2.79-176,2.15-262.23,1.53-33.9-.24-69-.5-103.31-.53-31.43,0-63.31-.27-94.14-.5-33.45-.25-68-.5-102.13-.5a2,2,0,1,1,0-4c34.11,0,68.7.25,102.16.5,30.83.23,62.7.46,94.12.5,34.37,0,69.43.29,103.33.53,86.21.62,175.36,1.26,262.07-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08,10.44,0,23.5.53,36.13,1s25.61,1,36,1a2,2,0,0,1,0,4Z" transform="translate(-53.25 -44.96)"/><g class="cls-25"><path class="cls-24" d="M167.18,469.74a2.91,2.91,0,0,1-1.53-.42,4.18,4.18,0,0,1-1.65-3.38h0c-.07-.82-.11-1.66-.15-2.5s-.07-1.56-.13-2.32c-.19-2.42-.29-5.09-.29-8.41a4.24,4.24,0,0,1,1.48-3.58c1.55-1.09,3.5-.4,4.66,0a21.31,21.31,0,0,1,9.27,5.93l.19.21c1.06,1.17,2.65,2.94,2,4.76-.35,1-1.32,1.71-2.88,2.76-.28.19-.52.34-.65.45-.95.78-1.93,1.46-2.89,2.13-.56.39-1.13.78-1.68,1.19-.29.22-.58.45-.88.68a14.2,14.2,0,0,1-3.3,2.15A4.14,4.14,0,0,1,167.18,469.74Zm.91-3.46h0Zm-.66-13.63v.05c0,3.21.09,5.78.28,8.09.06.81.1,1.64.14,2.46s.06,1.38.11,2.06a18.62,18.62,0,0,0,1.61-1.2c.33-.27.66-.53,1-.77.59-.43,1.19-.85,1.79-1.27.93-.65,1.81-1.25,2.63-1.93.19-.16.54-.4,1-.68l.9-.62c-.28-.35-.62-.73-.77-.9l-.22-.25a17.5,17.5,0,0,0-7.61-4.8C167.89,452.79,167.63,452.71,167.43,452.65Zm10,5.68Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M190.73,469.74a4.13,4.13,0,0,1-1.59-.35,14.22,14.22,0,0,1-3.3-2.15c-.3-.24-.59-.47-.88-.68-.55-.41-1.12-.8-1.69-1.19-1-.66-1.94-1.35-2.89-2.13-.13-.11-.37-.26-.65-.45-1.56-1.05-2.54-1.77-2.88-2.76-.63-1.81,1-3.58,2-4.76l.19-.21a21.32,21.32,0,0,1,9.27-5.93c1.16-.42,3.11-1.11,4.66,0a4.24,4.24,0,0,1,1.48,3.58c0,3.32-.09,6-.29,8.41-.06.76-.1,1.54-.13,2.32s-.08,1.69-.15,2.51a4.18,4.18,0,0,1-1.65,3.38A2.91,2.91,0,0,1,190.73,469.74Zm-9.65-10.88.9.62c.41.28.76.52,1,.68.82.67,1.7,1.28,2.62,1.93.6.42,1.2.83,1.79,1.27.33.24.66.5,1,.77a18.47,18.47,0,0,0,1.61,1.2c0-.68.08-1.37.11-2.07s.08-1.64.14-2.45c.19-2.31.27-4.88.28-8.1v-.05c-.2.05-.46.14-.8.26a17.5,17.5,0,0,0-7.61,4.8l-.22.24C181.71,458.13,181.37,458.5,181.09,458.86Zm-.65-.52" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M102.47,354.23a2,2,0,0,1-1.68-3.08,79.22,79.22,0,0,1,7.43-9.73c6.39-7.21,15.4-12.58,27.57-16.43,11.57-3.66,22.64-7.53,30.94-14.54a2,2,0,0,1,3.25,1.91,18.25,18.25,0,0,1-2,5.36c6.95-2,16.48-6.56,19.26-10a2,2,0,0,1,3.55,1.36,16.94,16.94,0,0,1-3,8.82,65.35,65.35,0,0,0,12.58-2.63c1.46-.41,2.94-.82,4.46-1.21a2,2,0,0,1,2.44,2.41,12.34,12.34,0,0,1-1.78,4c17.25,3.33,36.68,15.6,47.45,30.28a2,2,0,1,1-3.23,2.37c-11-15-31.37-27.27-48.49-29.27a2,2,0,0,1-1-3.57,9.19,9.19,0,0,0,1.26-1.18l-.05,0c-5.93,1.65-11.53,3.21-18.5,2.83a2,2,0,0,1-1.09-3.6,12.31,12.31,0,0,0,3.36-3.87c-6.56,4.13-16.49,7.75-21.54,8.2a2,2,0,0,1-1.7-3.3c.35-.4.71-.85,1.08-1.35-7.71,4.74-16.71,7.82-26,10.77-11.46,3.62-19.89,8.62-25.78,15.27a75.18,75.18,0,0,0-7.06,9.24A2,2,0,0,1,102.47,354.23Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M119.46,422.75c-6.6,0-13.4-1.41-18.19-5.32-12.68-10.37-18.57-28.31-14.66-44.65,3.5-14.6,13.77-24.79,28.19-27.94a50.34,50.34,0,0,1,13.11-1.2h0c21.69,1,33,17.78,34.56,33.91,1.71,17.53-7.28,37.86-31.21,43.77A50.23,50.23,0,0,1,119.46,422.75Zm6.37-75.16a47.77,47.77,0,0,0-10.17,1.15c-12.86,2.81-22,11.91-25.15,25-3.56,14.88,1.78,31.21,13.3,40.62,6.27,5.12,17.82,5.25,26.5,3.11,21.61-5.34,29.73-23.69,28.19-39.5-1.41-14.42-11.46-29.38-30.77-30.3Q126.79,347.59,125.83,347.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M136.19,391.22c6.18-1.2,8.88-12,3.72-16s-15.21,1.36-14.1,8.27C126.6,388.33,131.25,392.18,136.19,391.22Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M88.65,512.72a2,2,0,0,1-2-2c0-8.37-.06-16.77-.11-24.89-.19-29.54-.38-57.44,1.85-87a2,2,0,1,1,4,.3c-2.22,29.38-2,57.2-1.84,86.66.05,8.13.11,16.53.11,24.91A2,2,0,0,1,88.65,512.72Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M263.59,512.72h-.2a2,2,0,0,1-1.79-2.19c1.33-13.41.87-37.17.34-58.37-.17-6.66-.6-13.32-1-19.77-.58-8.87-1.18-18-1.07-27.25a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c-.1,9.06.49,18.15,1.06,26.95.42,6.49.86,13.2,1,19.93.53,21.33,1,45.23-.36,58.87A2,2,0,0,1,263.59,512.72Z" transform="translate(-53.25 -44.96)"/><circle class="cls-7" cx="84.62" cy="334.45" r="2.31"/><path class="cls-24" d="M235.5,423.2a50.2,50.2,0,0,1-11.8-1.43c-23.93-5.91-32.92-26.24-31.21-43.77,1.57-16.13,12.87-32.87,34.56-33.91a50.36,50.36,0,0,1,13.11,1.2c14.42,3.15,24.69,13.33,28.19,27.94,3.91,16.34-2,34.29-14.66,44.65C248.9,421.79,242.1,423.2,235.5,423.2ZM229.13,348q-1,0-1.9,0h0c-19.31.92-29.37,15.89-30.77,30.3-1.54,15.81,6.58,34.16,28.19,39.5,8.68,2.14,20.23,2,26.5-3.11,11.52-9.42,16.87-25.74,13.3-40.62-3.13-13.05-12.29-22.15-25.15-25A47.79,47.79,0,0,0,229.13,348Zm-2-2h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M240.76,389.67c-6.18-1.2-8.88-12-3.72-16s15.21,1.36,14.1,8.27C250.36,386.77,245.71,390.62,240.76,389.67Z" transform="translate(-53.25 -44.96)"/><circle class="cls-7" cx="191.83" cy="332.89" r="2.31"/><path class="cls-24" d="M176.13,407.12a13.92,13.92,0,0,1-8.83-3.22h0c-3.83-3.15-3.79-5.86-3.09-7.58,1.81-4.42,9.6-5.72,13.19-5.4s8.38,1.36,10,4.47c.61,1.18,1,3.14-.55,5.76a12,12,0,0,1-8.4,5.76A13.24,13.24,0,0,1,176.13,407.12Zm-6.29-6.31a9.78,9.78,0,0,0,7.89,2.17,8.07,8.07,0,0,0,5.65-3.86c.34-.58.7-1.38.43-1.89-.46-.89-2.73-2-6.77-2.31-3.51-.31-8.45,1.28-9.13,2.93-.27.65.46,1.76,1.93,3Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M165.22,420.86a8.93,8.93,0,0,1-5.31-1.66,8,8,0,0,1-3.17-7c.2-4.74,3.51-11.08,9.24-13.51a2,2,0,0,1,1.56,3.68c-4,1.7-6.65,6.51-6.8,10a4,4,0,0,0,1.53,3.62,5.83,5.83,0,0,0,5.35.45l1.06-.39c4.27-1.57,7.64-2.81,13.06-2.09a28.21,28.21,0,0,1,3.13.66c3.48.87,5.69,1.27,7.19-.59s.86-4.43.32-5.75c-1.36-3.33-4.58-6.19-7.32-6.52a2,2,0,0,1,.47-4c4.19.5,8.62,4.27,10.55,9,1.49,3.64,1.16,7.2-.9,9.77-3.21,4-7.87,2.83-11.28,2a25.36,25.36,0,0,0-2.68-.58c-4.44-.58-7.12.4-11.16,1.88l-1.08.39A11.06,11.06,0,0,1,165.22,420.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M176.32,432.68c-2.92,0-5.13-.74-6.72-2.25-2.9-2.77-3-7.44-2.79-12.38a2,2,0,1,1,4,.15c-.14,3.84-.14,7.72,1.55,9.34,1,1,2.74,1.31,5.32,1.09l.2,0c3.29-.28,4-.34,4.67-2.76a36.9,36.9,0,0,0,.84-9.07,2,2,0,0,1,2-2h0a2,2,0,0,1,2,2,39.11,39.11,0,0,1-1,10.13c-1.45,5.07-4.72,5.35-8.17,5.65l-.2,0Q177.14,432.68,176.32,432.68Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M104,352.05a2,2,0,0,1-.74-.14C98,349.85,93.29,344,91.72,337.8c-1.24-4.94-.36-9.51,2.47-12.85,3.35-4,10.47-4.29,15-2.12,4.91,2.34,7.35,5.93,9.93,9.73l1.09,1.6a2,2,0,0,1-3.28,2.28l-1.12-1.63c-2.46-3.63-4.41-6.49-8.34-8.37-3.07-1.46-8.22-1.31-10.25,1.09-2.53,3-2.29,6.71-1.64,9.3,1.25,5,5.08,9.77,9.11,11.37a2,2,0,0,1-.74,3.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M251.49,354a2,2,0,0,1-1.5-3.32c3.8-4.33,11.95-15.11,5.66-21.62-2.51-2.6-7.3-2.47-10.55-1-3.57,1.58-5.83,4.67-8,7.65l-.92,1.25a2,2,0,0,1-3.2-2.4l.9-1.21c2.38-3.25,5.08-6.93,9.62-8.94s11.23-2,15,1.91c6.05,6.27,4,16.12-5.53,27A2,2,0,0,1,251.49,354Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-26"><path class="cls-24" d="M625.88,469.74a2.91,2.91,0,0,1-1.54-.42,4.19,4.19,0,0,1-1.65-3.38c-.07-.82-.11-1.67-.15-2.52s-.07-1.55-.13-2.31c-.19-2.42-.29-5.09-.29-8.41a4.24,4.24,0,0,1,1.48-3.58c1.55-1.09,3.5-.4,4.66,0a21.33,21.33,0,0,1,9.27,5.93l.19.21c1.06,1.17,2.65,2.94,2,4.76-.35,1-1.32,1.71-2.88,2.76-.28.19-.52.34-.65.45-.95.78-1.93,1.46-2.89,2.13-.57.39-1.13.79-1.69,1.2-.29.21-.58.45-.88.68a14.24,14.24,0,0,1-3.3,2.15A4.13,4.13,0,0,1,625.88,469.74Zm.91-3.46h0Zm-.66-13.63v.05c0,3.21.09,5.78.28,8.09.06.81.1,1.63.14,2.44s.07,1.4.12,2.08a18.23,18.23,0,0,0,1.61-1.2c.33-.27.66-.53,1-.77.59-.44,1.19-.85,1.79-1.27.93-.64,1.81-1.25,2.62-1.93.19-.16.54-.4,1-.68l.9-.62c-.28-.35-.62-.73-.77-.9l-.22-.25a17.51,17.51,0,0,0-7.61-4.8C626.59,452.79,626.33,452.71,626.13,452.65Zm10,5.68Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M649.44,469.74a4.13,4.13,0,0,1-1.59-.35,14.23,14.23,0,0,1-3.3-2.15c-.3-.24-.59-.47-.88-.68-.55-.41-1.12-.8-1.68-1.19-1-.66-1.94-1.35-2.89-2.13-.13-.11-.37-.26-.65-.45-1.56-1.05-2.54-1.77-2.88-2.76-.63-1.81,1-3.58,2-4.75l.19-.21a21.33,21.33,0,0,1,9.27-5.93c1.16-.42,3.11-1.11,4.66,0a4.24,4.24,0,0,1,1.48,3.58c0,3.32-.1,6-.29,8.41-.06.77-.1,1.54-.13,2.32s-.08,1.69-.15,2.51h0a4.19,4.19,0,0,1-1.65,3.38A2.91,2.91,0,0,1,649.44,469.74Zm-9.65-10.88c.32.23.67.47.9.62.41.28.76.52,1,.68.82.67,1.7,1.28,2.63,1.93.6.42,1.2.83,1.79,1.27.33.24.66.5,1,.77a18.42,18.42,0,0,0,1.61,1.2c0-.68.08-1.37.11-2.07s.08-1.64.14-2.45c.18-2.31.27-4.88.28-8.1v-.05c-.2.05-.46.14-.8.26a17.51,17.51,0,0,0-7.61,4.8l-.22.24C640.41,458.13,640.07,458.5,639.79,458.86Zm-.65-.52" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M561.17,354.23a2,2,0,0,1-1.68-3.08,79.07,79.07,0,0,1,7.43-9.73c6.39-7.21,15.4-12.58,27.57-16.43,11.57-3.66,22.64-7.53,30.95-14.54a2,2,0,0,1,3.25,1.91,18.24,18.24,0,0,1-2,5.36c6.95-2,16.48-6.56,19.26-10a2,2,0,0,1,3.55,1.36,16.94,16.94,0,0,1-3,8.82A65.37,65.37,0,0,0,659,315.26c1.46-.41,2.94-.82,4.46-1.21a2,2,0,0,1,2.44,2.42,12.35,12.35,0,0,1-1.78,4c17.25,3.33,36.67,15.59,47.45,30.28a2,2,0,1,1-3.22,2.37c-11-15-31.37-27.27-48.49-29.27a2,2,0,0,1-1-3.57,9.15,9.15,0,0,0,1.26-1.18h-.05c-5.93,1.65-11.54,3.21-18.5,2.83a2,2,0,0,1-1.09-3.6,12.32,12.32,0,0,0,3.36-3.87c-6.57,4.13-16.49,7.75-21.54,8.2a2,2,0,0,1-1.7-3.29c.35-.4.71-.86,1.08-1.35-7.71,4.74-16.72,7.82-26,10.77-11.46,3.62-19.89,8.62-25.78,15.27a75.13,75.13,0,0,0-7.06,9.24A2,2,0,0,1,561.17,354.23Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M578.17,422.75c-6.6,0-13.4-1.41-18.19-5.32-12.68-10.37-18.57-28.31-14.66-44.65,3.5-14.6,13.77-24.79,28.19-27.94a50.35,50.35,0,0,1,13.11-1.2h0c21.69,1,33,17.78,34.56,33.91,1.71,17.53-7.28,37.86-31.21,43.77A50.23,50.23,0,0,1,578.17,422.75Zm6.37-75.16a47.79,47.79,0,0,0-10.18,1.15c-12.86,2.81-22,11.91-25.15,25-3.56,14.88,1.78,31.21,13.3,40.62,6.27,5.12,17.82,5.25,26.5,3.11,21.61-5.34,29.73-23.69,28.19-39.5-1.41-14.42-11.47-29.38-30.77-30.3Q585.49,347.59,584.53,347.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M571.9,391.22c6.18-1.2,8.88-12,3.72-16s-15.21,1.36-14.1,8.27C562.3,388.33,567,392.18,571.9,391.22Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M547.36,512.72a2,2,0,0,1-2-2c0-8.37-.06-16.77-.11-24.88-.2-29.54-.38-57.44,1.85-87a2,2,0,0,1,4,.3c-2.22,29.38-2,57.21-1.84,86.66.05,8.12.11,16.52.11,24.91A2,2,0,0,1,547.36,512.72Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M722.29,512.72h-.2a2,2,0,0,1-1.79-2.19c1.33-13.41.87-37.16.34-58.37-.17-6.66-.6-13.32-1-19.77-.58-8.87-1.17-18-1.07-27.26a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c-.1,9.06.49,18.16,1.07,27,.42,6.49.86,13.19,1,19.93.53,21.33,1,45.23-.36,58.87A2,2,0,0,1,722.29,512.72Z" transform="translate(-53.25 -44.96)"/><circle class="cls-7" cx="520.33" cy="334.45" r="2.31"/><path class="cls-24" d="M694.2,423.2a50.2,50.2,0,0,1-11.8-1.43c-23.93-5.91-32.92-26.24-31.21-43.77,1.57-16.13,12.87-32.87,34.56-33.91a50.16,50.16,0,0,1,13.11,1.2c14.42,3.15,24.69,13.33,28.19,27.94,3.91,16.34-2,34.29-14.66,44.65C707.6,421.79,700.8,423.2,694.2,423.2ZM687.83,348q-1,0-1.9,0h0c-19.31.92-29.37,15.89-30.77,30.3-1.54,15.81,6.58,34.16,28.19,39.5,8.68,2.14,20.23,2,26.5-3.11,11.52-9.42,16.86-25.74,13.3-40.62C720,361.1,710.86,352,698,349.19A47.79,47.79,0,0,0,687.83,348Zm-2-2h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M676.47,389.67c-6.18-1.2-8.88-12-3.72-16s15.21,1.36,14.1,8.27C686.07,386.77,681.41,390.62,676.47,389.67Z" transform="translate(-53.25 -44.96)"/><circle class="cls-7" cx="627.54" cy="332.89" r="2.31"/><path class="cls-24" d="M634.83,407.12A13.92,13.92,0,0,1,626,403.9h0c-3.83-3.15-3.79-5.86-3.09-7.58,1.81-4.42,9.61-5.71,13.19-5.4s8.38,1.36,10,4.47c.61,1.18,1,3.14-.55,5.76a12,12,0,0,1-8.4,5.76A13.24,13.24,0,0,1,634.83,407.12Zm-6.29-6.31a9.78,9.78,0,0,0,7.88,2.17,8.08,8.08,0,0,0,5.65-3.86c.34-.58.7-1.38.43-1.89-.46-.89-2.73-2-6.77-2.31-3.51-.31-8.46,1.28-9.13,2.93-.26.65.46,1.76,1.93,3Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M623.92,420.86a8.93,8.93,0,0,1-5.31-1.66,8,8,0,0,1-3.17-7c.2-4.74,3.51-11.08,9.23-13.51a2,2,0,0,1,1.56,3.68c-4,1.7-6.65,6.51-6.8,10A4,4,0,0,0,621,416a5.83,5.83,0,0,0,5.35.45l1.06-.39c4.27-1.57,7.64-2.82,13.06-2.09a28.19,28.19,0,0,1,3.13.66c3.48.87,5.7,1.27,7.19-.59s.86-4.43.32-5.75c-1.36-3.33-4.58-6.19-7.32-6.52a2,2,0,1,1,.47-4c4.19.5,8.62,4.27,10.55,9,1.49,3.64,1.16,7.2-.9,9.77-3.21,4-7.87,2.83-11.28,2a25.6,25.6,0,0,0-2.68-.58c-4.44-.58-7.12.4-11.16,1.88l-1.08.39A11.05,11.05,0,0,1,623.92,420.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M635,432.68c-2.92,0-5.13-.74-6.72-2.25-2.9-2.76-3-7.44-2.79-12.38a2,2,0,0,1,4,.15c-.14,3.84-.14,7.72,1.55,9.34,1,1,2.74,1.31,5.32,1.09l.2,0c3.29-.28,4-.34,4.67-2.76a36.89,36.89,0,0,0,.84-9.07,2,2,0,0,1,2-2h0a2,2,0,0,1,2,2,39.06,39.06,0,0,1-1,10.13c-1.45,5.07-4.71,5.35-8.17,5.65l-.2,0Q635.84,432.68,635,432.68Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M562.68,352.05a2,2,0,0,1-.74-.14c-5.21-2.06-9.95-7.87-11.52-14.11-1.24-4.94-.37-9.51,2.46-12.85,3.35-4,10.47-4.29,15-2.12,4.91,2.34,7.35,5.93,9.93,9.74l1.09,1.59a2,2,0,1,1-3.29,2.28l-1.12-1.63c-2.46-3.63-4.41-6.5-8.34-8.37-3.07-1.47-8.23-1.31-10.25,1.09-2.53,3-2.29,6.71-1.64,9.3,1.25,5,5.08,9.77,9.11,11.37a2,2,0,0,1-.74,3.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M710.2,354a2,2,0,0,1-1.5-3.32c3.8-4.33,11.95-15.11,5.66-21.62-2.51-2.6-7.3-2.47-10.54-1-3.57,1.58-5.83,4.67-8,7.65l-.92,1.25a2,2,0,0,1-3.2-2.4l.89-1.21c2.38-3.25,5.08-6.93,9.62-8.94s11.23-2,15,1.91c6.05,6.26,4,16.12-5.53,27A2,2,0,0,1,710.2,354Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M658,401.5a2,2,0,0,1-1.75-3c1.28-2.33,6-3.06,16.21-3.8,1.16-.08,2.16-.16,2.84-.23a186.1,186.1,0,0,1,25.3-.51l3.1.08c6.61.14,14.83.32,19.92,3.76a2,2,0,1,1-2.24,3.31c-4.12-2.78-11.69-2.94-17.77-3.08l-3.16-.08a182.21,182.21,0,0,0-24.75.49c-.72.07-1.75.15-3,.24-3.18.23-11.54.84-13.11,1.92A2,2,0,0,1,658,401.5Zm1.75-1h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M550.5,403a2,2,0,0,1-.85-3.81c22.12-10.34,50.14-5.14,64.87-1.12a2,2,0,1,1-1.05,3.86c-14.2-3.88-41.16-8.92-62.13.88A2,2,0,0,1,550.5,403Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-24" d="M476,616.83c-37.71,0-75.29-.27-112.35-.54-33.89-.24-68.93-.5-103.27-.53-31.46,0-63.37-.27-94.23-.5l-35-.25a2,2,0,0,1,0-4h0l35,.25c30.85.23,62.75.46,94.2.5,34.35,0,69.4.29,103.29.53,86.22.62,175.38,1.26,262.11-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08a2,2,0,0,1,0,4c-4,0-8,0-12-.08-7.82-.08-15.91-.17-23.81.08C576.39,616.35,526.08,616.83,476,616.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476,591.73c-37.71,0-75.28-.27-112.32-.54-33.9-.24-69-.5-103.31-.53-31.4,0-63.25-.27-94.05-.5q-26.27-.19-52.54-.35a2,2,0,0,1,0-4h0q26.28.14,52.55.35c30.8.23,62.64.46,94,.5,34.37,0,69.43.29,103.33.53,86.21.62,175.36,1.26,262.07-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08,5.21,0,11.36.13,19.37.4a2,2,0,0,1,1.93,2.07,2,2,0,0,1-2.07,1.93c-8-.27-14.08-.39-19.24-.39-4,0-8,0-12-.08-7.82-.08-15.9-.17-23.81.08C576.4,591.25,526.09,591.73,476,591.73Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M89,396a2,2,0,0,1-.1-4,88.43,88.43,0,0,0,11.52-1.63c3-.56,6.18-1.15,9.26-1.47a131.34,131.34,0,0,1,15.92-.45c1.88,0,3.77.05,5.71,0,1.54,0,3.15,0,4.81-.07,7.7-.16,16.42-.33,23.09,2.2a2,2,0,0,1-1.42,3.74c-5.94-2.26-14.25-2.09-21.59-1.94-1.69,0-3.33.07-4.88.07-2,0-3.87,0-5.77,0a128,128,0,0,0-15.45.42c-2.92.31-6,.88-8.95,1.43A91.36,91.36,0,0,1,89.1,396Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M256,394.5a2,2,0,0,1-.63-.1c-13.31-4.45-28.4-3-43-1.64-5.39.51-11,1-16.28,1.24a2,2,0,1,1-.15-4c5.21-.2,10.48-.7,16.06-1.23,15-1.42,30.54-2.89,44.65,1.83a2,2,0,0,1-.63,3.9Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M91.67,303.33a2,2,0,0,1-2-2V282.07c0-4.12.11-8.41.34-12.75.09-1.79.1-4.22.11-6.8,0-3.27,0-6.64.22-8.83a2,2,0,1,1,4,.35c-.18,2-.19,5.31-.21,8.49,0,2.62,0,5.1-.12,7-.22,4.33-.33,8.44-.33,12.55v19.26A2,2,0,0,1,91.67,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M110.33,303.33a2,2,0,0,1-2-2V222.5a2,2,0,0,1,4,0v78.83A2,2,0,0,1,110.33,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M122.33,303.74a2,2,0,0,1-.93-.23c-1.39-.73-1.91-2.27-2.88-11.69-.08-.74-.14-1.34-.19-1.73-.64-5.16-1.33-10.52-2-16-2.33-18.08-4.73-36.78-6-53.83a2,2,0,1,1,4-.29c1.23,16.93,3.63,35.58,5.95,53.61.7,5.47,1.39,10.83,2,16,.05.41.12,1,.2,1.81.2,1.92.78,7.61,1.31,9a2,2,0,0,1-1.48,3.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M151.33,298.33a2,2,0,0,1-2-1.91,53.62,53.62,0,0,0-1.07-6.68c-.3-1.53-.62-3.1-.83-4.51-.49-3.15-1-6.3-1.55-9.46-.38-2.26-.75-4.52-1.12-6.79-.75-4.62-1.46-9.25-2.18-13.88-2.2-14.2-4.47-28.86-7.59-43.13-5.25-.24-12.81-.26-17,3.52a2,2,0,1,1-2.67-3c5.43-4.85,13.91-4.84,21.43-4.46a2,2,0,0,1,1.85,1.56c3.33,14.87,5.69,30.12,8,44.88.72,4.62,1.43,9.24,2.17,13.86q.55,3.38,1.12,6.76c.53,3.17,1.06,6.34,1.55,9.51.21,1.33.51,2.86.81,4.35a55.52,55.52,0,0,1,1.14,7.28,2,2,0,0,1-1.91,2.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M138.56,304a2,2,0,0,1-.14-4,17.88,17.88,0,0,0,5.7-1.36c.58-.22,1.13-.44,1.7-.59a11.3,11.3,0,0,0,2.52-1.24c.58-.34,1.18-.7,1.81-1a2,2,0,0,1,1.71,3.61c-.46.22-1,.51-1.49.83a14.58,14.58,0,0,1-3.48,1.65c-.38.1-.82.27-1.33.47a21.89,21.89,0,0,1-6.85,1.61Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M153.33,302.67a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.06-3.86.13-7.85,0-11.71-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.75-1-25.1-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.44.33,26.71,1,38.39.41,7.12.49,14.44.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,153.33,302.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M170.33,303.33h0a2,2,0,0,1-2-2c0-2.41-.08-4.85-.16-7.2s-.17-4.93-.17-7.48v-7.94c0-22,0-44.68,1-67,0-.32,0-.69.06-1.07.08-1.2.29-4.37-.27-5-1.78-2.09-8.12-1.15-12.31-.53a40,40,0,0,1-5.15.57h0a2,2,0,0,1,0-4,38.77,38.77,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.2-1,44.86-1,66.78v7.95c0,2.48.08,5,.17,7.34s.17,4.87.17,7.34A2,2,0,0,1,170.33,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M527.75,303.33a2,2,0,0,1-2-2V222.5a2,2,0,0,1,4,0v78.83A2,2,0,0,1,527.75,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M539.75,303.74a2,2,0,0,1-.93-.23c-1.39-.73-1.91-2.27-2.88-11.68-.08-.74-.14-1.35-.19-1.75l-.58-4.7c-2.64-21.32-5.92-47.86-7.42-68.57a2,2,0,0,1,4-.29c1.49,20.6,4.76,47.09,7.4,68.37l.58,4.7c.05.41.12,1.05.2,1.83.2,1.91.78,7.59,1.31,9a2,2,0,0,1-1.48,3.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M568.75,298.33a2,2,0,0,1-2-1.91,53.52,53.52,0,0,0-1.07-6.67c-.3-1.53-.62-3.11-.84-4.52-.49-3.15-1-6.3-1.54-9.46-.38-2.26-.75-4.52-1.12-6.79-.75-4.62-1.46-9.25-2.18-13.88-2.19-14.18-4.46-28.83-7.58-43.08-6.43.09-17.21,2.45-21.34,6.14a2,2,0,0,1-2.67-3c5.46-4.88,18.89-7.47,25.72-7.12a2,2,0,0,1,1.85,1.56c3.33,14.87,5.69,30.13,8,44.88.72,4.62,1.43,9.24,2.17,13.85.36,2.25.74,4.51,1.12,6.76.53,3.17,1.06,6.34,1.55,9.51.21,1.33.51,2.87.81,4.35a55.44,55.44,0,0,1,1.14,7.27,2,2,0,0,1-1.91,2.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M556,304a2,2,0,0,1-.14-4,17.89,17.89,0,0,0,5.7-1.36c.58-.22,1.13-.44,1.7-.59a11.29,11.29,0,0,0,2.52-1.24c.58-.34,1.18-.7,1.81-1a2,2,0,1,1,1.71,3.61c-.46.22-1,.51-1.49.82a14.58,14.58,0,0,1-3.48,1.65c-.38.1-.82.27-1.33.47a21.89,21.89,0,0,1-6.85,1.61Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M570.75,302.67a2,2,0,0,1-2-2c0-2,0-4.06.07-6.1.06-3.86.13-7.85-.05-11.71-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.76-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.7,1,38.39.41,7.12.49,14.45.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,570.75,302.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M587.75,303.33h0a2,2,0,0,1-2-2c0-2.41-.08-4.84-.16-7.2s-.17-4.93-.17-7.48v-7.93c0-22,0-44.69,1-67,0-.33,0-.69.06-1.08.08-1.2.29-4.37-.27-5-1.78-2.09-8.12-1.15-12.31-.53a40,40,0,0,1-5.15.57h0a2,2,0,0,1,0-4,38.79,38.79,0,0,0,4.58-.52c5.68-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.2-1,44.87-1,66.8v7.93c0,2.48.08,5,.17,7.34s.17,4.87.17,7.34A2,2,0,0,1,587.75,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M175.66,301.33a2,2,0,0,1-2-1.66,70.59,70.59,0,0,1-.53-13.69,87.77,87.77,0,0,0-.14-10.38c-1.94-20.3-1.75-41.52-1.57-62,.05-5.91.11-12,.11-17.95a2,2,0,0,1,4,0c0,5.94-.05,12.06-.11,18-.18,20.42-.37,41.53,1.55,61.62a90.77,90.77,0,0,1,.15,10.86,66.62,66.62,0,0,0,.47,12.91,2,2,0,0,1-2,2.34Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M180.34,197.94a62.68,62.68,0,0,1-7-.33,2,2,0,1,1,.46-4,105.46,105.46,0,0,0,14.11.14c2.39-.08,4.65-.15,6.72-.15a2,2,0,0,1,2,2,2,2,0,0,1-2,2h0c-2,0-4.24.07-6.6.15C185.46,197.85,182.85,197.94,180.34,197.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M197.66,303.33a2,2,0,0,1-2-1.65,139.45,139.45,0,0,1-1.7-17.26c-1.34-28.65-1.34-55.82-1.34-84.59v-4.22a2,2,0,0,1,4,0v4.22c0,28.72,0,55.84,1.33,84.4A135.63,135.63,0,0,0,199.64,301,2,2,0,0,1,198,303.3,2.05,2.05,0,0,1,197.66,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M207,212.49a2,2,0,0,1-.5-.06c-2.37-.61-8.13-.82-11.23-.84a2,2,0,1,1,0-4c2.94,0,9.26.2,12.22,1a2,2,0,0,1-.5,3.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M208,303a2,2,0,0,1-1.84-1.21c-1.15-2.66-1-7-.9-10.92,0-1.08.07-2.11.07-3,0-15.16-.08-30.61-.17-45.54s-.17-30.43-.17-45.64a2,2,0,0,1,4,0c0,15.2.08,30.67.17,45.62s.17,30.39.17,45.56c0,1,0,2-.07,3.15-.1,3.28-.23,7.37.57,9.21A2,2,0,0,1,208,303Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M239.67,304h0a2,2,0,0,1-2-2c0-2.18-.07-5-.16-8s-.18-5.94-.18-8.58c0-15.56-.34-31.45-.67-46.8-.29-13.42-.59-27.3-.66-40.92a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c.07,13.58.37,27.45.66,40.85.33,15.38.68,31.28.68,46.89,0,2.59.09,5.57.18,8.46s.18,5.89.16,8.15A2,2,0,0,1,239.67,304Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M238,199.67a2,2,0,0,1-.71-.13c-3.41-1.29-9.72-1.87-14.46-1.87l-2.73,0c-1.77,0-3.59,0-5.36,0l-1.23,0c-1.86,0-4.18.09-5.67.78a2,2,0,1,1-1.69-3.63c2.26-1,5-1.11,7.28-1.15l1.16,0c1.87-.07,3.74,0,5.56,0l2.68,0c4.73,0,11.73.56,15.87,2.13a2,2,0,0,1-.71,3.87Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M430.83,302.67a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.07-3.86.13-7.85,0-11.7-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.75-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.71,1,38.39.41,7.12.49,14.45.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,430.83,302.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M447.83,303.33h0a2,2,0,0,1-2-2c0-2.41-.08-4.85-.16-7.21s-.17-4.93-.17-7.47v-8c0-22,0-44.66,1-67,0-.32,0-.69.06-1.07.08-1.2.29-4.38-.27-5-1.78-2.09-8.12-1.15-12.32-.53a40,40,0,0,1-5.15.57h0a2,2,0,0,1,0-4,38.79,38.79,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.19-1,44.85-1,66.76v8c0,2.48.08,4.94.17,7.33s.17,4.87.17,7.35A2,2,0,0,1,447.83,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M453.16,301.33a2,2,0,0,1-2-1.66,70.61,70.61,0,0,1-.53-13.69,87.64,87.64,0,0,0-.14-10.38c-1.94-20.3-1.75-41.52-1.57-62,.05-5.91.11-12,.11-17.95a2,2,0,0,1,4,0c0,5.94-.05,12.06-.11,18-.18,20.42-.37,41.53,1.55,61.62a90.75,90.75,0,0,1,.15,10.86,66.58,66.58,0,0,0,.47,12.91,2,2,0,0,1-2,2.34Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M457.84,197.94a62.68,62.68,0,0,1-7-.33,2,2,0,1,1,.46-4,105.2,105.2,0,0,0,14.11.14c2.41-.08,4.65-.13,6.77-.15a2,2,0,0,1,0,4h0c-2,0-4.24.07-6.6.15C463,197.85,460.35,197.94,457.84,197.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M475.16,303.33a2,2,0,0,1-2-1.65,139.55,139.55,0,0,1-1.7-17.26c-1.34-28.65-1.34-55.82-1.34-84.59v-4.22a2,2,0,0,1,4,0v4.22c0,28.72,0,55.84,1.33,84.4A135.64,135.64,0,0,0,477.13,301a2,2,0,0,1-1.62,2.32A2,2,0,0,1,475.16,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M484.5,212.49a2,2,0,0,1-.5-.06c-2.37-.61-8.13-.84-11.22-.84h0a2,2,0,1,1,0-4h0c2.94,0,9.26.2,12.22,1a2,2,0,0,1-.5,3.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M485.5,303a2,2,0,0,1-1.84-1.21c-1.15-2.66-1-7-.9-10.92,0-1.08.07-2.11.07-3,0-15.16-.08-30.61-.17-45.54s-.17-30.43-.17-45.64a2,2,0,0,1,4,0c0,15.2.08,30.67.17,45.62s.17,30.39.17,45.56c0,1,0,2-.07,3.15-.1,3.28-.23,7.37.57,9.21a2,2,0,0,1-1.83,2.8Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M517.17,304h0a2,2,0,0,1-2-2c0-2.18-.07-5-.16-8s-.18-5.94-.18-8.59c0-15.56-.34-31.44-.67-46.79-.29-13.43-.59-27.31-.66-40.93a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c.07,13.58.37,27.45.66,40.86.33,15.38.67,31.28.67,46.88,0,2.59.09,5.58.18,8.47s.18,5.89.16,8.15A2,2,0,0,1,517.17,304Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M515.5,199.67a2,2,0,0,1-.71-.13c-3.41-1.29-9.72-1.87-14.46-1.87l-2.73,0c-1.77,0-3.59,0-5.36,0l-1.23,0c-1.86,0-4.18.09-5.67.78a2,2,0,0,1-1.69-3.63c2.26-1,5-1.11,7.28-1.15l1.16,0c1.87-.07,3.74,0,5.56,0l2.68,0c4.73,0,11.73.56,15.87,2.13a2,2,0,0,1-.71,3.87Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M637.34,302.67a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.07-3.86.13-7.85,0-11.7-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.75-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.71,1,38.39.41,7.12.49,14.45.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,637.34,302.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M654.34,303.33h0a2,2,0,0,1-2-2c0-2.41-.08-4.85-.16-7.2s-.17-4.93-.17-7.48v-8c0-22,0-44.66,1-67,0-.32,0-.69.06-1.07.08-1.2.29-4.38-.27-5-1.78-2.09-8.12-1.15-12.32-.53a40,40,0,0,1-5.15.57h0a2,2,0,0,1,0-4,38.79,38.79,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.19-1,44.85-1,66.76v8c0,2.48.08,5,.17,7.34s.17,4.87.17,7.34A2,2,0,0,1,654.34,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M659.67,301.33a2,2,0,0,1-2-1.66,70.61,70.61,0,0,1-.53-13.69,87.64,87.64,0,0,0-.14-10.38c-1.94-20.3-1.75-41.52-1.57-62,.05-5.91.11-12,.11-17.95a2,2,0,1,1,4,0c0,5.94-.05,12.06-.11,18-.18,20.42-.37,41.53,1.55,61.62a90.75,90.75,0,0,1,.15,10.86,66.58,66.58,0,0,0,.47,12.91,2,2,0,0,1-2,2.34Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M681.67,303.33a2,2,0,0,1-2-1.65,139.55,139.55,0,0,1-1.7-17.26c-1.2-25.62-1.32-50.17-1.33-73.13a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,22.91.13,47.4,1.33,72.94A135.64,135.64,0,0,0,683.64,301a2,2,0,0,1-2,2.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M692,303a2,2,0,0,1-1.84-1.21c-1.15-2.66-1-7-.9-10.92,0-1.08.07-2.11.07-3,0-15.2-.08-30.69-.17-45.66l-.06-11.11a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2l.06,11.11c.08,15,.17,30.47.17,45.68,0,1,0,2-.07,3.15-.1,3.28-.23,7.37.57,9.21A2,2,0,0,1,692,303Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M253,303.33a2,2,0,0,1-1.19-.4c-.74-.55-1.6-1.25-2.51-2-2.68-2.19-6.36-5.2-8.67-5.64a2,2,0,1,1,.75-3.93c3.31.63,7.27,3.87,10.46,6.47.87.72,1.7,1.39,2.37,1.89a2,2,0,0,1-1.2,3.6Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M241.33,293a2,2,0,0,1-1.94-2.48c2.64-10.63,9.2-19.77,15.55-28.61,2-2.82,3.94-5.48,5.73-8.19,3.93-5.95,7.81-12.09,11.57-18,4.56-7.21,9.27-14.66,14.11-21.83.44-.66.89-1.29,1.33-1.91a29.33,29.33,0,0,0,3.24-5.33c.53-1.23,2.4-5.38,4.32-7.35a2,2,0,1,1,2.86,2.79,25,25,0,0,0-3.51,6.14,32.85,32.85,0,0,1-3.65,6.06c-.42.6-.85,1.2-1.28,1.84-4.81,7.13-9.5,14.55-14,21.74-3.77,6-7.66,12.11-11.61,18.09-1.83,2.77-3.86,5.59-5.81,8.32-6.13,8.53-12.46,17.35-14.91,27.24A2,2,0,0,1,241.33,293Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M309.67,212a2,2,0,0,1-1.49-.67c-2.4-2.68-5.79-4.76-9.06-6.77-1.18-.72-2.39-1.47-3.55-2.23a2,2,0,0,1,2.21-3.34c1.1.73,2.23,1.42,3.43,2.16,3.52,2.16,7.16,4.39,10,7.51a2,2,0,0,1-1.49,3.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M254,304.33a2,2,0,0,1-1.92-2.58c.78-2.6,2.65-4.64,4.45-6.62a32.78,32.78,0,0,0,2.18-2.56c2.36-3.22,4.48-6.69,6.54-10.05l3.33-5.44c3.09-5.06,6.29-10.29,9.55-15.45a408.31,408.31,0,0,0,21.48-38.44c.38-.79.77-1.6,1.16-2.42,2-4.17,4.2-8.89,7.47-12.18a2,2,0,1,1,2.84,2.82c-2.78,2.8-4.77,7-6.69,11.07-.4.84-.79,1.67-1.18,2.47a412.46,412.46,0,0,1-21.69,38.82c-3.25,5.13-6.44,10.35-9.52,15.39l-3.33,5.44c-2.1,3.43-4.27,7-6.73,10.33a35.92,35.92,0,0,1-2.45,2.89c-1.5,1.65-3.06,3.36-3.58,5.09A2,2,0,0,1,254,304.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M603.43,303.32a2,2,0,0,1-.75-.15c-.85-.35-1.86-.81-2.93-1.3-3.15-1.45-7.48-3.43-9.81-3.28a2,2,0,1,1-.26-4c3.38-.23,8,1.92,11.75,3.64,1,.47,2,.92,2.77,1.23a2,2,0,0,1-.76,3.85Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M589.54,296.25a2,2,0,0,1-2-2c-.12-11,3.94-21.45,7.86-31.6,1.25-3.24,2.43-6.29,3.49-9.36,2.31-6.75,4.53-13.67,6.67-20.36,2.6-8.12,5.29-16.51,8.17-24.67.26-.75.54-1.47.81-2.18a29.41,29.41,0,0,0,1.8-6c.2-1.32,1-5.82,2.34-8.2a2,2,0,1,1,3.47,2,25.08,25.08,0,0,0-1.86,6.83,32.91,32.91,0,0,1-2,6.78c-.26.68-.52,1.38-.78,2.1-2.86,8.1-5.54,16.47-8.13,24.56-2.15,6.71-4.37,13.65-6.7,20.44-1.08,3.14-2.33,6.38-3.54,9.51-3.79,9.8-7.7,19.92-7.59,30.11a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M635.33,200.68a2,2,0,0,1-1.11-.33c-3-2-6.8-3.15-10.47-4.27-1.32-.4-2.68-.82-4-1.27a2,2,0,1,1,1.3-3.78c1.25.43,2.52.82,3.87,1.23,3.95,1.21,8,2.45,11.52,4.77a2,2,0,0,1-1.11,3.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M604.65,304h-.08a2,2,0,0,1-1.92-2.08c.11-2.71,1.4-5.16,2.65-7.53a32.79,32.79,0,0,0,1.47-3c1.47-3.71,2.66-7.6,3.81-11.37l1.86-6.13c1.72-5.67,3.49-11.52,5.36-17.33A408.38,408.38,0,0,0,628.92,214c.17-.86.34-1.74.51-2.64.86-4.53,1.84-9.66,4.17-13.66a2,2,0,1,1,3.46,2c-2,3.41-2.86,8-3.7,12.39-.17.92-.35,1.82-.52,2.69a412.59,412.59,0,0,1-11.24,43c-1.85,5.77-3.63,11.61-5.34,17.26l-1.86,6.13c-1.17,3.85-2.38,7.83-3.92,11.69a35.72,35.72,0,0,1-1.65,3.41c-1,2-2.12,4-2.19,5.82A2,2,0,0,1,604.65,304Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M310,304.86a2,2,0,0,1-2-1.91c-.52-11.52-.63-20-.34-26,.76-16,.71-32.73.67-48.9,0-13.26-.08-27,.33-40.1a2,2,0,0,1,4,.13c-.41,13.07-.37,26.74-.33,40,0,16.22.1,33-.67,49.1-.28,5.88-.17,14.28.34,25.67a2,2,0,0,1-1.91,2.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M323.33,305.14a2,2,0,0,1-2-2V278.83c0-5.5-.21-11.11-.41-16.53-.3-8.08-.62-16.43-.25-24.7.34-7.62.33-15.47.33-23.06v-2.2c0-2.18.07-4.55.14-7.06a126.8,126.8,0,0,0-.26-17,2,2,0,1,1,4-.46,129.52,129.52,0,0,1,.29,17.58c-.07,2.48-.14,4.82-.14,6.94v2.2c0,7.64,0,15.53-.34,23.24-.36,8.1,0,16.37.25,24.37.21,5.46.42,11.11.42,16.68v24.31A2,2,0,0,1,323.33,305.14Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M340.5,221a2,2,0,0,1-.78-.16c-2.63-1.12-8.49-.91-12.77-.75-1.38.05-2.69.1-3.76.1a2,2,0,0,1,0-4c1,0,2.27,0,3.61-.1,4.92-.18,11-.4,14.49,1.07a2,2,0,0,1-.79,3.84Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M338.75,305.14a2,2,0,0,1-2-2V289.69c0-11.85.45-23.83.88-35.41s.88-23.52.87-35.28a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,11.84-.44,23.83-.87,35.43s-.87,23.48-.87,35.26v13.45A2,2,0,0,1,338.75,305.14Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M346.25,305.29a2,2,0,0,1-2-2V293c0-9.65-.1-19.65-.19-29.32s-.19-19.77-.19-29.53a2,2,0,1,1,4,0c0,9.74.1,19.78.19,29.49s.19,19.68.19,29.35v10.31A2,2,0,0,1,346.25,305.29Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M380.14,236.27h-.33c-16.41-.09-27.82-.13-33.94-.13a2,2,0,0,1,0-4c6.12,0,17.54,0,34,.13h1.38v2l2,0C383.19,236.15,381.69,236.27,380.14,236.27Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M380,303.28a2,2,0,0,1-2-2c0-9.68.36-21.38,1-32.94.48-8.65.38-17.78.28-26.61,0-2.51-.06-5-.07-7.44a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,2.44,0,4.92.07,7.42.1,8.9.21,18.09-.28,26.88-.64,11.49-1,23.11-1,32.71A2,2,0,0,1,380,303.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M384.18,302.4a2,2,0,0,1-2-2c-.05-4.06-.14-11.62-.4-16.81-.38-7.67,0-15.44.28-22.95.22-5.06.45-10.3.45-15.42,0-6.33.06-13.14.13-19.74s.13-13.42.13-19.76a2,2,0,0,1,4,0c0,6.35-.06,13.19-.12,19.79s-.12,13.39-.12,19.7c0,5.2-.23,10.49-.45,15.59-.32,7.42-.65,15.09-.28,22.58.26,5.27.36,12.88.41,17a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M425,208c-2.64,0-5.15-.2-7.58-.39-2-.16-3.87-.31-5.84-.36-4.83-.13-9.6.07-13.22.26-2.63.14-10.62.24-13.62.24a2,2,0,0,1,0-4c3,0,10.84-.1,13.41-.23,3.69-.19,8.56-.39,13.53-.26,2.08.05,4.1.21,6.05.37,2.35.19,4.78.38,7.26.38a2,2,0,0,1,0,4Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M424.5,296a2,2,0,0,1-2-2V279.51c0-12.4.19-24.88.38-37s.37-24.48.37-36.81a2,2,0,0,1,4,0c0,12.36-.19,24.82-.37,36.87s-.37,24.52-.37,36.89V294A2,2,0,0,1,424.5,296Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M657.67,197.33a2,2,0,0,1,0-4c1.61,0,3.14-.17,4.77-.34,1.35-.14,2.75-.28,4.18-.33a2,2,0,0,1,.14,4c-1.29,0-2.56.17-3.91.31-1.65.17-3.35.34-5.15.36Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M516.67,225.33a2,2,0,0,1-.88-3.8c2.92-1.42,9.36-1.86,12.44-.32a2,2,0,0,1-1.79,3.58c-1.87-.94-7-.59-8.9.34A2,2,0,0,1,516.67,225.33Z" transform="translate(-53.25 -44.96)"/><g class="cls-27"><path class="cls-24" d="M161.5,730.09a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.07-3.86.13-7.85,0-11.71-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.76-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.7,1,38.38.41,7.12.49,14.45.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,161.5,730.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M178.5,730.76h0a2,2,0,0,1-2-2c0-2.41-.08-4.85-.16-7.21s-.17-4.93-.17-7.47v-7.94c0-22,0-44.67,1-67,0-.32,0-.69.06-1.07.08-1.2.29-4.38-.27-5-1.78-2.09-8.12-1.15-12.32-.53a39.88,39.88,0,0,1-5.15.57h0a2,2,0,0,1,0-4,39,39,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.2-1,44.86-1,66.78v7.95c0,2.48.08,4.95.17,7.34s.17,4.87.17,7.35A2,2,0,0,1,178.5,730.76Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M183.83,728.76a2,2,0,0,1-2-1.66,70.59,70.59,0,0,1-.53-13.69,87.87,87.87,0,0,0-.14-10.38c-1.94-20.3-1.75-41.52-1.57-62,.05-5.91.11-12,.11-17.95a2,2,0,0,1,4,0c0,5.94-.05,12.06-.11,18-.18,20.42-.37,41.53,1.55,61.62a90.77,90.77,0,0,1,.15,10.86,66.65,66.65,0,0,0,.47,12.91,2,2,0,0,1-1.63,2.31Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M188.51,625.36a62.93,62.93,0,0,1-7-.33,2,2,0,0,1,.46-4,105.22,105.22,0,0,0,14.11.14c2.39-.08,4.65-.15,6.72-.15a2,2,0,1,1,0,4s0,0,0,0c-2,0-4.24.07-6.6.15C193.63,625.28,191,625.36,188.51,625.36Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M205.83,730.76a2,2,0,0,1-2-1.65,139.57,139.57,0,0,1-1.7-17.26c-1.34-28.65-1.34-55.82-1.34-84.59V623a2,2,0,0,1,4,0v4.22c0,28.72,0,55.84,1.33,84.4a135.64,135.64,0,0,0,1.64,16.74,2,2,0,0,1-2,2.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M215.17,639.92a2,2,0,0,1-.5-.06c-2.37-.61-8.12-.84-11.21-.84h0a2,2,0,0,1,0-4h0c2.94,0,9.25.2,12.21,1a2,2,0,0,1-.5,3.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M216.17,730.43a2,2,0,0,1-1.84-1.21c-1.15-2.66-1-7-.9-10.92,0-1.08.07-2.11.07-3,0-15.16-.08-30.61-.17-45.54s-.17-30.43-.17-45.64a2,2,0,0,1,4,0c0,15.2.08,30.67.17,45.62s.17,30.39.17,45.56c0,1,0,2-.07,3.15-.1,3.28-.23,7.37.57,9.21a2,2,0,0,1-1.83,2.8Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M246.16,627.1a2,2,0,0,1-.71-.13c-3.41-1.29-9.72-1.87-14.46-1.87l-2.72,0c-1.77,0-3.6,0-5.37,0l-1.23,0c-1.86,0-4.18.09-5.67.78a2,2,0,1,1-1.69-3.63c2.26-1,5-1.11,7.27-1.15l1.16,0c1.87-.07,3.75,0,5.58,0l2.67,0c4.73,0,11.72.56,15.87,2.13a2,2,0,0,1-.71,3.87Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-28"><path class="cls-24" d="M578.92,730.09a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.07-3.86.13-7.85,0-11.7-.3-6.39-.38-12.92-.45-19.23-.08-7-.17-14.32-.57-21.34-.67-11.76-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.7,1,38.38.41,7.12.49,14.44.57,21.52.07,6.28.15,12.77.45,19.09.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,578.92,730.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M595.92,730.76h0a2,2,0,0,1-2-2c0-2.41-.08-4.84-.16-7.2s-.17-4.93-.17-7.48v-8c0-22,0-44.66,1-66.95,0-.32,0-.68.06-1.07.08-1.2.29-4.38-.27-5-1.78-2.09-8.12-1.15-12.31-.53a39.9,39.9,0,0,1-5.15.57h0a2,2,0,0,1,0-4,39,39,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.22,1.21,7.89,0,.36,0,.69-.06,1-1,22.19-1,44.85-1,66.76v8c0,2.48.08,5,.17,7.34s.17,4.87.17,7.34A2,2,0,0,1,595.92,730.76Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M611.59,730.75a2,2,0,0,1-.75-.15c-.85-.35-1.86-.81-2.93-1.3-3.15-1.45-7.45-3.44-9.81-3.28a2,2,0,1,1-.26-4c3.38-.21,8,1.92,11.75,3.64,1,.47,2,.92,2.76,1.23a2,2,0,0,1-.76,3.85Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M597.71,723.68a2,2,0,0,1-2-2c-.12-11,3.94-21.45,7.86-31.6,1.25-3.24,2.43-6.29,3.48-9.36,2.31-6.75,4.53-13.67,6.67-20.36,2.6-8.12,5.29-16.51,8.17-24.67.26-.75.54-1.47.81-2.18a29.33,29.33,0,0,0,1.8-6c.2-1.32,1-5.82,2.34-8.21a2,2,0,0,1,3.47,2,25.08,25.08,0,0,0-1.86,6.83,32.84,32.84,0,0,1-2,6.78c-.26.68-.52,1.38-.78,2.1-2.86,8.1-5.54,16.47-8.13,24.55-2.15,6.71-4.37,13.65-6.7,20.44-1.08,3.14-2.33,6.38-3.54,9.51-3.79,9.8-7.7,19.93-7.59,30.11a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M643.5,628.11a2,2,0,0,1-1.11-.33c-3-2-6.8-3.15-10.47-4.27-1.32-.4-2.68-.82-4-1.27a2,2,0,1,1,1.3-3.78c1.25.43,2.52.82,3.86,1.23,4,1.21,8,2.45,11.52,4.77a2,2,0,0,1-1.11,3.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M612.81,731.47h-.08a2,2,0,0,1-1.92-2.08c.11-2.71,1.4-5.16,2.65-7.53a32.54,32.54,0,0,0,1.47-3c1.47-3.71,2.66-7.61,3.81-11.38l1.86-6.12c1.72-5.67,3.49-11.53,5.36-17.33a408,408,0,0,0,11.13-42.6c.17-.86.34-1.74.51-2.64.86-4.53,1.84-9.66,4.17-13.67a2,2,0,0,1,3.46,2c-2,3.41-2.86,8-3.7,12.4-.17.92-.35,1.82-.52,2.69a412.27,412.27,0,0,1-11.24,43c-1.86,5.77-3.63,11.61-5.34,17.27l-1.86,6.12c-1.17,3.85-2.38,7.83-3.92,11.69a35.94,35.94,0,0,1-1.65,3.41c-1,2-2.12,4-2.19,5.83A2,2,0,0,1,612.81,731.47Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-29"><path class="cls-24" d="M694.89,584.32h-.09a2,2,0,0,1-1.91-2.09,55.68,55.68,0,0,1,1.14-7.28c.29-1.48.6-3,.8-4.34.49-3.16,1-6.33,1.55-9.5q.57-3.38,1.12-6.77c.75-4.62,1.46-9.24,2.18-13.86,2.28-14.75,4.64-30,8-44.87A2,2,0,0,1,709.5,494c7.52-.39,16-.39,21.43,4.46a2,2,0,1,1-2.67,3c-4.23-3.78-11.79-3.76-17-3.52-3.13,14.27-5.4,28.93-7.59,43.13-.72,4.63-1.43,9.26-2.18,13.89q-.55,3.4-1.12,6.79c-.53,3.16-1.05,6.31-1.54,9.46-.22,1.41-.53,3-.83,4.51a53.58,53.58,0,0,0-1.07,6.68A2,2,0,0,1,694.89,584.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M707.66,590h-.15a21.87,21.87,0,0,1-6.85-1.62c-.51-.2-1-.37-1.33-.47a14.59,14.59,0,0,1-3.49-1.65c-.53-.31-1-.6-1.49-.82a2,2,0,1,1,1.71-3.61c.63.3,1.23.65,1.81,1a11.31,11.31,0,0,0,2.52,1.24c.57.16,1.11.37,1.7.59a17.86,17.86,0,0,0,5.7,1.36,2,2,0,0,1-.14,4Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M692.88,588.65a2,2,0,0,1-2-2c0-2,0-4-.07-6-.07-3.92-.13-8,.05-12,.3-6.31.37-12.81.45-19.09.08-7.08.17-14.41.57-21.52.67-11.68,1-25,1-38.39a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.5-.33,26.86-1,38.62-.4,7-.49,14.3-.57,21.34-.07,6.32-.15,12.84-.45,19.23-.18,3.85-.12,7.84,0,11.7,0,2,.07,4.08.07,6.11A2,2,0,0,1,692.88,588.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M675.88,589.32a2,2,0,0,1-2-2c0-2.47.08-4.95.17-7.34s.17-4.86.17-7.34v-8c0-21.91,0-44.57-1-66.76,0-.3,0-.64-.06-1-.18-2.67-.39-6,1.21-7.89,3.22-3.79,10.28-2.74,16-1.9a38.94,38.94,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.56-12.32.53-.56.66-.35,3.84-.27,5,0,.38,0,.75.06,1.07,1,22.29,1,45,1,66.95v8c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.21A2,2,0,0,1,675.88,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M670.55,587.32l-.34,0a2,2,0,0,1-1.63-2.31,66.62,66.62,0,0,0,.47-12.9,90.82,90.82,0,0,1,.16-10.87c1.92-20.09,1.73-41.2,1.55-61.62-.05-5.92-.11-12-.11-18a2,2,0,1,1,4,0c0,5.92.05,12,.11,18,.18,20.52.37,41.73-1.57,62a87.71,87.71,0,0,0-.14,10.38,70.56,70.56,0,0,1-.53,13.69A2,2,0,0,1,670.55,587.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M665.88,483.92c-2.51,0-5.12-.08-7.68-.17-2.36-.08-4.59-.15-6.59-.15h-.05a2,2,0,1,1,.05-4c2.07,0,4.33.07,6.72.15a105.2,105.2,0,0,0,14.1-.14,2,2,0,0,1,.46,4A62.84,62.84,0,0,1,665.88,483.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M648.55,589.32a2,2,0,0,1-2-2.35,135.59,135.59,0,0,0,1.64-16.74c1.34-28.56,1.34-55.68,1.33-84.4V481.6a2,2,0,1,1,4,0v4.22c0,28.77,0,55.94-1.34,84.59a139.52,139.52,0,0,1-1.7,17.26A2,2,0,0,1,648.55,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M639.22,498.47a2,2,0,0,1-.5-3.94c3-.76,9.27-1,12.21-1h0a2,2,0,0,1,0,4h0c-3.09,0-8.84.23-11.21.84A2,2,0,0,1,639.22,498.47Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M638.22,589a2,2,0,0,1-1.83-2.8c.8-1.84.67-5.92.57-9.21,0-1.12-.07-2.19-.07-3.15,0-15.17.08-30.62.17-45.56s.17-30.42.17-45.62a2,2,0,1,1,4,0c0,15.21-.08,30.68-.17,45.64s-.17,30.38-.17,45.54c0,.92,0,1.95.07,3,.12,3.87.25,8.26-.9,10.92A2,2,0,0,1,638.22,589Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M606.55,590a2,2,0,0,1-2-2c0-2.26.07-5.12.16-8.15s.18-5.88.18-8.46c0-15.6.34-31.5.67-46.88.29-13.41.59-27.28.66-40.86a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c-.07,13.62-.37,27.5-.66,40.93-.33,15.35-.67,31.23-.67,46.79,0,2.65-.09,5.66-.18,8.58s-.17,5.81-.16,8a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M608.22,485.65a2,2,0,0,1-.71-3.87c4.15-1.57,11.14-2.13,15.88-2.13l2.69,0c1.81,0,3.69,0,5.55,0l1.16,0c2.24,0,5,.1,7.28,1.15a2,2,0,0,1-1.69,3.63c-1.5-.7-3.81-.74-5.67-.78l-1.23,0c-1.76-.07-3.58,0-5.34,0l-2.75,0c-4.74,0-11,.58-14.46,1.87A2,2,0,0,1,608.22,485.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M593.22,589.32a2,2,0,0,1-1.2-3.6c.67-.5,1.49-1.17,2.37-1.89,3.18-2.6,7.14-5.84,10.45-6.47a2,2,0,1,1,.75,3.93c-2.31.44-6,3.45-8.67,5.64-.91.75-1.77,1.45-2.51,2A2,2,0,0,1,593.22,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M604.88,579a2,2,0,0,1-1.94-1.52c-2.45-9.89-8.79-18.71-14.92-27.24-2-2.72-4-5.54-5.81-8.31-4-6-7.85-12.14-11.61-18.09-4.54-7.18-9.24-14.61-14-21.73-.43-.63-.86-1.24-1.28-1.84a32.89,32.89,0,0,1-3.65-6.05,25,25,0,0,0-3.51-6.14,2,2,0,1,1,2.86-2.79c1.92,2,3.79,6.13,4.32,7.35a29.38,29.38,0,0,0,3.24,5.33c.44.62.89,1.25,1.33,1.92,4.84,7.17,9.55,14.62,14.11,21.83,3.76,5.94,7.64,12.08,11.57,18,1.79,2.71,3.7,5.37,5.72,8.19,6.35,8.84,12.91,18,15.55,28.61a2,2,0,0,1-1.94,2.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M592.22,590.32a2,2,0,0,1-1.91-1.42c-.52-1.73-2.08-3.44-3.58-5.09a36.17,36.17,0,0,1-2.45-2.89c-2.45-3.34-4.62-6.89-6.72-10.31l-3.35-5.49c-3.08-5-6.26-10.25-9.5-15.37A412.7,412.7,0,0,1,543,510.94c-.39-.8-.78-1.63-1.18-2.47-1.92-4.07-3.91-8.27-6.69-11.07a2,2,0,1,1,2.84-2.82c3.26,3.29,5.5,8,7.47,12.18.39.83.78,1.64,1.16,2.43a408.3,408.3,0,0,0,21.47,38.44c3.26,5.15,6.45,10.37,9.54,15.42l3.35,5.48c2.06,3.35,4.18,6.82,6.53,10a32.83,32.83,0,0,0,2.18,2.56c1.8,2,3.67,4,4.45,6.62a2,2,0,0,1-1.92,2.58Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-30"><path class="cls-24" d="M113.55,589.32a2,2,0,0,1-2-2V508.48a2,2,0,0,1,4,0v78.83A2,2,0,0,1,113.55,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M101.55,589.72a2,2,0,0,1-1.48-3.35c.52-1.38,1.11-7.07,1.31-9,.08-.77.15-1.41.2-1.81l.58-4.72c2.63-21.27,5.9-47.75,7.39-68.35a2,2,0,1,1,4,.29c-1.5,20.7-4.78,47.23-7.41,68.55l-.58,4.72c0,.39-.11,1-.19,1.73-1,9.42-1.49,11-2.88,11.69A2,2,0,0,1,101.55,589.72Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M72.55,584.32h-.09a2,2,0,0,1-1.91-2.09,55.58,55.58,0,0,1,1.14-7.28c.29-1.49.6-3,.81-4.35.49-3.16,1-6.33,1.55-9.5.38-2.25.75-4.51,1.12-6.77.74-4.62,1.46-9.24,2.17-13.86,2.28-14.75,4.64-30,8-44.88A2,2,0,0,1,87.17,494c6.85-.36,20.26,2.25,25.72,7.12a2,2,0,1,1-2.67,3c-4.13-3.69-14.91-6-21.34-6.14-3.12,14.25-5.39,28.9-7.58,43.08-.72,4.63-1.43,9.26-2.18,13.88-.37,2.26-.74,4.53-1.12,6.79-.53,3.16-1.05,6.31-1.54,9.46-.22,1.41-.53,3-.83,4.51a53.65,53.65,0,0,0-1.07,6.68A2,2,0,0,1,72.55,584.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M210.47,588.65a2,2,0,0,1-2-2c0-2,0-4-.07-6-.07-3.92-.13-8,.05-12,.3-6.31.37-12.8.45-19.08.08-7.08.17-14.41.57-21.53.67-11.67,1-24.95,1-38.39a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.51-.33,26.87-1,38.62-.4,7-.48,14.31-.57,21.35-.07,6.31-.15,12.84-.45,19.23-.18,3.86-.11,7.85,0,11.71,0,2,.07,4.08.07,6.11A2,2,0,0,1,210.47,588.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M193.47,589.32a2,2,0,0,1-2-2c0-2.47.08-4.95.17-7.34s.17-4.86.17-7.34v-7.95c0-21.92,0-44.58-1-66.78,0-.3,0-.64-.06-1-.18-2.67-.39-6,1.21-7.89,3.21-3.79,10.28-2.74,16-1.9a39,39,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.56-12.32.53-.56.66-.35,3.84-.27,5,0,.39,0,.75.06,1.07,1,22.29,1,45,1,67v7.95c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.21A2,2,0,0,1,193.47,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M188.14,587.32l-.34,0a2,2,0,0,1-1.63-2.31,66.63,66.63,0,0,0,.47-12.91,90.75,90.75,0,0,1,.15-10.86c1.92-20.09,1.73-41.21,1.55-61.62-.05-5.92-.11-12-.11-18a2,2,0,0,1,4,0c0,5.92.05,12,.11,17.95.18,20.52.37,41.74-1.57,62a87.75,87.75,0,0,0-.14,10.38,70.6,70.6,0,0,1-.53,13.69A2,2,0,0,1,188.14,587.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M183.47,483.92c-2.51,0-5.12-.08-7.68-.17-2.38-.08-4.63-.15-6.64-.15h0a2,2,0,0,1,0-4h.05c2.07,0,4.33.07,6.72.15a105.06,105.06,0,0,0,14.1-.14,2,2,0,0,1,.46,4A62.84,62.84,0,0,1,183.47,483.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M166.14,589.32a2,2,0,0,1-2-2.35,135.67,135.67,0,0,0,1.64-16.74c1.34-28.56,1.34-55.68,1.33-84.4V481.6a2,2,0,0,1,4,0v4.22c0,28.77,0,55.94-1.34,84.59a139.43,139.43,0,0,1-1.7,17.26A2,2,0,0,1,166.14,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M156.8,498.47a2,2,0,0,1-.5-3.94c3-.76,9.27-1,12.21-1h0a2,2,0,0,1,0,4h0c-3.09,0-8.84.23-11.21.84A2,2,0,0,1,156.8,498.47Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M155.81,589a2,2,0,0,1-1.83-2.8c.8-1.84.67-5.92.57-9.21,0-1.12-.07-2.19-.07-3.15,0-15.17.08-30.62.17-45.56s.17-30.42.17-45.62a2,2,0,1,1,4,0c0,15.21-.08,30.68-.17,45.64s-.17,30.38-.17,45.54c0,.92,0,1.95.07,3,.12,3.87.25,8.26-.9,10.92A2,2,0,0,1,155.81,589Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M124.14,590a2,2,0,0,1-2-2c0-2.26.07-5.12.16-8.15s.18-5.88.18-8.46c0-15.6.34-31.5.68-46.88.29-13.41.59-27.28.66-40.87a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c-.07,13.62-.37,27.5-.66,40.93-.33,15.35-.67,31.23-.67,46.79,0,2.65-.09,5.66-.18,8.58s-.17,5.81-.16,8a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M125.81,485.65a2,2,0,0,1-.71-3.87c4.15-1.57,11.14-2.13,15.87-2.13l2.69,0c1.81,0,3.69,0,5.55,0l1.16,0c2.24,0,5,.1,7.28,1.15a2,2,0,0,1-1.69,3.63c-1.5-.7-3.81-.74-5.67-.78l-1.23,0c-1.76-.07-3.58,0-5.35,0l-2.74,0c-4.74,0-11,.58-14.46,1.87A2,2,0,0,1,125.81,485.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M216.31,494a2,2,0,1,1,0-4c2.48,0,4.91-.19,7.26-.38,2-.16,4-.32,6.06-.37,5-.13,9.84.07,13.53.26,2.43.13,10.08.23,13.41.23a2,2,0,0,1,0,4c-3,0-11-.1-13.61-.24-3.62-.19-8.39-.39-13.22-.26-2,.05-3.85.2-5.85.36C221.45,493.78,218.95,494,216.31,494Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M216.81,582a2,2,0,0,1-2-2V565.5c0-12.37-.19-24.84-.37-36.89s-.37-24.51-.37-36.87a2,2,0,0,1,4,0c0,12.33.19,24.77.37,36.81s.38,24.55.38,37V580A2,2,0,0,1,216.81,582Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M124.64,511.32a2,2,0,0,1-.87-.2c-1.92-.93-7-1.28-8.9-.34a2,2,0,1,1-1.79-3.58c3.07-1.54,9.51-1.1,12.44.32a2,2,0,0,1-.88,3.8Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-31"><path class="cls-24" d="M625.89,161.66a2,2,0,0,1-2-2c0-2,0-4-.07-6-.07-3.92-.13-8,.05-12,.3-6.31.37-12.81.45-19.09.08-7.08.17-14.41.57-21.52.67-11.68,1-25,1-38.38a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.5-.33,26.86-1,38.62-.4,7-.49,14.3-.57,21.34-.07,6.31-.15,12.84-.45,19.23-.18,3.85-.12,7.84,0,11.7,0,2,.07,4.08.07,6.11A2,2,0,0,1,625.89,161.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M608.89,162.32a2,2,0,0,1-2-2c0-2.47.08-4.95.17-7.34s.17-4.86.17-7.34v-8c0-21.91,0-44.57-1-66.76,0-.3,0-.64-.06-1-.18-2.67-.39-6,1.21-7.89,3.21-3.79,10.28-2.74,16-1.9a38.75,38.75,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.56-12.32.53-.56.66-.35,3.84-.27,5,0,.39,0,.75.06,1.07,1,22.29,1,45,1,66.95v8c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.2A2,2,0,0,1,608.89,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M251.47,162.32a2,2,0,0,1-2-2V81.49a2,2,0,1,1,4,0v78.83A2,2,0,0,1,251.47,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M238.84,164.65a2,2,0,0,1-1.49-3.34c.21-.53.95-3,2.15-12.73l.58-4.72c2.63-21.27,5.9-47.75,7.39-68.34a2,2,0,0,1,4,.29c-1.5,20.7-4.78,47.23-7.41,68.54l-.58,4.72c-1.77,14.33-2.66,14.8-3.7,15.35A2,2,0,0,1,238.84,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M210.47,157.32h-.09a2,2,0,0,1-1.91-2.09,55.62,55.62,0,0,1,1.14-7.28c.29-1.49.6-3,.81-4.35.49-3.16,1-6.33,1.55-9.51.38-2.25.75-4.51,1.12-6.76.74-4.61,1.46-9.24,2.17-13.86,2.28-14.75,4.64-30,8-44.88A2,2,0,0,1,225.08,67c6.84-.35,20.26,2.25,25.72,7.12a2,2,0,1,1-2.67,3c-4.13-3.69-14.91-6-21.34-6.14-3.12,14.26-5.39,28.9-7.58,43.08-.72,4.63-1.43,9.26-2.18,13.88q-.55,3.39-1.12,6.78c-.53,3.16-1.05,6.32-1.55,9.47-.22,1.41-.53,3-.83,4.51a53.54,53.54,0,0,0-1.07,6.68A2,2,0,0,1,210.47,157.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M224.5,164.58h-.15a18.39,18.39,0,0,1-7.71-2.77,11.93,11.93,0,0,0-1.73-.87,14.6,14.6,0,0,1-3.48-1.65c-.53-.31-1-.6-1.49-.82a2,2,0,1,1,1.71-3.61c.63.3,1.23.65,1.81,1a11.28,11.28,0,0,0,2.52,1.24,12.72,12.72,0,0,1,2.62,1.24,14.89,14.89,0,0,0,6,2.27,2,2,0,0,1-.14,4Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M208.47,161.66a2,2,0,0,1-2-2c0-2,0-4-.07-6-.07-3.92-.13-8,.05-12,.3-6.31.37-12.8.45-19.08.08-7.08.17-14.41.57-21.53.67-11.67,1-24.95,1-38.38a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.51-.33,26.87-1,38.62-.4,7-.48,14.31-.57,21.35-.07,6.31-.15,12.84-.45,19.22-.18,3.86-.11,7.85,0,11.71,0,2,.07,4.08.07,6.11A2,2,0,0,1,208.47,161.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M191.47,162.32a2,2,0,0,1-2-2c0-2.48.08-4.95.17-7.34s.17-4.86.17-7.34v-7.95c0-21.92,0-44.58-1-66.78,0-.3,0-.64-.06-1-.17-2.67-.39-6,1.21-7.88,3.21-3.79,10.28-2.74,16-1.9a38.76,38.76,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.57-12.32.53-.56.66-.35,3.84-.27,5,0,.39,0,.75.06,1.07,1,22.29,1,45,1,67v7.94c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.2A2,2,0,0,1,191.47,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M603.56,163.53a2,2,0,0,1-2-2.34c.7-4.07.59-9.54.47-14.84a109.87,109.87,0,0,1,.16-12.13c1.92-20.09,1.74-41.21,1.55-61.63-.05-5.92-.11-12-.11-18a2,2,0,0,1,4,0c0,5.92.05,12,.11,17.94.18,20.52.37,41.74-1.57,62a107,107,0,0,0-.14,11.66c.12,5.49.24,11.16-.53,15.61A2,2,0,0,1,603.56,163.53Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M598.88,56.92c-2.51,0-5.12-.08-7.69-.17-2.36-.08-4.59-.15-6.59-.15h0a2,2,0,0,1-2-2,2,2,0,0,1,2-2c2.07,0,4.33.07,6.72.15a105.14,105.14,0,0,0,14.11-.14,2,2,0,1,1,.46,4A62.66,62.66,0,0,1,598.88,56.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M581.56,162.32a2,2,0,0,1-2-2.35,135.61,135.61,0,0,0,1.64-16.74c1.34-28.54,1.34-55.65,1.33-84.35V54.61a2,2,0,0,1,4,0v4.27c0,28.75,0,55.9-1.34,84.54a139.52,139.52,0,0,1-1.7,17.26A2,2,0,0,1,581.56,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M572.22,71.48a2,2,0,0,1-.5-3.94c3-.76,9.27-1,12.21-1h0a2,2,0,0,1,0,4h0c-3.09,0-8.84.23-11.21.84A2,2,0,0,1,572.22,71.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M571.72,163.53a2,2,0,0,1-1.83-2.8c.7-1.62.42-6.14.21-9.44-.1-1.64-.2-3.19-.2-4.45,0-15.17.08-30.62.17-45.56s.17-30.42.17-45.62a2,2,0,0,1,4,0c0,15.21-.08,30.68-.17,45.64s-.17,30.38-.17,45.54c0,1.13.09,2.62.2,4.19.27,4.32.56,8.78-.53,11.29A2,2,0,0,1,571.72,163.53Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M539.56,163a2,2,0,0,1-2-2c0-2.26.07-5.12.16-8.15s.18-5.88.18-8.46c0-15.6.34-31.5.67-46.88.29-13.41.59-27.28.66-40.86a2,2,0,0,1,2-2,2,2,0,0,1,2,2c-.07,13.62-.37,27.5-.66,40.93-.33,15.35-.67,31.23-.67,46.79,0,2.65-.09,5.66-.18,8.58s-.17,5.81-.16,8a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M541.22,58.66a2,2,0,0,1-.71-3.87c4.15-1.57,11.15-2.13,15.88-2.13l2.68,0c1.82,0,3.7,0,5.56,0l1.16,0c2.24,0,5,.1,7.28,1.15a2,2,0,0,1-1.69,3.63c-1.49-.7-3.81-.74-5.67-.78l-1.23,0c-1.76-.07-3.59,0-5.36,0l-2.73,0c-4.74,0-11,.58-14.46,1.87A2,2,0,0,1,541.22,58.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M349.32,164.65a2,2,0,0,1-2-2c0-2.53-.23-5.64-.47-8.93a109,109,0,0,1-.47-12.06c.3-6.31.37-12.8.45-19.08.08-7.08.17-14.41.57-21.53.67-11.67,1-24.95,1-38.38a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.51-.33,26.87-1,38.62-.4,7-.48,14.31-.57,21.35-.07,6.31-.15,12.84-.45,19.22a106.6,106.6,0,0,0,.47,11.58c.25,3.37.48,6.55.48,9.23A2,2,0,0,1,349.32,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M331.39,162.32a2,2,0,0,1-2-2c0-2.48.08-4.95.17-7.34s.17-4.86.17-7.34v-7.95c0-21.92,0-44.58-1-66.78,0-.3,0-.64-.06-1-.18-2.67-.39-6,1.21-7.89,3.21-3.79,10.28-2.74,16-1.9a38.76,38.76,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.57-12.32.53-.56.66-.35,3.84-.27,5,0,.39,0,.75.06,1.07,1,22.29,1,45,1,67v7.95c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.2A2,2,0,0,1,331.39,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M326.06,163a2,2,0,0,1-2-2.34c.7-4.06.59-9.38.47-14.52a107.94,107.94,0,0,1,.16-11.92c1.92-20.09,1.73-41.21,1.55-61.62-.05-5.92-.11-12-.11-18a2,2,0,0,1,4,0c0,5.92.05,12,.11,17.95.18,20.52.37,41.74-1.57,62a103.64,103.64,0,0,0-.14,11.45c.12,5.33.24,10.84-.53,15.29A2,2,0,0,1,326.06,163Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M321.39,56.92c-2.51,0-5.12-.08-7.69-.17-2.36-.08-4.59-.15-6.59-.15h0a2,2,0,1,1,0-4c2.07,0,4.33.07,6.72.15a105.3,105.3,0,0,0,14.1-.14,2,2,0,1,1,.46,4A62.65,62.65,0,0,1,321.39,56.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M304.06,164.65a2,2,0,0,1-2-2.35,169,169,0,0,0,1.64-19.07c1.34-28.56,1.34-55.68,1.33-84.4V54.61a2,2,0,0,1,4,0v4.22c0,28.77,0,55.94-1.34,84.59A172.17,172.17,0,0,1,306,163,2,2,0,0,1,304.06,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M294.72,71.48a2,2,0,0,1-.5-3.94c3-.76,9.27-1,12.21-1a2,2,0,0,1,2,2,2,2,0,0,1-2,2h0c-3.09,0-8.84.23-11.21.84A2,2,0,0,1,294.72,71.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M293.72,164.65a2,2,0,0,1-1.83-2.8c.82-1.89.66-8.07.56-11.76,0-1.24-.06-2.36-.06-3.25,0-15.17.08-30.62.17-45.56s.17-30.42.17-45.62a2,2,0,0,1,4,0c0,15.21-.08,30.68-.17,45.64s-.17,30.38-.17,45.54c0,.86,0,1.95.06,3.15.16,6.1.19,11-.89,13.45A2,2,0,0,1,293.72,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M262.06,163a2,2,0,0,1-2-2c0-2.26.07-5.12.16-8.15s.18-5.88.18-8.46c0-15.6.34-31.5.68-46.88.29-13.41.59-27.28.66-40.86a2,2,0,0,1,4,0c-.07,13.62-.37,27.5-.66,40.93-.33,15.35-.67,31.23-.67,46.79,0,2.65-.09,5.66-.18,8.58s-.17,5.81-.16,8a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M263.72,58.66a2,2,0,0,1-.71-3.87c4.15-1.57,11.14-2.13,15.87-2.13l2.68,0c1.82,0,3.7,0,5.56,0l1.16,0c2.24,0,5,.1,7.28,1.15a2,2,0,1,1-1.69,3.63c-1.49-.7-3.81-.74-5.67-.78l-1.23,0c-1.76-.07-3.59,0-5.36,0l-2.73,0c-4.74,0-11,.58-14.46,1.87A2,2,0,0,1,263.72,58.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M526.22,162.32a2,2,0,0,1-1.2-3.6c.67-.5,1.5-1.17,2.37-1.89,3.18-2.6,7.14-5.84,10.45-6.47a2,2,0,1,1,.75,3.93c-2.32.44-6,3.45-8.67,5.64-.91.75-1.77,1.45-2.51,2A2,2,0,0,1,526.22,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M537.89,152a2,2,0,0,1-1.94-1.52c-2.45-9.89-8.79-18.71-14.92-27.24-2-2.72-4-5.54-5.81-8.31-4-6-7.85-12.14-11.61-18.09-4.54-7.18-9.24-14.61-14-21.73-.43-.63-.86-1.24-1.28-1.84a32.83,32.83,0,0,1-3.65-6.06,25,25,0,0,0-3.51-6.14A2,2,0,1,1,484,58.26c1.92,2,3.8,6.13,4.32,7.35a29.37,29.37,0,0,0,3.24,5.33c.44.62.89,1.25,1.33,1.91C497.72,80,502.43,87.48,507,94.68c3.76,5.94,7.64,12.08,11.57,18,1.79,2.71,3.7,5.37,5.72,8.19,6.35,8.84,12.91,18,15.55,28.61a2,2,0,0,1-1.46,2.42A2,2,0,0,1,537.89,152Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M469.56,71a2,2,0,0,1-1.49-3.33c2.79-3.12,6.43-5.35,10-7.51,1.2-.74,2.33-1.43,3.43-2.16a2,2,0,0,1,2.21,3.34c-1.16.77-2.37,1.51-3.55,2.23-3.28,2-6.66,4.08-9.06,6.77A2,2,0,0,1,469.56,71Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M525.22,163.32a2,2,0,0,1-1.91-1.42c-.52-1.73-2.08-3.44-3.58-5.09a35.82,35.82,0,0,1-2.45-2.89c-2.46-3.36-4.63-6.91-6.74-10.34l-3.35-5.48c-3.07-5-6.25-10.23-9.49-15.35A412.58,412.58,0,0,1,476,83.94c-.39-.8-.78-1.63-1.18-2.47-1.92-4.07-3.91-8.27-6.69-11.07A2,2,0,1,1,471,67.58c3.26,3.29,5.5,8,7.47,12.18.39.83.78,1.64,1.16,2.42a408.43,408.43,0,0,0,21.47,38.44c3.26,5.14,6.44,10.36,9.53,15.4L514,141.5c2.06,3.37,4.19,6.85,6.55,10.07a32.68,32.68,0,0,0,2.18,2.56c1.8,2,3.67,4,4.45,6.62a2,2,0,0,1-1.92,2.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M175.8,162.31a2,2,0,0,1-.76-3.85c.77-.31,1.74-.76,2.77-1.23,3.73-1.72,8.37-3.86,11.74-3.64a2,2,0,1,1-.26,4c-2.35-.14-6.66,1.83-9.81,3.28-1.07.49-2.08,1-2.93,1.31A2,2,0,0,1,175.8,162.31Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M189.68,155.24h0a2,2,0,0,1-2-2c.11-10.19-3.81-20.32-7.59-30.11-1.21-3.13-2.46-6.36-3.54-9.51-2.32-6.79-4.55-13.73-6.7-20.44-2.59-8.09-5.27-16.45-8.13-24.55-.25-.72-.52-1.41-.78-2.1a32.89,32.89,0,0,1-2-6.78,25,25,0,0,0-1.86-6.83,2,2,0,1,1,3.47-2c1.37,2.39,2.13,6.89,2.34,8.2a29.35,29.35,0,0,0,1.8,6c.27.71.54,1.43.81,2.18,2.88,8.16,5.57,16.55,8.17,24.67,2.14,6.69,4.36,13.62,6.67,20.36,1.05,3.07,2.23,6.13,3.48,9.36,3.92,10.15,8,20.64,7.86,31.6A2,2,0,0,1,189.68,155.24Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M143.89,59.67A2,2,0,0,1,142.78,56c3.49-2.32,7.57-3.56,11.52-4.77,1.35-.41,2.62-.8,3.86-1.23a2,2,0,0,1,1.3,3.78c-1.31.45-2.67.87-4,1.27-3.68,1.12-7.48,2.28-10.48,4.27A2,2,0,0,1,143.89,59.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M174.57,163a2,2,0,0,1-2-1.92c-.07-1.8-1.15-3.85-2.19-5.82a35.88,35.88,0,0,1-1.65-3.41C167.21,148,166,144,164.83,140.2L163,134.1c-1.72-5.67-3.49-11.52-5.35-17.31a412.5,412.5,0,0,1-11.24-43c-.18-.87-.35-1.78-.52-2.69-.84-4.42-1.71-9-3.7-12.4a2,2,0,1,1,3.46-2c2.33,4,3.31,9.14,4.17,13.66.17.9.34,1.78.51,2.64a408.42,408.42,0,0,0,11.13,42.6c1.87,5.82,3.65,11.69,5.37,17.37l1.85,6.09c1.15,3.77,2.33,7.66,3.81,11.36a32.7,32.7,0,0,0,1.47,3c1.25,2.37,2.54,4.82,2.65,7.53a2,2,0,0,1-1.92,2.08Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M469.22,163.85h-.09a2,2,0,0,1-1.91-2.09c.51-11.39.62-19.78.34-25.67-.77-16.11-.72-32.88-.67-49.1,0-13.22.08-26.89-.33-40a2,2,0,0,1,4-.13c.41,13.13.37,26.84.33,40.09,0,16.17-.1,32.9.67,48.9.29,6,.17,14.53-.34,26A2,2,0,0,1,469.22,163.85Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M455.89,164.13a2,2,0,0,1-2-2V137.82c0-5.58.21-11.22.42-16.68.3-8,.61-16.27.25-24.37-.34-7.72-.34-15.63-.34-23.28V71.32c0-2.12-.07-4.46-.14-6.94a129.62,129.62,0,0,1,.29-17.58,2,2,0,1,1,4,.46,127,127,0,0,0-.26,17c.07,2.51.14,4.87.14,7.05v2.16c0,7.61,0,15.47.33,23.1.37,8.26.05,16.62-.25,24.7-.2,5.42-.41,11-.41,16.53v24.31A2,2,0,0,1,455.89,164.13Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M438.72,80a2,2,0,0,1-.79-3.84c3.45-1.47,9.57-1.25,14.49-1.07,1.35,0,2.62.1,3.61.1a2,2,0,0,1,0,4c-1.07,0-2.38,0-3.76-.1-4.28-.16-10.15-.37-12.77.75A2,2,0,0,1,438.72,80Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M440.47,164.13a2,2,0,0,1-2-2V148.68c0-11.78-.44-23.72-.87-35.26s-.88-23.59-.87-35.43a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,11.76.44,23.71.87,35.28s.88,23.56.88,35.41v13.45A2,2,0,0,1,440.47,164.13Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M433,164.28a2,2,0,0,1-2-2V152c0-9.67.09-19.68.19-29.35s.19-19.75.19-29.49a2,2,0,0,1,4,0c0,9.76-.1,19.81-.19,29.53S435,142.32,435,152v10.31A2,2,0,0,1,433,164.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M399.1,95.25c-1.5,0-3.07-.11-3.08-2l2,0v-2h1.37c16.41-.09,27.84-.13,34-.13a2,2,0,1,1,0,4c-6.11,0-17.53,0-33.94.13Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M399.22,164.65a2,2,0,0,1-2-2c0-10.34-.4-24.44-1-35.1-.49-8.79-.39-18-.28-26.87,0-2.5.06-5,.07-7.43a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,2.45,0,4.94-.07,7.45-.1,8.82-.21,18,.28,26.6.6,10.72,1,24.92,1,35.32A2,2,0,0,1,399.22,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M395,163.53h0a2,2,0,0,1-2-2l0-1.28c.06-4.91.16-13.14.39-17.83.37-7.49,0-15.16-.28-22.58-.22-5.11-.45-10.39-.45-15.59,0-6.31-.06-13.12-.12-19.7s-.12-13.44-.12-19.79a2,2,0,1,1,4,0c0,6.33.06,13.16.13,19.76s.13,13.41.13,19.74c0,5.12.23,10.35.45,15.42.33,7.51.66,15.28.28,22.95-.23,4.61-.33,12.79-.39,17.68l0,1.28A2,2,0,0,1,395,163.53Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M354.22,67a2,2,0,0,1,0-4c2.48,0,4.91-.19,7.26-.38,2-.16,4-.32,6.06-.37,5-.13,9.83.07,13.53.26,2.42.13,10.07.23,13.41.23a2,2,0,0,1,0,4c-3,0-11-.1-13.62-.24-3.62-.19-8.39-.39-13.22-.26-2,.05-3.85.2-5.84.36C359.37,66.79,356.87,67,354.22,67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M355.5,164.65a2,2,0,0,1-2-2c0-2.37-.2-7.26-.39-12s-.39-9.7-.39-12.15c0-12.37-.19-24.84-.37-36.89S352,77.1,352,64.74a2,2,0,1,1,4,0c0,12.33.19,24.77.37,36.81s.38,24.55.38,37c0,2.37.2,7.26.39,12s.39,9.7.39,12.15A2,2,0,0,1,355.5,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M262.56,84.32a2,2,0,0,1-.87-.2c-1.92-.93-7-1.28-8.9-.34A2,2,0,1,1,251,80.2c3.07-1.54,9.51-1.1,12.44.32a2,2,0,0,1-.88,3.8Z" transform="translate(-53.25 -44.96)"/></g></g><g id="COLOR-2" data-name="COLOR"><path class="cls-7" d="M348.43,470c-2.63-1-6-1-8.83-1.21-4.22-.38-8.44-.52-12.67-.62-8.68-.21-17.29.23-25.92-.82a58.42,58.42,0,0,0-15.84.35c-4.32.6-8.71,1.09-13,1.84-6.7,1.17-13.45,1.86-20.12,3.25-5.91,1.24-11.79,2.64-17.71,3.83-2.56.52-5.13,1-7.69,1.49-.88.18-3.73.26-4.27,1.08-.74,1.11.42,4.52.63,5.75.67,3.87,1.55,8,3.4,11.51A140.8,140.8,0,0,0,234,508.57c2.85,4.25,4.81,8.24,8.61,11.85a50.38,50.38,0,0,0,12.91,9.06c6.17,2.86,13.11,5.65,19.89,6.31a85.31,85.31,0,0,0,14-.13c2.73-.16,5.46-.65,8.16-1a122,122,0,0,0,14.46-3.5,36.34,36.34,0,0,0,12.24-5.8c7-5.16,12.12-12.82,17.1-19.83a60,60,0,0,0,3.33-5.67,39.58,39.58,0,0,0,2.58-6.66c1.62-4.58,1.84-9.14,2.88-13.77C350.78,476.48,352.27,471.49,348.43,470Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M272.5,468.5c-.55,7,4.53,14,11.81,14,7.66,0,11.95-7.38,12.41-14-3.09-.42-7.19,1.21-10.45,1.23A57.65,57.65,0,0,1,272.5,468.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M290.26,472c-3.34-.13-4.94,3.06-.58,2.67,2.51-.23,5.53-3,1.25-2.83" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M566,470c-2.63-1-6-1-8.83-1.21-4.22-.38-8.44-.52-12.67-.62-8.68-.21-17.29.23-25.92-.82-18.38-2.22-37,.43-55,4.19C455.38,473.24,447,474.6,439,477a22.34,22.34,0,0,0,.84,6.53c.75,3.28,1.14,6.75,2.57,9.82a112.66,112.66,0,0,0,9.11,15.2c2.85,4.25,4.81,8.24,8.61,11.85a50.38,50.38,0,0,0,12.91,9.06c6.17,2.86,13.11,5.65,19.89,6.31a64.13,64.13,0,0,0,22.71-1.38c6.84-1.83,14-4,19.51-8.59,4.69-4,10.07-7.07,14.29-11.55,2.36-2.51,5.09-4.83,7-7.72,2.46-3.72,4-8,5.56-12.17s3.3-8,4.88-12C567.68,480.36,570.64,471.62,566,470Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M492.5,468.5c.12,7,6.16,13.3,13.38,12.25A15.38,15.38,0,0,0,516,474.18a10,10,0,0,0,1.8-4.45c.18-2.63-.45-2.46-2.81-2.49-3.94,0-7.84-.25-11.77-.25C500.19,467,495.9,466.38,492.5,468.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-32" d="M315,336.21c-3.66-2.95-5.67-7.23-9.3-10.61a61.08,61.08,0,0,0-13.44-9.16c-13.63-7.12-22.83,11.34-15.79,22.31,1.81,2.82,3.9,6.21,5.88,8.72,2.17,2.76,5.2,4.37,6.55,7.9-5.6,3.14-9.54,8.71-14,13.22-4.26,4.27-9.21,8.45-12.54,13.52-6,9.16-8.62,20.26-12.72,30.3-1.67,4.08-3.53,7.71-4.1,11.93.88-.56,2.17-.79,3-1.35-.69,6.27-5.62,4.49-9.37,9.14A81.54,81.54,0,0,0,230,445.5c-2.49,4.82-4,10.2-5.38,15.5a42.67,42.67,0,0,0-1.63,8c-.08,1.43.32,3.13,0,4.52-.24,1.12-2,1.94-2,3,0,5,1.76,2.87,5,2.16,4.82-1.05,9.7-2.48,14.66-3.53,11.74-2.48,23.52-5.57,35.38-7.38,13-2,26.14-1.74,39.38-1.74a121.68,121.68,0,0,1,18.1,1.38c4,.58,8.63-.25,12.5.62,13.48,3.05-4.54,36.54-8,41.74-3.59,5.43-8.81,10.7-13.66,15.14-17.42,16-52.62,19.6-71.13,3.4-3.87-3.39-8.18-6.07-11.48-10-2.56-3.09-4.87-7.49-8.66-8.7-.2,5.41-2.39,12.29-1.1,17.24,1.24,4.78,4.77,10.72,8.52,13.7,10.08,8,23.71,10.68,36.14,12.46,6.95,1,13.36,3.11,19.89,5.3,6.29,2.11,12.84,2.16,19.22,3.75a129.87,129.87,0,0,0,18.63,3.61c19.63,2,38.31,8.92,58.11,10.9,8.06.81,17.29-3,25-5,9.67-2.49,19.64-3.34,29.46-5s19.43-3,29-5c26.08-5.38,52.67-10.58,77.5-20.36,5.66-2.23,6-3,6-9.14,0-4.5.11-9,0-13.5s-.23-9.77-2.39-13.45c-6.66,16.31-24.6,27.61-42.11,29-16.18,1.25-40.74-.14-53-12.53C454.77,514.15,449.39,505,444.5,496c-2.2-4.06-7.86-16-5-20.76,1.8-3,11.67-2,15.14-2.34,7.56-.73,15.16-1.67,22.75-2.42,14.61-1.43,29.36-3.19,44-3.86a166.26,166.26,0,0,1,29.35.78c5.67.76,11.27,2,17,1.57-1.84-6.64-3.32-13.49-5.52-20.14-1.83-5.55-6.93-10.4-10.44-14.94-2.31-3-5.15-5.56-6.5-9.25-1.09-3-.88-6.4-1.87-9.51a106,106,0,0,0-8.23-18.77c-6.24-11.45-12-22.6-21.15-32-2.26-2.33-4.65-4.29-6.76-6.75a20.87,20.87,0,0,0-6.1-5.09c-.54-.29-2.94-1.07-3.1-1.77-.65-3,6.25-6.28,8.11-7.71a21,21,0,0,0,7.09-11.23c1.46-5.57.17-8.86-3.45-13.25s-8.49-6-14.18-6c-6.75,0-10.71,3.57-15.28,8.09a24.4,24.4,0,0,0-5.5,7.9c-1.46,3.52-2.07,7.25-3.21,10.66-1.59-.87-2.6-2.55-4.12-3.59a27,27,0,0,0-8.5-3.24c-4.63-1.12-9.44-1.34-14.09-2.34-4.33-.94-8.63-2.49-12.93-3.73-5.4-1.57-10.35-1.59-16-1.59-12.77,0-25.3.87-38,2-12.39,1.1-25.51,1.3-37.58,4.33a122.83,122.83,0,0,0-13.36,3.92c-2.8,1.05-7.43,1.34-9.43,3A14.6,14.6,0,0,1,315,336.21Z" transform="translate(-53.25 -44.96)"/><path class="cls-32" d="M229.13,623.25c.89,1.17,1.92,3.92,2.74,4.87,1.3,1.5,2.83,2.79,4.21,4.21a82.17,82.17,0,0,1,6.68,7.93c3.71,4.95,4.32,10.93-.5,15.32-5.63,5.12-13.27,6-20.58,4.77-5.58-.92-8.09-4.39-12-8-2.89-2.68-6.07-4.7-8.76-7.58-3.41-3.66-6.39-7.37-2.9-11.67,3.77-4.65,10.31-6.32,15.92-7.45,3.29-.66,11.72-4.79,14.75-2.82A1.88,1.88,0,0,1,229.13,623.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-32" d="M566,624.33c-4.5,5.82-7.4,11.21-12.83,16.15s-4.81,10.93-.67,16.68c4.66,6.47,17.4,5.51,23.58,2.74,9-4,18.16-10.94,22.66-20,1.53-3.07,1.13-2.81-1.62-4.79a69.33,69.33,0,0,0-9.77-5.8C581.45,626.37,576.32,625,566,624.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-10" d="M383.12,470.36c-4.4,2-11.06,9.12-12.45,14-2.15,7.44,4.66,10.07,10.72,8.56,4.63-1.15,8.94-3.74,13.79-4,2.3-.1,4.26.7,6.41,1.39,2.45.79,4.77,1.95,7.27,2.57,6.06,1.51,12.87-1.12,10.72-8.56-1.39-4.83-8.05-12-12.45-14" transform="translate(-53.25 -44.96)"/><path class="cls-9" d="M393.83,462.79a18.23,18.23,0,0,0-7.35,2.06c-2.93,1.7-5.13,5.48-1.36,7.86,4.51,2.85,16.6,2.72,20.71-.84,2.88-2.49,2.1-6.25-1.3-7.7A23.59,23.59,0,0,0,393.83,462.79Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M401,490.33c-2.85-1.27-7.34-1.63-10.46-1.34-3.28.31-3.21,2.87-3.58,5.87-.26,2.07-.66,8.48,1.53,9.5,1.47.69,4.55-.06,6.26.11a15.56,15.56,0,0,0,4.83,0C405,503.31,401.23,493.16,401,490.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M510.83,472c-3.34-.13-4.94,3.06-.58,2.67,2.51-.23,5.53-3,1.25-2.83" transform="translate(-53.25 -44.96)"/><path class="cls-33" d="M560.91,668.12c0-1.84.56-4.94-.4-6.62-.74-1.31-2.44-1.5-3.69-2.11a11.57,11.57,0,0,1-5.08-4.89c-3.75-7-.4-12.58,4.49-17.77,2.1-2.22,3.94-4.35,4.32-7.5s-.31-6-.36-9.07c0-1.58.14-3.18.11-4.74,0-.78.26-3.69,0-4.24,1.45,2.88,3.64,5.18,4.62,8.42,1.32,4.38,4,4.19,8,4.76a92.15,92.15,0,0,1,10.5,2c6.07,1.61,14.06,4.53,15.75,11.39.41,1.66,3.47-2.07,3.74-2.9.66-2,.46-4.22.45-6.28,1.23-.16,2.15-1.09,3.38-1.17-.9-1-1.73-2.52-2.91-3.44,1.84-2.05,1.58-3.31-.38-4.65-2.17-1.48-1.34-2.76-1.65-5.3a39.1,39.1,0,0,0-1.89-7.92,58.56,58.56,0,0,0-7.94-14.85c-3.7-5.19-8.79-9.52-13.92-13.24a68.21,68.21,0,0,0-8.86-5.52c-2.45-1.26-6.23-2-8-4.15,1.08-2.54,1.48-5.31,2.46-7.89a13,13,0,0,0,.91-6.71,37.36,37.36,0,0,0-2.8-9c-.76-1.89-1.17-4.3-3.42-4.9-3.36-.9-7.19,2.16-10.17,3.27q-6.93,2.58-14,4.84c-9.38,3-18.89,5.63-28.46,8-25,6.06-50.38,10.09-75.76,14q-11,1.71-22,3.82a57.18,57.18,0,0,0-8.85,2.39c-2.64,1-5.4-.68-8-1.22q-4.67-1-9.35-1.84-9.24-1.73-18.54-3.16c-24.86-3.85-49.68-8.14-74.12-14.14-10.36-2.54-20.65-5.39-30.81-8.66q-7.54-2.43-15-5.18c-2.45-.91-4.91-1.84-7.33-2.83-1.74-.7-3.09-2.28-4.29-.4s-1.61,5.42-2.17,7.66c-1.09,4.37-2.51,9.25-1.29,13.74.72,2.67,3.45,6.2,2.49,9.08-.55,1.66-2.06,1.46-3.53,2.05a37.62,37.62,0,0,0-5.61,2.95,64.39,64.39,0,0,0-18.26,17,58.28,58.28,0,0,0-8,15.09,43.9,43.9,0,0,0-1.84,7.89c-.32,2.28-.07,3.79-1.86,5.29-.72.61-1.35.41-1.48,1.66a4.11,4.11,0,0,0,1.34,2.8c-1.18.92-2,2.49-2.91,3.44,1.24.08,2.16,1,3.38,1.17,0,2.42-.47,5.93,1.21,7.94,1,1.19,2.81,2.33,4,.82s.55-3.19,1.91-4.66c2.44-2.64,6.15-4.18,9.48-5.31a79.51,79.51,0,0,1,14.05-3c3.79-.56,6.63-.61,8.16-4.4.54-1.34,1.66-4.24,2.9-5,1.16,2.17,1.1,4.83,1.3,7.21.32,3.8-.19,8.6,1.75,12,1.64,2.89,4.65,4.7,6.43,7.48a12,12,0,0,1,.35,12.77,10,10,0,0,1-4.13,4.33c-1.71.78-3.68,1.13-3.61,3.32,0,.91.52,1.9.56,2.88.07,1.64,0,3.29.05,4.93.1,8.11.25,15.62-1,23.45-1.39,8.62,2.78,7.83,9.13,11.09,7.41,3.81,14.76,8.81,22.48,11.89,9.71,3.87,21.29,5.47,31.42,8,7.78,1.95,15.39,4.44,23.07,6.74,20.13,6,39.23,12.91,60.46,9.87,29.79-4.26,60-3.23,89.34-10.76,19.65-5,39.24-8.93,58.6-15.13A117.05,117.05,0,0,0,546.43,708c4-2,12.41-4,14.5-8.19,1.47-2.92.11-8.2.07-11.39C560.92,681.63,561,674.88,560.91,668.12Z" transform="translate(-53.25 -44.96)"/><path class="cls-34" d="M399.75,580.86a69.12,69.12,0,0,1,4.48,10.28c.68,1.78,2.41,4.44,2.53,6.3s.46.9-.88,2c-1.09.92-2.07.55-2.95,2a9.39,9.39,0,0,0-.79,3.94,31.94,31.94,0,0,0,.66,8.16c2.37,12.11,1.73,25.25,2.94,37.65.76,7.85,2.22,15,2.26,23.06,0,5.48,3.54,12.13,1.26,17.11-3.09,6.74-8.66,12-13.07,17.81-2.64-1.83-4-6.26-6.06-8.84-2.42-3-5.46-10.59-9.34-11.43-.36-3.59.56-7.58.71-11.2.51-12.06,2.79-23.94,4.6-35.84,1.73-11.41,2.17-22.8,3.15-34.23.11-1.34.63-3.71.2-4.94-1.13-3.26-3.19-4.05-2.63-7.94.47-3.31,2.83-6.07,4.74-8.68C393.71,583.2,396.57,575.41,399.75,580.86Z" transform="translate(-53.25 -44.96)"/></g><g id="LIGHTS"><g class="cls-35"><path class="cls-7" d="M552.25,251c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C552.94,253.89,553,252.63,552.25,251Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M543.3,134.37c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C544,137.27,544,136,543.3,134.37Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M467.29,196.29c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C468,199.18,468,197.91,467.29,196.29Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M664,239.37c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C664.73,242.26,664.78,241,664,239.37Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M395.2,206.7c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C395.9,209.6,396,208.33,395.2,206.7Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M490.21,264.49c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C490.91,267.38,491,266.11,490.21,264.49Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M503.78,95.86c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C504.48,98.75,504.53,97.48,503.78,95.86Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M681.87,531.06c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C682.56,534,682.62,532.68,681.87,531.06Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M149,482.09c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C149.72,485,149.78,483.72,149,482.09Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M633.27,482.86c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C634,485.75,634,484.48,633.27,482.86Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M179.43,517.52c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C180.13,520.42,180.18,519.15,179.43,517.52Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M165.19,633c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C165.88,635.94,165.93,634.67,165.19,633Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M187.74,639.86c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C188.44,642.75,188.49,641.48,187.74,639.86Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M145.49,539.88c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C146.19,542.78,146.24,541.51,145.49,539.88Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M657.92,563.36c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C658.61,566.25,658.67,565,657.92,563.36Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M587.59,553c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36A5.15,5.15,0,0,1,589.4,557C588.28,555.89,588.34,554.63,587.59,553Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M335.84,215.69c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C336.53,218.59,336.58,217.32,335.84,215.69Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M427.19,90.19c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36A5.15,5.15,0,0,1,429,94.19C427.89,93.09,427.94,91.82,427.19,90.19Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M225.82,231.69c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C226.52,234.59,226.57,233.32,225.82,231.69Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M359.42,266.65c0,1.12,0,1.64-1,2.18.29.35.79.57,1,1s.11,1,.25,1.43c0-.73.42-2.57,1.23-2.85a1.76,1.76,0,0,1-.9-.43C359.65,267.64,359.67,267.21,359.42,266.65Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M339.39,141c0,1.12,0,1.64-1,2.18.29.35.79.57,1,1s.11,1,.25,1.43c0-.73.42-2.57,1.23-2.85a1.76,1.76,0,0,1-.9-.43C339.63,142,339.65,141.57,339.39,141Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M363.07,260.66c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C363.48,262.38,363.51,261.62,363.07,260.66Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M345.15,131.25c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C345.56,133,345.59,132.21,345.15,131.25Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M662.2,258.7c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C662.61,260.41,662.64,259.66,662.2,258.7Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M182.29,542.66c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C182.71,544.37,182.74,543.62,182.29,542.66Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M220.61,677.2c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C221,678.91,221.05,678.16,220.61,677.2Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M116.86,539.75c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C117.27,541.47,117.3,540.71,116.86,539.75Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M669.88,245.85c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C670.29,247.56,670.32,246.81,669.88,245.85Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M592.3,133.64c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C592.71,135.35,592.74,134.6,592.3,133.64Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M99.4,519.52c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C99.81,521.23,99.85,520.48,99.4,519.52Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M629.94,495.14c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C630.35,496.85,630.38,496.1,629.94,495.14Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M578.78,209.48c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C579.19,211.2,579.22,210.45,578.78,209.48Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M498.53,87.64c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95A3,3,0,0,1,499.6,90C498.94,89.35,499,88.6,498.53,87.64Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M621.17,210.72c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C621.58,212.43,621.61,211.68,621.17,210.72Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M129.34,220.08c0,1.12,0,1.64-1,2.18.29.35.79.57,1,1s.11,1,.25,1.43c0-.73.42-2.57,1.23-2.85a1.76,1.76,0,0,1-.9-.43C129.57,221.07,129.59,220.63,129.34,220.08Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M133,214.09c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C133.4,215.8,133.43,215.05,133,214.09Z" transform="translate(-53.25 -44.96)"/></g></g><g id="DETAILS-2" data-name="DETAILS"><path class="cls-24" d="M479.33,333.67a1,1,0,0,1-.92-1.38c.22-.54.45-1.1.66-1.64a1,1,0,1,1,1.87.72c-.22.56-.45,1.13-.68,1.69A1,1,0,0,1,479.33,333.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M480.33,337a1,1,0,0,1-.38-1.93.65.65,0,0,0,.39-.55,1,1,0,1,1,2,.29,2.62,2.62,0,0,1-1.61,2.11A1,1,0,0,1,480.33,337Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M483.67,332l-.2,0a1,1,0,0,1-.79-1.18,5.48,5.48,0,0,1,1.22-2.46,1,1,0,0,1,1.52,1.31,3.46,3.46,0,0,0-.78,1.54A1,1,0,0,1,483.67,332Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M483,327.67h-.08a1,1,0,0,1-.91-1.08,2.65,2.65,0,0,1,1.54-2.14,1,1,0,1,1,.92,1.78c-.44.23-.46.45-.46.53A1,1,0,0,1,483,327.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M307,335a1,1,0,0,1-.48-.12,4.52,4.52,0,0,1-1.72-1.72,1,1,0,0,1,1.74-1,2.54,2.54,0,0,0,.94,1A1,1,0,0,1,307,335Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M308.67,340.67a1,1,0,0,1-.7-.29,4.44,4.44,0,0,1-1.27-2.15,1,1,0,0,1,1.95-.46,2.52,2.52,0,0,0,.73,1.18,1,1,0,0,1-.7,1.71Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M304,338.67a1,1,0,0,1-.72-.31,5.2,5.2,0,0,1-1.23-2.05,1,1,0,1,1,1.9-.62,3.2,3.2,0,0,0,.77,1.28,1,1,0,0,1-.72,1.69Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M302,330.33a1,1,0,0,1-.69-.28,17,17,0,0,1-2.12-2.48,1,1,0,1,1,1.64-1.15,15,15,0,0,0,1.88,2.19,1,1,0,0,1-.69,1.72Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M261.67,463.67a1,1,0,0,1-.19-2,210.85,210.85,0,0,1,41.19-4,1,1,0,1,1,0,2,208.87,208.87,0,0,0-40.81,4Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M491.33,461.33a1,1,0,0,1-.46-1.89c3.49-1.78,8.65-1.75,13.18-1.72,1.59,0,3.08,0,4.39-.05l.44,0c4.21-.22,9-.48,13,.38a1,1,0,0,1-.42,2c-3.75-.8-8.37-.55-12.46-.34l-.45,0c-1.36.07-2.89.06-4.5.05-4.32,0-9.21-.05-12.27,1.5A1,1,0,0,1,491.33,461.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M394,506.5a1.5,1.5,0,0,1-1.5-1.5V489.67a1.5,1.5,0,0,1,3,0V505A1.5,1.5,0,0,1,394,506.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M397,686.67h-.14a1,1,0,0,1-.85-1.13,6,6,0,0,1,1.2-2.81,1,1,0,1,1,1.58,1.23,4.05,4.05,0,0,0-.8,1.86A1,1,0,0,1,397,686.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M398.67,689a1,1,0,0,1-1-.89,1.25,1.25,0,0,1,1.43-1.43,1.25,1.25,0,0,1-.33,2.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M372,601a1,1,0,0,1-.35-.06,1.67,1.67,0,0,1-.94-2.23A1.39,1.39,0,1,1,372,601Zm.6-1.6Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M374.67,599.33a1,1,0,0,1-.65-.24,4,4,0,0,1-1.33-2.22,1,1,0,0,1,2-.42,2,2,0,0,0,.67,1.11,1,1,0,0,1-.65,1.76Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M420.67,598a1,1,0,0,1-1-1v-3a1,1,0,0,1,2,0v3A1,1,0,0,1,420.67,598Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M192,626.33a1,1,0,0,1-.71-1.7c3.28-3.33,12-4.81,15.58-5.29a1,1,0,0,1,.27,2c-5.45.73-12.1,2.35-14.42,4.71A1,1,0,0,1,192,626.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M193,630a1,1,0,0,1-.43-1.9,27.69,27.69,0,0,1,3.3-.75,1,1,0,1,1,.24,2c-.68.08-2.55.55-2.81.63A1,1,0,0,1,193,630Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M604.33,629.33l-.21,0a21,21,0,0,1-5-2,21.42,21.42,0,0,0-4.71-2,47.68,47.68,0,0,0-12-1.64h0a1,1,0,0,1,0-2,49.77,49.77,0,0,1,12.52,1.69,22.92,22.92,0,0,1,5.16,2.12,19.2,19.2,0,0,0,4.55,1.87,1,1,0,0,1-.21,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M605.67,625.67h0a18.9,18.9,0,0,1-5-1.06,14,14,0,0,0-5.2-.94,1,1,0,0,1-1.08-.91,1,1,0,0,1,.91-1.08,15.42,15.42,0,0,1,6,1,17.07,17.07,0,0,0,4.49,1,1,1,0,0,1,0,2Z" transform="translate(-53.25 -44.96)"/></g><g id="LINEART"><path class="cls-24" d="M561,701a2.5,2.5,0,0,1-2.5-2.5V684.63c0-7-.05-14.7-.17-23.48a2.5,2.5,0,1,1,5-.06c.11,8.8.17,16.5.17,23.54V698.5A2.5,2.5,0,0,1,561,701Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M560.38,634.64a2.5,2.5,0,0,1-2.5-2.46c-.25-14.88-.48-30.71-.42-46.42,0-7.15,0-13.43,0-19.2a2.5,2.5,0,0,1,2.49-2.51h0a2.5,2.5,0,0,1,2.5,2.49c0,5.78,0,12.08,0,19.24-.07,15.65.17,31.46.42,46.31a2.5,2.5,0,0,1-2.46,2.54Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M559.63,541.5a2.5,2.5,0,0,1-2.5-2.44c-.29-12.49-.76-23.82-1.45-34.65a2.5,2.5,0,0,1,5-.31c.68,10.89,1.16,22.29,1.45,34.84a2.5,2.5,0,0,1-2.44,2.56Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M547.24,430.29a2.5,2.5,0,0,1-2.4-1.8q-.26-.9-.53-1.8c-5.82-19.3-15-43.91-34.51-63.11-13.58-13.36-32.91-23.48-57.45-30.09-6.15-1.65-11.36-2.85-16-3.66-17.78-3.15-36.76-2.18-55.12-1.24-4,.21-8.05.41-12,.57-35.32,1.43-66.4,13.65-87.49,34.41-19.51,19.2-28.69,43.81-34.51,63.11a2.5,2.5,0,1,1-4.79-1.44c6-19.87,15.47-45.24,35.79-65.23,22-21.63,54.23-34.36,90.8-35.84,4-.16,8-.37,12-.57,18.64-1,37.91-1.94,56.25,1.31,4.74.84,10.1,2.07,16.38,3.76C479,335.49,499.11,346,513.31,360c20.32,20,29.8,45.36,35.79,65.23q.28.92.55,1.85a2.5,2.5,0,0,1-2.4,3.2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M232,540h0a2.5,2.5,0,0,1-2.46-2.54c.17-9.84.55-19.7,1.1-29.31a2.5,2.5,0,1,1,5,.29c-.55,9.54-.92,19.33-1.1,29.11A2.5,2.5,0,0,1,232,540Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M235.67,635.7a2.5,2.5,0,0,1-2.5-2.38c-.18-3.87-.41-7.43-.7-10.88-1.6-19.07-2.59-38-2.94-56.19a2.5,2.5,0,1,1,5-.1c.35,18.11,1.33,36.91,2.92,55.87.3,3.51.53,7.13.72,11.06a2.5,2.5,0,0,1-2.38,2.62Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M236.44,704.72a2.5,2.5,0,0,1-2.47-2.16c-.71-5.17-.46-6.39,0-7.95.24-.79.55-1.77.36-5.79-.41-9-.49-18.31-.57-27.28v-1.29a2.5,2.5,0,0,1,5,0v1.29c.08,8.93.16,18.16.56,27.1.2,4.52-.14,6.06-.58,7.49-.24.78-.45,1.45.15,5.79a2.5,2.5,0,0,1-2.13,2.82Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M291,354.83a2.49,2.49,0,0,1-1-.23c-7-3.19-17.19-13.06-18.28-23.27-.61-5.75,1.75-10.8,6.83-14.6a16.09,16.09,0,0,1,13.71-3.12c13.11,3,23,20.91,24.85,24.47a2.5,2.5,0,1,1-4.44,2.31c-4.62-8.89-13-20-21.53-21.9a11.15,11.15,0,0,0-9.6,2.25c-3.69,2.76-5.28,6.05-4.85,10.07.85,7.94,9.54,16.56,15.39,19.25a2.5,2.5,0,0,1-1,4.77Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M497.67,352.83a2.5,2.5,0,0,1-1.55-4.46l1.68-1.32c3.62-2.82,7.72-6,10.47-9.17a14.43,14.43,0,0,0,2.58-15.12c-2-4.73-6.39-7.56-11.94-7.77-11-.44-21.13,11.1-24.17,22a2.5,2.5,0,1,1-4.82-1.34c3.63-13,15.5-26.18,29.17-25.66,7.45.28,13.56,4.31,16.34,10.79A19.45,19.45,0,0,1,512,341.18c-3.06,3.5-7.36,6.85-11.15,9.81l-1.66,1.3A2.49,2.49,0,0,1,497.67,352.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M223.17,481.17a2.49,2.49,0,0,1-1.79-.76c-2.65-2.72-3.46-6.28-2-9.07a13.19,13.19,0,0,0,.68-3.53c.08-.73.16-1.42.28-2.06a67.86,67.86,0,0,1,7-20.67A68.93,68.93,0,0,1,247.25,421a66,66,0,0,1,97.16,20.76c3,5.36,4.85,11.47,6.64,17.78a3.24,3.24,0,0,0,1.57,2.36c2.67,2.24,3,4.42,2.81,5.86s-1.12,3.55-4.45,5.1a2.5,2.5,0,0,1-2.12-4.53c1.26-.59,1.59-1.12,1.6-1.22s-.14-.6-1.07-1.37a7.5,7.5,0,0,1-3.16-4.82c-1.71-6-3.47-11.82-6.2-16.71A60.88,60.88,0,0,0,250.23,425a64,64,0,0,0-18.46,22.4,63.26,63.26,0,0,0-6.56,19.27c-.09.51-.16,1.11-.23,1.73a15.77,15.77,0,0,1-1.19,5.22c-.34.67-.12,2,1.17,3.33a2.5,2.5,0,0,1-1.79,4.24Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M286.66,540c-.89,0-1.78,0-2.68-.05a66.06,66.06,0,0,1-63.3-61.13,2.5,2.5,0,0,1,5-.37,61.13,61.13,0,0,0,122-2.13c.08-2,.06-3.93,0-5.88a2.5,2.5,0,1,1,5-.27c.12,2.1.13,4.24,0,6.35A66.22,66.22,0,0,1,286.66,540Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M284.37,485.33a15.13,15.13,0,0,1-15-13.82,2.5,2.5,0,0,1,5-.43,10.13,10.13,0,1,0,20.19-1.76,2.5,2.5,0,0,1,5-.43,15.15,15.15,0,0,1-13.76,16.39C285.26,485.31,284.81,485.33,284.37,485.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M223.17,481.17a2.5,2.5,0,0,1-.53-4.94l2.9-.63c7.58-1.64,14.74-3.2,22.69-4.56,3.42-.59,6.9-1.29,10.26-2a171.15,171.15,0,0,1,22-3.46c17.18-1.17,34.56-.63,49.51,0,1.58.06,3.28.05,5.09,0,5.17,0,10.51-.05,14.94,1.54a2.5,2.5,0,0,1-1.69,4.71c-3.6-1.29-8.49-1.27-13.22-1.25-1.86,0-3.62,0-5.31,0-14.82-.59-32-1.13-49,0a167.45,167.45,0,0,0-21.4,3.37c-3.4.69-6.92,1.4-10.41,2-7.85,1.35-15,2.89-22.48,4.52l-2.9.63A2.47,2.47,0,0,1,223.17,481.17Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M439.67,478.95a2.49,2.49,0,0,1-.8-.13c-3.48-1.17-4.63-3.13-5-4.57s-.26-3.61,2.14-6.14a3.25,3.25,0,0,0,1.29-2.52c1.07-6.47,2.23-12.75,4.6-18.41a65.89,65.89,0,0,1,94.21-31.56,68.94,68.94,0,0,1,22.51,21.73,67.86,67.86,0,0,1,9.31,19.75c.19.63.34,1.3.51,2a13.18,13.18,0,0,0,1.08,3.42c1.71,2.61,1.32,6.24-1,9.24a2.5,2.5,0,0,1-4-3.06c1.13-1.46,1.2-2.8.79-3.43a15.75,15.75,0,0,1-1.77-5.05c-.14-.61-.27-1.2-.42-1.7a63.24,63.24,0,0,0-8.68-18.41,64,64,0,0,0-20.86-20.18,61,61,0,0,0-87.09,29.16c-2.16,5.17-3.26,11.13-4.28,17.3a7.5,7.5,0,0,1-2.6,5.15c-.83.88-.93,1.4-.91,1.49s.41.59,1.73,1a2.5,2.5,0,0,1-.8,4.87Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M502.91,538.8a66.23,66.23,0,0,1-65.32-56.08c-.32-2.1-.55-4.22-.67-6.32a2.5,2.5,0,1,1,5-.29c.11,1.94.32,3.91.62,5.85A61.13,61.13,0,0,0,564,470.36a2.5,2.5,0,0,1,5-.2,66.18,66.18,0,0,1-66.13,68.64Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M504.75,483.85a15.13,15.13,0,0,1-15.12-14.74,2.5,2.5,0,0,1,2.43-2.56h.07a2.5,2.5,0,0,1,2.5,2.44,10.13,10.13,0,1,0,20.26-.52,2.5,2.5,0,0,1,2.43-2.56,2.46,2.46,0,0,1,2.56,2.43,15.15,15.15,0,0,1-14.74,15.51Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M440.26,477.84a2.5,2.5,0,0,1-1.11-4.74c4.22-2.08,9.53-2.66,14.67-3.21,1.79-.19,3.48-.38,5-.62,14.79-2.28,32-4.77,49.2-5.53a170.23,170.23,0,0,1,22.29,1c3.42.3,7,.6,10.42.8,8.08.46,15.38,1.2,23.12,2l2.89.29a2.5,2.5,0,0,1-.5,5l-2.89-.29c-7.68-.78-14.93-1.51-22.9-2-3.54-.2-7.11-.51-10.57-.81a168.33,168.33,0,0,0-21.64-.94c-16.95.75-34,3.23-48.66,5.48-1.67.26-3.42.45-5.27.65-4.71.51-9.57,1-13,2.72A2.48,2.48,0,0,1,440.26,477.84Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M393.72,477.54c-4.22,0-8.34-.81-10.74-2.32a6,6,0,0,1-3.13-5.28c0-2.5,1.83-5.12,4.53-6.69a20.53,20.53,0,0,1,8.22-2.34h0a25.62,25.62,0,0,1,11.67,1.54,7.17,7.17,0,0,1,4.44,5.39,6.91,6.91,0,0,1-2.52,6.33C403.56,476.47,398.57,477.54,393.72,477.54Zm-.67-11.65a15.45,15.45,0,0,0-6.16,1.69,3.86,3.86,0,0,0-2,2.46c0,.3.26.62.79,1,3.77,2.38,14.27,2,17.29-.6a2,2,0,0,0,.85-1.78,2.22,2.22,0,0,0-1.46-1.56,20.71,20.71,0,0,0-9.27-1.16Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M377.41,495.74a10.85,10.85,0,0,1-7.91-3c-2.15-2.23-2.76-5.43-1.73-9,1.63-5.66,8.82-13.11,13.56-15.24a2.5,2.5,0,0,1,2,4.56c-3.85,1.73-9.71,8.27-10.8,12.06-.53,1.84-.35,3.23.53,4.15,1.3,1.35,4.16,1.8,7,1.11a43.8,43.8,0,0,0,4.76-1.59,29.73,29.73,0,0,1,9.23-2.35,16.92,16.92,0,0,1,6.25,1.18l.88.29c1.06.34,2.08.74,3.07,1.13a31.94,31.94,0,0,0,3.89,1.34c2.8.69,5.66.24,7-1.11.88-.92,1.06-2.31.53-4.15-1.09-3.79-7-10.33-10.8-12.06a2.5,2.5,0,1,1,2-4.56c4.74,2.13,11.93,9.58,13.56,15.24,1,3.57.42,6.77-1.73,9-2.6,2.69-7.1,3.65-11.76,2.49a36.21,36.21,0,0,1-4.51-1.54c-1-.37-1.85-.73-2.76-1l-.94-.31a12.24,12.24,0,0,0-4.46-.93,25.55,25.55,0,0,0-7.69,2,48.2,48.2,0,0,1-5.31,1.76A16,16,0,0,1,377.41,495.74Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M394.25,507.75a17.94,17.94,0,0,1-5.4-.66c-3.8-1.3-3.85-4.93-3.88-7.34,0-.32,0-.65,0-1-.08-2.48-.06-5.07,0-7.36v-.91a2.5,2.5,0,0,1,2.5-2.48h0a2.5,2.5,0,0,1,2.48,2.52v.91c0,2.24,0,4.78,0,7.16,0,.36,0,.72,0,1.08,0,2.28.17,2.56.5,2.67,1.55.53,5.59.49,7.9.11a6.24,6.24,0,0,0,.89-.2c0-.3,0-.75,0-1.13,0-.63-.09-1.42-.08-2.32,0-1.83,0-3-.08-4.32,0-1.11-.09-2.26-.09-3.82a2.5,2.5,0,0,1,5,0c0,1.47,0,2.57.08,3.63.05,1.29.1,2.63.08,4.58,0,.71,0,1.34.07,1.94.14,2.26.36,5.69-5,6.58A33.27,33.27,0,0,1,394.25,507.75Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M286.42,555.33A80.37,80.37,0,1,1,366.79,475,80.46,80.46,0,0,1,286.42,555.33Zm0-150.74A70.37,70.37,0,1,0,356.79,475,70.45,70.45,0,0,0,286.42,404.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M503,554.33A80.37,80.37,0,1,1,583.34,474,80.46,80.46,0,0,1,503,554.33Zm0-150.74A70.37,70.37,0,1,0,573.34,474,70.45,70.45,0,0,0,503,403.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M426,465a5,5,0,0,1-4.26-2.37c-1.47-2.38-11.35-7.06-25.79-7.89-13.45-.77-24.29,2.35-29,8.36a5,5,0,0,1-7.85-6.19c6.85-8.69,20.51-13.12,37.45-12.15,12.95.74,29,5,33.73,12.62A5,5,0,0,1,426,465Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M210,462h-.27c-5.85-.31-10.27-2.79-12.11-6.8a8.69,8.69,0,0,1,1-9.07c2.79-3.64,8-5.12,14.2-4.06a5,5,0,0,1-1.68,9.86,11.76,11.76,0,0,0-2.75-.18,10.12,10.12,0,0,0,1.86.26,5,5,0,0,1-.26,10Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M579,462a5,5,0,0,1-.26-10,10.1,10.1,0,0,0,1.86-.26,11.7,11.7,0,0,0-2.75.18,5,5,0,0,1-1.68-9.86c6.23-1.07,11.41.42,14.2,4.06a8.69,8.69,0,0,1,1,9.07c-1.85,4-6.26,6.49-12.11,6.8Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M382.36,612.58a2.56,2.56,0,0,1-.46,0c-10.2-1.9-18.76-4.71-27.82-7.67-3.3-1.08-6.7-2.2-10.31-3.31-21.85-6.75-44.73-12.41-66.85-17.89-8.13-2-16.54-4.1-24.7-6.19l-1.4-.36c-8.17-2.07-19.37-4.9-24-13.77-3.18-6.08,0-16.94,2.14-24.13.25-.86.49-1.65.68-2.35a2.5,2.5,0,0,1,4.82,1.35c-.2.71-.44,1.53-.7,2.41-1.66,5.63-4.74,16.12-2.5,20.4,3.62,6.9,13.15,9.31,20.82,11.25l1.41.36c8.14,2.08,16.54,4.16,24.66,6.18,22.19,5.5,45.14,11.18,67.13,18,3.65,1.13,7.08,2.25,10.39,3.33,8.9,2.92,17.31,5.67,27.18,7.51a2.5,2.5,0,0,1-.46,5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M396.13,578.5a2.54,2.54,0,0,1-.52-.06c-11.08-2.36-21.5-4.28-32.79-6-44.24-6.84-90.83-15.53-131.76-32.57a2.5,2.5,0,1,1,1.92-4.62c40.44,16.84,86.67,25.45,130.6,32.25,11.39,1.76,21.9,3.69,33.07,6.08a2.5,2.5,0,0,1-.52,4.95Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M382.36,612.58h-.18a2.5,2.5,0,0,1-2.32-2.67c.53-7.58,4.21-14.32,7.78-20.84,2.44-4.47,4.75-8.69,6.09-13.12a2.5,2.5,0,1,1,4.79,1.45c-1.49,4.92-4,9.58-6.49,14.07-3.46,6.33-6.73,12.3-7.18,18.79A2.5,2.5,0,0,1,382.36,612.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M411,612.58a2.5,2.5,0,0,1-.46-5c9.73-1.82,17.93-4.52,26.61-7.38,3.41-1.13,6.94-2.29,10.73-3.46,22-6.79,44.92-12.47,67.11-18,8.13-2,16.53-4.1,24.68-6.18l.33-.08c7.38-1.89,15.74-4,19.9-10.15,3.84-5.67,2.12-10-.26-15.95a65.76,65.76,0,0,1-2.41-6.77,2.5,2.5,0,1,1,4.81-1.35,61.79,61.79,0,0,0,2.24,6.27c2.5,6.27,5.09,12.75-.25,20.61-5.22,7.69-15,10.18-22.79,12.19l-.33.08c-8.16,2.09-16.58,4.17-24.71,6.19-22.12,5.48-45,11.14-66.83,17.89-3.74,1.16-7.25,2.31-10.64,3.43-8.85,2.92-17.2,5.67-27.26,7.55A2.57,2.57,0,0,1,411,612.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M397,578.5a2.5,2.5,0,0,1-.52-4.95c11.18-2.38,21.68-4.32,33.07-6.08,40.41-6.25,86.22-13.34,128.13-30.79a2.5,2.5,0,1,1,1.92,4.62C517.14,559,471,566.12,430.32,572.42c-11.29,1.75-21.71,3.66-32.79,6A2.54,2.54,0,0,1,397,578.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M411,612.58a2.5,2.5,0,0,1-2.49-2.33c-.45-6.45-3.76-12.4-7.27-18.7-2.52-4.53-5.13-9.21-6.63-14.17a2.5,2.5,0,1,1,4.79-1.45c1.34,4.44,3.71,8.69,6.21,13.18,3.62,6.5,7.36,13.22,7.89,20.78a2.5,2.5,0,0,1-2.32,2.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M229.87,663.57a41.28,41.28,0,0,1-16.34-3.66,39.84,39.84,0,0,1-19.73-21.19,2.5,2.5,0,0,1,4.63-1.89,34.79,34.79,0,0,0,17.19,18.54c6.44,3,21.18,6.34,25.68-2,3.47-6.46.36-10.22-5-15.81a36.79,36.79,0,0,1-6.18-7.72,6.23,6.23,0,0,1-2.7-3.22,5.9,5.9,0,0,0-.87-1.53,2.5,2.5,0,0,1,3.93-3.09A10.75,10.75,0,0,1,232,624.6c.29.67.32.74,1.16,1.19a2.5,2.5,0,0,1,1.09,1.14c1.18,2.47,3.34,4.73,5.64,7.13,5,5.18,11.16,11.64,5.8,21.63C242.57,661.53,236.38,663.57,229.87,663.57Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M193.09,620.7H193a2.5,2.5,0,0,1-2.38-2.61c.45-9.82,3.75-18.54,10.68-28.29,5.72-8,18.92-20.32,30.37-22.5a2.5,2.5,0,1,1,.93,4.91c-9,1.72-21.17,12-27.23,20.49-6.34,8.92-9.36,16.82-9.76,25.62A2.5,2.5,0,0,1,193.09,620.7Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M228.33,626.08a2.5,2.5,0,0,1-2-4.06l0,0a2.5,2.5,0,0,1,.44-2,3.43,3.43,0,0,1,.48-1.3,2.52,2.52,0,0,1,.31-.85,71,71,0,0,0,4.08-8.66,2.5,2.5,0,0,1,4.63,1.89,84,84,0,0,1-3.7,8,2.5,2.5,0,0,1-.55,1.84l-.24.27a2.83,2.83,0,0,1-.18.82,4.76,4.76,0,0,1-1.27,3l-.11.13A2.5,2.5,0,0,1,228.33,626.08Zm-1.22-2.85h0Zm4.08-6.18h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M196.12,640.27a2.51,2.51,0,0,1-2.43-3.1c2.94-11.89,21.33-14.36,31.21-15.68,1.25-.17,2.34-.31,3.19-.45a2.5,2.5,0,1,1,.82,4.93c-.89.15-2,.3-3.34.48-8.08,1.08-24.9,3.34-27,11.93A2.5,2.5,0,0,1,196.12,640.27Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M195.84,640.28a5.69,5.69,0,0,1-4.05-1.56c-2.2-2.12-2.4-5.65-2.39-8.37l-.2-.1a3.72,3.72,0,0,0-.83-.34,2.5,2.5,0,0,1-1.65-4.21,12.38,12.38,0,0,0,.84-1.07c.21-.29.44-.6.68-.9a4.87,4.87,0,0,1-.28-4.23c1.74-4.17,9.13-5.1,16.86-5.49,10.49-.53,22.23,1.82,25.58,2.55a2.5,2.5,0,1,1-1.07,4.88c-6.58-1.44-16.4-2.83-24.2-2.44-9.92.5-12,1.88-12.48,2.35a3.58,3.58,0,0,0,.67,1,2.5,2.5,0,0,1-.33,3.64,3.19,3.19,0,0,0-.29.26,2.5,2.5,0,0,1,1.73,2.39v.79c0,1.45-.09,4.83.84,5.72.06.06.2.2.72.16a2.5,2.5,0,0,1,.29,5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M565.37,663.57c-6.51,0-12.69-2-15.83-7.89-5.36-10,.83-16.45,5.8-21.63,2.3-2.39,4.47-4.66,5.64-7.12a2.49,2.49,0,0,1,1.09-1.14c.85-.45.88-.52,1.16-1.19a10.73,10.73,0,0,1,1.54-2.65,2.5,2.5,0,0,1,3.93,3.09,5.91,5.91,0,0,0-.87,1.53,6.23,6.23,0,0,1-2.7,3.22,36.77,36.77,0,0,1-6.18,7.72c-5.36,5.59-8.47,9.34-5,15.81,4.5,8.39,19.24,5,25.68,2a34.79,34.79,0,0,0,17.19-18.54,2.5,2.5,0,1,1,4.63,1.89,39.84,39.84,0,0,1-19.73,21.19A41.28,41.28,0,0,1,565.37,663.57Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M602.15,620.7a2.5,2.5,0,0,1-2.5-2.38c-.41-8.8-3.42-16.7-9.76-25.62-5.67-8-20.58-19.22-29.88-21a2.5,2.5,0,1,1,.93-4.91c10.84,2.06,26.66,14.06,33,23,6.94,9.74,10.23,18.47,10.68,28.29a2.5,2.5,0,0,1-2.38,2.61Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M566.91,626.08a2.49,2.49,0,0,1-2-.94l-.11-.14a4.77,4.77,0,0,1-1.27-3,2.8,2.8,0,0,1-.18-.83l-.24-.27a2.5,2.5,0,0,1-.55-1.84,84,84,0,0,1-3.7-8,2.5,2.5,0,1,1,4.63-1.89,71.12,71.12,0,0,0,4.08,8.66,2.5,2.5,0,0,1,.31.85,3.43,3.43,0,0,1,.48,1.31,2.48,2.48,0,0,1,.44,1,2.53,2.53,0,0,1,0,1l0,0a2.5,2.5,0,0,1-2,4.06Zm1.22-2.85h0Zm-4.08-6.18h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M599.12,640.27a2.5,2.5,0,0,1-2.42-1.9c-2.12-8.59-18.94-10.84-27-11.93-1.31-.18-2.45-.33-3.34-.48a2.5,2.5,0,1,1,.82-4.93c.85.14,1.93.29,3.19.45,9.88,1.33,28.28,3.79,31.21,15.68a2.5,2.5,0,0,1-2.43,3.1Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M599.4,640.28H599a2.5,2.5,0,1,1,.29-5c.51,0,.66-.11.72-.16.92-.89.86-4.27.84-5.72v-.79a2.5,2.5,0,0,1,1.73-2.39,3.12,3.12,0,0,0-.29-.26,2.5,2.5,0,0,1-.33-3.64,3.58,3.58,0,0,0,.67-1c-.44-.47-2.56-1.85-12.43-2.34-7.86-.39-17.68,1-24.26,2.44a2.5,2.5,0,1,1-1.07-4.88c3.35-.73,15.08-3.08,25.52-2.55,7.79.39,15.18,1.32,16.92,5.49a4.87,4.87,0,0,1-.28,4.23c.24.31.46.61.68.9a12.45,12.45,0,0,0,.84,1.07,2.5,2.5,0,0,1-1.65,4.21,3.73,3.73,0,0,0-.83.34l-.2.1c0,2.72-.18,6.25-2.39,8.37A5.69,5.69,0,0,1,599.4,640.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M395.89,605.19a13.23,13.23,0,0,1-2.15-.17,13.89,13.89,0,0,1-9.52-6.77,2.5,2.5,0,1,1,4.23-2.66,8.94,8.94,0,0,0,6.1,4.49c3.11.51,6.78-.8,10.32-3.69a2.5,2.5,0,1,1,3.16,3.88C404.08,603.49,399.85,605.19,395.89,605.19Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M381.45,690.17h-.18A2.5,2.5,0,0,1,379,687.5c.55-7.7,1.54-17.78,2.59-28.45,2-20.32,4.27-43.35,4.29-57.89a2.5,2.5,0,0,1,2.5-2.5h0a2.5,2.5,0,0,1,2.5,2.5c0,14.78-2.3,37.94-4.31,58.37-1,10.64-2,20.68-2.58,28.32A2.5,2.5,0,0,1,381.45,690.17Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M409.89,690.37A2.5,2.5,0,0,1,407.4,688c-.55-7.75-1.55-18-2.62-28.77-2-20.33-4.27-43.38-4.29-58.11a2.5,2.5,0,0,1,2.5-2.5h0a2.5,2.5,0,0,1,2.5,2.5c0,14.49,2.27,37.41,4.27,57.63,1.07,10.85,2.08,21.1,2.63,28.91a2.5,2.5,0,0,1-2.32,2.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M395.67,712.41a2.5,2.5,0,0,1-2-.94A128.91,128.91,0,0,1,379.22,689a2.5,2.5,0,1,1,4.5-2.19,123.3,123.3,0,0,0,13.91,21.57,2.5,2.5,0,0,1-2,4.06Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M395.67,712.41a2.5,2.5,0,0,1-2-4.06,124.1,124.1,0,0,0,13.94-21.57,2.5,2.5,0,0,1,4.5,2.19,129.3,129.3,0,0,1-14.52,22.5A2.5,2.5,0,0,1,395.67,712.41Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M222,539.15a40.07,40.07,0,0,1-11.74-1.43c-25.41-7.8-19.39-36.26-14.54-59.13,1.89-8.93,3.68-17.36,3.44-23.49a2.5,2.5,0,1,1,5-.19c.26,6.75-1.59,15.48-3.55,24.72-4.65,22-9.93,46.86,11.12,53.32,4.87,1.5,10.81,1.27,16.55,1,2-.08,4.08-.16,6.05-.16a2.5,2.5,0,0,1,0,5c-1.87,0-3.81.07-5.86.15S224.16,539.15,222,539.15Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M559,542.83a2.5,2.5,0,0,1-2.1-3.85c2.37-3.68,7.95-4.14,13.34-4.59,3.45-.29,7-.59,8.82-1.67,11.8-7.07,17.55-20.9,14.67-35.23-1.06-5.25-2.55-10.19-4-15C587.16,474,584.5,465.2,584.5,455a2.5,2.5,0,0,1,5,0c0,9.46,2.44,17.53,5,26.07,1.48,4.9,3,10,4.11,15.44,3.31,16.43-3.36,32.33-17,40.51-2.79,1.68-7,2-11,2.36-3.8.32-8.52.71-9.55,2.32A2.5,2.5,0,0,1,559,542.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M486,344.5a2.5,2.5,0,0,1-1.32-4.62c2.93-1.83,5.25-6.67,6.36-13.29a2.5,2.5,0,1,1,4.93.82c-1,5.77-3.24,13.35-8.64,16.71A2.49,2.49,0,0,1,486,344.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M487,345.5a2.5,2.5,0,0,1-2.07-3.9c2.69-4,7.07-5.2,10.93-6.28.81-.23,1.61-.45,2.37-.7a2.5,2.5,0,1,1,1.53,4.76c-.83.27-1.68.51-2.56.75-3.33.93-6.48,1.82-8.14,4.27A2.5,2.5,0,0,1,487,345.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M300,347.5a2.49,2.49,0,0,1-1.68-.65L297,345.61c-2.17-2-7.92-7.44-10.14-7.13a2.5,2.5,0,1,1-.68-5c4.23-.58,9.15,3.66,14.24,8.44l1.28,1.19A2.5,2.5,0,0,1,300,347.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M300.5,347.5a2.5,2.5,0,0,1-2.07-1.1c-2.93-4.33-2.93-10.32-2.93-15.13v-.77A2.5,2.5,0,0,1,298,328h0a2.5,2.5,0,0,1,2.5,2.5v.77c0,4.34,0,9.26,2.07,12.33a2.5,2.5,0,0,1-2.07,3.9Z" transform="translate(-53.25 -44.96)"/></g><g id="HAIR_DETAILS" data-name="HAIR DETAILS"><path class="cls-24" d="M400.45,398h0Z" transform="translate(-53.25 -44.96)"/></g><g id="layers"><g class="cls-36"><circle class="cls-7" cx="233.17" cy="430" r="75.37"/></g><g class="cls-36"><circle class="cls-7" cx="449.72" cy="429" r="75.37"/></g><path class="cls-24" d="M426,465a5,5,0,0,1-4.26-2.37c-1.47-2.38-11.35-7.06-25.79-7.89-13.45-.77-24.29,2.35-29,8.36a5,5,0,0,1-7.85-6.19c6.85-8.69,20.51-13.12,37.45-12.15,12.95.74,29,5,33.73,12.62A5,5,0,0,1,426,465Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M286.42,555.33A80.37,80.37,0,1,1,366.79,475,80.46,80.46,0,0,1,286.42,555.33Zm0-150.74A70.37,70.37,0,1,0,356.79,475,70.45,70.45,0,0,0,286.42,404.59Z" transform="translate(-53.25 -44.96)"/><g class="cls-37"><path class="cls-7" d="M532.48,427.22c1.29,3.14,3.66,6,5.79,8.72a96.55,96.55,0,0,1,18.14,38.2c1,4.5,7.56,4.49,9.69.91a10.2,10.2,0,0,0,1.13-4.2,51.8,51.8,0,0,0-3.32-24.26c-1.32-3.37-3.17-5.84-5.09-8.79-2.11-3.25-3-6.77-6-9.49-3.77-3.43-7.3-7.66-11.88-10.14-2.12-1.15-4.77-2-6.87-.84a5.82,5.82,0,0,0-2.52,4.86A11.66,11.66,0,0,0,532.48,427.22Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-37"><path class="cls-7" d="M316.29,432.4c1.29,3.14,3.66,6,5.79,8.72a96.55,96.55,0,0,1,18.14,38.2c1,4.5,7.56,4.49,9.69.91a10.2,10.2,0,0,0,1.13-4.2,51.8,51.8,0,0,0-3.32-24.26c-1.32-3.37-3.17-5.84-5.09-8.79-2.11-3.25-3-6.77-6-9.49-3.77-3.43-7.3-7.66-11.88-10.14-2.12-1.15-4.77-2-6.87-.84a5.82,5.82,0,0,0-2.52,4.86A11.66,11.66,0,0,0,316.29,432.4Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-24" d="M503,554.33A80.37,80.37,0,1,1,583.34,474,80.46,80.46,0,0,1,503,554.33Zm0-150.74A70.37,70.37,0,1,0,573.34,474,70.45,70.45,0,0,0,503,403.59Z" transform="translate(-53.25 -44.96)"/></g><g id="CIRCLE"><path class="cls-24" d="M397.38,745.79A344.13,344.13,0,0,1,154,158.33,341.87,341.87,0,0,1,397.38,57.54h3l11.29.28h.07a344.13,344.13,0,0,1-14.36,688Zm0-679.25c-184.79,0-335.12,150.34-335.12,335.13S212.59,736.79,397.38,736.79,732.5,586.46,732.5,401.67A334.16,334.16,0,0,0,411.4,66.83l-11.17-.28Z" transform="translate(-53.25 -44.96)"/></g></svg>
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyScene2Shadows.png b/vendor/github.com/golang/dep/docs/assets/DigbyScene2Shadows.png
deleted file mode 100644
index 3cd582e21aa4bf87e1eb1127174f29c41f5b206c..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/DigbyScene2Shadows.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyScene2Shadows.svg b/vendor/github.com/golang/dep/docs/assets/DigbyScene2Shadows.svg
deleted file mode 100644
index 039c80775ce073c38f9e1635a8cd9727aeea796a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/assets/DigbyScene2Shadows.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 688.25 700.83"><defs><style>.cls-1{fill:none}.cls-2{fill:#474747}.cls-3{opacity:.2}.cls-4{fill:#edc0e3}.cls-5{fill:#e8e5e3}.cls-6{fill:#aaa39f}.cls-7{fill:#fff}.cls-8{fill:#c4d8ba}.cls-9{fill:#807e6e}.cls-10{fill:#d7b89b}.cls-11{fill:#efe6da}.cls-12{opacity:.44}.cls-13{fill:#995967}.cls-14{opacity:.72}.cls-15{fill:#829e93}.cls-16{opacity:.61}.cls-17{fill:#a7d8bf}.cls-18{opacity:.59}.cls-19{fill:#d1b288}.cls-20{fill:#606282}.cls-21{opacity:.46}.cls-22{fill:#51483e}.cls-23{fill:#6e607f}.cls-24{fill:#1d1d1b}.cls-25{clip-path:url(#clip-path)}.cls-26{clip-path:url(#clip-path-2)}.cls-27{clip-path:url(#clip-path-3)}.cls-28{clip-path:url(#clip-path-4)}.cls-29{clip-path:url(#clip-path-5)}.cls-30{clip-path:url(#clip-path-6)}.cls-31{clip-path:url(#clip-path-7)}.cls-32{fill:#b79765}.cls-33{fill:#e9e9f2}.cls-34{fill:#3d3d3d}.cls-35{opacity:.68}.cls-36{opacity:.17}.cls-37{opacity:.36}</style><clipPath id="clip-path" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M64.1,446.5,68,327c0-.74,110.68.57,120.76.64q30.51.22,61,.33c6.75,0,15.67-2.86,18.19,5,1.69,5.22-.25,11.23,0,16.58a66.07,66.07,0,0,0,2,13.25c1.3,5,2,6.21,0,10.75-3.71,8.44-8.65,15.92-13.38,24.23a58.76,58.76,0,0,0-4.67,11c-1.6,4.92-1.3,10.78-3.33,15.37s-6.67,8.57-9.26,12.9c-2.48,4.16-4.41,10-9.47,11.12-5.52,1.28-15.14-.81-21.12-.85q-24.31-.15-48.62-.34C152.13,446.9,64.12,445.91,64.1,446.5Z"/></clipPath><clipPath id="clip-path-2" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M547.52,426.07A19.5,19.5,0,0,1,543,417c-1.22-5.73-3.79-10.48-5.95-16-6.29-16.22-11.85-27-11.27-44.83.32-9.71.48-19.43,1-29.13,0-.74,110.68.57,120.76.64q30.51.22,61,.33c6.38,0,12.68-.67,19.06-.19,4,11.39,4.55,23,6.27,35.07,1.86,13.09,4.55,25.42,3.85,39-.63,12.08-.29,26.9-4,38.38-1.72,5.29-1.34,5.51-7.3,6.15-4.38.47-8.93-.24-13.33,0-15.44.84-30.18,1.06-45.52,1q-24.31-.15-48.63-.34c-11.71-.09-23.42-.23-35.13-.34-6.18-.06-16.86,2.13-22.47-.37-5.11-2.28-5.82-8.72-8.39-13.08A51.57,51.57,0,0,0,547.52,426.07Z"/></clipPath><clipPath id="clip-path-3" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M132.33,613.67c3-.92,8.1.34,11.5.67a101.15,101.15,0,0,0,14.08,0c8.09-.4,16.39-.28,24.51-.67a108.86,108.86,0,0,1,11.88-.28,17.65,17.65,0,0,0-1.35,4.55c-5.19-.07-3.06,3.59-1.4,6.15-3.62,1.72-3.81,5.09.74,5,0,2.42,0,5.84,1.7,7.78,1,1.1,2.72,1.61,3.56,2.78,1,1.36,1.07,3.37,1.7,4.94a22.28,22.28,0,0,0,6.36,8.73c5.62,4.73,13.19,6.71,20.4,7.06,3.64.18,7.32-.15,10.95,0,.35,7,1,14.28.22,21.25-.66,6.16-2.13,12.08-2.57,18.27-1.4-2.33-5.52-4.06-7.76-5.57-3.65-2.46-7.27-3.34-11.15-5.16-7.75-3.64-13.38-9.11-20.36-13.93-7.53-5.2-15.21-9-22.15-15.08a173,173,0,0,1-22.18-24c-2.75-3.56-6-6.48-8.67-10.07-2.39-3.16-6.59-7.57-8-11.09"/></clipPath><clipPath id="clip-path-4" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M661.33,612.33c-11.53,0-23.3,1.39-34.74,2.33-7.67.63-15.22-.38-22.87.06a6.61,6.61,0,0,0-.34,3.56c3.57.37,3.12,4.64.31,5.63,1.48.49,2.61,1.47,2.59,3-4.54.55-2.26,4.19-3.27,7.39-.52,1.64-1.08,1.92-2.16,3-.36.36-1.26-.21-1.77.39s-.45,1.93-.81,2.67c-2.6,5.29-5.11,10.83-10.45,13.92-4.11,2.37-9.38,3.66-13.82,5.25a32.68,32.68,0,0,1-12.27,2.13c-.65,4.82.62,10.54.62,15.51,0,6.61-.91,14,.34,20.42,4,.09,8.51-3.94,11.64-6.28,5.48-4.09,11.25-7.68,16.78-11.7,5.72-4.15,10.69-9,16.23-13.34s11.78-8.28,17-13.27c4.31-4.15,8.76-8.19,13.34-12,4.43-3.73,7.79-7.72,11.83-11.78C652.16,626.52,662.91,616.69,661.33,612.33Z"/></clipPath><clipPath id="clip-path-5" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M579.07,484.41c-.8,4.09-1.75,8.25-2.81,12.34-2.06,7.88-6.13,15.35-9.25,22.91-1.85,4.48-3.71,6.52-8.28,8.4.2-.08.35,8.66.44,9.64.36,3.72,1.64,7.27,2.7,10.83,2.2,7.37,3.58,13.61-1.5,20.06.48-.61,9.82,2.94,10.61,3.5,2.42,1.71,4.69,3.82,7.21,5.6a47.82,47.82,0,0,1,5.91,5.44c2.74,2.71,4.32,5.41,8.4,5.21,5.13-.25,10.46-1.11,15.65-.58,8,.83,16,.73,24,1.07s16.17-.83,24.31-.83c6.07,0,12.15,0,18.19-.26,5.07-.24,6.21.26,8.85-4.21,2.51-4.26,6.39-7.32,9.59-11,3.9-4.51,5.95-9.54,8.61-14.76,3.82-7.47,5.77-15.67,8-23.71,2.16-7.84,6.43-14.87,9.36-22.45,2.19-5.66,4.22-11.21,4.93-17.26a124.32,124.32,0,0,1,2.34-13.68c.62-2.7,1.77-6.43,1.27-9.27-38.84-2.08-78.82-1.69-117.78,0q-10.63.45-21.24,1.36c-2.39.21-8-.29-9.27,1.76C578.16,476.28,579.53,482,579.07,484.41Z"/></clipPath><clipPath id="clip-path-6" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M141.17,586c8.14.29,16,1.67,24.41,1.67,9.44,0,18.67.29,28-.17,3.4-.17,6.65-.41,10.06-.5,4.37-.12,4.93-2.93,8-6,6-5.95,13.79-9.37,20.88-13.73-1.29-5.55-4.27-8.69-4.28-14.83,0-7.27,4.87-15.19,3.32-22.24-.32-1.47-2.51-3-2.26-4.78s2.46-3.63,2.94-5.42c1-3.89.57-9.75-.41-13.59-1.61-6.29-7-10.59-8.18-17-.63-3.39-.23-6.81-.74-10.19-.35-2.34-1.66-4.32-1.71-6.81-7.93-.44-16-.07-24-.05-10.2,0-20.36-1.34-30.64-1.33-17.24,0-34.65,0-51.82-.67a289.65,289.65,0,0,0-39.92,1c-2,.2-6.86-.45-7.95,1.35-1.41,2.34,3.64,10,4.3,12.3,1.76,6,3.44,12,5.3,17.93,5.63,18.05,11.86,35.93,17.48,54,3,9.49,7.26,19.28,14.09,26.65,4.48,4.84,7.5,4.35,13.9,3.82S134.75,585.77,141.17,586Z"/></clipPath><clipPath id="clip-path-7" transform="translate(-53.25 -44.96)"><path class="cls-1" d="M260.38,162.7c55.06.06,110.12.66,165.17.93s110,.24,164.94-1q11.49-.25,23-.58c6.76-.19,14.57.48,21.18-.81-2.12-2.56-2.84-5.8-5.31-8.27a49.21,49.21,0,0,0-8.75-6.93c-3.43-2.17-6.39-5.18-9.92-7.17s-7.45-3.18-10.4-6.06c-2.57-2.52-3.58-5.46-6.65-7.58-3.92-2.7-8.47-4.14-12.53-6.6-8.77-5.33-15.26-12.33-24.56-16.66-5.63-2.62-9.94-7.32-15.43-10-5.2-2.54-11.11-3.46-16.43-5.68C519,84,513.78,80.24,508,78.17c-11.9-4.27-24.91-5.63-37-9.42-6-1.89-11.6-2.33-17.86-2.73-6.58-.43-13.28-2.26-19.83-3.1a194.85,194.85,0,0,0-31.88-1.22c-4.19.15-7.08-1.83-11.21-1.81s-8.06,1.46-12.12,1.87c-10.28,1-20.62,1.18-30.91,2.28-16.38,1.76-32.39,8-48.07,12.63-10.5,3.1-21.41,6.09-31.32,10.75-9.51,4.47-18.42,10-27.82,14.64-9,4.48-18.56,8.06-26.82,13.94-3.55,2.52-6.66,5.4-10.63,7.35-4.14,2-8.49,3.57-12.18,6.41-7.21,5.55-14.07,12.07-21,17.93-2.51,2.12-15.05,10-10.75,14,2.39,2.2,12.65.55,15.86.57l17.34.12Q226.08,162.62,260.38,162.7Z"/></clipPath></defs><title>BoyerScene2Shadows</title><g id="COLOR"><path class="cls-2" d="M411.55,62.33C592.55,69.76,737,218.85,737,401.67c0,187.57-152.06,339.62-339.62,339.62S57.75,589.24,57.75,401.67,209.81,62,397.38,62h3Z" transform="translate(-53.25 -44.96)"/><g class="cls-3"><path d="M411.55,62.33C592.55,69.76,737,218.85,737,401.67c0,187.57-152.06,339.62-339.62,339.62S57.75,589.24,57.75,401.67,209.81,62,397.38,62h3Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-4" d="M89.49,418.2c.15-3,.16-6,.34-9.05.16-2.72.88-5.49.78-8.19s-.8-5.19,2.15-6.53a49.56,49.56,0,0,1,10.52-3.06c5.41-1.11,11.86-.2,17.44-.35,6.67-.18,13.51,0,20.13-.73,5.79-.66,11.57,2.28,17.41.66,4.71-1.3,1.34-16.9.49-20.44-.92-3.87-2.37-5.83-4.24-9.25-1.77-3.25-2.63-4.83-5.59-7.05-3.61-2.71-6.83-5.59-11.24-7-4-1.23-9.3-.66-13.37-.25a149.55,149.55,0,0,0-15.43,2.48c-7.23,1.5-13.51-4.77-15.24-11.31a15.92,15.92,0,0,1-.43-6.7c.71-3.35,2.92-4.58,6.15-4.63,2,0,3.83-.42,5.79-.51s5.19-.69,6.93-.16c2.42.73,3.93,4.59,5.11,6.67.4.69.56,2.46,1.48,2.68s4.9-2.71,5.85-3.19c5.28-2.67,10.15-4.48,16.08-4.7,8.39-.31,16.79-.16,25.19,0,7.38.17,14.71.78,22.06.17,5-.41,9.91-.5,14.91-.5,5.15,0,10.31-.07,15.45.17,2.67.12,5.91.73,8.14,2.3,2,1.4,5.57,5,8.15,4.47,2.23-.5,3.46-3.4,5.18-4.67,3-2.22,7.08-2.77,10.8-2.43,3.53.32,6.58.76,8.5,3.85s.88,5.93-.23,9.07a54.25,54.25,0,0,1-6.23,12.12,3.82,3.82,0,0,0-2.87-1,13.92,13.92,0,0,1-5.53-1.33c-4.15-2.12-7.94-3.68-12.69-3.83a37.3,37.3,0,0,0-16,3.29c-4.25,1.8-9.81,4.19-13.05,7.58-6,6.26-6.8,14.53-7.53,22.8-.29,3.31-.68,6.73,0,10,.42,2,.9,2.61,3,2.63a68.9,68.9,0,0,0,10.13-.75c8.26-1.17,16.85-3.06,25.24-2.38,4.65.38,9.17.43,13.79,1.32,2.23.43,4.37,1.06,6.63,1.38a14.25,14.25,0,0,1,4,.83c.16,2.13-1.9,5-2.87,6.84-2.06,3.94-3.08,8.38-4.95,12.42a43.33,43.33,0,0,0-2.5,6.58c-.66,2.33-.74,5.27-1.67,7.46-1,2.4-3.9,4.89-5.55,7.09a105.22,105.22,0,0,1-7,8.37c-1.79,1.93-3.67,4.55-5.59,6.25-2.14,1.89-6.41.88-9.08.79-7.44-.26-14.64-1.68-22.17-1.13-6.64.49-13.72-.28-20.44-.32-7.34,0-14.67,0-22,.3-18.33.83-36.7-3.1-54.85-.54a26,26,0,0,1-6.08.2c-1.8-.16-4.23.14-4.82-1.77-.72-2.33.22-6.49.33-9C88.72,430.24,89.19,424.23,89.49,418.2Z" transform="translate(-53.25 -44.96)"/><path class="cls-5" d="M727.5,327.5c0-.64,0-1.28-.09-1.91-.34-5.38-.65-22.82-6.92-23.84-4.21-.69-9.54.16-13.88.16h-41c-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-65.54-.07-126.07-1.17-191.59-1.17L68,327c65.51,0,130.74.93,196.28,1,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0H728" transform="translate(-53.25 -44.96)"/><path class="cls-5" d="M637.53,161.53c-3.9,0-7.8,0-11.68.17-120.91,3.89-243.85,1.14-365.47,1-34.45,0-68.81-.31-103.17-.56l-23.62,24.93c42.24.28,84.46.68,126.79.73,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0" transform="translate(-53.25 -44.96)"/><path class="cls-5" d="M64.1,446.5c65.51,0,130.74.93,196.28,1,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0,20.81,0,51.3,2.07,72.11,2.07L730,470.8c-20.81,0-47.47.79-68.28.79-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-65.54-.07-130.77-1-196.28-1" transform="translate(-53.25 -44.96)"/><path class="cls-5" d="M681,588.06c-6.91-.23-13.49-.4-19.3-.4-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-48.95-.05-97.73-.59-146.58-.85L131.17,613c43,.28,86.06.7,129.21.75,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0" transform="translate(-53.25 -44.96)"/><path class="cls-6" d="M727.5,327.5c0-.64,0-1.28-.09-1.91-.34-5.38-.65-22.82-6.92-23.84-4.21-.69-9.54.16-13.88.16h-41c-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-65.54-.07-126.07-1.17-191.59-1.17L68,327c65.51,0,130.74.93,196.28,1,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0H728" transform="translate(-53.25 -44.96)"/><path class="cls-6" d="M637.53,161.53c-3.9,0-7.8,0-11.68.17-120.91,3.89-243.85,1.14-365.47,1-34.45,0-68.81-.31-103.17-.56l-23.62,24.93c42.24.28,84.46.68,126.79.73,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0" transform="translate(-53.25 -44.96)"/><path class="cls-6" d="M64.1,446.5c65.51,0,130.74.93,196.28,1,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0,20.81,0,51.3,2.07,72.11,2.07L730,470.8c-20.81,0-47.47.79-68.28.79-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-65.54-.07-130.77-1-196.28-1" transform="translate(-53.25 -44.96)"/><path class="cls-6" d="M681,588.06c-6.91-.23-13.49-.4-19.3-.4-11.92,0-23.91-.38-35.82,0-120.91,3.89-243.85,1.14-365.47,1-48.95-.05-97.73-.59-146.58-.85L131.17,613c43,.28,86.06.7,129.21.75,121.62.14,244.56,2.89,365.47-1,11.91-.38,23.9,0,35.82,0" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M689.33,345.33c-15.88.07-27.4,7.39-33.93,21.91-3.35,7.46-4.21,16-1.49,23.75.63,1.79,2.24,7.45,4.14,8.28s7.59-1.84,9.76-1.94c4.4-.21,8.78-.44,13.16-.67,9.14-.47,19-2.15,28-.83,5.14.75,10.82,4.1,15.95,3.49,0-6.61,2.86-12.73,2.39-19.62-.37-5.43-3.36-10.23-6.19-14.69s-6.29-10.2-10.14-13.95C706.06,346.23,699.6,346.58,689.33,345.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M577.33,345.67c-8.13,2.74-16.2,6.05-22.67,12-7.18,6.59-8,16.39-8,25.65,0,5,.58,12.8,4,16.73,9.37-6.75,25.31-5.33,36.26-4.37,6,.52,11.95.82,17.84,1.91,3.54.65,7.58,1.86,11.19,1.37,1.49-6.31,5.31-10,5.06-17a39.76,39.76,0,0,0-5.5-18.32C607.56,350.39,597,346.33,577.33,345.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-8" d="M584.47,330.32c-2.69,1.39-5.71,4.62-8.4,5.3-3.34-7-9.64-7-16.73-6.62-4,.22-7-.06-6.67,4.58.38,5.94,3.06,14.31,9.5,16,5.45,1.42,10.87-1.23,16.15-2.22,6.6-1.23,12.53-1.2,18.85,1,14.85,5.24,21.87,18,21.17,33.56-.16,3.48,0,16.13-4.19,18.05-1.58.72-7.86-1.67-9.82-2-8-1.24-16-2.9-24.13-3.7s-14.79.94-22.37,3.32c-2.75.86-6.43,1.58-8.2,3.86s-2.1,6.88-2.3,9.51c-.45,5.79-2,12.06.31,17.62,1.53,3.63,4.42,6.53,7.44,8.93,3.53,2.82,4.78,5.89,6.65,10.07,14.65.9,29-2.15,43.76-2.28,9-.08,18-.93,26.84-1,9.1-.07,17.51,1.92,26.5,2.68,10.45.88,21,.63,31.53.81,9.78.17,19.79.78,29.48.75,4.8,0,2.74-3,2.71-7.43,0-5.1.57-10.23-.2-15.3-.52-3.43-1.15-6.67-1.35-10.15-.15-2.71-1.27-6.44-.67-9,.75-3.19,3.76-4.87,3.28-8.62-11.35-.63-22.56-1.38-33.94-1.38s-22.47,3.56-33.34,1.83c.18-4-1.47-7.84-1.67-11.83s-.33-8-.33-12c0-8.39,4.09-14.09,10.68-19.41,9.93-8,21.7-11.6,34.67-9.23,3.63.66,7.27,3.77,10.65,4.14,4.87.54,7.91-8.54,8.51-12.84,1.2-8.69-1.45-10.79-9.68-11.17-3.57-.16-6.87-.6-9.85,1.68s-5,5.72-8.22,7.79c-5.52-9.81-22.7-9.3-32.08-9.3-17.09,0-34.29.82-51.35,1.67-3.94.2-8-.88-11.91-1C590.64,326.75,588.76,328.11,584.47,330.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-9" d="M638,393.67c-3.35,0-15.51-.26-14.36,5.67.5,2.58,6,4.42,8.19,4.83,3,.56,5.94.31,8.16-1.82C641.55,400.86,645.87,392.58,638,393.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-10" d="M626,400.67c-8.15-1.58-12.48,17.44-3.33,18.33,3.87.38,6.87-2.06,10.41-2.92,4.88-1.19,10.23.45,15.19,0,5.93-.57,6.78-6.25,4-11.05-1.75-3-4.79-3.2-7.18-5.3-2,5.4-13.39,5.35-16.08,1" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M628,418.33c-.19,2.28-1.39,7.7-.18,9.85,1.32,2.33,6,2.67,8.35,2.49,2.92-.23,5.64-1.43,6.58-4.33.44-1.35,1.15-8,.59-9.17C641.86,414.17,631,415,628,418.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-9" d="M183.67,393c-3.93,0-20.42-1.1-18.35,6,1.15,3.93,8.21,4.93,11.58,5C182.73,404.09,186.51,400.8,183.67,393Z" transform="translate(-53.25 -44.96)"/><path class="cls-10" d="M161.75,404.35c-1.93,2.57-4.11,7.18-2.35,10.26s6.5,4.14,9.6,3.32A43,43,0,0,1,179.5,416c3.4-.11,8.91,1.1,12-.37,7.94-3.79.72-11.47-3.41-14.71-3.25-2.55-3.86.42-6.92,2.25-2.62,1.56-5.68,2.94-8.67,1.7C168.19,403.07,166,398.74,161.75,404.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M168.33,417.33c0,7,.59,11.56,8.33,12.34,3.34.33,6.66.05,8.26-3.17,1-2.07,1.55-7.61.22-9.49C182.34,413.05,174.9,415.3,168.33,417.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M88.5,394.33a48.2,48.2,0,0,1-.21-22.53A27.33,27.33,0,0,1,96,358.64c2-2,3.92-4.38,6.43-5.77a53.9,53.9,0,0,1,8-3.24c6.09-2.19,12.16-3.64,18.69-3.3a36.48,36.48,0,0,1,10.33,2.26c2.89,1.05,4.92,3.18,7.24,5.1,2.08,1.72,4.25,2.94,5.92,5a29.06,29.06,0,0,1,3.73,6.56c2.84,6.42,3.69,12.08,3.68,19.05,0,1.77.92,6.87-.68,8.23-1.13,1-4.26-.81-5.46-1.24-3.84-1.37-8-1.5-12-1.5-9.57,0-19.67.27-29.12,1.88C104.76,393.07,96,393.51,88.5,394.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M196,392c-1.79-1.75-1.89-6.26-2-8.63a33.15,33.15,0,0,1,.46-8c.9-4.59,3.49-9.41,5.67-13.5,7.79-14.61,29.4-17.66,44-13.87,4.77,1.24,9.79,2.87,12.87,6.92,2.27,3,5.88,7.5,6.46,11.25" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M248.67,351.33c.78,1.44,2.61,2.29,3.84,3.33a44,44,0,0,1,4.62,4.63,40.35,40.35,0,0,1,5.83,8.8,52,52,0,0,1,3.62,7.83c.95,3.06-2.19,6-3.86,8.48-2.07,3.07-4.34,6.07-6.27,9.26-2.39-2.19-6.42-2.57-9.56-3.09a103.84,103.84,0,0,0-17.2-1.23c-10.86,0-21.52,2.53-32.37,2.67" transform="translate(-53.25 -44.96)"/><path class="cls-11" d="M180.17,162.33c-4.89,0-5.59-1.1-7.57-5.41-.55-1.2-2.47-4.28-2.28-5.58.35-2.33,3.06-3.08,5-4.35,6.52-4.23,12.36-9.33,18.49-14.16,7.48-5.9,15.18-10.77,23.17-15.93,5.58-3.61,11.35-6.67,17.1-10,11.44-6.63,24.34-10.63,36.4-16.08A352.56,352.56,0,0,1,347.35,66a242.15,242.15,0,0,1,28.52-3.37c3-.23,17.34-2.79,18.83,1,.22.58-.92,3.37-1,4.17-.23,1.6-.25,3.32-.33,4.91-.22,4.5-2.48,16.8.83,20.26,1.57,1.65,2.82.45,5.18,0,3.1-.59,6.36-.33,9.51-.33,6.7,0,13.33,0,20,.67,1.42.14,4.8-.14,5.55,1,.59.87-.24,4.17-.34,5.19-.67,6.65-.65,13.76-.68,20.51,0,10-.34,19.9-.28,29.86,0,2.6-1.23,9.56.09,11.76,1.22,2,4.81,1.58,6.81,2-.32-.07.52-32.62.49-35.66-.1-10.61-.77-21.25-.77-32,0-5-2-14.61.39-18.94,5-.32,9.91-.19,14.89-.44.14-2.75-1-7.18,1.38-8.28,3.14-1.44,9.33,1.6,12.88,1.38-.32,0,.45,22.21.45,24.2,0,5.69-.34,11.33-.59,17-.54,12.46.59,24.71.59,37.15,0,5.16-.47,10.06-.72,15.2-4.26.57-9.19-.62-13.58-.62-5.59,0-11.39-.35-16.94.24-15.7,1.69-32.27.91-48.16.09-10.62-.55-21.43.27-32.14.1-12.09-.19-24.18-.44-36.27-.44-29.6,0-59,1-88.57,1-8.16,0-16.68.73-24.62-.76-2.89-.54-5.9-1-8.74-1.49C193.6,160.38,186.58,162.33,180.17,162.33Z" transform="translate(-53.25 -44.96)"/><g class="cls-3"><path d="M440.17,158.78c-.13-10.26.36-20.52.26-30.82-.1-10.61-.77-21.25-.77-32,0-5-2-14.61.39-18.94,5-.32,9.91-.19,14.89-.44.14-2.75-1-7.18,1.38-8.28,3.14-1.44,9.33,1.6,12.88,1.38-.32,0,.45,22.21.45,24.2,0,5.69-.34,11.33-.59,17-.54,12.46.59,24.71.59,37.15,0,5.16-.47,10.06-.72,15.2,0,.76-19.65-.13-21.13-.32a10.14,10.14,0,0,0-4.14,0c-1.13.34-2.28,1.1-3.39.72Q440.2,161.24,440.17,158.78Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M303.55,161.86c-.81-12.51,1.83-24.9,2.8-37.33a114.16,114.16,0,0,0-.45-18.9c-.5-5.93.14-12.09.09-18.06q0-4.55-.21-9.1c8.46-5.27,18.63-7.23,28.31-9.56,7.08-1.7,14.13-3.37,21.41-1.81-3.48,13.14-.1,27-.06,40.58,0,3.35-.18,6.7-.33,10a355.09,355.09,0,0,0,.93,45.51c-.07-.88-31.13-.58-34.17-.58-1.33,0-18.28-.34-18.21.53Q303.59,162.53,303.55,161.86Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-14"><path class="cls-15" d="M239.27,163.84a64.66,64.66,0,0,0,2.63-13.77l4.88-41.94a19,19,0,0,1,1.28-5.73c1.72-3.78,6.3-4.89,9.83-6.3,4.23-1.69,8.45-3.38,12.6-5.26a188.12,188.12,0,0,1,24.76-9.16L294,102.77c-.4,6.47-1.61,13.54-.9,19.93a203.82,203.82,0,0,1,1.36,23.14c0,3.86-.17,7.72-.48,11.57s0,5.17-3.94,5.26c-8.35.18-16.71.58-25.05.71q-7,.11-14.07.19C247.54,163.6,242.35,165,239.27,163.84Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M180.17,162.33c-4.89,0-5.59-1.1-7.57-5.41-.55-1.2-2.47-4.28-2.28-5.58.35-2.33,3.06-3.08,5-4.35,6.52-4.23,12.36-9.33,18.49-14.16,7.48-5.9,15.18-10.77,23.17-15.93,5.58-3.61,11.35-6.67,17.1-10,4.47-2.59,9.16-5.63,14.1-7.05a1.67,1.67,0,0,1,1-.08c.77.26.74,1.35.55,2.14a479.38,479.38,0,0,0-8.47,47.41c-.42,3.28.1,9.24-1.38,12.13-1.2,2.34-5,2.19-7.76,2.21-7.81.06-15.73.68-23.45-.76-2.89-.54-5.9-1-8.74-1.49C193.6,160.38,186.58,162.33,180.17,162.33Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M499.64,86.89c-.77-1.42-1.53-2.84-2.27-4.28-3-5.84-6.46-6.27-12.5-8.39-4.32-1.51-8.84-3.06-13.48-2.84-.63,4,6.39,10.9,8.54,14.28,3.41,5.36,5,11,7.49,16.75,2.83,6.54,8,11.93,11.25,18.33,3.69,7.21,8.86,13.26,12.93,20.29,4,6.84,9.36,13.51,14.4,19.55,5.21-1.43,7.56-8.46,13.61-9.2,1.34,3.76-.71,7.55-.23,11.23a520.91,520.91,0,0,0,78.88-1.94c4.88-.48,9.81-.13,14.71-.39-2.19-3-3.55-6.49-6.15-9.47-3.41-3.91-7.1-6.63-11.26-9.64-6.7-4.85-14.37-8.71-20.69-14-3.87-3.24-7.56-6.62-11.76-9.5a196.87,196.87,0,0,0-30.18-16.75c-2.57-1.15-10.73-6.6-13.35-3.61-1.39,1.58-.13,8.08-.23,10.18-.44,9.22,1.55,18,1.65,27.17.05,4.4,1.27,12.09-1,15.71-4.13-2.63-4.54-9.06-6.61-13.08-2.44-4.74-6.06-8.74-8.82-13.29-3.25-5.35-7-9.85-10.51-15-1.79-2.64-3-5.7-4.81-8.32C506,96,502.37,91.94,499.64,86.89Z" transform="translate(-53.25 -44.96)"/><g class="cls-16"><path class="cls-17" d="M499.64,86.89c-.77-1.42-1.53-2.84-2.27-4.28-3-5.84-6.46-6.27-12.5-8.39-4.32-1.51-8.84-3.06-13.48-2.84-.63,4,6.39,10.9,8.54,14.28,3.41,5.36,5,11,7.49,16.75,2.83,6.54,8,11.93,11.25,18.33,3.69,7.21,8.86,13.26,12.93,20.29,4,6.84,9.36,13.51,14.4,19.55,5.21-1.43,7.56-8.46,13.61-9.2,1.34,3.76-.71,7.55-.23,11.23a520.91,520.91,0,0,0,78.88-1.94c4.88-.48,9.81-.13,14.71-.39-2.19-3-3.55-6.49-6.15-9.47-3.41-3.91-7.1-6.63-11.26-9.64-6.7-4.85-14.37-8.71-20.69-14-3.87-3.24-7.56-6.62-11.76-9.5a196.87,196.87,0,0,0-30.18-16.75c-2.57-1.15-10.73-6.6-13.35-3.61-1.39,1.58-.13,8.08-.23,10.18-.44,9.22,1.55,18,1.65,27.17.05,4.4,1.27,12.09-1,15.71-4.13-2.63-4.54-9.06-6.61-13.08-2.44-4.74-6.06-8.74-8.82-13.29-3.25-5.35-7-9.85-10.51-15-1.79-2.64-3-5.7-4.81-8.32C506,96,502.37,91.94,499.64,86.89Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M499.64,86.89c-.77-1.42-1.53-2.84-2.27-4.28-3-5.84-6.46-6.27-12.5-8.39-4.32-1.51-8.84-3.06-13.48-2.84-.63,4,6.39,10.9,8.54,14.28,3.41,5.36,5,11,7.49,16.75,2.83,6.54,8,11.93,11.25,18.33,3.69,7.21,8.86,13.26,12.93,20.29,4,6.84,9.36,13.51,14.4,19.55,5.21-1.43,7.56-8.46,13.61-9.2,1.34,3.76-.71,7.55-.23,11.23a520.91,520.91,0,0,0,78.88-1.94c4.88-.48,9.81-.13,14.71-.39-2.19-3-3.55-6.49-6.15-9.47-3.41-3.91-7.1-6.63-11.26-9.64-6.7-4.85-14.37-8.71-20.69-14-3.87-3.24-7.56-6.62-11.76-9.5a196.87,196.87,0,0,0-30.18-16.75c-2.57-1.15-10.73-6.6-13.35-3.61-1.39,1.58-.13,8.08-.23,10.18-.44,9.22,1.55,18,1.65,27.17.05,4.4,1.27,12.09-1,15.71-4.13-2.63-4.54-9.06-6.61-13.08-2.44-4.74-6.06-8.74-8.82-13.29-3.25-5.35-7-9.85-10.51-15-1.79-2.64-3-5.7-4.81-8.32C506,96,502.37,91.94,499.64,86.89Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M92.25,301.5c0-6-.5-12-.5-18.06,0-5.5-1-10.71-.75-16.21s-.53-10.74,1.4-16c3.53-9.57,9.82-18.41,15.56-26.75,3.87-5.62,7.07-11.13,14-12.82q.13-.15,0,0a3.67,3.67,0,0,1-.62.54c3.43-.59,7-2.53,10.66-1.41,5.14,1.6,6.51,6.61,7.46,11.3,3.59,17.89,6,36.34,7.92,54.46.51,4.84.5,13.41,4.64,16.72,1.58-5.82,1-12.05.73-18-.09-2.2,1-6.55-1-8,0,0,1.38-62,1.31-63s9.69-2,9.69-2l8.44,1.41,1.06,4.33L174,195.93h20.67v14.55l12.33.13V195.93l19-.65s12.92,3.72,12.84,4.22.17,76.75.17,76.75l.47,16.25,16.16-28.11,31.47-48.05L297.25,201l11.54,8L310.67,188l13.09-.23L323.18,219l17.32.25L338.75,304l-28.66-1V213l-1.84-1L274,271l-11.25,20L253,302l-12-8.67-2,1.09,1.33,6.85Z" transform="translate(-53.25 -44.96)"/><g class="cls-18"><path class="cls-19" d="M92.25,301.5c0-6-.5-12-.5-18.06,0-5.5-1-10.71-.75-16.21s-.53-10.74,1.4-16c3.53-9.57,9.82-18.41,15.56-26.75,3.87-5.62,7.07-11.13,14-12.82q.13-.15,0,0a3.67,3.67,0,0,1-.62.54c3.43-.59,7-2.53,10.66-1.41,5.14,1.6,6.51,6.61,7.46,11.3,3.59,17.89,6,36.34,7.92,54.46.36,3.41.41,6.88,1.22,10.23s3,6.57,2.57,10.21c-.92,7-12.72,4.42-17.57,4.43l-21.11,0Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-14"><path class="cls-15" d="M310.09,301.5V253.82c0-17.45.39-34.95-.69-52.32-.06-1,1.2-13.52,1.27-13.52l13.09-.23L323.18,219l17.32.25L338.75,304l-28.66-1Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M253,302c-2.25-1.63-4.71-2.95-7-4.5-1.06-.72-5.47-2.36-5.74-3.5a2.51,2.51,0,0,1,.14-1.25c2.85-9.95,10.06-19.35,15.24-28.36l31.47-48.05L297.25,201c4.1,2.86,9.46,5.37,12.37,9.43a3.46,3.46,0,0,1-1.25,3.18c-3.48,2.74-5.36,7.38-7.58,11.2l-8.67,14.93-15.74,27.11L274,271l-11.25,20Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-20" d="M153,295.9c-.63-6.8,0-13.85-.26-20.65-.09-2.2,1-6.55-1-8,0,0,1.38-62,1.31-63s9.69-2,9.69-2l8.44,1.41,1.06,4.33L174,195.93h20.67v14.55l12.33.13V195.93l19-.65s12.92,3.72,12.84,4.22.17,76.74.17,76.75c0,2.8.16,5.61.24,8.41.11,4-.6,8.55.14,12.4.4,2.11,2.31,3.77,2.05,6.09-10.6.4-21.52-1-32.17-1.15s-21.12,0-31.67.34c-7.47.26-15.09.63-22.26-1.48a3,3,0,0,1-1.46-.77,3,3,0,0,1-.55-1.55C153.19,297.68,153.08,296.79,153,295.9Z" transform="translate(-53.25 -44.96)"/></g><polygon class="cls-11" points="292.81 257.04 292.37 188.62 331.25 188.69 332.25 161.42 375.58 161.42 377.25 158.59 388.74 157.38 392.75 158.09 396.14 159.65 397.6 150.81 419.52 150.97 418.91 163.79 431.27 164.54 431.3 151.68 445.66 150.81 454.25 150.63 462.5 152.7 463.08 178.06 474.5 177.82 477.54 175.78 476.5 171.22 496 164.54 500.75 165.29 513 237.04 518.25 258.54 486.5 258.79 479.75 205.44 476.5 185.51 474.5 188.04 474.5 259.72 388.74 258.79 372.42 251.62 363.92 248.75 359.76 249.29 360.52 252.7 346.42 254.29 327.96 255.7 320.75 255.7 292.81 257.04"/><g class="cls-16"><path class="cls-17" d="M536.48,277.9,533,250.4c-1.67-10.25-2.32-20.24-3.6-30.5a7,7,0,0,1-.06-2c.57-3.44,8.49-4.49,11.35-5.47l8.57-2.94,4.75.75L566.25,282l5.25,21.5-31.75.25Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M473.47,293.73c-1.74-26.81.49-53.82-1.55-80.62a4.35,4.35,0,0,1,.27-2.4c1-1.92,12.33-1.69,12.33-1.21l0-12.86,14.36-.87,8.59-.19,8.25,2.08.58,25.36c2.8-.06,10.63-1.71,11.76,1.59a7.14,7.14,0,0,1,.21,2.63c-.69,16-.55,32.12-.55,48.19v29.24s-17.26-.19-18.27-.2l-18.3-.2-9.55-.1c-1.55,0-5.71,1.2-6.72,0a4.87,4.87,0,0,1-.81-2.69Q473.72,297.6,473.47,293.73Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M425.5,293.74a206.26,206.26,0,0,1-.69-22.25l.26-51.15a30.31,30.31,0,0,0-.76-8.51,7.25,7.25,0,0,1-.48-2.53c.14-1.71,1.71-2.93,3.28-3.62,5-2.2,9.39-2.75,14.88-3.33l4,.71,3.39,1.56,1.45-8.84,21.92.16c-.27,5.63.18,11.07-.14,16.67-.46,8.18-.88,16.36-1.09,24.55-.41,16.12,0,32.31,2.46,48.27.91,5.88,2.09,11.73,2.51,17.66.16,2.26-.67,1.84-2,1.84-.19,0-1.31-.76-1.64-.85-1.21-.34-3,0-4.25,0L455,303.89l-13-.14c-2,0-5.17-2.27-7-3.05-2.68-1.18-9-2.58-9.43-6Q425.55,294.23,425.5,293.74Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-19" d="M346.06,302l-.45-68.42,38.88.07,1-27.27h16.62c8.39,0,18.24-1.41,26.4.12a68.46,68.46,0,0,1-.41,12.13l-2.78,29.79c-.43,4.65-.87,9.3-.88,14,0,3.8.25,7.6.52,11.39.52,7.46,4,19.43,3.88,26.89-3.05.17-7.48-.41-10.33,0l-4.62-.25h0L400,300.5l-18.79.17H374Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-20" d="M433.26,162.79c-.09-1.68-.12-3.36-.15-5l-.53-29.61a72.4,72.4,0,0,0-.4-7.61c-.31-2.49-.88-5-1-7.47-.28-6.72,2.75-13.46,1.35-20a1.53,1.53,0,0,0-.45-.93,1.6,1.6,0,0,0-1-.22c-7.26,0-14.53.07-21.78.32-2.6.09-4.76,1-7.28,1.19-2.21.18-6.4-.33-6.61,3-.06.92.31,2.07-.45,2.59-2.09-11,1.69-22.46-.31-33.48a3,3,0,0,0-.73-1.72,3.17,3.17,0,0,0-2.4-.51c-11.48.7-23,1.4-34.34,3.2a4.31,4.31,0,0,0-2.25.82c-1.21,1.08-1.59,5.31-2,6.89-.75,3.31.08,7.37.39,10.71,1.19,12.69.41,25.42.46,38.17q.08,19.88,1,39.74,20.06,1.58,40.21,1.38C398.23,164.17,433.25,162.64,433.26,162.79Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M714.75,284.75c1.42,1.82,1.16,5.24,1.75,7.45s2,3.71,2.85,5.67c2.21,5.24-8.77,4.26-11.58,4.29l-18.26.18-52,.51L635.34,210l-2.86-3.52S622.35,250.08,616.92,266s-12.28,36-12.28,36l-14.84-6.92-2.55,7.29L571.5,303.5l-2.5-97,.75-2.25,11.8-1.16H587l1.5,3.28-.12,6.5-1.13,54.83.25,23.8,26.19-77,5.56-13.75L620,194l13,3.25,2.34,2.5-1.1,4.5,18.27-1.2,2.69,3.45,1.1,2.25V195l8-.33s31,44.17,38.25,58.88" transform="translate(-53.25 -44.96)"/><g class="cls-18"><path class="cls-19" d="M714.75,284.75c1.42,1.82,1.16,5.24,1.75,7.45s2,3.71,2.85,5.67c2.21,5.24-8.77,4.26-11.58,4.29l-18.26.18-52,.51-1-42.75-.73-31.8-.27-11.63c0-1.28-.74-11.06-1.42-10.63,5.27-3.33,12.27-2.59,18.43-3l2.69,3.45,1.1,2.25V195l8-.33s31,44.17,38.25,58.88" transform="translate(-53.25 -44.96)"/></g><g class="cls-12"><path class="cls-13" d="M635.34,199.75c-1.38,5.62-3.78,10.93-5.29,16.55-1.63,6.07-2.86,12.23-4.4,18.32-2.66,10.52-5.23,21.14-8.72,31.42-5.42,16-12.28,36-12.28,36l-14.84-6.92-2.55,7.29L571.5,303.5l-2.5-97,.75-2.25,11.8-1.16H587l1.5,3.28-.12,6.5-1.13,54.83.25,23.8,26.19-77,5.56-13.75L620,194l13,3.25Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M82,522.25l5.82-27.41,20.8,5.82,5.19,3.67L111.33,509l8.5-.68,4,.74,1.66-3V484.25l12.81-2.65h8l6.21.9,3.5.32.5,14.42L168,495.5l1.14-.66.11-13.09,16.5.75h5.91v9.65l1,2.69,5.11-5.88,4.59-.52,4.57.52,5.1.67.6,5.21,4.79-2.88,4.73-.25,3.63-1s7,15.41,8.11,18.2-.1,4.09-.1,4.09l-2,8.21L229.5,544.5l-2.88,12.27v5.56l2.63,3.86,2.76,1.43-13.26,8.62L206,587.76l-92.21.05Z" transform="translate(-53.25 -44.96)"/><g class="cls-21"><path class="cls-22" d="M82,522.25l5.82-27.41,20.8,5.82,5.19,3.67L111.33,509l8.5-.68,4,.74,1.66-3V484.25l12.81-2.65h8l6.21.9,3.5.32.5,14.42L168,495.5l1.14-.66.11-13.09,16.5.75h5.91v9.65l1,2.69,5.11-5.88,4.59-.52,4.57.52,5.1.67.6,5.21,4.79-2.88,4.73-.25,3.63-1s7,15.41,8.11,18.2-.1,4.09-.1,4.09l-2,8.21L229.5,544.5l-2.88,12.27v5.56l2.63,3.86,2.76,1.43-13.26,8.62L206,587.76l-92.21.05Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M592.09,588l14.61-9.7-.15,9.23,31.78.81,44.33-.81s8.87-18.31,18-38c9-19.49,18.24-40.34,19.36-46.2,2.25-11.78,0-5.95,0-5.95a36.4,36.4,0,0,1-5.55-.79c-1.25-.39-2.24-2.22-3.75-.67-.92.95-1,2.4-1.12,3.72-.61,7.11-3.47,13.81-5,20.78a67.44,67.44,0,0,0-1.42,17.29c.17,4.31.64,8.82-1.1,12.76s-5.5,6.72-7.62,10.51a101.78,101.78,0,0,1-.84-11.9q.65-29.68,1.3-59.37c-3.89.63-7.49-1.87-11.53-1.89a9.74,9.74,0,0,0-4.33.8,4.84,4.84,0,0,0-2.73,3.3,16.64,16.64,0,0,1-.3,2.3c-.25.74-1,1.39-1.76,1.09-1.23-.52-1.5-11.2-1.48-13-1.88-.13-20.08-1.41-20.08-1.38l-1.12,14.8-13.22,1s.25-13.54.33-14.21-31.5,1.57-31.5,1.57l-1.5,90.54-2-1.6-35.11-56.86-7.33,10.78-3,3,21.07,38.54" transform="translate(-53.25 -44.96)"/><path class="cls-11" d="M175.14,629.45a13.91,13.91,0,0,1,6.19,6.09l-.49-13.79a26.83,26.83,0,0,1,8.37,1.08,8.38,8.38,0,0,1-.92,4.7c1.39-.45,2.83.81,3.26,2.21a17.53,17.53,0,0,1,.27,4.36c.07,1.46.59,3.08,1.91,3.71.45.21,1,.29,1.42.49a5.55,5.55,0,0,1,2.35,2.88c2.91,5.91,6.45,12,12.24,15.11a28.83,28.83,0,0,0,8.88,2.75,78.46,78.46,0,0,0,10.7,1.11,9.41,9.41,0,0,1,4.68.93c1.89,1.17,2.62,3.54,3,5.73a62.61,62.61,0,0,1,.5,9.74v15.57c0,2.63-.39,5.87-2.83,6.85s-5.12-1.25-7.11-3.15a92.58,92.58,0,0,0-11-8.45c-7.57-5.3-15-10.82-22.31-16.47-8.51-6.58-16.64-13.72-25.3-20.1-6.14-4.53-9.18-8.39-8.43-16.6.31-3.47,1.82-3.48,5-3.79Z" transform="translate(-53.25 -44.96)"/><g class="cls-18"><path class="cls-23" d="M175.14,629.45a13.91,13.91,0,0,1,6.19,6.09l-.49-13.79a26.83,26.83,0,0,1,8.37,1.08,8.38,8.38,0,0,1-.92,4.7c1.39-.45,2.83.81,3.26,2.21a17.53,17.53,0,0,1,.27,4.36c.07,1.46.59,3.08,1.91,3.71.45.21,1,.29,1.42.49a5.55,5.55,0,0,1,2.35,2.88c2.91,5.91,6.45,12,12.24,15.11a28.83,28.83,0,0,0,8.88,2.75,78.46,78.46,0,0,0,10.7,1.11,9.41,9.41,0,0,1,4.68.93c1.89,1.17,2.62,3.54,3,5.73a62.61,62.61,0,0,1,.5,9.74v15.57c0,2.63-.39,5.87-2.83,6.85s-5.12-1.25-7.11-3.15a92.58,92.58,0,0,0-11-8.45c-7.57-5.3-15-10.82-22.31-16.47-8.51-6.58-16.64-13.72-25.3-20.1-6.14-4.53-9.18-8.39-8.43-16.6.31-3.47,1.82-3.48,5-3.79Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-11" d="M560.6,661.45a34,34,0,0,0,27-8c4-3.55,7.13-8,10.2-12.41a101.21,101.21,0,0,0-3,33c5-2.15,10.08-4.38,13.87-8.25a42,42,0,0,0,5.77-8.14,71.54,71.54,0,0,0,6.35-12.44c.93-2.62,1.55-5.34,2.28-8a104.45,104.45,0,0,1,4.87-14,1.57,1.57,0,0,1,.44-.67,1.54,1.54,0,0,1,1-.19,25,25,0,0,1,13.82,5.09c-5.61,4.68-5.11,13.61-9.43,19.5a27.5,27.5,0,0,1-6.13,5.57q-18.32,13.5-37.27,26.11-9.35,6.22-18.84,12.22c-1.75,1.1-6.93,5.66-9,5.23-2.86-.6-1.62-6.71-1.62-8.86S561.4,661.57,560.6,661.45Z" transform="translate(-53.25 -44.96)"/><g class="cls-18"><path class="cls-23" d="M560.6,661.45a34,34,0,0,0,27-8c4-3.55,7.13-8,10.2-12.41a101.21,101.21,0,0,0-3,33c5-2.15,10.08-4.38,13.87-8.25a42,42,0,0,0,5.77-8.14,71.54,71.54,0,0,0,6.35-12.44c.93-2.62,1.55-5.34,2.28-8a104.45,104.45,0,0,1,4.87-14,1.57,1.57,0,0,1,.44-.67,1.54,1.54,0,0,1,1-.19,25,25,0,0,1,13.82,5.09c-5.61,4.68-5.11,13.61-9.43,19.5a27.5,27.5,0,0,1-6.13,5.57q-18.32,13.5-37.27,26.11-9.35,6.22-18.84,12.22c-1.75,1.1-6.93,5.66-9,5.23-2.86-.6-1.62-6.71-1.62-8.86S561.4,661.57,560.6,661.45Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-20" d="M618.76,481.46c-3.58,0-7.92.36-9.5,3.58a9.59,9.59,0,0,0-.68,4.06l-2.13,98.17a180.81,180.81,0,0,0,34.45-.75c-2.21-6.75-2.28-14-2.32-21.09l-.17-28.76a101.28,101.28,0,0,1,.41-12c.47-4.13,1.45-8.2,1.66-12.35.25-4.95-.6-9.85-.78-14.79-.12-3.56,1.07-7.89-.42-11.27C636.27,479.39,624.51,481.52,618.76,481.46Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-18"><path class="cls-23" d="M652.25,544q.42-27.32-.87-54.62c-.13-2.8,0-6.14,2.34-7.64a8,8,0,0,1,4.52-.82l11.28.18a2.46,2.46,0,0,1,3,2.44l1.86,9.92c1.53-.69,1.42-3.21,2.93-3.93a3.4,3.4,0,0,1,1.64-.2A117.76,117.76,0,0,1,694.3,491a1.45,1.45,0,0,1,1.53,1.88l-3.67,40.48a59.81,59.81,0,0,0-.35,9.87c.26,3.51,1.15,6.95,1.53,10.45a48.07,48.07,0,0,1-.17,10.79,10.67,10.67,0,0,1-.59,2.76,12.66,12.66,0,0,1-2.09,3.11,67.57,67.57,0,0,0-10.11,17.14,147.26,147.26,0,0,0-16.07-.7c-3.72,0-9.24,1.46-12.55-.81-2.9-2-2.75-5.51-2.27-8.6.83-5.29,1.67-10.51,2.07-15.86C652,555.68,652.16,549.82,652.25,544Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-21"><path class="cls-22" d="M590.16,587.71c-1.45-5.44-5.88-9.46-9.16-14-5.17-7.2-7.61-16.07-12.71-23.33a50.69,50.69,0,0,1-3.54-5.18c-.9-1.69-1.47-3.54-2.34-5.24-1-2-2.55-4-2.77-6.23a11.73,11.73,0,0,1,1.12-5.19c1.69-4.42,3.58-9.11,7.45-11.83,5.85,6.16,8.57,14.61,13.45,21.56,1.1,1.56,2.3,3,3.44,4.56A135.37,135.37,0,0,1,593.95,557q2.83,5,5.65,10,1.41,2.5,2.8,5c.74,1.34,2.23,3.11,2.42,4.65.31,2.54-3.39,4-5.15,5.19Q595.06,585,590.16,587.71Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-21"><path class="cls-22" d="M639.06,496.73c-1.32,8.89-1.12,17.92-.91,26.91l.18,7.91c.31,13.59.63,27.17.85,40.76a79.15,79.15,0,0,1-.68,14.6l11.23-1.48q1.41-23.59,1.67-47.24c.07-6.84.07-13.68.08-20.52v-8.08c0-2.4,0-4.79-.09-7.19-.06-1.61.23-4.24-.84-5.61S639.17,496,639.06,496.73Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M709.39,497.13a.65.65,0,0,0-.78.67l-3.88,25.33c-1,6.83-2.1,13.74-1.52,20.62,4.23-4.28,5.51-10.58,8.36-15.89,1.36-2.54,3.1-4.87,4.28-7.5a39.23,39.23,0,0,0,2.33-8.3c.85-4.17,2.49-9.42,1.85-13.69-.32-2.18-1.46-1.82-3.46-1.69Z" transform="translate(-53.25 -44.96)"/></g></g><g id="SHADOWS"><g class="cls-3"><path d="M195.5,131.62a9.1,9.1,0,0,1,1.78-.56c1.88,5.23-1.12,12.48-1,17.92,0,2.32,0,5.88,1.86,7.58,1.14,1,9.58,1.63,9.52.49.08,1.56.55,3,.34,4.57-.22,1.73-20.35,1.31-22.15,1.31-8.71,0-17.42-.5-26.11-1,3.56-4,9-6.43,12.87-10.29s7.75-7.42,12-10.9C187.92,138,191.39,133.38,195.5,131.62Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M233.33,106.67c-4.37,13.39-11.53,28.24-11.67,42.65-.05,5.33,2.52,6.93,7,9.08,2.48,1.19,8.63,1.47,10,3.51-4.31,2.79-12.76,2.12-17.7,1.1-4.15-.86-8-4.47-10.78-7.51s-.25-5.88.83-9.55c1.74-5.89,3.26-11.78,4.7-17.72,1-4.22,1.49-8.33,2.22-12.58.93-5.4,4-3.06,7.43-6.65" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M262,93c-2.62,0-7.35,3.44-9.67,4.91-3.2,2-3,3.17-2.66,6.69.68,6.61.65,13.22,1,19.9s0,13.5.67,20.1c.29,3.06-1.11,13,1,15.16s12,.57,14.7.57c3.7,0,7.67.38,11.27-.38-.22-1.64-1.85-2.85-2.55-4.59-1.52-3.79-1.51-8.84-2.07-12.86-1.12-8-1.22-16.34-1.59-24.43-.48-10.46.65-21.92,5.58-31.34C272.13,86.33,264.71,90.07,262,93Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M304,79c-3.21-.27-8.87.83-9.68,3.83s.68,8.29.68,11.55c0,4,.2,8,0,12-.64,12.68,0,25.56,0,38.33,0,5.29.1,10.39.38,15.62,4.34,1.18,14.61,1.76,18.85,0-5-2.95-3.89-15.79-4.32-20.87a195.5,195.5,0,0,1-.24-34.41c.56-6.13,1.47-12.29,2.42-18.34.63-4,2.24-8.05,2.57-11.94C311.49,74.47,308.31,76.81,304,79Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M342,68c-3.19.65-10.42,2.59-11.68,5.82-.76,2-.06,6,0,8.1.15,4.29.67,8.41.67,12.73,0,16-1.35,31.81-.67,47.78.28,6.5,1.09,13,1.38,19.53,4.08.45,7.68-1.32,11.59-2-.44-3.71-2.43-7.78-3.13-11.62-1.12-6.14-2.19-12.25-3.09-18.43-1.37-9.37-2.94-20.47-1.69-30,.86-6.51,2.87-12.88,3.45-19.48C339.09,77.63,338.34,71.23,342,68Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M370,63.33c-7,2.77-7.27,13.38-8.07,19.65-1.33,10.37-1.73,20.93-2.27,31.35-.48,9.22,1.67,18.62,3,27.67.83,5.76,1.76,11.21,4.36,16.49,1.79,3.63,1.95,4-2.45,4.17a28.73,28.73,0,0,1-9.16-1.05,575.68,575.68,0,0,1-.73-57.6c.35-8.3,1-16.73,1-25,0-5.52-1.65-12.88,5.33-14" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M397.67,92.67c2.19-.29,12.81-1,14.36,2,.74,1.42-1.14,6.2-1.37,7.76a91.87,91.87,0,0,0-1,12.33c-.16,16.12-.36,32.61-.72,48.54a85.48,85.48,0,0,1-8.57.33c-1.1-11.42-2.39-22.9-3.54-34.4a200.38,200.38,0,0,1-.84-20.12C396,104,397,98.7,397.67,92.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M395.33,130c0,9.54.06,26.48-7,33.92,1.68.68,3.76.46,5.58.37.61-8.25,1-16.67,1.38-24.95" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M444.67,77.33c-5-2.72-3.47,6.66-3.33,8.67.51,7.82.67,15.62.67,23.49,0,8.92.86,17.62,1.36,26.49.36,6.51.46,13.41,1.72,19.83.92,4.69,2.4,7.41,7.87,5.81,1.4-27.34-1.36-55,.38-82.3.21-3.23,1-2.17,2.27-4.4s.27-5,3.75-3.58c4.71,1.88,2.08,14.17,2,17.9-.41,12.3-1.71,24.59-2.23,36.88-.36,8.41-.85,17.68.59,26,.47,2.71,1,9.7,3.75,10.56-6.92-.24-16.09,3.53-22.72.95-.53-16.33-.92-32.79-1-49.17-.05-7.63-.93-15.23-1-22.85C438.63,87.94,437,78.35,444.67,77.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M477,75.67c1.36,2.46,4.09,3.8,5.93,5.91a54.56,54.56,0,0,1,6.25,9.25c4,7.16,7.92,14.39,12.17,21.53,4,6.8,6.95,14.19,10.73,21.13,3,5.58,6.67,9,11.52,12.77s7.41,5.84,13.63,5.73c-5,2.14-8.6,5.62-12.87,8.1-4.58-5.69-8.66-11.58-13-17.43-5.78-7.75-9.34-16.33-14.67-24.34S487.59,101.63,483.33,93c-1.7-3.46-3.87-6.54-4.91-10.28C477.85,80.64,477,71.8,477,75.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M540.67,97c-1.83,6.16-.33,14.59-.33,21,0,6.6,0,13.18-.33,19.73-.24,5.5-.08,11.05-.33,16.51-.24,5.12-1,7.1,4.45,7.09h16.11c-14.28-.76-10.06-20.28-10.59-30.34-.45-8.45.63-16.6.7-25,0-1.21.78-6.42,0-7.37-.89-1.11-2.88-.63-4.36-.64" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M585.33,121.67c-2.71,5.44-.34,16.3-.65,22.68-.26,5.42-1.19,11.08-1.63,16.27,3,.44,7.33-1.1,9.72,0-3.49-5.92-1.46-16.87-1.44-23.48C591.34,134.45,592.46,123.68,585.33,121.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M574.42,211.81c-.24,3.17.63,7,.71,10.31.23,8.73.76,17.45,1.44,26.16,1.35,17.26,3.31,34.47,4.74,51.72.26,3.13,1,2.78-2.46,3.49a30.27,30.27,0,0,1-7.12.47c-1-2.36-.41-5.56-.4-8.06,0-4.31-.52-8.54-.67-12.83-.34-10.21-.32-20.39-.74-30.58-.53-12.83-1.07-25.66-1.2-38.5,0-2.95-.13-11.65,5-10.85C578.63,203.9,574.61,209.27,574.42,211.81Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M531,215.67c3.23-3,8.55-3.56,12.62-4.29-.6,2.26-3.63,4-4.79,6.32-1.31,2.59-1.67,5.95-1.85,8.8-.51,8.39,1.44,16.92,2.85,25.13a303.37,303.37,0,0,0,8.52,34.9c.88,3,1.46,6,2.15,9,.28,1.19,1.64,4,1.59,5.09-.2,4-7.44,3.47-10.71,2.35-.36-6.51-2.73-12.28-4.55-18.54-2.31-8-3.21-16.3-4.09-24.53A223.9,223.9,0,0,1,531.33,236C531.34,229.67,530.38,223.27,531,215.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M628.67,194.67c-1.84-.19-5.55-1.18-7.33-.33-2.42,1.15-1.84,4.47-2.58,7.24-2.05,7.69-5.47,14.8-7.18,22.58-2.26,10.3-6.18,21-10.18,30.77-3.78,9.18-5.74,18.87-9.16,28.16-.87,2.38-4.17,7.24-3.83,9.65.45,3.19,5.93,5,8.52,6.57.42-4.8,0-9.18,1.23-13.95,1.14-4.28,2.27-8.6,3.52-12.86,3.23-11,6.07-22.28,8.48-33.52,1.86-8.7,5.69-17.17,9.19-25.34a63.77,63.77,0,0,0,3.74-9.92C623.66,201.41,623.59,199.54,628.67,194.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M647.67,201.67c-3.32-.28-11.86,3-13,6s.35,8.4.34,11.37c0,4.54-.15,9.13,0,13.67.29,8.56,1.29,17.08,1.67,25.64.33,7.58-.28,15.09.69,22.59.83,6.47,1,12.79,1.36,19.36,2.48.14,5,0,7.51.08-3.78-6.92-2.88-15.86-3.3-23.51-.66-12-.2-23.8-.25-35.77,0-8.69,1.8-17.22,2.17-25.88C645,210.87,646.82,206.06,647.67,201.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M665.33,194c-1.33,0-5.61.45-6.5,1.36-1.38,1.41-.4,6.65-.5,8.64-.4,8.11-1.32,16.31-1.67,24.47-.46,10.71-.54,22,0,32.7.41,8,2.29,15.71,2.67,23.73.19,4.15.3,8.26.33,12.45,0,1.92-.38,3.07,1,4,1.7,1.14,5.48.21,7.33,0,.12-9.45-2.16-20-3.3-29.44a189,189,0,0,1-1.69-29.5C663.49,227.72,666.67,213.23,665.33,194Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M692.33,233c-1,2.21-.24,6.22-.33,8.91-.16,4.61-.33,9.2-.33,13.84,0,6.58.38,13,.67,19.59.39,8.88,1.53,18.17,1.38,26.95,2.28.28,5.82.26,7-1.88,1-1.76-.16-5.48-.34-7.45-.43-4.61-.56-9.28-.72-13.9-.48-14-2.27-26.92-6.36-40.06" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M526.33,221.67c-3.89.57-8.66-.66-9.67,3.83-1.47,6.54,0,15,0,21.75,0,13,.66,25.67,1.33,38.39.31,5.86.11,11.76.38,17.64,3.28.48,6.2,1.43,7.62-1.78,1.06-2.41.23-6.1.33-8.76.17-4.89.31-9.82.68-14.7.8-10.38.32-21,.32-31.38C527.33,238.63,528.54,230.67,526.33,221.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M483.33,210a37.06,37.06,0,0,0-7.67.67c-3.15.66-2.88.1-3,3.65-.29,8.35-.33,16.65-.33,25,0,18.61-.15,37.75,1.66,56.18.77,7.88,5,8.82,12.63,8.44.52-7.8-.95-15.76-.95-23.62,0-9.13-.9-18.22-.5-27.33.31-7.11.5-14.17.5-21.32C485.67,226,487,217.38,483.33,210Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M494,195.67c-2.1-.07-6.24-.32-8,.74-2.8,1.69-1.37,5.65-1.65,8.68-.95,10.14-1.34,20-1.35,30.3,0,10.72.47,21.62,1,32.36.39,8.3.2,17,1,25.24.24,2.46-.07,8,1.33,10,1.91,2.75,6.2,1.28,9.29,1.28.09-2-.74-4-1-6-.83-5.58,0-11.42-.24-17-.38-11.2-.59-22.43-1-33.64C492.75,231.11,492.33,214.57,494,195.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M452,196.33c2.4,0,4.72-.21,6.95.73.46,21.53,1.05,43.38,1.05,65a251,251,0,0,0,1.65,30.56c.48,3.91,2.7,7.64,2.65,11.31-4.41-1.21-9.25.28-13.76,0-5-.27-5.46-.68-6.18-6.19-3.5-26.94-2.84-55.33.13-82.29.36-3.27,1-8.47,3.16-10.53.54-.5,1.93,0,2.66-.87S450.72,199.14,452,196.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M432,205.67c-1.42,0-2.87,0-4.28.06-1.38,2.56-.38,5.48-.38,8.26,0,5.78-1.35,11.52-1.34,17.37,0,13.53,0,27.06,0,40.59,0,4.88.31,10-.35,14.72-.28,2-1.2,4.31-.62,6.16.67,2.15,4.28,5.2,6.3,5.86,5.7,1.87,3.33-8.73,3.33-12.45,0-16.32-.7-32.53-1.5-48.82-.29-6-.85-11.93-.84-17.91C432.34,217.1,431.2,210.4,432,205.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M398.67,205c-3.11,0-10.57-1.34-13,1-1.68,1.61-.67,4.58-.68,7,0,4.23-.54,8.43-.34,12.65.77,16.7,1.85,33.33,1,50.11-.22,4.31-1,8.57-1.34,12.89-.25,3.2.17,6.9-.62,9.94,3.37,1.06,8,.54,11.52.35.49-2.72-.44-5.82-.66-8.6-.43-5.39-.57-10.8-.57-16.21q0-18.08,0-36.17C394,229.47,392.47,212.61,398.67,205Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M359.67,234.67c-1.46-2-10.7-.75-13.62-.28-.55,6.36.72,13.4.95,19.84.26,7.24.33,14.55.33,21.77,0,6.18-.09,12.28-.67,18.36-.12,1.22-1.08,5.63-.35,6.65,1.24,1.75,7.24.65,9.31.28.73-14,.07-28.15,0-42.14,0-5.19-.4-11.29.53-16.39C356.77,239.56,359.33,236.91,359.67,234.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M331.33,218.33c-6.24,0-8.58-.37-8.33,6,.33,8.74-1.14,17.64-1,26.35.12,7.88,1,15.72,1,23.7,0,6-.3,12.18,0,18.22.24,4.9-.34,9.59,5.94,9.37,1.78-6.4-.67-13.62-1-20.07-.44-9.73,0-19.6,0-29.33C328,241.52,331.3,230.49,331.33,218.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M321.33,186.67c-3.29-.81-8-.77-9,2.65-.74,2.42-.31,6-.67,8.59-.44,3.15-1.17,6.33-1.63,9.43-1.3,8.61.3,17.31.3,25.9,0,7.3.61,14.34,1,21.51.37,6.65-.72,13.16-1,19.73s-.33,13.45-.33,20.2c0,1.72-.74,5.42.29,6.83,1.37,1.86,6.5,1.63,8.78,1.15,4.08-.85,3.45-3.94,3.6-8.23.26-7.39.57-14.83.34-22.24-.49-15.74-.84-31.38-.68-47.15.11-11,2.92-22,.33-32.71" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M304.33,217.33a92.36,92.36,0,0,0-6,11.5c-1.54,3.22-3.78,5-5.84,7.89-5,7-8,15.28-13.14,22.28-4.32,5.93-7.89,12.32-12.5,18.19-3.65,4.64-6.94,9.67-11.15,13.8-.93.91-3.52,4.08-5,4-2.07-.06-4-3.81-4-5.49-.14-6.73,6.26-16.49,9.44-22.28,4-7.24,9.45-14.14,14.59-20.59,4.58-5.75,8.7-12.32,14.17-17.21,4.53-4,7.22-8,10.65-13,1.7-2.44,8-6.83,8.12-9.86.08-2.19-4.94-4.82-7.1-4.33s-3.49,4.25-4.66,5.88c-2.09,2.91-4.44,5.69-6.27,8.78-3.81,6.44-7.24,12.82-11.48,19-5.11,7.48-9.09,15.64-14.41,23.07-4.55,6.36-8.29,13.29-13,19.56-2.41,3.2-7.78,9.79-6,14.11,1.27,3,7.08,3.83,9.58,5.88,1.33,1.09,2.47,2.43,3.69,3.4,6.88-7.71,11.65-17.81,19-25" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M224.67,196.67a131.28,131.28,0,0,0-15.57,1c-5.35.63-4.29,3.57-4.09,8.74.67,17.21,1.66,34.69,1.67,51.92,0,11.92-.82,24.36.93,36.08.64,4.29,1.62,6.22,6.46,5.67,1.47-.17,7.39-.15,8.4-1.27,2-2.23-1-11.85-1.14-14.49-.7-18.28,1.25-36.57.28-54.82-.37-7-1.11-14.28-.93-21.31a22.61,22.61,0,0,1,.91-7.21C222.27,199.15,223.54,198.12,224.67,196.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M204.67,210.33c-3,.68-5.94.87-8.95,1.72.25,4-1.05,8.5-1.4,12.53a101,101,0,0,0-.06,17.16c1,11.86-.71,23.56-.26,35.41.18,4.85.8,9.5,1.41,14.25.29,2.26.56,9.72,2.33,11.18s8.62-.51,9.85-1.94c1.48-1.72.93-5.91,1-8,.2-5.19.55-10.38.75-15.56a279.22,279.22,0,0,0-.76-35.67c-.48-5.5-1.74-10.92-1.92-16.43A87.3,87.3,0,0,0,204.67,210.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M185.67,195.67c-2.38,0-8.11-1-10,.32s-1.34,5-1.34,7.34c0,10.89-.33,21.8-.33,32.73,0,18.1,1.33,36.31,1.33,54.35,0,2.37-1,7.67.16,9.76,1.37,2.51,5.08,1.92,7.79,1.78.52-7.72-1.84-15.65-2-23.42-.19-11.48-.31-23-.73-34.44-.35-9.54-.47-18.89.92-28.34C182.24,210.8,184.9,204.63,185.67,195.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M161.33,202.33c-2.42-.07-9.24.23-10.69,2.65-1,1.73.93,9.94,1,12.26.51,13.18,1.67,26.27,1.67,39.58v36.76c0,2.48-.7,7.64,1.64,8.77.91.43,5.06-.29,5.62-1.07,1.66-2.3.07-12.48.07-15,0-17-.33-34-.33-51C160.33,224.91,157.87,213.86,161.33,202.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M129.67,209.67c-11.07-.29-20.32,5.41-18,17.23.75,3.74,2.64,7.41,3.45,11.25.94,4.42,1.24,8.94,2,13.38,1.5,8.85,2.42,17.72,3.83,26.59,1.18,7.45,3.44,16,3.05,23.5,7.14.39,14.55-.13,20.89-3.56-5.07-.36-9-.75-11.13-6.22-3.46-9.12-5.27-20-6.91-29.56-1.86-10.93-3.85-22.35-3.91-33.45C123,222.64,123.32,215.83,129.67,209.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M105,235c-1,3-.51,6.79-1.07,10a90.56,90.56,0,0,0-1.59,13c-.22,6.91,0,13.77-.33,20.67-.4,8-1,15.94-1.39,24-4.41-1.19-7.16,1.32-8.12-4.31-1.19-7-.42-14.47-.76-21.56-.31-6.45-.06-13-.07-19.41,0-3,.08-5.07,1.4-7.72,1.8-3.62,6-6.42,6.93-10.29" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M97.67,328.33c-4.84.56-4.93,4.53-3.92,8.42.89,3.4,3.12,11.19,6.39,13.1,4.42,2.58,8.26-5.29,10.2-8.39a69.68,69.68,0,0,1,8.63-10.7C113.45,327.11,107,327.33,97.67,328.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M201.66,327.34c-8.3.17-16.71-.55-25,.4-7.92.91-15.71,1.69-23.71,1.27-3.21-.17-6.47-.67-9.67-1-2.61-.28-5.72-1.67-8.29-1.37-5.43.63-12,7.74-17,10.31-3,1.53-12.82,4.75-13,9.15-.15,3.57,7.23.11,9.47-.26a71.05,71.05,0,0,1,16.35-.77c3.2.23,7.35.74,10.31,2,3.36,1.47,5.74,4.51,9.24,7.23-.28-3.45-6.64-9.29-5.36-11.76.67-1.29,7-2.82,8.27-3.18,4.36-1.22,9-2,13.45-2.91,8-1.71,15.59-.78,23.63-.32,3.63.21,10.17-.89,11.6,3.7,1.07,3.43-2.31,7.72-3.51,10.73-4.75,11.87-6.4,25.23-2.84,37.65,2.22,7.75,3.75,17.79,10.43,23a45,45,0,0,0,11.3,6.37c-1.4-2.58-4.66-4.33-6.64-6.59a24.09,24.09,0,0,1-5-9.54c-1.12-4.88.52-6.58,4.35-8.5-5.9-2.91-5.52-9.35-4.81-15.68,1-9,4.46-16.78,11.4-22.66,6.07-5.15,13.17-6.94,21-7.34,4.56-.23,7.89,1,12,1.63-2.63-2-2.58-3.06-4-6.36-.71-1.7-2.5-3.34-3-5.06-.52-1.93,1-3.85.55-5.9-4.72-1.35-4.94,1.38-8.09,2.85s-9.28-5.14-12.28-6.35C216.12,325.39,208.74,327.2,201.66,327.34Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M172.33,393c-10.71.93,1.19,11.2,5.88,12.37C174.46,403.8,167.71,393.12,172.33,393Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M174,405c-5.19,1.15-15.55,10.63-6.77,14-3.23,2.42-8.22-2.7-8.87-5.81-1.19-5.64,5.41-9.42,9-12.19" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M174,418c-6.44.18,2.56,13.07,2.28,14.62-7.62.81-24.82-12.92-17.59-21.51-.18,4.11,1.55,8.35,6.07,8.23C167.58,419.26,169.93,417.64,174,418Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M140.67,416.67c-6,2.29-11.74,5.45-17.93,7.59-4.49,1.55-10.5,3.34-14,6.75-2.22,2.17-3.12,5.71-3.4,8.82-.37,4.06,1,6-3.9,6.48-4.45.46-9.54-.13-14.06-.35.71-4.08.7-7.92,1.88-12a64.87,64.87,0,0,0,2.38-12.07c.68-7.46.58-16-1.05-23.26-1.69-7.51-3.93-13.69-3.59-21.65a32.08,32.08,0,0,1,9.61-21.54c7.09-6.64,18.12-10.21,27.72-7.67-1.85,1.82-4.85,2.58-7.22,3.74a30.13,30.13,0,0,0-10.22,8.11,50.51,50.51,0,0,0-9,18.41c-2.18,9-.07,19.94,6.85,26.39,7.58,7.07,18.77,16.22,30,13" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M81.67,522.67c2-4.66,2.61-10.29,3.92-15.26.71-2.68.47-10.63,2.9-12.22,1.75-1.15,10.47.82,11.83,2.48,1.85,2.26-1.93,4.92-2.74,8.09-1.26,5-1,10.52-1.25,15.6-.53,10.79-1,21.55-1.71,32.29-3.41-.53-7.47-13.76-8.76-16.65C83.9,532.61,80.57,526.58,81.67,522.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M124,509.33a9.09,9.09,0,0,0-8.34,1.75c-2.73,2.55-1.36,6-1.33,9.57.11,12.64,2,25.14,2,37.84a163,163,0,0,1-1,16.58c-.22,2.19-2.41,9.69-.94,11.52,1.17,1.45,8,1.34,9.61,0s1-4.36,1-6.56c0-5.42,1-11.13,1.66-16.54,1.33-11-.53-20.62-1.33-31.42a120.43,120.43,0,0,1-.34-13.78C125.15,514.52,126.43,508.82,124,509.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M142.67,480.67c-6,0-10.22-2.33-13.8,3.17-4.47,6.85-3.2,13.41-3.2,20.92,0,10,1.34,19.82.15,29.76-1.08,9.05.94,18.14-.56,27.13a118.71,118.71,0,0,0-1.21,25c4.23.22,8.55.05,12.8.05,3.15,0,6.39,1.06,9.43.61.23-4.22-4.32-8.19-5.36-12.24-1.32-5.14-1.56-10.38-1.92-15.67-.82-12.37-1.68-24.82-1.67-37.22,0-8.39-.7-16.42,3-24.17,2-4.09,6.15-8.91,4.66-14.64-4.72-.09-12.36.92-16.54,3.33-3.06,1.76-3.41,6.25-3.23,10.64" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M156.31,497.08c-1.62,1.43-1.32,2.42-1.31,4.66a183.3,183.3,0,0,0,1.67,21.63c1.78,14.67.33,29.79.33,44.55,0,6.58.35,13.15.72,19.7,3.52.4,14.68,3.46,17-.62,1.08-1.94.07-7.95,0-10.15-.23-4.82-.3-9.63-.3-14.48,0-13.42.72-26.75.67-40.16,0-9.37-1-19.18.33-28.47.56-3.86,1.9-8.3,1.63-12-2.42-.36-5.44.18-7.91.34-1.42,4.4-.88,9.59-1.1,14.22C168,496.25,157.49,496,156.31,497.08Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M196.67,489c-5.26-.25-5,5.59-5,9.33A223.63,223.63,0,0,0,193.34,523c1.84,15.29,1.32,30.9,1.32,46.32,0,5.81.07,11.55.38,17.31,1.47.09,7.26.85,8,.07,1.51-1.49-.07-8.36-.1-10.43-.08-7-.27-13.71-.81-20.65-1.15-14.84-.62-29.9-1.36-44.78-.36-7.26-.31-14.53-.53-21.78C200,489,199.66,488.94,196.67,489Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M220.33,492.33a14.91,14.91,0,0,0-4.29.38c-1.48,5.41,0,12.72.3,18.34.54,9.27.33,18.84.33,28.12,0,7.85.69,15.5.67,23.35,0,4.71,1.57,9.19,1.39,13.77,2.49-.75,11.84-3.8,12.63-6.78.58-2.18-2.41-6.65-2.78-8.95a27.8,27.8,0,0,1,.69-10.8,188.87,188.87,0,0,0,3.38-23.91c.57-6.48.49-13.79-1.88-19.85C229.52,502.83,225.86,490.53,220.33,492.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M160.33,645c-.82-2.4-1.62-10.72-.67-13,1.16-2.8,7.83-3.39,10.69-3.65,3.49-.32,5.62-.25,6.63,3,1.7,5.43.2,12.35,2.11,17.54a106.73,106.73,0,0,0,2.17-19.13c.14-3.27-.79-7.39,3.76-7.08,3,.2,2.5,1.61,3.91,3.67s3.28,3.35,3.74,6.69c.24,1.71-.52,4.12,1,5.41.94.81,2.71,0,3.77.88,2.09,1.71,3.62,8.86,4.51,11.37.44,1.23.07,2.82,1.05,3.68.48.42,3.68,1.09,4.68,1.65,5,2.81,9.48,2.69,15,3.91,6,1.32,11.72.52,12.38,7.72,1,10.3.88,20.9,1,31.24-3.88,1-9.37-2.15-12.9-3.58a85.82,85.82,0,0,1-23.71-15.06c-7.29-6.57-15.24-12.41-22.31-19.17C171.48,655.7,162.74,652,160.33,645Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M561.67,527.33c6.45,4.84,10.16,17,14.33,24.36,3.09,5.46,7.2,10.27,10.17,15.77,2.22,4.11,3.95,8.67,6.42,12.61.77,1.23,2.09,2.32,1.86,3.68-.19,1.15-3.74,4-4.72,4.22-.81-4.32-5.64-8.81-7.86-12.75q-6.05-10.78-12.37-21.38c-2.41-4-5.84-7.35-8.5-11.16C557.33,537.41,558.72,531.81,561.67,527.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M626,481.33c-3.63-.26-7.16,1-10.74,1.34-2,.2-6.08-.33-7.28,1.64s-.12,8.15-.33,10.35a84.26,84.26,0,0,0-.06,15.64c2.07,21.74,1.16,43.75.15,65.53-.1,2.17-1.42,11.59.33,13.1,1.26,1.1,5.54-.4,6.95-.53,2.63-.24,5.32,0,7.95-.1-.88-7.6-2.87-15.28-3.7-23a311.87,311.87,0,0,1-1.6-36.37c.16-15.13,6.53-29.9,6-44.84a2,2,0,0,0-1.63.25" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M648.33,496c-3.37-.09-8.79,1.66-9.68,4.67-1.58,5.33.08,13.48,0,19-.16,13.34-.92,26.72-.26,40.11.3,6.11.63,12.28.93,18.38.25,4.94-1.55,9.27,4.26,9.47,3.07.11,10,1.24,12.73-.24,3-1.64,1.58-6,1.33-9.09-.53-6.93-.33-13.91-.33-20.87,0-16.13-1.18-32.22-.5-48.36.39-9.15,2.24-18.61,1.82-27.72-6.1-.69-7.45,1-8.08,6.31C650.29,490.07,650.29,496.06,648.33,496Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M688.67,489.67c-3.68,0-9-.62-11.58,2.33-3.78,4.38-3.08,13.19-3.08,18.39,0,19.23,4.62,37.9,4.67,57,0,6.94-2.44,14-2,20.87,7.27-1.84,7.85-2.67,8-10.6.19-13.45.68-26.83.68-40.33C685.33,521.17,683.62,505,688.67,489.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M716,497.33c-1,.19-6.34-.36-7.59,1.06-1.92,2.18-1.45,10.76-1.58,13.55-.46,10.06-1.54,19.74-2.86,29.64,4.72-8.76,6.72-20.48,8-30.22C712.61,506.83,712.71,500,716,497.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M621,654.67c3.15-2.21,3.35-6.94,4.58-10.42.93-2.66,2.33-5.19,3.17-7.91,1.28-4.11,4.28-10.25,3.53-14.62a5.33,5.33,0,0,1-3.88-1C625.23,631.09,619,642.5,621,654.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M596.33,646.67c.27,7.17-1.33,14.41-1.33,21.67,0,3.86.14,7.77-.05,11.61-5.35,1.56-9.95,6.33-14.93,8.73-6.16,3-12.76,6.71-19.29,8.63-.46-3,1.06-6.79,1.36-9.89.41-4.19-.06-8.45.57-12.6a60.35,60.35,0,0,0,1-9c0-1.16-.62-5.13.18-6s4.92.09,6.22-.16c3.48-.68,7.05-2.65,10.31-4A98.74,98.74,0,0,0,596.33,646.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M559,329.67a26.61,26.61,0,0,0,7.93-.92c2.35-.48,5.38-2.11,7.61-.43s.28,4.68,3.46,4.94c1.13.09,2.32-1.42,3.25-1.86a35.56,35.56,0,0,1,6.27-2,56.92,56.92,0,0,1,11.82-1.82c12.22-.57,24.58-1.11,36.85-.6,7.21.3,14.41.77,21.63,1a81.75,81.75,0,0,1,9.48,1c4,.58,7.77-.35,11.69.95,3.59,1.19,7.17,2.48,10.68,3.85,1.29.5,3.63,1.78,5,1.5,1.77-.37,2.68-2.29,4.25-3.53,3.3-2.63,9.2-5.13,13.14-2.74-2.2,2-7.7,3.94-8.4,7.19-.95,4.42,3.54,1.36,6.3,1.87.3,1.76-.64,2.86-1.12,4.45-.79,2.56-.13,2.65.17,4.41.2,1.19,1.08,3.68-1.15,4.71-1.67.77-5.39-.72-5.57-2.56-5.18-1.77-11.27.25-15.92,2.59-10.72,5.41-19,10.13-23.71,21.77-6.06,15-4.17,29.79,8.29,40.53-8,.69-15.79-9.3-18.62-15.7a58,58,0,0,1-5.32-23.4c0-7.37,1.91-13.16,4.34-20,2.88-8.09-6.68-7.32-12.73-8.29-7.47-1.19-15.71-2.17-23.29-1.59-6.62.5-5.45,3.86-6,9.62-2.48,0-7.08-5.42-9.6-6.71-4.34-2.23-8.72-2.25-13.54-2.23-9.16,0-17.18,3.75-26,5,.42-3.09-3.08-2.5-4.9-4-3.36-2.69-3-7.84-2.71-11.67C552.92,329.22,553.6,329.16,559,329.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M598.33,348c-5.19-3.16-14.84-.6-20.35.75a28.59,28.59,0,0,0-16.62,10.55c-11,13.86-9.22,29.22-2.85,44.93,1.77,4.36,3.45,9.3,7.14,12.44,2.39,2,5.28,3.15,7.9,4.68-8.89.42-13.19-4.78-17.64-11.51-5.06-7.65-9.3-15.47-9.57-25a38.42,38.42,0,0,1,6.3-22.13,40.56,40.56,0,0,1,6.69-8.66c4.54-4.14,10.7-4.61,16-7.06" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M636.67,393c-4.08-.48-8.65,3.33-7.27,7.68,1,3.21,5.65,4.8,8.23,6.41-5.39,3.38-10.56,3.18-11.58,10.54,2.29,0,4.53.32,6.91.43-.41,2.87-1.68,5.68-.54,8.61.76,1.95,2.72,3.29,4,5-3,3.74-11-.55-14.14-2.42-3.58-2.09-2.09-2.47-3.54-5.58-1.08-2.32-3.8-2.65-5.23-4.9-2.1-3.31-1.3-8,.19-11.34,1.86-4.21,4.22-4.74,7.39-7.42,1.34-1.13,1.64-2.76,2.79-3.85,1.6-1.51,4.07-1.52,6.17-2.14" transform="translate(-53.25 -44.96)"/></g></g><g id="DETAILS"><path class="cls-24" d="M636.33,431.17a1.5,1.5,0,0,1-1.46-1.14c-.77-3.17-.62-6.77-.48-10.25.05-1.32.11-2.57.11-3.77a1.5,1.5,0,0,1,3,0c0,1.26-.05,2.6-.11,3.89-.13,3.28-.27,6.67.4,9.42a1.5,1.5,0,0,1-1.46,1.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M177.34,430.83h-.21a1.5,1.5,0,0,1-1.28-1.69,37.15,37.15,0,0,0-.09-7.5c-.13-1.65-.26-3.35-.26-5a1.5,1.5,0,0,1,3,0c0,1.5.12,3.07.25,4.73a39.23,39.23,0,0,1,.07,8.14A1.5,1.5,0,0,1,177.34,430.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M569,342.17a1.5,1.5,0,0,1-.73-.19c-.63-.35-1.23-.71-1.83-1.07-2.38-1.43-4.43-2.67-7.31-2.41a1.5,1.5,0,1,1-.27-3c3.84-.34,6.53,1.27,9.12,2.83.57.34,1.14.69,1.74,1a1.5,1.5,0,0,1-.73,2.81Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M569,341.5a1.5,1.5,0,0,1-1.42-1,17.5,17.5,0,0,1-.48-6.45c0-.7.07-1.39.07-2a1.5,1.5,0,0,1,3,0c0,.7,0,1.44-.07,2.19a15.14,15.14,0,0,0,.32,5.32,1.5,1.5,0,0,1-1.42,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M700.66,342.78a1.44,1.44,0,0,1-.71-.18,1.46,1.46,0,0,1-.59-2l0-.08c1.39-2.46,3.29-5.84,3.43-8.59a1.5,1.5,0,0,1,3,.15c-.18,3.46-2.28,7.19-3.81,9.91A1.58,1.58,0,0,1,700.66,342.78Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M701,343.83a1.5,1.5,0,0,1-.85-2.74,24.7,24.7,0,0,1,9.93-3.58,1.5,1.5,0,0,1,.5,3,21.84,21.84,0,0,0-8.74,3.09A1.49,1.49,0,0,1,701,343.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M242.33,343.5a1.5,1.5,0,0,1-1.32-2.21l.54-1c1.08-1.95,2.57-4.61,3-6.9a1.5,1.5,0,1,1,3,.52c-.49,2.79-2.11,5.71-3.3,7.84l-.52.95A1.5,1.5,0,0,1,242.33,343.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M243.26,342.84l-.4,0a1.5,1.5,0,1,1,.28-3,28.1,28.1,0,0,0,6.41-1.27,1.5,1.5,0,0,1,.9,2.86A32.77,32.77,0,0,1,243.26,342.84Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M110.33,344.17a1.5,1.5,0,0,1-1.41-1c-.71-1.92-4.84-5.23-6.7-5.36a1.5,1.5,0,0,1,.21-3c3.27.23,8.26,4.49,9.3,7.31a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M109.67,343.5a1.5,1.5,0,0,1-1.38-.9c-1-2.2-1.91-9.32.22-11.89a1.5,1.5,0,1,1,2.31,1.91c-1,1.17-.69,6.68.22,8.78a1.5,1.5,0,0,1-1.37,2.1Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M215.83,217.59c-3.24,0-6.29-.39-8.5-1.78a1.25,1.25,0,0,1,1.33-2.11c3,1.87,8.76,1.43,13.43,1.07,1.78-.14,3.47-.26,4.9-.26,3.17,0,6.77-.09,9.56-1.17a1.25,1.25,0,0,1,.9,2.33C234.27,216.9,230.38,217,227,217c-1.33,0-3,.12-4.71.26C220.18,217.42,218,217.59,215.83,217.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M215.7,222.35c-3.13,0-6.2-.35-8.59-1.77a1.25,1.25,0,1,1,1.28-2.15c3,1.77,7.8,1.49,12,1.24,1.43-.08,2.77-.16,4-.16.82,0,1.7,0,2.59.06,2.9.1,5.89.21,8-.71a1.25,1.25,0,1,1,1,2.29c-2.61,1.14-6,1-9.06.92-.86,0-1.71-.06-2.5-.06-1.15,0-2.47.08-3.86.16C219,222.25,217.34,222.35,215.7,222.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M220.25,211.33c-1.06,0-2.08-.74-3-2.2-1.12-1.69-1.28-6.22.52-7.53.38-.27,1.73-1,3.25.87A1.25,1.25,0,0,1,219,204a7.39,7.39,0,0,0,0,3,1.25,1.25,0,0,1,.73-.95,4.58,4.58,0,0,1,2.71-.3,1.25,1.25,0,0,1,1,1.47c-.59,3-1.82,3.82-2.75,4A2.33,2.33,0,0,1,220.25,211.33Zm-.47-2.92a1.84,1.84,0,0,0,.45.39,1.47,1.47,0,0,0,.22-.32A1.26,1.26,0,0,1,219.78,208.41Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M226.3,210.34a3.82,3.82,0,0,1-1-.15,2.84,2.84,0,0,1-2-2,8.61,8.61,0,0,1,1.22-6.48,3.12,3.12,0,0,0,1.05-.76,1.25,1.25,0,0,1,1.72.41c.31.5,2.64,5.81,1,8A2.38,2.38,0,0,1,226.3,210.34Zm-.38-5.79a5.77,5.77,0,0,0-.2,2.89c.09.31.19.33.23.34a1,1,0,0,0,.4.05C226.61,207.44,226.32,205.89,225.92,204.55Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M218.77,281.3c-4.57,0-9.06-.65-11-3.31a1.25,1.25,0,1,1,2-1.48c2.21,3,11.17,2.31,16,1.94,1.14-.09,2.15-.17,3-.2,3.06-.12,7.16-1.07,8.9-2.87a1.25,1.25,0,0,1,1.79,1.74c-2.39,2.46-7.2,3.49-10.6,3.63-.79,0-1.77.11-2.87.19C223.8,281.11,221.27,281.3,218.77,281.3Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M223.15,285c-4.72,0-9.85-.19-14.16-2.12a1.25,1.25,0,1,1,1-2.28c4.34,1.95,9.67,1.92,14.82,1.9h1.82c2.67,0,8.25,0,10.18-2.09a1.25,1.25,0,1,1,1.84,1.69c-2.67,2.92-8.75,2.91-12,2.91h-3.49Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M260.15,291.5c-5.17,0-12.44-6.59-14.82-9.15a1.25,1.25,0,1,1,1.83-1.7c3.24,3.49,9.38,8.35,13,8.35h.11a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M262.75,289a1.24,1.24,0,0,1-.31,0c-5.06-1.3-11.1-5.88-14.85-9.85a1.25,1.25,0,0,1,1.82-1.72c3.38,3.59,9.1,8,13.65,9.15a1.25,1.25,0,0,1-.31,2.46Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M297.25,229.5l-.23,0c-4.42-.83-9.93-2.35-13.26-6.72a1.25,1.25,0,0,1,2-1.52c2.82,3.69,7.75,5,11.74,5.78a1.25,1.25,0,0,1-.23,2.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M299.5,227.5h0c-3.75,0-7.37-2.34-10.56-4.39a43.46,43.46,0,0,0-3.75-2.25,1.25,1.25,0,1,1,1.12-2.23,44.92,44.92,0,0,1,4,2.38c3,2,6.19,4,9.21,4a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M302.75,224.25h-.07c-4.22-.24-7.69-3.18-10.75-5.78-1.18-1-2.3-1.94-3.39-2.69a1.25,1.25,0,0,1,1.41-2.06,45.3,45.3,0,0,1,3.59,2.85c2.9,2.45,5.89,5,9.27,5.19a1.25,1.25,0,0,1-.07,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M225.2,288.58a84.79,84.79,0,0,1-18-1.61,1.25,1.25,0,0,1,.53-2.44c9,1.94,18.55,1.63,27.82,1.33l3.38-.11a1.25,1.25,0,0,1,.07,2.5l-3.37.11C232.21,288.47,228.71,288.58,225.2,288.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M203.42,226.89a23.26,23.26,0,0,1-6.81-1.45,1.25,1.25,0,0,1,.78-2.37c1.72.57,5.76,1.9,7.58,1.05a1.25,1.25,0,1,1,1.05,2.27A6.16,6.16,0,0,1,203.42,226.89Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M203.75,230.5h0a24.26,24.26,0,0,1-4.32-.53,19.58,19.58,0,0,0-3.91-.47h0a1.25,1.25,0,0,1,0-2.5,22.23,22.23,0,0,1,4.4.51,22.07,22.07,0,0,0,3.88.49,1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M204.21,291.25a17,17,0,0,1-3.78-.54,17.39,17.39,0,0,0-2.75-.47,1.25,1.25,0,0,1-1.17-1.32,1.24,1.24,0,0,1,1.32-1.17,19.55,19.55,0,0,1,3.15.52,13.65,13.65,0,0,0,3.48.48,1.25,1.25,0,0,1,.08,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M183.25,211.87c-.81,0-1.63,0-2.42-.06s-1.28-.05-1.83-.05a1.25,1.25,0,0,1,0-2.5h0c.58,0,1.23,0,1.93.05,2,.08,4.55.18,5.76-.42a1.25,1.25,0,0,1,1.11,2.24A10.66,10.66,0,0,1,183.25,211.87Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M182.34,216.06a6,6,0,0,1-3-.5,1.25,1.25,0,0,1,1.28-2.15,15.14,15.14,0,0,0,3.34.11l1.28,0a1.25,1.25,0,0,1,0,2.5l-1.2,0C183.43,216,182.86,216.06,182.34,216.06Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M184.5,286.5h-.25a1.25,1.25,0,0,1,0-2.5h.25a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M162.75,220.25a30,30,0,0,1-6.77-.53,1.25,1.25,0,1,1,.55-2.44,27.88,27.88,0,0,0,6.17.47l.05,1.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M160,229a1.25,1.25,0,0,1-.42-.07c-.27-.09-.63-.26-1-.45s-.71-.33-1.06-.47a1.25,1.25,0,0,1-2-.8,1.55,1.55,0,0,1,.56-1.52c.91-.7,2.12-.13,3.53.53.32.15.61.29.82.36A1.25,1.25,0,0,1,160,229Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M159,295.25a1.25,1.25,0,0,1-.73-2.26,7,7,0,0,1,2.65-1l.75-.18a1.25,1.25,0,1,1,.67,2.41l-.86.21a5.26,5.26,0,0,0-1.74.6A1.24,1.24,0,0,1,159,295.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M121.9,229.57a22.28,22.28,0,0,1-5.46-.61,1.25,1.25,0,0,1,.61-2.42,25,25,0,0,0,8.56.33l1-.09c2.75-.25,7.34-.67,9.07-2.21a1.25,1.25,0,1,1,1.66,1.87c-2.35,2.09-7.26,2.54-10.51,2.84l-1,.09C124.43,229.5,123.12,229.57,121.9,229.57Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M119,234.75a1.25,1.25,0,0,1,0-2.5c1.84,0,3.7-.15,5.49-.28,1.06-.08,2.13-.16,3.2-.22a1.25,1.25,0,0,1,.13,2.5c-1.05.05-2.1.13-3.14.21-1.84.14-3.74.28-5.67.29Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M130.92,292.79c-.6,0-1.2,0-1.75-.06l-.4,0a1.25,1.25,0,0,1-1-.66,1.87,1.87,0,0,1-.22-1.13,1.27,1.27,0,0,1,1.11-1.4,1.24,1.24,0,0,1,1.29.74c1.71.08,3.4.05,4.51-.94a1.25,1.25,0,1,1,1.67,1.86A7.39,7.39,0,0,1,130.92,292.79Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M100.65,293a16.77,16.77,0,0,1-6.1-1.1,1.25,1.25,0,0,1,.91-2.33,14.75,14.75,0,0,0,6,.92,1.25,1.25,0,1,1,.12,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M103,253.75H96.75a1.25,1.25,0,0,1,0-2.5H103a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M316.38,201.63a28.3,28.3,0,0,1-4.06-.39,1.25,1.25,0,1,1,.35-2.47h0c2.75.4,4.92.71,7.29-.4a1.25,1.25,0,1,1,1.06,2.26A10.62,10.62,0,0,1,316.38,201.63Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M315.5,206h0a4,4,0,0,1-2.92-1.45,1.25,1.25,0,1,1,1.92-1.6,1.47,1.47,0,0,0,1.08.55,1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M317.84,298.77a10.29,10.29,0,0,1-3-.57,8,8,0,0,0-2.3-.45,1.25,1.25,0,0,1-.06-2.5,9.52,9.52,0,0,1,3.08.55,7.1,7.1,0,0,0,2.6.45,1.25,1.25,0,1,1,.21,2.49Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M315.81,294a2,2,0,0,1-1.5-.7A1.25,1.25,0,0,1,316,291.5h0a1.25,1.25,0,0,1,.26,2.47A2.16,2.16,0,0,1,315.81,294Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M331.74,237.75a12.81,12.81,0,0,1-4.15-.82,1.25,1.25,0,1,1,.81-2.37,10.12,10.12,0,0,0,3.55.68,1.25,1.25,0,1,1,.09,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M367.76,250.38c-1,0-2,0-3-.07-1.61-.06-3.14-.07-4.72,0-2.81.1-5.73.2-8.4-1.19a1.25,1.25,0,1,1,1.15-2.22c2.1,1.09,4.56,1,7.17.91,1.64-.06,3.23,0,4.9,0,3,.1,6.07.21,8.68-.74a1.25,1.25,0,1,1,.85,2.35A19.37,19.37,0,0,1,367.76,250.38Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M366.25,253.75c-4,0-7.73-.17-11.37-.51a1.25,1.25,0,0,1,.23-2.49c3.56.33,7.2.49,11.13.49a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M404.37,234.9a10.12,10.12,0,0,1-2.15-.23,10.85,10.85,0,0,1-7.26-5,10.7,10.7,0,0,1-.75-8.67c1.15-3.67,5.93-7.72,10.18-7.23,7.43.77,10.94,7.22,10.61,11.58a10.23,10.23,0,0,1-4.18,7.39A10.8,10.8,0,0,1,404.37,234.9Zm-.69-18.68c-2.82,0-6.29,3-7.09,5.52a8.24,8.24,0,0,0,.53,6.67,8.39,8.39,0,0,0,5.63,3.82,8.13,8.13,0,0,0,6.57-1.51,7.74,7.74,0,0,0,3.18-5.57c.24-3.26-2.6-8.31-8.38-8.91h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M416.68,242.27c-2.57,0-5.17,0-7.74-.14-1.52-.07-3-.16-4.58-.25-3.16-.19-6.45-.35-9.62-.37-.59,0-1.3,0-2.08.07-2.88.14-6.14.3-7.83-.77a1.25,1.25,0,0,1,1.33-2.12c1,.64,4.24.49,6.38.39.89,0,1.67-.08,2.34-.08,3.22,0,6.48.19,9.63.38,1.52.09,3,.18,4.54.25,3.52.16,7.14.15,10.64.13h3.05a1.25,1.25,0,0,1,0,2.5h-6.07Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M432.44,215.28c-.42,0-.84,0-1.25,0a1.25,1.25,0,1,1,.12-2.5,57.87,57.87,0,0,0,8.39-.51c2.29-.25,4.45-.48,6.3-.49h0a1.25,1.25,0,0,1,0,2.5c-1.72,0-3.82.23-6,.47A72.52,72.52,0,0,1,432.44,215.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M430.5,219.5a1.25,1.25,0,0,1-.23-2.48,76.8,76.8,0,0,1,14.48-1,1.25,1.25,0,0,1,0,2.5,74.64,74.64,0,0,0-14,1Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M456.75,222c-.43,0-.87,0-1.3,0a1.25,1.25,0,0,1-1.1-1.68c.67-1.81,1.26-3.74,1.83-5.61.72-2.38,1.47-4.84,2.42-7.15a1.25,1.25,0,0,1,2.27-.08,32.87,32.87,0,0,0,2.57,4c2.06,2.9,4.19,5.89,4,8.87a1.25,1.25,0,0,1-1.25,1.18h0a39.69,39.69,0,0,0-4.91.25C459.8,221.86,458.29,222,456.75,222ZM460,210.86c-.52,1.49-1,3-1.44,4.53-.41,1.35-.83,2.74-1.29,4.1,1.23,0,2.48-.14,3.77-.26s2.52-.23,3.81-.27c-.44-1.86-2-4-3.45-6.1C460.93,212.21,460.45,211.53,460,210.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M460.45,247.43a5.05,5.05,0,0,1-4.72-2.68c-1.77-3.28-.51-8.47,1.76-10.75a3.53,3.53,0,0,1,4.22-.91c3.38,1.05,5.33,5.14,5.2,8.38a5.74,5.74,0,0,1-4.7,5.77A8.85,8.85,0,0,1,460.45,247.43Zm-.21-12.19a1.42,1.42,0,0,0-1,.53c-1.57,1.58-2.5,5.64-1.33,7.8.24.45,1,1.8,3.79,1.23a3.28,3.28,0,0,0,2.7-3.41c.1-2.59-1.54-5.35-3.52-5.92a1.25,1.25,0,0,1-.24-.1A.86.86,0,0,0,460.24,235.23Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M461.06,273.63a15,15,0,0,1-3.85-.46,1.25,1.25,0,0,1-.92-1.17c0-.92-.15-1.86-.27-2.85a23.47,23.47,0,0,1-.27-4.48,1.27,1.27,0,0,1,.1-.42,12.49,12.49,0,0,1,7.33-6.77,3.17,3.17,0,0,1,2.82.29c1.53,1.12,1.8,4.45,1.75,9.83,0,.5,0,.9,0,1.15V269c.08,2.88-.22,3.68-3.23,4.32A16.94,16.94,0,0,1,461.06,273.63Zm-2.33-2.69a15.17,15.17,0,0,0,5.28-.11,8.3,8.3,0,0,0,1.24-.33,10.35,10.35,0,0,0,0-1.47v-.22c0-.28,0-.71,0-1.24.05-5.74-.38-7.41-.75-7.8-.79-.27-4.62,1.71-6.27,5.28a22.69,22.69,0,0,0,.27,3.79C458.59,269.53,458.67,270.23,458.73,270.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M499.19,228.22a9.21,9.21,0,0,1-1.77-.17c-4.48-.87-6.68-3.57-6.92-8.47-.19-3.88,1.83-10.92,6-13.49a6.41,6.41,0,0,1,6.88.07,1.25,1.25,0,0,1-1.23,2.18,4,4,0,0,0-4.34-.12c-3.12,1.93-5,8-4.8,11.24.19,3.77,1.56,5.49,4.9,6.14,2.67.52,5.84-.58,6.76-3.7.62-2.12-.39-6.15-2.41-7.65a2.53,2.53,0,0,0-3.18.08c-.92.6-2.12,3.18-2.24,5.5-.06,1.18.19,1.82.45,2a1,1,0,0,0,1.2.09,1.88,1.88,0,0,0,.89-1.13,1.29,1.29,0,0,1-.42-1.63,1.21,1.21,0,0,1,1.61-.56,2.32,2.32,0,0,1,1.32,2.15,4.19,4.19,0,0,1-2.43,3.49,3.43,3.43,0,0,1-3.74-.46c-1-.8-1.47-2.22-1.37-4.1.14-2.62,1.46-6.22,3.37-7.46a5,5,0,0,1,6,0c2.94,2.19,4.2,7.37,3.32,10.36A8,8,0,0,1,499.19,228.22Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M496.25,258.25A1.25,1.25,0,0,1,495,257a38,38,0,0,1,.89-8.09c.27-1.5.53-2.92.68-4.3.06-.55.09-1.32.12-2.21.12-3.34.26-7.49,2.26-9.16a1.25,1.25,0,0,1,1.93.44c.62,1.34,1.31,2.72,2,4.05.49,1,1,1.95,1.45,2.92.17.36.41.8.67,1.29,1.5,2.84,2.72,5.34,2.52,7.25-.26,2.38-2.82,3.8-5.29,5.17a15.92,15.92,0,0,0-3.27,2.14,1.25,1.25,0,0,1-1.36.28l-.07,0s0,.1,0,.15a1.25,1.25,0,0,1-1.2,1.3Zm3.59-10.6a39.39,39.39,0,0,0-.52,5.53c.54-.33,1.1-.64,1.66-.95l1-.58a1.24,1.24,0,0,1-.52-.4A12.68,12.68,0,0,1,499.84,247.65Zm-.17-4.88a1.25,1.25,0,0,1,1.06.59,16,16,0,0,1,1.44,3.39,11.14,11.14,0,0,0,1.32,3,1.24,1.24,0,0,1,.25.8A2.77,2.77,0,0,0,505,249c.14-1.3-1.35-4.12-2.24-5.81-.28-.52-.52-1-.71-1.37-.46-1-.95-1.93-1.43-2.89l-.93-1.86a32.17,32.17,0,0,0-.52,5.49v.33a1.24,1.24,0,0,1,.47-.1Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M493.31,296.12a1.23,1.23,0,0,1-1-.54c-.24-.34-.51-1,.32-1.93a1.25,1.25,0,0,1,1.77-.07,1.17,1.17,0,0,1,.15.17,1.25,1.25,0,0,1-.25,2.14A2.35,2.35,0,0,1,493.31,296.12Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M501.16,296a1.21,1.21,0,0,1-.92-.39c-.37-.42-.61-1.1.33-2a1.29,1.29,0,0,1,1.8,0,1.21,1.21,0,0,1,0,1.73l-.14.13a1.2,1.2,0,0,1-.17.17A1.4,1.4,0,0,1,501.16,296Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M507.58,295.18h-.17a1.33,1.33,0,0,1-1.16-1.3,1.37,1.37,0,1,1,2.67,0l0,.08C508.63,294.79,508.19,295.18,507.58,295.18Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M494.91,292.32c-1.58,0-3.16,0-4.72,0s-3.13,0-4.69,0a1.25,1.25,0,0,1,0-2.5c1.57,0,3.14,0,4.72,0a135.16,135.16,0,0,0,14.23-.34c.88-.08,1.9-.13,3-.18,2.7-.12,6.06-.26,7.75-1.14a1.25,1.25,0,1,1,1.14,2.22c-2.18,1.12-5.69,1.28-8.78,1.41-1,0-2,.09-2.86.17C501.45,292.25,498.17,292.32,494.91,292.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476.59,238.29l-2.13,0-2,0a1.25,1.25,0,1,1,0-2.5h0l2,0a37.3,37.3,0,0,0,8.23-.49,1.25,1.25,0,1,1,.54,2.44A31.24,31.24,0,0,1,476.59,238.29Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M482,243c-1.25,0-2.52-.07-3.74-.15a42.49,42.49,0,0,0-4.93-.11,1.25,1.25,0,0,1-.14-2.5,45.62,45.62,0,0,1,5.22.11c1.19.07,2.43.14,3.6.14a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M472.5,233a1.25,1.25,0,0,1,0-2.5c1.46,0,2.95-.13,4.39-.25a48.2,48.2,0,0,1,5.41-.25,1.25,1.25,0,0,1,1.21,1.29,1.27,1.27,0,0,1-1.29,1.21,45.31,45.31,0,0,0-5.12.24c-1.49.13-3,.26-4.59.26Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M473,227.25a1.25,1.25,0,0,1-.31-2.46,40.15,40.15,0,0,1,11.14-1,1.25,1.25,0,1,1-.15,2.5,37.41,37.41,0,0,0-10.36,1A1.25,1.25,0,0,1,473,227.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M518.75,239.75a1.25,1.25,0,0,1,0-2.5c2.07,0,5.69-.13,9-.25a1.25,1.25,0,1,1,.09,2.5C524.51,239.62,520.86,239.75,518.75,239.75Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M517.75,235.5a1.25,1.25,0,0,1-.19-2.49,39.94,39.94,0,0,1,6.62-.28l1.82,0a1.25,1.25,0,0,1,0,2.5l-1.85,0a38.16,38.16,0,0,0-6.21.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M542.16,236.15a7.76,7.76,0,0,1-.82,0,5.72,5.72,0,0,1-4.17-2.31,6.49,6.49,0,0,1-.72-5.35,3.89,3.89,0,0,1,2.29-2.58c3-1.57,8.68-3.08,11.54-1.37a3.39,3.39,0,0,1,1.72,2.66c.25,2.56-2.09,5.4-3.36,6.54A10.13,10.13,0,0,1,542.16,236.15Zm4.82-9.92a17.25,17.25,0,0,0-7.15,1.88l-.18.08a1.42,1.42,0,0,0-.82,1,4,4,0,0,0,.36,3.13,3.24,3.24,0,0,0,2.41,1.29,7.54,7.54,0,0,0,5.36-1.8c1.32-1.19,2.66-3.26,2.54-4.44a.91.91,0,0,0-.51-.75A4.07,4.07,0,0,0,547,226.23Zm-7.73.77h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M538.5,227.75a1.25,1.25,0,0,1-1-.45,4.76,4.76,0,0,1-.92-2,1.25,1.25,0,0,1,1.09-1.48,3.57,3.57,0,0,1,2.5.67,2.31,2.31,0,0,1-1.7,3.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M549.25,226a1.72,1.72,0,0,0-2.39-.31,1.25,1.25,0,0,1-.79-1.58,3.66,3.66,0,0,1,1.82-2.2,1.25,1.25,0,0,1,1.72.66,5.17,5.17,0,0,0,.29.57,5.47,5.47,0,0,1,.57,1.31,1.25,1.25,0,0,1-1.21,1.55Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M533,244a1.25,1.25,0,0,1-.51-2.39c4.39-1.94,9.74-3,14.45-4,1.23-.25,2.43-.5,3.59-.76l1.25-.28a41.06,41.06,0,0,1,5.87-1,1.25,1.25,0,1,1,.19,2.49,39.3,39.3,0,0,0-5.51,1l-1.26.29c-1.17.26-2.38.51-3.62.76-4.82,1-9.8,2-13.95,3.85A1.25,1.25,0,0,1,533,244Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M538.5,293.5a1.25,1.25,0,0,1,0-2.5,79.17,79.17,0,0,0,18.59-2.62c.84-.21,1.75-.38,2.72-.56a20.92,20.92,0,0,0,5.82-1.65,1.25,1.25,0,0,1,1.25,2.17,22,22,0,0,1-6.6,1.94c-.93.18-1.81.34-2.59.53a81.57,81.57,0,0,1-19.18,2.69Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M541.59,299.51h-.87a1.25,1.25,0,0,1,0-2.5h0c7.63.21,15.26-2.72,22.6-5.55l2.92-1.12a1.25,1.25,0,0,1,.88,2.34l-2.91,1.11C557,296.6,549.45,299.51,541.59,299.51Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M572.38,217.43a8,8,0,0,1-3.12-.53,1.25,1.25,0,0,1,1-2.3c1.75.74,4.88.13,7.64-.41a32.09,32.09,0,0,1,4.32-.66c.54,0,1.08-.08,1.63-.13a19.47,19.47,0,0,1,3.27-.14,1.25,1.25,0,0,1,1.16,1.33,1.23,1.23,0,0,1-1.33,1.16,17.49,17.49,0,0,0-2.85.13c-.58.06-1.17.11-1.75.14a30.63,30.63,0,0,0-4,.62A32.48,32.48,0,0,1,572.38,217.43Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M584.5,221H571a1.25,1.25,0,0,1,0-2.5h13.5a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M587.25,283.25c-2.46,0-4.94-.13-7.34-.26-2.84-.15-5.78-.31-8.63-.24h0a1.25,1.25,0,0,1,0-2.5c2.94-.07,5.93.09,8.82.24,2.37.13,4.82.26,7.21.26a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M588.5,286.75H572.75a1.25,1.25,0,0,1,0-2.5H588.5a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M632,210h-.12a37.79,37.79,0,0,1-14-4.64,1.25,1.25,0,1,1,1.18-2.2,35.33,35.33,0,0,0,13,4.36A1.25,1.25,0,0,1,632,210Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M631.25,215.75a1.25,1.25,0,0,1-.42-.07c-1.36-.49-2.75-1.08-4.22-1.71-3.66-1.56-7.44-3.17-10.88-3.22a1.25,1.25,0,1,1,0-2.5c3.93.05,7.94,1.76,11.82,3.42,1.44.61,2.79,1.19,4.08,1.66a1.25,1.25,0,0,1-.42,2.43Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M599.66,291.29a4.59,4.59,0,0,1-4.13-2.24,6.26,6.26,0,0,1,.39-6.52,4.15,4.15,0,0,1,4.34-1.75,1.25,1.25,0,0,1,.84.62,5,5,0,0,1-.73,9.86A6.58,6.58,0,0,1,599.66,291.29Zm-1.06-7.92a2,2,0,0,0-.66.61,3.81,3.81,0,0,0-.26,3.8,2.25,2.25,0,0,0,2.42,1,2.52,2.52,0,0,0-.52-5A1.25,1.25,0,0,1,598.6,283.37Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M639.25,294a1.25,1.25,0,0,1-.7-2.28c2.92-2,11-1.56,14.28-.67a1.25,1.25,0,1,1-.65,2.41c-3.16-.86-10.25-1-12.22.33A1.25,1.25,0,0,1,639.25,294Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M636,217.5a1.25,1.25,0,0,1-.61-2.34c3.3-1.83,11.37-3.43,15.33-1.81a1.25,1.25,0,1,1-.95,2.31c-3.11-1.27-10.41.15-13.17,1.69A1.25,1.25,0,0,1,636,217.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M643.45,235.79a5,5,0,0,1-.9-.08,4.68,4.68,0,0,1-3.91-5.66c.44-2.71,2.64-5.27,5.59-4.85h0a5.23,5.23,0,0,1,2.33,1,5.41,5.41,0,0,1-3.11,9.6Zm.19-8.14c-1.25,0-2.3,1.39-2.53,2.79a2.2,2.2,0,0,0,1.9,2.8,2.56,2.56,0,0,0,2.82-1.7,2.7,2.7,0,0,0-.73-3.34,2.76,2.76,0,0,0-1.21-.54h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M645.13,254.09a5,5,0,0,1-.9-.08,4.68,4.68,0,0,1-3.91-5.66c.44-2.71,2.65-5.27,5.59-4.85h0a5.22,5.22,0,0,1,2.33,1,5.41,5.41,0,0,1-3.11,9.6Zm.19-8.14c-1.25,0-2.3,1.39-2.53,2.79a2.2,2.2,0,0,0,1.9,2.8,2.56,2.56,0,0,0,2.82-1.7,2.7,2.7,0,0,0-.73-3.34,2.76,2.76,0,0,0-1.21-.54h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M644.82,272.38a5,5,0,0,1-.9-.08,4.68,4.68,0,0,1-3.91-5.66c.44-2.71,2.65-5.26,5.59-4.85h0a5.22,5.22,0,0,1,2.33,1,5.41,5.41,0,0,1-3.11,9.6Zm.19-8.14c-1.25,0-2.3,1.39-2.53,2.79a2.2,2.2,0,0,0,1.9,2.8,2.56,2.56,0,0,0,2.82-1.7,2.7,2.7,0,0,0-.73-3.34,2.76,2.76,0,0,0-1.21-.54h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M675.75,217a1.25,1.25,0,0,1-.53-.12c-.87-.41-2.74-.3-4.24-.21-.65,0-1.26.07-1.79.07-1.54,0-3.14-.06-4.66-.13s-2.86-.12-4.29-.12a1.25,1.25,0,0,1,0-2.5h0c1.48,0,3,.07,4.39.13s2.95.12,4.42.12h.12c.49,0,1.05,0,1.65-.07,1.87-.11,4-.24,5.44.44a1.25,1.25,0,0,1-.53,2.38Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M676.5,228.25a1.26,1.26,0,0,1-.47-.09,13.36,13.36,0,0,0-3.59-.54l-1.28-.1a67.49,67.49,0,0,1-12.24-2.62,1.25,1.25,0,0,1-.44-2.18c2.77-2.21,6.45-3.5,10-4.74a49.15,49.15,0,0,0,6.44-2.59,1.25,1.25,0,0,1,1.16,2.21,51.72,51.72,0,0,1-6.78,2.73,47.88,47.88,0,0,0-7.06,2.89,53.81,53.81,0,0,0,9.15,1.8l1.22.09a14.9,14.9,0,0,1,4.35.72,1.25,1.25,0,0,1-.47,2.41Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M666.44,283.13c-4.71,0-5.74-.45-6.11-1.44a1.25,1.25,0,0,1,2.06-1.32c1.56.5,9.36.15,12.74,0,1.5-.07,2.72-.12,3.38-.13h0a1.25,1.25,0,0,1,.44.08,1.31,1.31,0,0,1,.91,1.26,1.29,1.29,0,0,1-.95,1.21,1.25,1.25,0,0,1-1.4,0l-2.28.1C671.4,283,668.55,283.13,666.44,283.13Zm12.8-.63h0Zm-16.58-1.7h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M239,158.58l-.21,0a73.4,73.4,0,0,1-10.64-2.37,57.77,57.77,0,0,1-5.62-2.28c-3.74-1.67-7.61-3.36-10.84-3.33a1.23,1.23,0,0,1-1.27-1.22,1.25,1.25,0,0,1,1.23-1.27c3.8-.07,7.92,1.76,11.91,3.54a56.19,56.19,0,0,0,5.36,2.19,71.43,71.43,0,0,0,10.3,2.29,1.25,1.25,0,0,1-.21,2.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M240.33,154.58h-.07a23.16,23.16,0,0,1-7.07-1.93c-.85-.33-1.73-.68-2.59-1-1.62-.55-3.37-1-5.22-1.47-4.74-1.21-9.64-2.47-13.21-5.61a1.25,1.25,0,1,1,1.65-1.87c3.12,2.75,7.72,3.93,12.17,5.06,1.81.46,3.69.94,5.4,1.52.92.31,1.83.67,2.71,1a21,21,0,0,0,6.3,1.76,1.25,1.25,0,0,1-.07,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M200,158.92c-2.45,0-4.2-1.83-4.39-4.59s1.22-5.62,3.88-5.9h0a1.25,1.25,0,0,1,1.6-.57,7,7,0,0,1,3.75,7.29,4.58,4.58,0,0,1-4.71,3.77Zm.62-8.5a1.25,1.25,0,0,1-.87.49c-1.09.12-1.75,1.8-1.65,3.25,0,.7.35,2.32,2,2.26a2.12,2.12,0,0,0,2.33-1.74A4.57,4.57,0,0,0,200.66,150.42Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M252.67,154.58a1.25,1.25,0,0,1,0-2.5,39,39,0,0,0,7.44-.64,1.25,1.25,0,1,1,.47,2.46,41.36,41.36,0,0,1-7.9.69Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M252.33,149.92a1.25,1.25,0,0,1-.21-2.48,18.9,18.9,0,0,1,2.8-.19,9.51,9.51,0,0,0,3.21-.37,1.25,1.25,0,1,1,1.07,2.26,10.79,10.79,0,0,1-4.24.62,16.86,16.86,0,0,0-2.41.15Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M295.33,148.92a1.25,1.25,0,0,1-.1-2.5c1.15-.09,2.34-.12,3.5-.16a37.78,37.78,0,0,0,6-.49,1.25,1.25,0,0,1,.48,2.45,39.59,39.59,0,0,1-6.44.54c-1.17,0-2.28.07-3.37.15Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M295.38,154.58h-.05a1.25,1.25,0,0,1-1.25-1.25,1.27,1.27,0,0,1,1.25-1.25,28.42,28.42,0,0,0,4.5-.5,25.18,25.18,0,0,1,5.92-.5,1.25,1.25,0,1,1-.17,2.49,22.63,22.63,0,0,0-5.33.47A29.61,29.61,0,0,1,295.38,154.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M301.32,98.77a5.18,5.18,0,0,1-1.74-.33c-2.41-.86-3.2-3.61-2.71-5.75a3.86,3.86,0,0,1,4.26-3.26,1.25,1.25,0,0,1,.87,2,4.61,4.61,0,0,1,2.24,5.4A3,3,0,0,1,301.32,98.77Zm-1.57-6.47a2.06,2.06,0,0,0-.44.94c-.25,1.09.11,2.49,1.12,2.85.47.17,1.28.37,1.48-.15a2.16,2.16,0,0,0-1.37-2.44A1.25,1.25,0,0,1,299.75,92.3Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M327,87.25H308.67a1.25,1.25,0,0,1,0-2.5H327a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M310,92.25h-2a1.25,1.25,0,0,1,0-2.5h1c3.62,0,7.36,0,11-.17.69,0,1.48,0,2.31,0,1.7,0,3.82.07,4.86-.39a1.25,1.25,0,0,1,1,2.29c-1.54.68-3.76.64-5.92.6-.79,0-1.53,0-2.15,0C316.74,92.24,313.31,92.25,310,92.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M317.48,117.31c-1.41,0-2.81,0-4.16-.11a1.25,1.25,0,0,1-1.18-1.11,9.07,9.07,0,0,1,1.23-5,7.35,7.35,0,0,0,1.05-3.93,6.4,6.4,0,0,0,2.2-1.49,1.25,1.25,0,0,1,1.74.32l.5.72c1.76,2.5,4.42,6.29,4,9.44a1.25,1.25,0,0,1-1.17,1.08C320.3,117.27,318.89,117.31,317.48,117.31Zm-2.82-2.55c1.87.07,3.8.07,5.69,0-.34-2.07-2.2-4.75-3.43-6.51a11.59,11.59,0,0,1-1.28,3.88A10.13,10.13,0,0,0,314.65,114.76Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M317.93,132.87a1.25,1.25,0,0,1-.87-.35c-1.54-1.49-2.12-3.64-2.68-5.72-.47-1.75-.91-3.4-1.85-4.18a1.25,1.25,0,0,1,.57-2.19,1.25,1.25,0,0,1,1.75-.91,10.12,10.12,0,0,0,3.66.28c.74,0,1.5,0,2.19,0a1.25,1.25,0,0,1,1.1,1.68,28.14,28.14,0,0,0-1.06,4.49,24.54,24.54,0,0,1-1.69,6.19,1.25,1.25,0,0,1-.91.69Zm-2.54-10.64a16.54,16.54,0,0,1,1.41,3.92,24.47,24.47,0,0,0,.81,2.63c.27-1,.48-2.16.67-3.26s.4-2.17.66-3.23h-.36A19.72,19.72,0,0,1,315.38,122.23Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M323,153.58a1.25,1.25,0,0,1-.28,0c-3.24-.73-7-.58-10.64-.43-1.47.06-3,.12-4.42.12a1.25,1.25,0,0,1,0-2.5c1.39,0,2.81-.06,4.32-.12,3.8-.16,7.72-.32,11.29.49a1.25,1.25,0,0,1-.27,2.47Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M340.6,87.54a5.83,5.83,0,0,1-5.79-4.18A7.23,7.23,0,0,1,338,74.92a2.56,2.56,0,0,0,2.84-.48c3.51.62,5.56,4.49,5.43,7.71a5.26,5.26,0,0,1-4.94,5.36A7.74,7.74,0,0,1,340.6,87.54Zm-.82-11a1.24,1.24,0,0,1-.5.53,4.72,4.72,0,0,0-2.1,5.51A3.44,3.44,0,0,0,341.13,85a2.79,2.79,0,0,0,2.7-3c.08-2.14-1.28-4.78-3.37-5.15A1.24,1.24,0,0,1,339.79,76.55Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M347,101.58H332.33a1.25,1.25,0,0,1,0-2.5H347a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M347.33,118.25a1.24,1.24,0,0,1-.45-.09c-2.59-1-6.67-.84-10.28-.69-1.28.05-2.49.1-3.6.1a1.25,1.25,0,0,1,0-2.5c1.06,0,2.24,0,3.5-.1,3.85-.16,8.22-.35,11.29.86a1.25,1.25,0,0,1-.46,2.41Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M356.33,79.58a1.25,1.25,0,0,1,0-2.5c7.22,0,14.81-.33,22.56-1,1-.09,2.15-.15,3.28-.2a35.06,35.06,0,0,0,8.44-1.08,1.25,1.25,0,1,1,.76,2.38,36.78,36.78,0,0,1-9.07,1.2c-1.1.06-2.18.11-3.2.2C371.28,79.25,363.62,79.58,356.33,79.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M358,87.58a1.25,1.25,0,0,1,0-2.5c5.58,0,11.25-.61,16.73-1.17s11.28-1.15,16.94-1.17h0a1.25,1.25,0,0,1,0,2.5c-5.54,0-11.21.6-16.69,1.16s-11.27,1.15-17,1.18Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M373.19,127.89c-4.6,0-9.16-1.46-11.59-5.48a18.94,18.94,0,0,1,0-19.05,13.71,13.71,0,0,1,12.76-6.94h0c9.7.78,14.87,4.9,15.81,12.61.66,5.4.64,13-7.13,16.69A24.1,24.1,0,0,1,373.19,127.89Zm.43-29a11.12,11.12,0,0,0-9.83,5.74,16.6,16.6,0,0,0,0,16.48c3.35,5.52,12.95,4.89,18.3,2.35,4.94-2.34,6.65-6.57,5.72-14.13-.8-6.52-5-9.73-13.51-10.42Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M367.44,123.21H367a1.25,1.25,0,0,1-1.2-1.15c-.32-3.86.8-7.22,1.88-10.47a28.1,28.1,0,0,1,1.69-3.72c1-1.87,1.94-3.8,2-5.27a1.25,1.25,0,0,1,2.15-.79,21.29,21.29,0,0,1,3.1,4.13,15.17,15.17,0,0,0,1.41,2.06,22.93,22.93,0,0,0,2.73,2.5c2.12,1.75,4.3,3.57,5,6.11a1.25,1.25,0,0,1-1.08,1.58,28.36,28.36,0,0,0-7.69,2.39C373.93,121.87,370.7,123.21,367.44,123.21Zm5.86-17.86a34.89,34.89,0,0,1-1.7,3.65,28.41,28.41,0,0,0-3.35,11.68,27.38,27.38,0,0,0,7.85-2.41A39.11,39.11,0,0,1,382.8,116a18.07,18.07,0,0,0-3.59-3.55,25.06,25.06,0,0,1-3-2.8,17.36,17.36,0,0,1-1.65-2.38C374.16,106.63,373.78,106,373.3,105.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M392.33,145.58h-35a1.25,1.25,0,0,1,0-2.5h35a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M363.79,154.26h-6.46a1.25,1.25,0,0,1,0-2.5h3.23c7.16,0,14.57,0,21.67-.66a38.38,38.38,0,0,1,4.64,0c2.65.08,5.65.17,7.31-.54a1.25,1.25,0,1,1,1,2.3c-2.16.93-5.32.83-8.37.74a36.82,36.82,0,0,0-4.32,0C376.32,154.18,370,154.26,363.79,154.26Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M426.47,108.22c-1.47,0-3-.1-4.37-.19-.73,0-1.4-.09-2-.11-3.38-.13-6.82-.48-10.15-.82-3.74-.38-7.61-.78-11.33-.85a1.25,1.25,0,0,1-1.23-1.27,1.24,1.24,0,0,1,1.27-1.23c3.82.07,7.74.47,11.54.86,3.29.34,6.69.69,10,.81.6,0,1.29.07,2,.12,2.74.18,6.5.43,8.23-.35a1.25,1.25,0,1,1,1,2.28A13.1,13.1,0,0,1,426.47,108.22Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M446.35,89.6c-.93,0-1.85,0-2.77,0-1.69,0-3.44-.08-5.17,0a1.25,1.25,0,1,1-.15-2.5c1.83-.11,3.64-.07,5.38,0a33,33,0,0,0,9.05-.61,1.25,1.25,0,1,1,.61,2.42A28.08,28.08,0,0,1,446.35,89.6Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M453.67,95.58H439.33a1.25,1.25,0,0,1,0-2.5h14.33a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M463.67,82.58h-6a1.25,1.25,0,0,1,0-2.5h6a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M462.26,153.33a8.62,8.62,0,0,1-3.07-.51,1.25,1.25,0,0,1,1-2.31c1.1.45,3.63.44,4.44-.17a1.25,1.25,0,1,1,1.51,2A6.56,6.56,0,0,1,462.26,153.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M520,149.25a1.25,1.25,0,0,1-1-2,50,50,0,0,1,8.81-8.32c.92-.74,1.83-1.47,2.71-2.21a1.25,1.25,0,1,1,1.61,1.92c-.9.75-1.82,1.5-2.76,2.24a48.07,48.07,0,0,0-8.38,7.89A1.25,1.25,0,0,1,520,149.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M522.33,153.58a1.25,1.25,0,0,1-1.13-1.78,17,17,0,0,1,3.55-4.58,13.25,13.25,0,0,0,3.08-4,1.25,1.25,0,1,1,2.32.93,15.26,15.26,0,0,1-3.62,4.84,15,15,0,0,0-3.08,3.89A1.25,1.25,0,0,1,522.33,153.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M481.93,87.59h-.31a1.25,1.25,0,1,1,.09-2.5c2.23.08,5-1.11,7.63-2.27a40.11,40.11,0,0,1,4.3-1.68,1.25,1.25,0,0,1,.71,2.4,38.48,38.48,0,0,0-4,1.58C487.53,86.33,484.63,87.59,481.93,87.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M484,92.92a1.25,1.25,0,0,1-.7-2.29c2.45-1.66,5.83-2.61,9.09-3.53,1.52-.43,3-.83,4.18-1.28a1.25,1.25,0,0,1,.86,2.35c-1.31.48-2.79.9-4.36,1.34-3.07.86-6.25,1.76-8.37,3.19A1.24,1.24,0,0,1,484,92.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M555.52,157.85a6.45,6.45,0,0,1-5.64-3.1,8.58,8.58,0,0,1,1.6-10.51c3.37-3.32,6.34-2.72,7.82-2.07,2.79,1.24,4.72,4.63,4.58,8.07a7.61,7.61,0,0,1-5.44,7.08h0A8.89,8.89,0,0,1,555.52,157.85Zm2.5-1.7h0Zm-1.11-12a5.43,5.43,0,0,0-3.68,1.85,6.06,6.06,0,0,0-1.24,7.41c1.13,1.82,3.18,2.38,5.61,1.54h0a5.14,5.14,0,0,0,3.76-4.83,6.07,6.07,0,0,0-3.09-5.68A3.35,3.35,0,0,0,556.92,144.17Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M570.67,149.58h-4.33a1.25,1.25,0,0,1,0-2.5h4.33a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M542.6,151.64a9.44,9.44,0,0,1-1.08-.06,1.25,1.25,0,1,1,.29-2.48,8.67,8.67,0,0,0,3.19-.3,1.25,1.25,0,1,1,.67,2.41A11.65,11.65,0,0,1,542.6,151.64Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M549.58,132.21h-.91a1.25,1.25,0,0,1-1.16-1.61,52.47,52.47,0,0,1,3.39-8,42.37,42.37,0,0,0,3.88-9.88,1.25,1.25,0,0,1,2.42-.12,56.07,56.07,0,0,0,2.43,6.07c1.63,3.67,3.32,7.46,3.24,10.94a1.25,1.25,0,0,1-1.06,1.21l-1.26.2A73.36,73.36,0,0,1,549.58,132.21ZM556.15,117a67.5,67.5,0,0,1-3,6.74,65.08,65.08,0,0,0-2.7,6,79.31,79.31,0,0,0,9.71-1.12l.17,0c-.25-2.67-1.58-5.67-3-8.83C556.94,118.82,556.53,117.91,556.15,117Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M603,150.25c-2.34,0-5.13-.15-8.08-.32-3.61-.2-7.34-.41-10.56-.35a1.28,1.28,0,0,1-1.27-1.23,1.25,1.25,0,0,1,1.23-1.27c3.33-.06,7.1.15,10.75.35,2.91.16,5.67.31,7.94.31a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M585.67,144.58a1.25,1.25,0,0,1-.4-2.43c4.81-1.65,10.6-1.54,15.7-1.44,1.27,0,2.52,0,3.7,0h0a1.25,1.25,0,0,1,0,2.5c-1.22,0-2.47,0-3.75,0-5.14-.1-10.45-.19-14.85,1.31A1.25,1.25,0,0,1,585.67,144.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M610.35,152.6H609a1.25,1.25,0,0,1,0-2.5h0c3.29.07,7.09-.14,10.76-.35,2.76-.16,5.37-.3,7.54-.31h0a1.25,1.25,0,0,1,0,2.5c-2.11,0-4.68.16-7.41.31C616.71,152.41,613.39,152.6,610.35,152.6Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M147.76,501.88c-3.43,0-6.88-.24-10.26-.48s-6.79-.48-10.13-.48h0a1.25,1.25,0,0,1-1.25-1.25,1.29,1.29,0,0,1,1.28-1.25c3.43,0,6.92.25,10.31.49,6.05.43,12.31.87,18.12-.13a1.25,1.25,0,1,1,.42,2.46A49.74,49.74,0,0,1,147.76,501.88Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M138.33,525.58h-.1c-.51,0-1-.1-1.53-.15a18.61,18.61,0,0,0-3-.18,1.23,1.23,0,0,1-1.31-1.19,1.25,1.25,0,0,1,1.19-1.31,21.27,21.27,0,0,1,3.38.19c.48.05,1,.11,1.44.14a1.25,1.25,0,0,1-.09,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M146.58,580.92a90.71,90.71,0,0,1-12-1c-.57-.07-1.27-.11-2-.15-2.76-.14-6.19-.31-7.88-2.71a1.25,1.25,0,1,1,2-1.44c1,1.4,3.74,1.54,6,1.65.79,0,1.54.08,2.2.17a95.08,95.08,0,0,0,11.83,1H147c3.33,0,5.73,0,8.49-1.23a1.25,1.25,0,1,1,1,2.29c-3.24,1.43-6,1.43-9.5,1.44h-.43Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M189.67,506.92h0c-4.84,0-13.33-.8-17.81-1.34a1.25,1.25,0,1,1,.3-2.48c4.42.53,12.79,1.29,17.53,1.33a1.25,1.25,0,0,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M182.45,514.29c-4.67,0-9.59-.2-13.8-1.43a1.25,1.25,0,0,1,.7-2.4c4.87,1.42,11,1.36,16.42,1.3l3.57,0a1.25,1.25,0,0,1,0,2.5,3.43,3.43,0,0,1-.44,0l-3.1,0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M202.33,564.63c-1.34,0-2.86-.1-4.5-.23-1-.08-1.9-.15-2.5-.15a1.25,1.25,0,0,1,0-2.5c.69,0,1.62.07,2.69.16,1.9.15,6.94.55,7.66-.35a1.25,1.25,0,0,1,2,1.56C206.71,564.28,204.82,564.63,202.33,564.63Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M208.67,570.58h-13a1.25,1.25,0,0,1,0-2.5h13a1.25,1.25,0,1,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M201,581.92h-.23c-2.67-.14-3.68-1.28-4.05-2.21-.54-1.35-.05-3,1.31-4.48s3.48-2.61,5.7-1.88c2.5.83,3.09,2.69,2.82,4.15A5.94,5.94,0,0,1,201,581.92Zm1.39-6.29a3.88,3.88,0,0,0-2.54,1.3c-.71.75-.95,1.51-.81,1.84s.66.59,1.86.65h0a3.45,3.45,0,0,0,3.18-2.39c0-.26.17-.88-1.15-1.31A1.71,1.71,0,0,0,202.38,575.63Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M110.35,517.29a22.47,22.47,0,0,1-8.32-1.93,75.86,75.86,0,0,1-7.71-3.87L93,510.76a23.18,23.18,0,0,0-2.32-1c-1.85-.75-3.94-1.6-5.3-3.27a1.25,1.25,0,1,1,1.94-1.58c1,1.17,2.66,1.86,4.3,2.53a25.54,25.54,0,0,1,2.58,1.16l1.34.74a74.18,74.18,0,0,0,7.45,3.74,18.35,18.35,0,0,0,8.25,1.7,1.25,1.25,0,0,1,.22,2.49Q110.91,517.29,110.35,517.29Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M110,522.92a1.25,1.25,0,0,1-.33,0c-3.36-.9-6.88-2.06-10.49-3.27-.66-.22-1.43-.46-2.26-.72-4.57-1.43-10.83-3.38-13.24-6.44a1.25,1.25,0,0,1,2-1.54c1.93,2.45,8,4.35,12,5.6.85.27,1.64.51,2.31.74,3.57,1.2,7,2.34,10.34,3.23a1.25,1.25,0,0,1-.32,2.46Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M114.33,529.92a1.25,1.25,0,0,1-.47-2.41c2.22-.91,5.17-.72,7.78-.55,1,.06,1.89.12,2.7.12a1.25,1.25,0,1,1,0,2.5c-.89,0-1.84-.06-2.86-.13-2.34-.15-5-.32-6.67.37A1.24,1.24,0,0,1,114.33,529.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M121.32,533c-2.07,0-4.35-.2-6-1.25a1.25,1.25,0,0,1,1.35-2.1c1.53,1,4.41.89,6.51.82h.44a1.22,1.22,0,0,1,1.29,1.21,1.25,1.25,0,0,1-1.21,1.29h-.43C122.67,533,122,533,121.32,533Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M204.06,502.94c-1.59,0-3.19-.1-4.71-.19s-2.79-.17-4-.17a1.25,1.25,0,1,1,0-2.5c1.31,0,2.7.08,4.17.17,3.66.22,7.8.47,10.68-.74a1.25,1.25,0,0,1,1,2.31A18.59,18.59,0,0,1,204.06,502.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M210.65,507.25c-3.38,0-6.75-.28-10-.54-2.19-.18-4.46-.36-6.69-.46a1.25,1.25,0,1,1,.11-2.5c2.28.1,4.57.29,6.79.47,3.21.26,6.52.53,9.8.53h0a1.25,1.25,0,1,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M626.88,500.82c-2.73,0-5.52-.16-8.27-.32-3.4-.19-6.62-.38-9.55-.25a1.25,1.25,0,1,1-.1-2.5c3.05-.12,6.33.06,9.8.26,6.67.38,13.56.77,18.82-1.18a1.25,1.25,0,0,1,.87,2.34A33.57,33.57,0,0,1,626.88,500.82Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M638.67,506.25c-4.2,0-8.52-.31-12.7-.6a122.36,122.36,0,0,0-17.87-.4,1.25,1.25,0,0,1-.2-2.49,124.15,124.15,0,0,1,18.24.4c4.14.29,8.42.6,12.53.6a1.25,1.25,0,1,1,0,2.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M634.9,576.77c-1.72,0-3.45-.16-5.06-.3-1-.09-2-.18-2.9-.23-1.46-.07-2.93-.09-4.49-.11-4.54-.06-9.24-.12-13.52-1.62a1.25,1.25,0,1,1,.83-2.36c3.9,1.37,8.38,1.43,12.73,1.48,1.52,0,3.08,0,4.59.12,1,0,2,.14,3,.23,3.09.28,6.3.57,8.93-.19a1.25,1.25,0,1,1,.69,2.4A17.52,17.52,0,0,1,634.9,576.77Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M622.24,579.36a123.7,123.7,0,0,1-13.37-.78,1.25,1.25,0,0,1,.27-2.49,111.6,111.6,0,0,0,17.55.66c.93,0,2-.06,3-.06,2.82,0,6,0,8.2-.86a1.25,1.25,0,0,1,.87,2.34c-2.59,1-6,1-9,1-1,0-2,0-2.91.06Q624.58,579.36,622.24,579.36Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M662.25,493.36a39.46,39.46,0,0,1-6.09-.66,32.89,32.89,0,0,0-3.53-.45,1.25,1.25,0,1,1,.09-2.5,34,34,0,0,1,3.84.48,26,26,0,0,0,7.42.5,31.79,31.79,0,0,0,4.85-1.31c1-.34,2.11-.69,3.19-1a1.25,1.25,0,1,1,.63,2.42c-1,.26-2,.58-3,.93a34.23,34.23,0,0,1-5.24,1.4A13.65,13.65,0,0,1,662.25,493.36Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M663.41,498.84a35.43,35.43,0,0,1-10.82-1.66,1.25,1.25,0,1,1,.81-2.36c4.77,1.64,14,2.52,18.25-.2a1.25,1.25,0,0,1,1.35,2.1C670.63,498.25,667.07,498.84,663.41,498.84Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M620.51,540.9a5.16,5.16,0,0,1-4.57-2.22c-2-3-.88-8.07,1.28-11.54,1.94-3.12,4.47-4.72,6.94-4.38h0c4.22.63,6.67,3.05,6.71,6.65.06,4.85-4.34,10.57-8.72,11.33A9.76,9.76,0,0,1,620.51,540.9Zm3-15.68c-1.36,0-2.9,1.19-4.18,3.24-1.92,3.09-2.52,7.05-1.33,8.82.66,1,1.92,1.31,3.73,1,3.15-.55,6.69-5.25,6.65-8.83,0-2.34-1.57-3.76-4.57-4.21Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M661.55,536.59a4.66,4.66,0,0,1-4.27-2.25c-1.38-2.4-.59-6,.9-8.31,1.32-2,3.12-3.11,4.94-2.93h0a1.25,1.25,0,0,1,.83.18,8.54,8.54,0,0,1,3.58,9,5.74,5.74,0,0,1-5.69,4.35Zm1.18-11a3.33,3.33,0,0,0-2.45,1.81c-1.22,1.89-1.59,4.4-.83,5.71.15.27.62,1.08,2.32,1a3.28,3.28,0,0,0,3.38-2.49,6,6,0,0,0-2.21-6h-.21Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M685,507.44a75.46,75.46,0,0,1-8.17-.54,1.25,1.25,0,1,1,.27-2.48c5.78.64,12.24,1,16.33-.89a1.25,1.25,0,0,1,1.06,2.26A22.82,22.82,0,0,1,685,507.44Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M676.67,512.58a1.25,1.25,0,0,1,0-2.5c2.87,0,5.77-.25,8.58-.5,2.64-.23,5.38-.47,8.07-.5h0a1.25,1.25,0,0,1,0,2.5c-2.6,0-5.17.25-7.88.49S679.64,512.58,676.67,512.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M663.94,579.51c-2.27,0-4.67-.17-6.95-.33-2-.14-3.82-.27-5.33-.27a1.25,1.25,0,0,1,0-2.5c1.6,0,3.5.13,5.5.27,4.81.34,10.79.76,13.55-.78a1.25,1.25,0,1,1,1.21,2.19C670,579.19,667.07,579.51,663.94,579.51Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M662.37,583.61c-2,0-4.06-.11-5.92-.21-1.42-.08-2.76-.15-3.79-.15a1.25,1.25,0,0,1,0-2.5c1.09,0,2.47.07,3.92.15,4.14.22,9.8.53,12.94-.73a1.25,1.25,0,0,1,.93,2.32A22.89,22.89,0,0,1,662.37,583.61Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M678.95,578c-.41,0-.77,0-1.07,0a1.25,1.25,0,1,1,.25-2.49c1.78.19,6.62-.33,8.56-1.49a1.25,1.25,0,1,1,1.29,2.14C685.8,577.38,681.47,578,678.95,578Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M707,514.25a1.27,1.27,0,0,1-.28,0,1.25,1.25,0,0,1-.95-1.49c.41-1.81,3-1.88,6.57-2a21,21,0,0,0,3.64-.28,1.25,1.25,0,0,1,.68,2.41,20.75,20.75,0,0,1-4.25.37,20.78,20.78,0,0,0-4.34.38A1.25,1.25,0,0,1,707,514.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M587.67,582.58a1.25,1.25,0,0,1-1-2c3.71-5.15,8.35-9.53,12.43-11.71a1.25,1.25,0,0,1,1.18,2.21c-3.75,2-8.08,6.1-11.57,11A1.25,1.25,0,0,1,587.67,582.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M583.67,576.58a1.25,1.25,0,0,1-1.07-1.9c2.1-3.48,10.42-10.32,14.9-10.93a1.25,1.25,0,0,1,.33,2.48c-3.31.45-11.2,6.6-13.1,9.74A1.25,1.25,0,0,1,583.67,576.58Z" transform="translate(-53.25 -44.96)"/></g><g id="BACKGROUND"><path class="cls-24" d="M479.9,331.07c-37.71,0-75.29-.27-112.34-.54-33.89-.24-68.94-.49-103.29-.53-31.44,0-63.33-.27-94.18-.5-33.44-.25-68-.5-102.1-.5a2,2,0,0,1,0-4c34.1,0,68.68.26,102.13.5,30.83.23,62.72.46,94.15.5,34.36,0,69.41.29,103.31.53,86.22.62,175.37,1.26,262.09-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08H728a2,2,0,0,1,0,4H665.58c-4,0-8,0-12-.08-7.82-.08-15.9-.17-23.81.08C580.3,330.59,530,331.07,479.9,331.07Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M479.9,306c-37.71,0-75.29-.27-112.33-.54-33.89-.24-68.94-.49-103.29-.53-31.7,0-62.72-.31-92.72-.58-32-.29-65-.59-98.87-.59a2,2,0,1,1,0-4c33.84,0,66.92.3,98.91.59,30,.27,61,.55,92.69.58,34.36,0,69.41.29,103.31.53,86.22.62,175.37,1.26,262.09-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08h56.53a2,2,0,0,1,0,4H665.58c-4,0-8,0-12-.09-7.82-.08-15.9-.17-23.81.08C580.3,305.5,530,306,479.9,306Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476,190.86c-37.71,0-75.29-.27-112.33-.54-33.89-.24-68.94-.49-103.29-.53-31.42,0-63.29-.27-94.12-.5l-32.69-.23a2,2,0,0,1-2-2,2,2,0,0,1,2-2l32.69.23c30.82.23,62.68.46,94.09.5,34.36,0,69.41.29,103.31.53,86.22.62,175.37,1.26,262.09-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08a2,2,0,0,1,0,4c-4,0-8,0-12-.09-7.82-.08-15.9-.17-23.81.08C576.4,190.38,526.09,190.86,476,190.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476,165.77c-37.71,0-75.29-.27-112.33-.54-33.89-.24-68.94-.49-103.29-.53-31.52,0-63.48-.27-94.4-.5l-8.79-.06a2,2,0,0,1,0-4h0l8.79.06c30.91.23,62.87.46,94.38.5,34.36,0,69.41.29,103.31.53,86.22.62,175.37,1.26,262.09-1.53,3.52-.11,7.36-.17,11.75-.17h0a2,2,0,0,1,0,4c-4.34,0-8.14.06-11.62.17C576.4,165.29,526.09,165.77,476,165.77Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476,475.66c-37.71,0-75.29-.27-112.35-.54-33.89-.24-68.93-.5-103.27-.53-31.45,0-63.35-.27-94.2-.5-33.43-.25-68-.5-102.07-.5a2,2,0,1,1,0-4c34.09,0,68.66.25,102.1.5,30.84.23,62.74.46,94.18.5,34.35,0,69.4.29,103.29.53,86.23.62,175.39,1.26,262.11-1.53,8-.25,16.12-.17,24-.09,4,0,7.95.08,11.91.08,10.39,0,22.44-.2,34.11-.4s23.75-.4,34.17-.4a2,2,0,0,1,0,4c-10.39,0-22.45.2-34.11.4s-23.75.4-34.17.4c-4,0-8,0-12-.08-7.82-.08-15.91-.17-23.81.08C576.39,475.19,526.08,475.66,476,475.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M733.78,450.57c-10.44,0-23.51-.53-36.14-1s-25.61-1-36-1c-4,0-8,0-12-.08-7.82-.08-15.91-.17-23.81.08-86.79,2.79-176,2.15-262.23,1.53-33.9-.24-69-.5-103.31-.53-31.43,0-63.31-.27-94.14-.5-33.45-.25-68-.5-102.13-.5a2,2,0,1,1,0-4c34.11,0,68.7.25,102.16.5,30.83.23,62.7.46,94.12.5,34.37,0,69.43.29,103.33.53,86.21.62,175.36,1.26,262.07-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08,10.44,0,23.5.53,36.13,1s25.61,1,36,1a2,2,0,0,1,0,4Z" transform="translate(-53.25 -44.96)"/><g class="cls-25"><path class="cls-24" d="M167.18,469.74a2.91,2.91,0,0,1-1.53-.42,4.18,4.18,0,0,1-1.65-3.38h0c-.07-.82-.11-1.66-.15-2.5s-.07-1.56-.13-2.32c-.19-2.42-.29-5.09-.29-8.41a4.24,4.24,0,0,1,1.48-3.58c1.55-1.09,3.5-.4,4.66,0a21.31,21.31,0,0,1,9.27,5.93l.19.21c1.06,1.17,2.65,2.94,2,4.76-.35,1-1.32,1.71-2.88,2.76-.28.19-.52.34-.65.45-.95.78-1.93,1.46-2.89,2.13-.56.39-1.13.78-1.68,1.19-.29.22-.58.45-.88.68a14.2,14.2,0,0,1-3.3,2.15A4.14,4.14,0,0,1,167.18,469.74Zm.91-3.46h0Zm-.66-13.63v.05c0,3.21.09,5.78.28,8.09.06.81.1,1.64.14,2.46s.06,1.38.11,2.06a18.62,18.62,0,0,0,1.61-1.2c.33-.27.66-.53,1-.77.59-.43,1.19-.85,1.79-1.27.93-.65,1.81-1.25,2.63-1.93.19-.16.54-.4,1-.68l.9-.62c-.28-.35-.62-.73-.77-.9l-.22-.25a17.5,17.5,0,0,0-7.61-4.8C167.89,452.79,167.63,452.71,167.43,452.65Zm10,5.68Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M190.73,469.74a4.13,4.13,0,0,1-1.59-.35,14.22,14.22,0,0,1-3.3-2.15c-.3-.24-.59-.47-.88-.68-.55-.41-1.12-.8-1.69-1.19-1-.66-1.94-1.35-2.89-2.13-.13-.11-.37-.26-.65-.45-1.56-1.05-2.54-1.77-2.88-2.76-.63-1.81,1-3.58,2-4.76l.19-.21a21.32,21.32,0,0,1,9.27-5.93c1.16-.42,3.11-1.11,4.66,0a4.24,4.24,0,0,1,1.48,3.58c0,3.32-.09,6-.29,8.41-.06.76-.1,1.54-.13,2.32s-.08,1.69-.15,2.51a4.18,4.18,0,0,1-1.65,3.38A2.91,2.91,0,0,1,190.73,469.74Zm-9.65-10.88.9.62c.41.28.76.52,1,.68.82.67,1.7,1.28,2.62,1.93.6.42,1.2.83,1.79,1.27.33.24.66.5,1,.77a18.47,18.47,0,0,0,1.61,1.2c0-.68.08-1.37.11-2.07s.08-1.64.14-2.45c.19-2.31.27-4.88.28-8.1v-.05c-.2.05-.46.14-.8.26a17.5,17.5,0,0,0-7.61,4.8l-.22.24C181.71,458.13,181.37,458.5,181.09,458.86Zm-.65-.52" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M102.47,354.23a2,2,0,0,1-1.68-3.08,79.22,79.22,0,0,1,7.43-9.73c6.39-7.21,15.4-12.58,27.57-16.43,11.57-3.66,22.64-7.53,30.94-14.54a2,2,0,0,1,3.25,1.91,18.25,18.25,0,0,1-2,5.36c6.95-2,16.48-6.56,19.26-10a2,2,0,0,1,3.55,1.36,16.94,16.94,0,0,1-3,8.82,65.35,65.35,0,0,0,12.58-2.63c1.46-.41,2.94-.82,4.46-1.21a2,2,0,0,1,2.44,2.41,12.34,12.34,0,0,1-1.78,4c17.25,3.33,36.68,15.6,47.45,30.28a2,2,0,1,1-3.23,2.37c-11-15-31.37-27.27-48.49-29.27a2,2,0,0,1-1-3.57,9.19,9.19,0,0,0,1.26-1.18l-.05,0c-5.93,1.65-11.53,3.21-18.5,2.83a2,2,0,0,1-1.09-3.6,12.31,12.31,0,0,0,3.36-3.87c-6.56,4.13-16.49,7.75-21.54,8.2a2,2,0,0,1-1.7-3.3c.35-.4.71-.85,1.08-1.35-7.71,4.74-16.71,7.82-26,10.77-11.46,3.62-19.89,8.62-25.78,15.27a75.18,75.18,0,0,0-7.06,9.24A2,2,0,0,1,102.47,354.23Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M119.46,422.75c-6.6,0-13.4-1.41-18.19-5.32-12.68-10.37-18.57-28.31-14.66-44.65,3.5-14.6,13.77-24.79,28.19-27.94a50.34,50.34,0,0,1,13.11-1.2h0c21.69,1,33,17.78,34.56,33.91,1.71,17.53-7.28,37.86-31.21,43.77A50.23,50.23,0,0,1,119.46,422.75Zm6.37-75.16a47.77,47.77,0,0,0-10.17,1.15c-12.86,2.81-22,11.91-25.15,25-3.56,14.88,1.78,31.21,13.3,40.62,6.27,5.12,17.82,5.25,26.5,3.11,21.61-5.34,29.73-23.69,28.19-39.5-1.41-14.42-11.46-29.38-30.77-30.3Q126.79,347.59,125.83,347.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M136.19,391.22c6.18-1.2,8.88-12,3.72-16s-15.21,1.36-14.1,8.27C126.6,388.33,131.25,392.18,136.19,391.22Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M88.65,512.72a2,2,0,0,1-2-2c0-8.37-.06-16.77-.11-24.89-.19-29.54-.38-57.44,1.85-87a2,2,0,1,1,4,.3c-2.22,29.38-2,57.2-1.84,86.66.05,8.13.11,16.53.11,24.91A2,2,0,0,1,88.65,512.72Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M263.59,512.72h-.2a2,2,0,0,1-1.79-2.19c1.33-13.41.87-37.17.34-58.37-.17-6.66-.6-13.32-1-19.77-.58-8.87-1.18-18-1.07-27.25a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c-.1,9.06.49,18.15,1.06,26.95.42,6.49.86,13.2,1,19.93.53,21.33,1,45.23-.36,58.87A2,2,0,0,1,263.59,512.72Z" transform="translate(-53.25 -44.96)"/><circle class="cls-7" cx="84.62" cy="334.45" r="2.31"/><path class="cls-24" d="M235.5,423.2a50.2,50.2,0,0,1-11.8-1.43c-23.93-5.91-32.92-26.24-31.21-43.77,1.57-16.13,12.87-32.87,34.56-33.91a50.36,50.36,0,0,1,13.11,1.2c14.42,3.15,24.69,13.33,28.19,27.94,3.91,16.34-2,34.29-14.66,44.65C248.9,421.79,242.1,423.2,235.5,423.2ZM229.13,348q-1,0-1.9,0h0c-19.31.92-29.37,15.89-30.77,30.3-1.54,15.81,6.58,34.16,28.19,39.5,8.68,2.14,20.23,2,26.5-3.11,11.52-9.42,16.87-25.74,13.3-40.62-3.13-13.05-12.29-22.15-25.15-25A47.79,47.79,0,0,0,229.13,348Zm-2-2h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M240.76,389.67c-6.18-1.2-8.88-12-3.72-16s15.21,1.36,14.1,8.27C250.36,386.77,245.71,390.62,240.76,389.67Z" transform="translate(-53.25 -44.96)"/><circle class="cls-7" cx="191.83" cy="332.89" r="2.31"/><path class="cls-24" d="M176.13,407.12a13.92,13.92,0,0,1-8.83-3.22h0c-3.83-3.15-3.79-5.86-3.09-7.58,1.81-4.42,9.6-5.72,13.19-5.4s8.38,1.36,10,4.47c.61,1.18,1,3.14-.55,5.76a12,12,0,0,1-8.4,5.76A13.24,13.24,0,0,1,176.13,407.12Zm-6.29-6.31a9.78,9.78,0,0,0,7.89,2.17,8.07,8.07,0,0,0,5.65-3.86c.34-.58.7-1.38.43-1.89-.46-.89-2.73-2-6.77-2.31-3.51-.31-8.45,1.28-9.13,2.93-.27.65.46,1.76,1.93,3Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M165.22,420.86a8.93,8.93,0,0,1-5.31-1.66,8,8,0,0,1-3.17-7c.2-4.74,3.51-11.08,9.24-13.51a2,2,0,0,1,1.56,3.68c-4,1.7-6.65,6.51-6.8,10a4,4,0,0,0,1.53,3.62,5.83,5.83,0,0,0,5.35.45l1.06-.39c4.27-1.57,7.64-2.81,13.06-2.09a28.21,28.21,0,0,1,3.13.66c3.48.87,5.69,1.27,7.19-.59s.86-4.43.32-5.75c-1.36-3.33-4.58-6.19-7.32-6.52a2,2,0,0,1,.47-4c4.19.5,8.62,4.27,10.55,9,1.49,3.64,1.16,7.2-.9,9.77-3.21,4-7.87,2.83-11.28,2a25.36,25.36,0,0,0-2.68-.58c-4.44-.58-7.12.4-11.16,1.88l-1.08.39A11.06,11.06,0,0,1,165.22,420.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M176.32,432.68c-2.92,0-5.13-.74-6.72-2.25-2.9-2.77-3-7.44-2.79-12.38a2,2,0,1,1,4,.15c-.14,3.84-.14,7.72,1.55,9.34,1,1,2.74,1.31,5.32,1.09l.2,0c3.29-.28,4-.34,4.67-2.76a36.9,36.9,0,0,0,.84-9.07,2,2,0,0,1,2-2h0a2,2,0,0,1,2,2,39.11,39.11,0,0,1-1,10.13c-1.45,5.07-4.72,5.35-8.17,5.65l-.2,0Q177.14,432.68,176.32,432.68Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M104,352.05a2,2,0,0,1-.74-.14C98,349.85,93.29,344,91.72,337.8c-1.24-4.94-.36-9.51,2.47-12.85,3.35-4,10.47-4.29,15-2.12,4.91,2.34,7.35,5.93,9.93,9.73l1.09,1.6a2,2,0,0,1-3.28,2.28l-1.12-1.63c-2.46-3.63-4.41-6.49-8.34-8.37-3.07-1.46-8.22-1.31-10.25,1.09-2.53,3-2.29,6.71-1.64,9.3,1.25,5,5.08,9.77,9.11,11.37a2,2,0,0,1-.74,3.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M251.49,354a2,2,0,0,1-1.5-3.32c3.8-4.33,11.95-15.11,5.66-21.62-2.51-2.6-7.3-2.47-10.55-1-3.57,1.58-5.83,4.67-8,7.65l-.92,1.25a2,2,0,0,1-3.2-2.4l.9-1.21c2.38-3.25,5.08-6.93,9.62-8.94s11.23-2,15,1.91c6.05,6.27,4,16.12-5.53,27A2,2,0,0,1,251.49,354Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-26"><path class="cls-24" d="M625.88,469.74a2.91,2.91,0,0,1-1.54-.42,4.19,4.19,0,0,1-1.65-3.38c-.07-.82-.11-1.67-.15-2.52s-.07-1.55-.13-2.31c-.19-2.42-.29-5.09-.29-8.41a4.24,4.24,0,0,1,1.48-3.58c1.55-1.09,3.5-.4,4.66,0a21.33,21.33,0,0,1,9.27,5.93l.19.21c1.06,1.17,2.65,2.94,2,4.76-.35,1-1.32,1.71-2.88,2.76-.28.19-.52.34-.65.45-.95.78-1.93,1.46-2.89,2.13-.57.39-1.13.79-1.69,1.2-.29.21-.58.45-.88.68a14.24,14.24,0,0,1-3.3,2.15A4.13,4.13,0,0,1,625.88,469.74Zm.91-3.46h0Zm-.66-13.63v.05c0,3.21.09,5.78.28,8.09.06.81.1,1.63.14,2.44s.07,1.4.12,2.08a18.23,18.23,0,0,0,1.61-1.2c.33-.27.66-.53,1-.77.59-.44,1.19-.85,1.79-1.27.93-.64,1.81-1.25,2.62-1.93.19-.16.54-.4,1-.68l.9-.62c-.28-.35-.62-.73-.77-.9l-.22-.25a17.51,17.51,0,0,0-7.61-4.8C626.59,452.79,626.33,452.71,626.13,452.65Zm10,5.68Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M649.44,469.74a4.13,4.13,0,0,1-1.59-.35,14.23,14.23,0,0,1-3.3-2.15c-.3-.24-.59-.47-.88-.68-.55-.41-1.12-.8-1.68-1.19-1-.66-1.94-1.35-2.89-2.13-.13-.11-.37-.26-.65-.45-1.56-1.05-2.54-1.77-2.88-2.76-.63-1.81,1-3.58,2-4.75l.19-.21a21.33,21.33,0,0,1,9.27-5.93c1.16-.42,3.11-1.11,4.66,0a4.24,4.24,0,0,1,1.48,3.58c0,3.32-.1,6-.29,8.41-.06.77-.1,1.54-.13,2.32s-.08,1.69-.15,2.51h0a4.19,4.19,0,0,1-1.65,3.38A2.91,2.91,0,0,1,649.44,469.74Zm-9.65-10.88c.32.23.67.47.9.62.41.28.76.52,1,.68.82.67,1.7,1.28,2.63,1.93.6.42,1.2.83,1.79,1.27.33.24.66.5,1,.77a18.42,18.42,0,0,0,1.61,1.2c0-.68.08-1.37.11-2.07s.08-1.64.14-2.45c.18-2.31.27-4.88.28-8.1v-.05c-.2.05-.46.14-.8.26a17.51,17.51,0,0,0-7.61,4.8l-.22.24C640.41,458.13,640.07,458.5,639.79,458.86Zm-.65-.52" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M561.17,354.23a2,2,0,0,1-1.68-3.08,79.07,79.07,0,0,1,7.43-9.73c6.39-7.21,15.4-12.58,27.57-16.43,11.57-3.66,22.64-7.53,30.95-14.54a2,2,0,0,1,3.25,1.91,18.24,18.24,0,0,1-2,5.36c6.95-2,16.48-6.56,19.26-10a2,2,0,0,1,3.55,1.36,16.94,16.94,0,0,1-3,8.82A65.37,65.37,0,0,0,659,315.26c1.46-.41,2.94-.82,4.46-1.21a2,2,0,0,1,2.44,2.42,12.35,12.35,0,0,1-1.78,4c17.25,3.33,36.67,15.59,47.45,30.28a2,2,0,1,1-3.22,2.37c-11-15-31.37-27.27-48.49-29.27a2,2,0,0,1-1-3.57,9.15,9.15,0,0,0,1.26-1.18h-.05c-5.93,1.65-11.54,3.21-18.5,2.83a2,2,0,0,1-1.09-3.6,12.32,12.32,0,0,0,3.36-3.87c-6.57,4.13-16.49,7.75-21.54,8.2a2,2,0,0,1-1.7-3.29c.35-.4.71-.86,1.08-1.35-7.71,4.74-16.72,7.82-26,10.77-11.46,3.62-19.89,8.62-25.78,15.27a75.13,75.13,0,0,0-7.06,9.24A2,2,0,0,1,561.17,354.23Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M578.17,422.75c-6.6,0-13.4-1.41-18.19-5.32-12.68-10.37-18.57-28.31-14.66-44.65,3.5-14.6,13.77-24.79,28.19-27.94a50.35,50.35,0,0,1,13.11-1.2h0c21.69,1,33,17.78,34.56,33.91,1.71,17.53-7.28,37.86-31.21,43.77A50.23,50.23,0,0,1,578.17,422.75Zm6.37-75.16a47.79,47.79,0,0,0-10.18,1.15c-12.86,2.81-22,11.91-25.15,25-3.56,14.88,1.78,31.21,13.3,40.62,6.27,5.12,17.82,5.25,26.5,3.11,21.61-5.34,29.73-23.69,28.19-39.5-1.41-14.42-11.47-29.38-30.77-30.3Q585.49,347.59,584.53,347.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M571.9,391.22c6.18-1.2,8.88-12,3.72-16s-15.21,1.36-14.1,8.27C562.3,388.33,567,392.18,571.9,391.22Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M547.36,512.72a2,2,0,0,1-2-2c0-8.37-.06-16.77-.11-24.88-.2-29.54-.38-57.44,1.85-87a2,2,0,0,1,4,.3c-2.22,29.38-2,57.21-1.84,86.66.05,8.12.11,16.52.11,24.91A2,2,0,0,1,547.36,512.72Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M722.29,512.72h-.2a2,2,0,0,1-1.79-2.19c1.33-13.41.87-37.16.34-58.37-.17-6.66-.6-13.32-1-19.77-.58-8.87-1.17-18-1.07-27.26a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c-.1,9.06.49,18.16,1.07,27,.42,6.49.86,13.19,1,19.93.53,21.33,1,45.23-.36,58.87A2,2,0,0,1,722.29,512.72Z" transform="translate(-53.25 -44.96)"/><circle class="cls-7" cx="520.33" cy="334.45" r="2.31"/><path class="cls-24" d="M694.2,423.2a50.2,50.2,0,0,1-11.8-1.43c-23.93-5.91-32.92-26.24-31.21-43.77,1.57-16.13,12.87-32.87,34.56-33.91a50.16,50.16,0,0,1,13.11,1.2c14.42,3.15,24.69,13.33,28.19,27.94,3.91,16.34-2,34.29-14.66,44.65C707.6,421.79,700.8,423.2,694.2,423.2ZM687.83,348q-1,0-1.9,0h0c-19.31.92-29.37,15.89-30.77,30.3-1.54,15.81,6.58,34.16,28.19,39.5,8.68,2.14,20.23,2,26.5-3.11,11.52-9.42,16.86-25.74,13.3-40.62C720,361.1,710.86,352,698,349.19A47.79,47.79,0,0,0,687.83,348Zm-2-2h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M676.47,389.67c-6.18-1.2-8.88-12-3.72-16s15.21,1.36,14.1,8.27C686.07,386.77,681.41,390.62,676.47,389.67Z" transform="translate(-53.25 -44.96)"/><circle class="cls-7" cx="627.54" cy="332.89" r="2.31"/><path class="cls-24" d="M634.83,407.12A13.92,13.92,0,0,1,626,403.9h0c-3.83-3.15-3.79-5.86-3.09-7.58,1.81-4.42,9.61-5.71,13.19-5.4s8.38,1.36,10,4.47c.61,1.18,1,3.14-.55,5.76a12,12,0,0,1-8.4,5.76A13.24,13.24,0,0,1,634.83,407.12Zm-6.29-6.31a9.78,9.78,0,0,0,7.88,2.17,8.08,8.08,0,0,0,5.65-3.86c.34-.58.7-1.38.43-1.89-.46-.89-2.73-2-6.77-2.31-3.51-.31-8.46,1.28-9.13,2.93-.26.65.46,1.76,1.93,3Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M623.92,420.86a8.93,8.93,0,0,1-5.31-1.66,8,8,0,0,1-3.17-7c.2-4.74,3.51-11.08,9.23-13.51a2,2,0,0,1,1.56,3.68c-4,1.7-6.65,6.51-6.8,10A4,4,0,0,0,621,416a5.83,5.83,0,0,0,5.35.45l1.06-.39c4.27-1.57,7.64-2.82,13.06-2.09a28.19,28.19,0,0,1,3.13.66c3.48.87,5.7,1.27,7.19-.59s.86-4.43.32-5.75c-1.36-3.33-4.58-6.19-7.32-6.52a2,2,0,1,1,.47-4c4.19.5,8.62,4.27,10.55,9,1.49,3.64,1.16,7.2-.9,9.77-3.21,4-7.87,2.83-11.28,2a25.6,25.6,0,0,0-2.68-.58c-4.44-.58-7.12.4-11.16,1.88l-1.08.39A11.05,11.05,0,0,1,623.92,420.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M635,432.68c-2.92,0-5.13-.74-6.72-2.25-2.9-2.76-3-7.44-2.79-12.38a2,2,0,0,1,4,.15c-.14,3.84-.14,7.72,1.55,9.34,1,1,2.74,1.31,5.32,1.09l.2,0c3.29-.28,4-.34,4.67-2.76a36.89,36.89,0,0,0,.84-9.07,2,2,0,0,1,2-2h0a2,2,0,0,1,2,2,39.06,39.06,0,0,1-1,10.13c-1.45,5.07-4.71,5.35-8.17,5.65l-.2,0Q635.84,432.68,635,432.68Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M562.68,352.05a2,2,0,0,1-.74-.14c-5.21-2.06-9.95-7.87-11.52-14.11-1.24-4.94-.37-9.51,2.46-12.85,3.35-4,10.47-4.29,15-2.12,4.91,2.34,7.35,5.93,9.93,9.74l1.09,1.59a2,2,0,1,1-3.29,2.28l-1.12-1.63c-2.46-3.63-4.41-6.5-8.34-8.37-3.07-1.47-8.23-1.31-10.25,1.09-2.53,3-2.29,6.71-1.64,9.3,1.25,5,5.08,9.77,9.11,11.37a2,2,0,0,1-.74,3.86Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M710.2,354a2,2,0,0,1-1.5-3.32c3.8-4.33,11.95-15.11,5.66-21.62-2.51-2.6-7.3-2.47-10.54-1-3.57,1.58-5.83,4.67-8,7.65l-.92,1.25a2,2,0,0,1-3.2-2.4l.89-1.21c2.38-3.25,5.08-6.93,9.62-8.94s11.23-2,15,1.91c6.05,6.26,4,16.12-5.53,27A2,2,0,0,1,710.2,354Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M658,401.5a2,2,0,0,1-1.75-3c1.28-2.33,6-3.06,16.21-3.8,1.16-.08,2.16-.16,2.84-.23a186.1,186.1,0,0,1,25.3-.51l3.1.08c6.61.14,14.83.32,19.92,3.76a2,2,0,1,1-2.24,3.31c-4.12-2.78-11.69-2.94-17.77-3.08l-3.16-.08a182.21,182.21,0,0,0-24.75.49c-.72.07-1.75.15-3,.24-3.18.23-11.54.84-13.11,1.92A2,2,0,0,1,658,401.5Zm1.75-1h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M550.5,403a2,2,0,0,1-.85-3.81c22.12-10.34,50.14-5.14,64.87-1.12a2,2,0,1,1-1.05,3.86c-14.2-3.88-41.16-8.92-62.13.88A2,2,0,0,1,550.5,403Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-24" d="M476,616.83c-37.71,0-75.29-.27-112.35-.54-33.89-.24-68.93-.5-103.27-.53-31.46,0-63.37-.27-94.23-.5l-35-.25a2,2,0,0,1,0-4h0l35,.25c30.85.23,62.75.46,94.2.5,34.35,0,69.4.29,103.29.53,86.22.62,175.38,1.26,262.11-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08a2,2,0,0,1,0,4c-4,0-8,0-12-.08-7.82-.08-15.91-.17-23.81.08C576.39,616.35,526.08,616.83,476,616.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M476,591.73c-37.71,0-75.28-.27-112.32-.54-33.9-.24-69-.5-103.31-.53-31.4,0-63.25-.27-94.05-.5q-26.27-.19-52.54-.35a2,2,0,0,1,0-4h0q26.28.14,52.55.35c30.8.23,62.64.46,94,.5,34.37,0,69.43.29,103.33.53,86.21.62,175.36,1.26,262.07-1.53,8-.26,16.12-.17,24-.09,4,0,7.95.08,11.91.08,5.21,0,11.36.13,19.37.4a2,2,0,0,1,1.93,2.07,2,2,0,0,1-2.07,1.93c-8-.27-14.08-.39-19.24-.39-4,0-8,0-12-.08-7.82-.08-15.9-.17-23.81.08C576.4,591.25,526.09,591.73,476,591.73Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M89,396a2,2,0,0,1-.1-4,88.43,88.43,0,0,0,11.52-1.63c3-.56,6.18-1.15,9.26-1.47a131.34,131.34,0,0,1,15.92-.45c1.88,0,3.77.05,5.71,0,1.54,0,3.15,0,4.81-.07,7.7-.16,16.42-.33,23.09,2.2a2,2,0,0,1-1.42,3.74c-5.94-2.26-14.25-2.09-21.59-1.94-1.69,0-3.33.07-4.88.07-2,0-3.87,0-5.77,0a128,128,0,0,0-15.45.42c-2.92.31-6,.88-8.95,1.43A91.36,91.36,0,0,1,89.1,396Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M256,394.5a2,2,0,0,1-.63-.1c-13.31-4.45-28.4-3-43-1.64-5.39.51-11,1-16.28,1.24a2,2,0,1,1-.15-4c5.21-.2,10.48-.7,16.06-1.23,15-1.42,30.54-2.89,44.65,1.83a2,2,0,0,1-.63,3.9Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M91.67,303.33a2,2,0,0,1-2-2V282.07c0-4.12.11-8.41.34-12.75.09-1.79.1-4.22.11-6.8,0-3.27,0-6.64.22-8.83a2,2,0,1,1,4,.35c-.18,2-.19,5.31-.21,8.49,0,2.62,0,5.1-.12,7-.22,4.33-.33,8.44-.33,12.55v19.26A2,2,0,0,1,91.67,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M110.33,303.33a2,2,0,0,1-2-2V222.5a2,2,0,0,1,4,0v78.83A2,2,0,0,1,110.33,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M122.33,303.74a2,2,0,0,1-.93-.23c-1.39-.73-1.91-2.27-2.88-11.69-.08-.74-.14-1.34-.19-1.73-.64-5.16-1.33-10.52-2-16-2.33-18.08-4.73-36.78-6-53.83a2,2,0,1,1,4-.29c1.23,16.93,3.63,35.58,5.95,53.61.7,5.47,1.39,10.83,2,16,.05.41.12,1,.2,1.81.2,1.92.78,7.61,1.31,9a2,2,0,0,1-1.48,3.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M151.33,298.33a2,2,0,0,1-2-1.91,53.62,53.62,0,0,0-1.07-6.68c-.3-1.53-.62-3.1-.83-4.51-.49-3.15-1-6.3-1.55-9.46-.38-2.26-.75-4.52-1.12-6.79-.75-4.62-1.46-9.25-2.18-13.88-2.2-14.2-4.47-28.86-7.59-43.13-5.25-.24-12.81-.26-17,3.52a2,2,0,1,1-2.67-3c5.43-4.85,13.91-4.84,21.43-4.46a2,2,0,0,1,1.85,1.56c3.33,14.87,5.69,30.12,8,44.88.72,4.62,1.43,9.24,2.17,13.86q.55,3.38,1.12,6.76c.53,3.17,1.06,6.34,1.55,9.51.21,1.33.51,2.86.81,4.35a55.52,55.52,0,0,1,1.14,7.28,2,2,0,0,1-1.91,2.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M138.56,304a2,2,0,0,1-.14-4,17.88,17.88,0,0,0,5.7-1.36c.58-.22,1.13-.44,1.7-.59a11.3,11.3,0,0,0,2.52-1.24c.58-.34,1.18-.7,1.81-1a2,2,0,0,1,1.71,3.61c-.46.22-1,.51-1.49.83a14.58,14.58,0,0,1-3.48,1.65c-.38.1-.82.27-1.33.47a21.89,21.89,0,0,1-6.85,1.61Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M153.33,302.67a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.06-3.86.13-7.85,0-11.71-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.75-1-25.1-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.44.33,26.71,1,38.39.41,7.12.49,14.44.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,153.33,302.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M170.33,303.33h0a2,2,0,0,1-2-2c0-2.41-.08-4.85-.16-7.2s-.17-4.93-.17-7.48v-7.94c0-22,0-44.68,1-67,0-.32,0-.69.06-1.07.08-1.2.29-4.37-.27-5-1.78-2.09-8.12-1.15-12.31-.53a40,40,0,0,1-5.15.57h0a2,2,0,0,1,0-4,38.77,38.77,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.2-1,44.86-1,66.78v7.95c0,2.48.08,5,.17,7.34s.17,4.87.17,7.34A2,2,0,0,1,170.33,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M527.75,303.33a2,2,0,0,1-2-2V222.5a2,2,0,0,1,4,0v78.83A2,2,0,0,1,527.75,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M539.75,303.74a2,2,0,0,1-.93-.23c-1.39-.73-1.91-2.27-2.88-11.68-.08-.74-.14-1.35-.19-1.75l-.58-4.7c-2.64-21.32-5.92-47.86-7.42-68.57a2,2,0,0,1,4-.29c1.49,20.6,4.76,47.09,7.4,68.37l.58,4.7c.05.41.12,1.05.2,1.83.2,1.91.78,7.59,1.31,9a2,2,0,0,1-1.48,3.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M568.75,298.33a2,2,0,0,1-2-1.91,53.52,53.52,0,0,0-1.07-6.67c-.3-1.53-.62-3.11-.84-4.52-.49-3.15-1-6.3-1.54-9.46-.38-2.26-.75-4.52-1.12-6.79-.75-4.62-1.46-9.25-2.18-13.88-2.19-14.18-4.46-28.83-7.58-43.08-6.43.09-17.21,2.45-21.34,6.14a2,2,0,0,1-2.67-3c5.46-4.88,18.89-7.47,25.72-7.12a2,2,0,0,1,1.85,1.56c3.33,14.87,5.69,30.13,8,44.88.72,4.62,1.43,9.24,2.17,13.85.36,2.25.74,4.51,1.12,6.76.53,3.17,1.06,6.34,1.55,9.51.21,1.33.51,2.87.81,4.35a55.44,55.44,0,0,1,1.14,7.27,2,2,0,0,1-1.91,2.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M556,304a2,2,0,0,1-.14-4,17.89,17.89,0,0,0,5.7-1.36c.58-.22,1.13-.44,1.7-.59a11.29,11.29,0,0,0,2.52-1.24c.58-.34,1.18-.7,1.81-1a2,2,0,1,1,1.71,3.61c-.46.22-1,.51-1.49.82a14.58,14.58,0,0,1-3.48,1.65c-.38.1-.82.27-1.33.47a21.89,21.89,0,0,1-6.85,1.61Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M570.75,302.67a2,2,0,0,1-2-2c0-2,0-4.06.07-6.1.06-3.86.13-7.85-.05-11.71-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.76-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.7,1,38.39.41,7.12.49,14.45.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,570.75,302.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M587.75,303.33h0a2,2,0,0,1-2-2c0-2.41-.08-4.84-.16-7.2s-.17-4.93-.17-7.48v-7.93c0-22,0-44.69,1-67,0-.33,0-.69.06-1.08.08-1.2.29-4.37-.27-5-1.78-2.09-8.12-1.15-12.31-.53a40,40,0,0,1-5.15.57h0a2,2,0,0,1,0-4,38.79,38.79,0,0,0,4.58-.52c5.68-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.2-1,44.87-1,66.8v7.93c0,2.48.08,5,.17,7.34s.17,4.87.17,7.34A2,2,0,0,1,587.75,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M175.66,301.33a2,2,0,0,1-2-1.66,70.59,70.59,0,0,1-.53-13.69,87.77,87.77,0,0,0-.14-10.38c-1.94-20.3-1.75-41.52-1.57-62,.05-5.91.11-12,.11-17.95a2,2,0,0,1,4,0c0,5.94-.05,12.06-.11,18-.18,20.42-.37,41.53,1.55,61.62a90.77,90.77,0,0,1,.15,10.86,66.62,66.62,0,0,0,.47,12.91,2,2,0,0,1-2,2.34Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M180.34,197.94a62.68,62.68,0,0,1-7-.33,2,2,0,1,1,.46-4,105.46,105.46,0,0,0,14.11.14c2.39-.08,4.65-.15,6.72-.15a2,2,0,0,1,2,2,2,2,0,0,1-2,2h0c-2,0-4.24.07-6.6.15C185.46,197.85,182.85,197.94,180.34,197.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M197.66,303.33a2,2,0,0,1-2-1.65,139.45,139.45,0,0,1-1.7-17.26c-1.34-28.65-1.34-55.82-1.34-84.59v-4.22a2,2,0,0,1,4,0v4.22c0,28.72,0,55.84,1.33,84.4A135.63,135.63,0,0,0,199.64,301,2,2,0,0,1,198,303.3,2.05,2.05,0,0,1,197.66,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M207,212.49a2,2,0,0,1-.5-.06c-2.37-.61-8.13-.82-11.23-.84a2,2,0,1,1,0-4c2.94,0,9.26.2,12.22,1a2,2,0,0,1-.5,3.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M208,303a2,2,0,0,1-1.84-1.21c-1.15-2.66-1-7-.9-10.92,0-1.08.07-2.11.07-3,0-15.16-.08-30.61-.17-45.54s-.17-30.43-.17-45.64a2,2,0,0,1,4,0c0,15.2.08,30.67.17,45.62s.17,30.39.17,45.56c0,1,0,2-.07,3.15-.1,3.28-.23,7.37.57,9.21A2,2,0,0,1,208,303Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M239.67,304h0a2,2,0,0,1-2-2c0-2.18-.07-5-.16-8s-.18-5.94-.18-8.58c0-15.56-.34-31.45-.67-46.8-.29-13.42-.59-27.3-.66-40.92a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c.07,13.58.37,27.45.66,40.85.33,15.38.68,31.28.68,46.89,0,2.59.09,5.57.18,8.46s.18,5.89.16,8.15A2,2,0,0,1,239.67,304Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M238,199.67a2,2,0,0,1-.71-.13c-3.41-1.29-9.72-1.87-14.46-1.87l-2.73,0c-1.77,0-3.59,0-5.36,0l-1.23,0c-1.86,0-4.18.09-5.67.78a2,2,0,1,1-1.69-3.63c2.26-1,5-1.11,7.28-1.15l1.16,0c1.87-.07,3.74,0,5.56,0l2.68,0c4.73,0,11.73.56,15.87,2.13a2,2,0,0,1-.71,3.87Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M430.83,302.67a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.07-3.86.13-7.85,0-11.7-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.75-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.71,1,38.39.41,7.12.49,14.45.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,430.83,302.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M447.83,303.33h0a2,2,0,0,1-2-2c0-2.41-.08-4.85-.16-7.21s-.17-4.93-.17-7.47v-8c0-22,0-44.66,1-67,0-.32,0-.69.06-1.07.08-1.2.29-4.38-.27-5-1.78-2.09-8.12-1.15-12.32-.53a40,40,0,0,1-5.15.57h0a2,2,0,0,1,0-4,38.79,38.79,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.19-1,44.85-1,66.76v8c0,2.48.08,4.94.17,7.33s.17,4.87.17,7.35A2,2,0,0,1,447.83,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M453.16,301.33a2,2,0,0,1-2-1.66,70.61,70.61,0,0,1-.53-13.69,87.64,87.64,0,0,0-.14-10.38c-1.94-20.3-1.75-41.52-1.57-62,.05-5.91.11-12,.11-17.95a2,2,0,0,1,4,0c0,5.94-.05,12.06-.11,18-.18,20.42-.37,41.53,1.55,61.62a90.75,90.75,0,0,1,.15,10.86,66.58,66.58,0,0,0,.47,12.91,2,2,0,0,1-2,2.34Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M457.84,197.94a62.68,62.68,0,0,1-7-.33,2,2,0,1,1,.46-4,105.2,105.2,0,0,0,14.11.14c2.41-.08,4.65-.13,6.77-.15a2,2,0,0,1,0,4h0c-2,0-4.24.07-6.6.15C463,197.85,460.35,197.94,457.84,197.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M475.16,303.33a2,2,0,0,1-2-1.65,139.55,139.55,0,0,1-1.7-17.26c-1.34-28.65-1.34-55.82-1.34-84.59v-4.22a2,2,0,0,1,4,0v4.22c0,28.72,0,55.84,1.33,84.4A135.64,135.64,0,0,0,477.13,301a2,2,0,0,1-1.62,2.32A2,2,0,0,1,475.16,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M484.5,212.49a2,2,0,0,1-.5-.06c-2.37-.61-8.13-.84-11.22-.84h0a2,2,0,1,1,0-4h0c2.94,0,9.26.2,12.22,1a2,2,0,0,1-.5,3.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M485.5,303a2,2,0,0,1-1.84-1.21c-1.15-2.66-1-7-.9-10.92,0-1.08.07-2.11.07-3,0-15.16-.08-30.61-.17-45.54s-.17-30.43-.17-45.64a2,2,0,0,1,4,0c0,15.2.08,30.67.17,45.62s.17,30.39.17,45.56c0,1,0,2-.07,3.15-.1,3.28-.23,7.37.57,9.21a2,2,0,0,1-1.83,2.8Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M517.17,304h0a2,2,0,0,1-2-2c0-2.18-.07-5-.16-8s-.18-5.94-.18-8.59c0-15.56-.34-31.44-.67-46.79-.29-13.43-.59-27.31-.66-40.93a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c.07,13.58.37,27.45.66,40.86.33,15.38.67,31.28.67,46.88,0,2.59.09,5.58.18,8.47s.18,5.89.16,8.15A2,2,0,0,1,517.17,304Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M515.5,199.67a2,2,0,0,1-.71-.13c-3.41-1.29-9.72-1.87-14.46-1.87l-2.73,0c-1.77,0-3.59,0-5.36,0l-1.23,0c-1.86,0-4.18.09-5.67.78a2,2,0,0,1-1.69-3.63c2.26-1,5-1.11,7.28-1.15l1.16,0c1.87-.07,3.74,0,5.56,0l2.68,0c4.73,0,11.73.56,15.87,2.13a2,2,0,0,1-.71,3.87Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M637.34,302.67a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.07-3.86.13-7.85,0-11.7-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.75-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.71,1,38.39.41,7.12.49,14.45.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,637.34,302.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M654.34,303.33h0a2,2,0,0,1-2-2c0-2.41-.08-4.85-.16-7.2s-.17-4.93-.17-7.48v-8c0-22,0-44.66,1-67,0-.32,0-.69.06-1.07.08-1.2.29-4.38-.27-5-1.78-2.09-8.12-1.15-12.32-.53a40,40,0,0,1-5.15.57h0a2,2,0,0,1,0-4,38.79,38.79,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.19-1,44.85-1,66.76v8c0,2.48.08,5,.17,7.34s.17,4.87.17,7.34A2,2,0,0,1,654.34,303.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M659.67,301.33a2,2,0,0,1-2-1.66,70.61,70.61,0,0,1-.53-13.69,87.64,87.64,0,0,0-.14-10.38c-1.94-20.3-1.75-41.52-1.57-62,.05-5.91.11-12,.11-17.95a2,2,0,1,1,4,0c0,5.94-.05,12.06-.11,18-.18,20.42-.37,41.53,1.55,61.62a90.75,90.75,0,0,1,.15,10.86,66.58,66.58,0,0,0,.47,12.91,2,2,0,0,1-2,2.34Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M681.67,303.33a2,2,0,0,1-2-1.65,139.55,139.55,0,0,1-1.7-17.26c-1.2-25.62-1.32-50.17-1.33-73.13a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,22.91.13,47.4,1.33,72.94A135.64,135.64,0,0,0,683.64,301a2,2,0,0,1-2,2.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M692,303a2,2,0,0,1-1.84-1.21c-1.15-2.66-1-7-.9-10.92,0-1.08.07-2.11.07-3,0-15.2-.08-30.69-.17-45.66l-.06-11.11a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2l.06,11.11c.08,15,.17,30.47.17,45.68,0,1,0,2-.07,3.15-.1,3.28-.23,7.37.57,9.21A2,2,0,0,1,692,303Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M253,303.33a2,2,0,0,1-1.19-.4c-.74-.55-1.6-1.25-2.51-2-2.68-2.19-6.36-5.2-8.67-5.64a2,2,0,1,1,.75-3.93c3.31.63,7.27,3.87,10.46,6.47.87.72,1.7,1.39,2.37,1.89a2,2,0,0,1-1.2,3.6Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M241.33,293a2,2,0,0,1-1.94-2.48c2.64-10.63,9.2-19.77,15.55-28.61,2-2.82,3.94-5.48,5.73-8.19,3.93-5.95,7.81-12.09,11.57-18,4.56-7.21,9.27-14.66,14.11-21.83.44-.66.89-1.29,1.33-1.91a29.33,29.33,0,0,0,3.24-5.33c.53-1.23,2.4-5.38,4.32-7.35a2,2,0,1,1,2.86,2.79,25,25,0,0,0-3.51,6.14,32.85,32.85,0,0,1-3.65,6.06c-.42.6-.85,1.2-1.28,1.84-4.81,7.13-9.5,14.55-14,21.74-3.77,6-7.66,12.11-11.61,18.09-1.83,2.77-3.86,5.59-5.81,8.32-6.13,8.53-12.46,17.35-14.91,27.24A2,2,0,0,1,241.33,293Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M309.67,212a2,2,0,0,1-1.49-.67c-2.4-2.68-5.79-4.76-9.06-6.77-1.18-.72-2.39-1.47-3.55-2.23a2,2,0,0,1,2.21-3.34c1.1.73,2.23,1.42,3.43,2.16,3.52,2.16,7.16,4.39,10,7.51a2,2,0,0,1-1.49,3.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M254,304.33a2,2,0,0,1-1.92-2.58c.78-2.6,2.65-4.64,4.45-6.62a32.78,32.78,0,0,0,2.18-2.56c2.36-3.22,4.48-6.69,6.54-10.05l3.33-5.44c3.09-5.06,6.29-10.29,9.55-15.45a408.31,408.31,0,0,0,21.48-38.44c.38-.79.77-1.6,1.16-2.42,2-4.17,4.2-8.89,7.47-12.18a2,2,0,1,1,2.84,2.82c-2.78,2.8-4.77,7-6.69,11.07-.4.84-.79,1.67-1.18,2.47a412.46,412.46,0,0,1-21.69,38.82c-3.25,5.13-6.44,10.35-9.52,15.39l-3.33,5.44c-2.1,3.43-4.27,7-6.73,10.33a35.92,35.92,0,0,1-2.45,2.89c-1.5,1.65-3.06,3.36-3.58,5.09A2,2,0,0,1,254,304.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M603.43,303.32a2,2,0,0,1-.75-.15c-.85-.35-1.86-.81-2.93-1.3-3.15-1.45-7.48-3.43-9.81-3.28a2,2,0,1,1-.26-4c3.38-.23,8,1.92,11.75,3.64,1,.47,2,.92,2.77,1.23a2,2,0,0,1-.76,3.85Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M589.54,296.25a2,2,0,0,1-2-2c-.12-11,3.94-21.45,7.86-31.6,1.25-3.24,2.43-6.29,3.49-9.36,2.31-6.75,4.53-13.67,6.67-20.36,2.6-8.12,5.29-16.51,8.17-24.67.26-.75.54-1.47.81-2.18a29.41,29.41,0,0,0,1.8-6c.2-1.32,1-5.82,2.34-8.2a2,2,0,1,1,3.47,2,25.08,25.08,0,0,0-1.86,6.83,32.91,32.91,0,0,1-2,6.78c-.26.68-.52,1.38-.78,2.1-2.86,8.1-5.54,16.47-8.13,24.56-2.15,6.71-4.37,13.65-6.7,20.44-1.08,3.14-2.33,6.38-3.54,9.51-3.79,9.8-7.7,19.92-7.59,30.11a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M635.33,200.68a2,2,0,0,1-1.11-.33c-3-2-6.8-3.15-10.47-4.27-1.32-.4-2.68-.82-4-1.27a2,2,0,1,1,1.3-3.78c1.25.43,2.52.82,3.87,1.23,3.95,1.21,8,2.45,11.52,4.77a2,2,0,0,1-1.11,3.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M604.65,304h-.08a2,2,0,0,1-1.92-2.08c.11-2.71,1.4-5.16,2.65-7.53a32.79,32.79,0,0,0,1.47-3c1.47-3.71,2.66-7.6,3.81-11.37l1.86-6.13c1.72-5.67,3.49-11.52,5.36-17.33A408.38,408.38,0,0,0,628.92,214c.17-.86.34-1.74.51-2.64.86-4.53,1.84-9.66,4.17-13.66a2,2,0,1,1,3.46,2c-2,3.41-2.86,8-3.7,12.39-.17.92-.35,1.82-.52,2.69a412.59,412.59,0,0,1-11.24,43c-1.85,5.77-3.63,11.61-5.34,17.26l-1.86,6.13c-1.17,3.85-2.38,7.83-3.92,11.69a35.72,35.72,0,0,1-1.65,3.41c-1,2-2.12,4-2.19,5.82A2,2,0,0,1,604.65,304Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M310,304.86a2,2,0,0,1-2-1.91c-.52-11.52-.63-20-.34-26,.76-16,.71-32.73.67-48.9,0-13.26-.08-27,.33-40.1a2,2,0,0,1,4,.13c-.41,13.07-.37,26.74-.33,40,0,16.22.1,33-.67,49.1-.28,5.88-.17,14.28.34,25.67a2,2,0,0,1-1.91,2.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M323.33,305.14a2,2,0,0,1-2-2V278.83c0-5.5-.21-11.11-.41-16.53-.3-8.08-.62-16.43-.25-24.7.34-7.62.33-15.47.33-23.06v-2.2c0-2.18.07-4.55.14-7.06a126.8,126.8,0,0,0-.26-17,2,2,0,1,1,4-.46,129.52,129.52,0,0,1,.29,17.58c-.07,2.48-.14,4.82-.14,6.94v2.2c0,7.64,0,15.53-.34,23.24-.36,8.1,0,16.37.25,24.37.21,5.46.42,11.11.42,16.68v24.31A2,2,0,0,1,323.33,305.14Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M340.5,221a2,2,0,0,1-.78-.16c-2.63-1.12-8.49-.91-12.77-.75-1.38.05-2.69.1-3.76.1a2,2,0,0,1,0-4c1,0,2.27,0,3.61-.1,4.92-.18,11-.4,14.49,1.07a2,2,0,0,1-.79,3.84Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M338.75,305.14a2,2,0,0,1-2-2V289.69c0-11.85.45-23.83.88-35.41s.88-23.52.87-35.28a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,11.84-.44,23.83-.87,35.43s-.87,23.48-.87,35.26v13.45A2,2,0,0,1,338.75,305.14Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M346.25,305.29a2,2,0,0,1-2-2V293c0-9.65-.1-19.65-.19-29.32s-.19-19.77-.19-29.53a2,2,0,1,1,4,0c0,9.74.1,19.78.19,29.49s.19,19.68.19,29.35v10.31A2,2,0,0,1,346.25,305.29Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M380.14,236.27h-.33c-16.41-.09-27.82-.13-33.94-.13a2,2,0,0,1,0-4c6.12,0,17.54,0,34,.13h1.38v2l2,0C383.19,236.15,381.69,236.27,380.14,236.27Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M380,303.28a2,2,0,0,1-2-2c0-9.68.36-21.38,1-32.94.48-8.65.38-17.78.28-26.61,0-2.51-.06-5-.07-7.44a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,2.44,0,4.92.07,7.42.1,8.9.21,18.09-.28,26.88-.64,11.49-1,23.11-1,32.71A2,2,0,0,1,380,303.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M384.18,302.4a2,2,0,0,1-2-2c-.05-4.06-.14-11.62-.4-16.81-.38-7.67,0-15.44.28-22.95.22-5.06.45-10.3.45-15.42,0-6.33.06-13.14.13-19.74s.13-13.42.13-19.76a2,2,0,0,1,4,0c0,6.35-.06,13.19-.12,19.79s-.12,13.39-.12,19.7c0,5.2-.23,10.49-.45,15.59-.32,7.42-.65,15.09-.28,22.58.26,5.27.36,12.88.41,17a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M425,208c-2.64,0-5.15-.2-7.58-.39-2-.16-3.87-.31-5.84-.36-4.83-.13-9.6.07-13.22.26-2.63.14-10.62.24-13.62.24a2,2,0,0,1,0-4c3,0,10.84-.1,13.41-.23,3.69-.19,8.56-.39,13.53-.26,2.08.05,4.1.21,6.05.37,2.35.19,4.78.38,7.26.38a2,2,0,0,1,0,4Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M424.5,296a2,2,0,0,1-2-2V279.51c0-12.4.19-24.88.38-37s.37-24.48.37-36.81a2,2,0,0,1,4,0c0,12.36-.19,24.82-.37,36.87s-.37,24.52-.37,36.89V294A2,2,0,0,1,424.5,296Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M657.67,197.33a2,2,0,0,1,0-4c1.61,0,3.14-.17,4.77-.34,1.35-.14,2.75-.28,4.18-.33a2,2,0,0,1,.14,4c-1.29,0-2.56.17-3.91.31-1.65.17-3.35.34-5.15.36Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M516.67,225.33a2,2,0,0,1-.88-3.8c2.92-1.42,9.36-1.86,12.44-.32a2,2,0,0,1-1.79,3.58c-1.87-.94-7-.59-8.9.34A2,2,0,0,1,516.67,225.33Z" transform="translate(-53.25 -44.96)"/><g class="cls-27"><path class="cls-24" d="M161.5,730.09a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.07-3.86.13-7.85,0-11.71-.3-6.38-.38-12.91-.45-19.22-.08-7-.17-14.32-.57-21.35-.67-11.76-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.7,1,38.38.41,7.12.49,14.45.57,21.53.07,6.28.15,12.77.45,19.08.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,161.5,730.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M178.5,730.76h0a2,2,0,0,1-2-2c0-2.41-.08-4.85-.16-7.21s-.17-4.93-.17-7.47v-7.94c0-22,0-44.67,1-67,0-.32,0-.69.06-1.07.08-1.2.29-4.38-.27-5-1.78-2.09-8.12-1.15-12.32-.53a39.88,39.88,0,0,1-5.15.57h0a2,2,0,0,1,0-4,39,39,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.21,1.21,7.88,0,.36,0,.7-.06,1-1,22.2-1,44.86-1,66.78v7.95c0,2.48.08,4.95.17,7.34s.17,4.87.17,7.35A2,2,0,0,1,178.5,730.76Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M183.83,728.76a2,2,0,0,1-2-1.66,70.59,70.59,0,0,1-.53-13.69,87.87,87.87,0,0,0-.14-10.38c-1.94-20.3-1.75-41.52-1.57-62,.05-5.91.11-12,.11-17.95a2,2,0,0,1,4,0c0,5.94-.05,12.06-.11,18-.18,20.42-.37,41.53,1.55,61.62a90.77,90.77,0,0,1,.15,10.86,66.65,66.65,0,0,0,.47,12.91,2,2,0,0,1-1.63,2.31Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M188.51,625.36a62.93,62.93,0,0,1-7-.33,2,2,0,0,1,.46-4,105.22,105.22,0,0,0,14.11.14c2.39-.08,4.65-.15,6.72-.15a2,2,0,1,1,0,4s0,0,0,0c-2,0-4.24.07-6.6.15C193.63,625.28,191,625.36,188.51,625.36Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M205.83,730.76a2,2,0,0,1-2-1.65,139.57,139.57,0,0,1-1.7-17.26c-1.34-28.65-1.34-55.82-1.34-84.59V623a2,2,0,0,1,4,0v4.22c0,28.72,0,55.84,1.33,84.4a135.64,135.64,0,0,0,1.64,16.74,2,2,0,0,1-2,2.35Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M215.17,639.92a2,2,0,0,1-.5-.06c-2.37-.61-8.12-.84-11.21-.84h0a2,2,0,0,1,0-4h0c2.94,0,9.25.2,12.21,1a2,2,0,0,1-.5,3.94Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M216.17,730.43a2,2,0,0,1-1.84-1.21c-1.15-2.66-1-7-.9-10.92,0-1.08.07-2.11.07-3,0-15.16-.08-30.61-.17-45.54s-.17-30.43-.17-45.64a2,2,0,0,1,4,0c0,15.2.08,30.67.17,45.62s.17,30.39.17,45.56c0,1,0,2-.07,3.15-.1,3.28-.23,7.37.57,9.21a2,2,0,0,1-1.83,2.8Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M246.16,627.1a2,2,0,0,1-.71-.13c-3.41-1.29-9.72-1.87-14.46-1.87l-2.72,0c-1.77,0-3.6,0-5.37,0l-1.23,0c-1.86,0-4.18.09-5.67.78a2,2,0,1,1-1.69-3.63c2.26-1,5-1.11,7.27-1.15l1.16,0c1.87-.07,3.75,0,5.58,0l2.67,0c4.73,0,11.72.56,15.87,2.13a2,2,0,0,1-.71,3.87Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-28"><path class="cls-24" d="M578.92,730.09a2,2,0,0,1-2-2c0-2,0-4.07.07-6.11.07-3.86.13-7.85,0-11.7-.3-6.39-.38-12.92-.45-19.23-.08-7-.17-14.32-.57-21.34-.67-11.76-1-25.11-1-38.62a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.43.33,26.7,1,38.38.41,7.12.49,14.44.57,21.52.07,6.28.15,12.77.45,19.09.19,4,.12,8,.05,12,0,2-.07,4-.07,6A2,2,0,0,1,578.92,730.09Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M595.92,730.76h0a2,2,0,0,1-2-2c0-2.41-.08-4.84-.16-7.2s-.17-4.93-.17-7.48v-8c0-22,0-44.66,1-66.95,0-.32,0-.68.06-1.07.08-1.2.29-4.38-.27-5-1.78-2.09-8.12-1.15-12.31-.53a39.9,39.9,0,0,1-5.15.57h0a2,2,0,0,1,0-4,39,39,0,0,0,4.58-.52c5.67-.84,12.74-1.89,16,1.9,1.61,1.89,1.39,5.22,1.21,7.89,0,.36,0,.69-.06,1-1,22.19-1,44.85-1,66.76v8c0,2.48.08,5,.17,7.34s.17,4.87.17,7.34A2,2,0,0,1,595.92,730.76Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M611.59,730.75a2,2,0,0,1-.75-.15c-.85-.35-1.86-.81-2.93-1.3-3.15-1.45-7.45-3.44-9.81-3.28a2,2,0,1,1-.26-4c3.38-.21,8,1.92,11.75,3.64,1,.47,2,.92,2.76,1.23a2,2,0,0,1-.76,3.85Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M597.71,723.68a2,2,0,0,1-2-2c-.12-11,3.94-21.45,7.86-31.6,1.25-3.24,2.43-6.29,3.48-9.36,2.31-6.75,4.53-13.67,6.67-20.36,2.6-8.12,5.29-16.51,8.17-24.67.26-.75.54-1.47.81-2.18a29.33,29.33,0,0,0,1.8-6c.2-1.32,1-5.82,2.34-8.21a2,2,0,0,1,3.47,2,25.08,25.08,0,0,0-1.86,6.83,32.84,32.84,0,0,1-2,6.78c-.26.68-.52,1.38-.78,2.1-2.86,8.1-5.54,16.47-8.13,24.55-2.15,6.71-4.37,13.65-6.7,20.44-1.08,3.14-2.33,6.38-3.54,9.51-3.79,9.8-7.7,19.93-7.59,30.11a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M643.5,628.11a2,2,0,0,1-1.11-.33c-3-2-6.8-3.15-10.47-4.27-1.32-.4-2.68-.82-4-1.27a2,2,0,1,1,1.3-3.78c1.25.43,2.52.82,3.86,1.23,4,1.21,8,2.45,11.52,4.77a2,2,0,0,1-1.11,3.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M612.81,731.47h-.08a2,2,0,0,1-1.92-2.08c.11-2.71,1.4-5.16,2.65-7.53a32.54,32.54,0,0,0,1.47-3c1.47-3.71,2.66-7.61,3.81-11.38l1.86-6.12c1.72-5.67,3.49-11.53,5.36-17.33a408,408,0,0,0,11.13-42.6c.17-.86.34-1.74.51-2.64.86-4.53,1.84-9.66,4.17-13.67a2,2,0,0,1,3.46,2c-2,3.41-2.86,8-3.7,12.4-.17.92-.35,1.82-.52,2.69a412.27,412.27,0,0,1-11.24,43c-1.86,5.77-3.63,11.61-5.34,17.27l-1.86,6.12c-1.17,3.85-2.38,7.83-3.92,11.69a35.94,35.94,0,0,1-1.65,3.41c-1,2-2.12,4-2.19,5.83A2,2,0,0,1,612.81,731.47Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-29"><path class="cls-24" d="M694.89,584.32h-.09a2,2,0,0,1-1.91-2.09,55.68,55.68,0,0,1,1.14-7.28c.29-1.48.6-3,.8-4.34.49-3.16,1-6.33,1.55-9.5q.57-3.38,1.12-6.77c.75-4.62,1.46-9.24,2.18-13.86,2.28-14.75,4.64-30,8-44.87A2,2,0,0,1,709.5,494c7.52-.39,16-.39,21.43,4.46a2,2,0,1,1-2.67,3c-4.23-3.78-11.79-3.76-17-3.52-3.13,14.27-5.4,28.93-7.59,43.13-.72,4.63-1.43,9.26-2.18,13.89q-.55,3.4-1.12,6.79c-.53,3.16-1.05,6.31-1.54,9.46-.22,1.41-.53,3-.83,4.51a53.58,53.58,0,0,0-1.07,6.68A2,2,0,0,1,694.89,584.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M707.66,590h-.15a21.87,21.87,0,0,1-6.85-1.62c-.51-.2-1-.37-1.33-.47a14.59,14.59,0,0,1-3.49-1.65c-.53-.31-1-.6-1.49-.82a2,2,0,1,1,1.71-3.61c.63.3,1.23.65,1.81,1a11.31,11.31,0,0,0,2.52,1.24c.57.16,1.11.37,1.7.59a17.86,17.86,0,0,0,5.7,1.36,2,2,0,0,1-.14,4Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M692.88,588.65a2,2,0,0,1-2-2c0-2,0-4-.07-6-.07-3.92-.13-8,.05-12,.3-6.31.37-12.81.45-19.09.08-7.08.17-14.41.57-21.52.67-11.68,1-25,1-38.39a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.5-.33,26.86-1,38.62-.4,7-.49,14.3-.57,21.34-.07,6.32-.15,12.84-.45,19.23-.18,3.85-.12,7.84,0,11.7,0,2,.07,4.08.07,6.11A2,2,0,0,1,692.88,588.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M675.88,589.32a2,2,0,0,1-2-2c0-2.47.08-4.95.17-7.34s.17-4.86.17-7.34v-8c0-21.91,0-44.57-1-66.76,0-.3,0-.64-.06-1-.18-2.67-.39-6,1.21-7.89,3.22-3.79,10.28-2.74,16-1.9a38.94,38.94,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.56-12.32.53-.56.66-.35,3.84-.27,5,0,.38,0,.75.06,1.07,1,22.29,1,45,1,66.95v8c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.21A2,2,0,0,1,675.88,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M670.55,587.32l-.34,0a2,2,0,0,1-1.63-2.31,66.62,66.62,0,0,0,.47-12.9,90.82,90.82,0,0,1,.16-10.87c1.92-20.09,1.73-41.2,1.55-61.62-.05-5.92-.11-12-.11-18a2,2,0,1,1,4,0c0,5.92.05,12,.11,18,.18,20.52.37,41.73-1.57,62a87.71,87.71,0,0,0-.14,10.38,70.56,70.56,0,0,1-.53,13.69A2,2,0,0,1,670.55,587.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M665.88,483.92c-2.51,0-5.12-.08-7.68-.17-2.36-.08-4.59-.15-6.59-.15h-.05a2,2,0,1,1,.05-4c2.07,0,4.33.07,6.72.15a105.2,105.2,0,0,0,14.1-.14,2,2,0,0,1,.46,4A62.84,62.84,0,0,1,665.88,483.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M648.55,589.32a2,2,0,0,1-2-2.35,135.59,135.59,0,0,0,1.64-16.74c1.34-28.56,1.34-55.68,1.33-84.4V481.6a2,2,0,1,1,4,0v4.22c0,28.77,0,55.94-1.34,84.59a139.52,139.52,0,0,1-1.7,17.26A2,2,0,0,1,648.55,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M639.22,498.47a2,2,0,0,1-.5-3.94c3-.76,9.27-1,12.21-1h0a2,2,0,0,1,0,4h0c-3.09,0-8.84.23-11.21.84A2,2,0,0,1,639.22,498.47Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M638.22,589a2,2,0,0,1-1.83-2.8c.8-1.84.67-5.92.57-9.21,0-1.12-.07-2.19-.07-3.15,0-15.17.08-30.62.17-45.56s.17-30.42.17-45.62a2,2,0,1,1,4,0c0,15.21-.08,30.68-.17,45.64s-.17,30.38-.17,45.54c0,.92,0,1.95.07,3,.12,3.87.25,8.26-.9,10.92A2,2,0,0,1,638.22,589Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M606.55,590a2,2,0,0,1-2-2c0-2.26.07-5.12.16-8.15s.18-5.88.18-8.46c0-15.6.34-31.5.67-46.88.29-13.41.59-27.28.66-40.86a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c-.07,13.62-.37,27.5-.66,40.93-.33,15.35-.67,31.23-.67,46.79,0,2.65-.09,5.66-.18,8.58s-.17,5.81-.16,8a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M608.22,485.65a2,2,0,0,1-.71-3.87c4.15-1.57,11.14-2.13,15.88-2.13l2.69,0c1.81,0,3.69,0,5.55,0l1.16,0c2.24,0,5,.1,7.28,1.15a2,2,0,0,1-1.69,3.63c-1.5-.7-3.81-.74-5.67-.78l-1.23,0c-1.76-.07-3.58,0-5.34,0l-2.75,0c-4.74,0-11,.58-14.46,1.87A2,2,0,0,1,608.22,485.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M593.22,589.32a2,2,0,0,1-1.2-3.6c.67-.5,1.49-1.17,2.37-1.89,3.18-2.6,7.14-5.84,10.45-6.47a2,2,0,1,1,.75,3.93c-2.31.44-6,3.45-8.67,5.64-.91.75-1.77,1.45-2.51,2A2,2,0,0,1,593.22,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M604.88,579a2,2,0,0,1-1.94-1.52c-2.45-9.89-8.79-18.71-14.92-27.24-2-2.72-4-5.54-5.81-8.31-4-6-7.85-12.14-11.61-18.09-4.54-7.18-9.24-14.61-14-21.73-.43-.63-.86-1.24-1.28-1.84a32.89,32.89,0,0,1-3.65-6.05,25,25,0,0,0-3.51-6.14,2,2,0,1,1,2.86-2.79c1.92,2,3.79,6.13,4.32,7.35a29.38,29.38,0,0,0,3.24,5.33c.44.62.89,1.25,1.33,1.92,4.84,7.17,9.55,14.62,14.11,21.83,3.76,5.94,7.64,12.08,11.57,18,1.79,2.71,3.7,5.37,5.72,8.19,6.35,8.84,12.91,18,15.55,28.61a2,2,0,0,1-1.94,2.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M592.22,590.32a2,2,0,0,1-1.91-1.42c-.52-1.73-2.08-3.44-3.58-5.09a36.17,36.17,0,0,1-2.45-2.89c-2.45-3.34-4.62-6.89-6.72-10.31l-3.35-5.49c-3.08-5-6.26-10.25-9.5-15.37A412.7,412.7,0,0,1,543,510.94c-.39-.8-.78-1.63-1.18-2.47-1.92-4.07-3.91-8.27-6.69-11.07a2,2,0,1,1,2.84-2.82c3.26,3.29,5.5,8,7.47,12.18.39.83.78,1.64,1.16,2.43a408.3,408.3,0,0,0,21.47,38.44c3.26,5.15,6.45,10.37,9.54,15.42l3.35,5.48c2.06,3.35,4.18,6.82,6.53,10a32.83,32.83,0,0,0,2.18,2.56c1.8,2,3.67,4,4.45,6.62a2,2,0,0,1-1.92,2.58Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-30"><path class="cls-24" d="M113.55,589.32a2,2,0,0,1-2-2V508.48a2,2,0,0,1,4,0v78.83A2,2,0,0,1,113.55,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M101.55,589.72a2,2,0,0,1-1.48-3.35c.52-1.38,1.11-7.07,1.31-9,.08-.77.15-1.41.2-1.81l.58-4.72c2.63-21.27,5.9-47.75,7.39-68.35a2,2,0,1,1,4,.29c-1.5,20.7-4.78,47.23-7.41,68.55l-.58,4.72c0,.39-.11,1-.19,1.73-1,9.42-1.49,11-2.88,11.69A2,2,0,0,1,101.55,589.72Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M72.55,584.32h-.09a2,2,0,0,1-1.91-2.09,55.58,55.58,0,0,1,1.14-7.28c.29-1.49.6-3,.81-4.35.49-3.16,1-6.33,1.55-9.5.38-2.25.75-4.51,1.12-6.77.74-4.62,1.46-9.24,2.17-13.86,2.28-14.75,4.64-30,8-44.88A2,2,0,0,1,87.17,494c6.85-.36,20.26,2.25,25.72,7.12a2,2,0,1,1-2.67,3c-4.13-3.69-14.91-6-21.34-6.14-3.12,14.25-5.39,28.9-7.58,43.08-.72,4.63-1.43,9.26-2.18,13.88-.37,2.26-.74,4.53-1.12,6.79-.53,3.16-1.05,6.31-1.54,9.46-.22,1.41-.53,3-.83,4.51a53.65,53.65,0,0,0-1.07,6.68A2,2,0,0,1,72.55,584.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M210.47,588.65a2,2,0,0,1-2-2c0-2,0-4-.07-6-.07-3.92-.13-8,.05-12,.3-6.31.37-12.8.45-19.08.08-7.08.17-14.41.57-21.53.67-11.67,1-24.95,1-38.39a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.51-.33,26.87-1,38.62-.4,7-.48,14.31-.57,21.35-.07,6.31-.15,12.84-.45,19.23-.18,3.86-.11,7.85,0,11.71,0,2,.07,4.08.07,6.11A2,2,0,0,1,210.47,588.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M193.47,589.32a2,2,0,0,1-2-2c0-2.47.08-4.95.17-7.34s.17-4.86.17-7.34v-7.95c0-21.92,0-44.58-1-66.78,0-.3,0-.64-.06-1-.18-2.67-.39-6,1.21-7.89,3.21-3.79,10.28-2.74,16-1.9a39,39,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.56-12.32.53-.56.66-.35,3.84-.27,5,0,.39,0,.75.06,1.07,1,22.29,1,45,1,67v7.95c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.21A2,2,0,0,1,193.47,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M188.14,587.32l-.34,0a2,2,0,0,1-1.63-2.31,66.63,66.63,0,0,0,.47-12.91,90.75,90.75,0,0,1,.15-10.86c1.92-20.09,1.73-41.21,1.55-61.62-.05-5.92-.11-12-.11-18a2,2,0,0,1,4,0c0,5.92.05,12,.11,17.95.18,20.52.37,41.74-1.57,62a87.75,87.75,0,0,0-.14,10.38,70.6,70.6,0,0,1-.53,13.69A2,2,0,0,1,188.14,587.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M183.47,483.92c-2.51,0-5.12-.08-7.68-.17-2.38-.08-4.63-.15-6.64-.15h0a2,2,0,0,1,0-4h.05c2.07,0,4.33.07,6.72.15a105.06,105.06,0,0,0,14.1-.14,2,2,0,0,1,.46,4A62.84,62.84,0,0,1,183.47,483.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M166.14,589.32a2,2,0,0,1-2-2.35,135.67,135.67,0,0,0,1.64-16.74c1.34-28.56,1.34-55.68,1.33-84.4V481.6a2,2,0,0,1,4,0v4.22c0,28.77,0,55.94-1.34,84.59a139.43,139.43,0,0,1-1.7,17.26A2,2,0,0,1,166.14,589.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M156.8,498.47a2,2,0,0,1-.5-3.94c3-.76,9.27-1,12.21-1h0a2,2,0,0,1,0,4h0c-3.09,0-8.84.23-11.21.84A2,2,0,0,1,156.8,498.47Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M155.81,589a2,2,0,0,1-1.83-2.8c.8-1.84.67-5.92.57-9.21,0-1.12-.07-2.19-.07-3.15,0-15.17.08-30.62.17-45.56s.17-30.42.17-45.62a2,2,0,1,1,4,0c0,15.21-.08,30.68-.17,45.64s-.17,30.38-.17,45.54c0,.92,0,1.95.07,3,.12,3.87.25,8.26-.9,10.92A2,2,0,0,1,155.81,589Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M124.14,590a2,2,0,0,1-2-2c0-2.26.07-5.12.16-8.15s.18-5.88.18-8.46c0-15.6.34-31.5.68-46.88.29-13.41.59-27.28.66-40.87a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c-.07,13.62-.37,27.5-.66,40.93-.33,15.35-.67,31.23-.67,46.79,0,2.65-.09,5.66-.18,8.58s-.17,5.81-.16,8a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M125.81,485.65a2,2,0,0,1-.71-3.87c4.15-1.57,11.14-2.13,15.87-2.13l2.69,0c1.81,0,3.69,0,5.55,0l1.16,0c2.24,0,5,.1,7.28,1.15a2,2,0,0,1-1.69,3.63c-1.5-.7-3.81-.74-5.67-.78l-1.23,0c-1.76-.07-3.58,0-5.35,0l-2.74,0c-4.74,0-11,.58-14.46,1.87A2,2,0,0,1,125.81,485.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M216.31,494a2,2,0,1,1,0-4c2.48,0,4.91-.19,7.26-.38,2-.16,4-.32,6.06-.37,5-.13,9.84.07,13.53.26,2.43.13,10.08.23,13.41.23a2,2,0,0,1,0,4c-3,0-11-.1-13.61-.24-3.62-.19-8.39-.39-13.22-.26-2,.05-3.85.2-5.85.36C221.45,493.78,218.95,494,216.31,494Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M216.81,582a2,2,0,0,1-2-2V565.5c0-12.37-.19-24.84-.37-36.89s-.37-24.51-.37-36.87a2,2,0,0,1,4,0c0,12.33.19,24.77.37,36.81s.38,24.55.38,37V580A2,2,0,0,1,216.81,582Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M124.64,511.32a2,2,0,0,1-.87-.2c-1.92-.93-7-1.28-8.9-.34a2,2,0,1,1-1.79-3.58c3.07-1.54,9.51-1.1,12.44.32a2,2,0,0,1-.88,3.8Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-31"><path class="cls-24" d="M625.89,161.66a2,2,0,0,1-2-2c0-2,0-4-.07-6-.07-3.92-.13-8,.05-12,.3-6.31.37-12.81.45-19.09.08-7.08.17-14.41.57-21.52.67-11.68,1-25,1-38.38a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.5-.33,26.86-1,38.62-.4,7-.49,14.3-.57,21.34-.07,6.31-.15,12.84-.45,19.23-.18,3.85-.12,7.84,0,11.7,0,2,.07,4.08.07,6.11A2,2,0,0,1,625.89,161.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M608.89,162.32a2,2,0,0,1-2-2c0-2.47.08-4.95.17-7.34s.17-4.86.17-7.34v-8c0-21.91,0-44.57-1-66.76,0-.3,0-.64-.06-1-.18-2.67-.39-6,1.21-7.89,3.21-3.79,10.28-2.74,16-1.9a38.75,38.75,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.56-12.32.53-.56.66-.35,3.84-.27,5,0,.39,0,.75.06,1.07,1,22.29,1,45,1,66.95v8c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.2A2,2,0,0,1,608.89,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M251.47,162.32a2,2,0,0,1-2-2V81.49a2,2,0,1,1,4,0v78.83A2,2,0,0,1,251.47,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M238.84,164.65a2,2,0,0,1-1.49-3.34c.21-.53.95-3,2.15-12.73l.58-4.72c2.63-21.27,5.9-47.75,7.39-68.34a2,2,0,0,1,4,.29c-1.5,20.7-4.78,47.23-7.41,68.54l-.58,4.72c-1.77,14.33-2.66,14.8-3.7,15.35A2,2,0,0,1,238.84,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M210.47,157.32h-.09a2,2,0,0,1-1.91-2.09,55.62,55.62,0,0,1,1.14-7.28c.29-1.49.6-3,.81-4.35.49-3.16,1-6.33,1.55-9.51.38-2.25.75-4.51,1.12-6.76.74-4.61,1.46-9.24,2.17-13.86,2.28-14.75,4.64-30,8-44.88A2,2,0,0,1,225.08,67c6.84-.35,20.26,2.25,25.72,7.12a2,2,0,1,1-2.67,3c-4.13-3.69-14.91-6-21.34-6.14-3.12,14.26-5.39,28.9-7.58,43.08-.72,4.63-1.43,9.26-2.18,13.88q-.55,3.39-1.12,6.78c-.53,3.16-1.05,6.32-1.55,9.47-.22,1.41-.53,3-.83,4.51a53.54,53.54,0,0,0-1.07,6.68A2,2,0,0,1,210.47,157.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M224.5,164.58h-.15a18.39,18.39,0,0,1-7.71-2.77,11.93,11.93,0,0,0-1.73-.87,14.6,14.6,0,0,1-3.48-1.65c-.53-.31-1-.6-1.49-.82a2,2,0,1,1,1.71-3.61c.63.3,1.23.65,1.81,1a11.28,11.28,0,0,0,2.52,1.24,12.72,12.72,0,0,1,2.62,1.24,14.89,14.89,0,0,0,6,2.27,2,2,0,0,1-.14,4Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M208.47,161.66a2,2,0,0,1-2-2c0-2,0-4-.07-6-.07-3.92-.13-8,.05-12,.3-6.31.37-12.8.45-19.08.08-7.08.17-14.41.57-21.53.67-11.67,1-24.95,1-38.38a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.51-.33,26.87-1,38.62-.4,7-.48,14.31-.57,21.35-.07,6.31-.15,12.84-.45,19.22-.18,3.86-.11,7.85,0,11.71,0,2,.07,4.08.07,6.11A2,2,0,0,1,208.47,161.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M191.47,162.32a2,2,0,0,1-2-2c0-2.48.08-4.95.17-7.34s.17-4.86.17-7.34v-7.95c0-21.92,0-44.58-1-66.78,0-.3,0-.64-.06-1-.17-2.67-.39-6,1.21-7.88,3.21-3.79,10.28-2.74,16-1.9a38.76,38.76,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.57-12.32.53-.56.66-.35,3.84-.27,5,0,.39,0,.75.06,1.07,1,22.29,1,45,1,67v7.94c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.2A2,2,0,0,1,191.47,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M603.56,163.53a2,2,0,0,1-2-2.34c.7-4.07.59-9.54.47-14.84a109.87,109.87,0,0,1,.16-12.13c1.92-20.09,1.74-41.21,1.55-61.63-.05-5.92-.11-12-.11-18a2,2,0,0,1,4,0c0,5.92.05,12,.11,17.94.18,20.52.37,41.74-1.57,62a107,107,0,0,0-.14,11.66c.12,5.49.24,11.16-.53,15.61A2,2,0,0,1,603.56,163.53Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M598.88,56.92c-2.51,0-5.12-.08-7.69-.17-2.36-.08-4.59-.15-6.59-.15h0a2,2,0,0,1-2-2,2,2,0,0,1,2-2c2.07,0,4.33.07,6.72.15a105.14,105.14,0,0,0,14.11-.14,2,2,0,1,1,.46,4A62.66,62.66,0,0,1,598.88,56.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M581.56,162.32a2,2,0,0,1-2-2.35,135.61,135.61,0,0,0,1.64-16.74c1.34-28.54,1.34-55.65,1.33-84.35V54.61a2,2,0,0,1,4,0v4.27c0,28.75,0,55.9-1.34,84.54a139.52,139.52,0,0,1-1.7,17.26A2,2,0,0,1,581.56,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M572.22,71.48a2,2,0,0,1-.5-3.94c3-.76,9.27-1,12.21-1h0a2,2,0,0,1,0,4h0c-3.09,0-8.84.23-11.21.84A2,2,0,0,1,572.22,71.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M571.72,163.53a2,2,0,0,1-1.83-2.8c.7-1.62.42-6.14.21-9.44-.1-1.64-.2-3.19-.2-4.45,0-15.17.08-30.62.17-45.56s.17-30.42.17-45.62a2,2,0,0,1,4,0c0,15.21-.08,30.68-.17,45.64s-.17,30.38-.17,45.54c0,1.13.09,2.62.2,4.19.27,4.32.56,8.78-.53,11.29A2,2,0,0,1,571.72,163.53Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M539.56,163a2,2,0,0,1-2-2c0-2.26.07-5.12.16-8.15s.18-5.88.18-8.46c0-15.6.34-31.5.67-46.88.29-13.41.59-27.28.66-40.86a2,2,0,0,1,2-2,2,2,0,0,1,2,2c-.07,13.62-.37,27.5-.66,40.93-.33,15.35-.67,31.23-.67,46.79,0,2.65-.09,5.66-.18,8.58s-.17,5.81-.16,8a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M541.22,58.66a2,2,0,0,1-.71-3.87c4.15-1.57,11.15-2.13,15.88-2.13l2.68,0c1.82,0,3.7,0,5.56,0l1.16,0c2.24,0,5,.1,7.28,1.15a2,2,0,0,1-1.69,3.63c-1.49-.7-3.81-.74-5.67-.78l-1.23,0c-1.76-.07-3.59,0-5.36,0l-2.73,0c-4.74,0-11,.58-14.46,1.87A2,2,0,0,1,541.22,58.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M349.32,164.65a2,2,0,0,1-2-2c0-2.53-.23-5.64-.47-8.93a109,109,0,0,1-.47-12.06c.3-6.31.37-12.8.45-19.08.08-7.08.17-14.41.57-21.53.67-11.67,1-24.95,1-38.38a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,13.51-.33,26.87-1,38.62-.4,7-.48,14.31-.57,21.35-.07,6.31-.15,12.84-.45,19.22a106.6,106.6,0,0,0,.47,11.58c.25,3.37.48,6.55.48,9.23A2,2,0,0,1,349.32,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M331.39,162.32a2,2,0,0,1-2-2c0-2.48.08-4.95.17-7.34s.17-4.86.17-7.34v-7.95c0-21.92,0-44.58-1-66.78,0-.3,0-.64-.06-1-.18-2.67-.39-6,1.21-7.89,3.21-3.79,10.28-2.74,16-1.9a38.76,38.76,0,0,0,4.58.52,2,2,0,0,1,0,4h0a39.87,39.87,0,0,1-5.15-.57c-4.2-.62-10.54-1.57-12.32.53-.56.66-.35,3.84-.27,5,0,.39,0,.75.06,1.07,1,22.29,1,45,1,67v7.95c0,2.55-.09,5.05-.17,7.48s-.16,4.8-.16,7.2A2,2,0,0,1,331.39,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M326.06,163a2,2,0,0,1-2-2.34c.7-4.06.59-9.38.47-14.52a107.94,107.94,0,0,1,.16-11.92c1.92-20.09,1.73-41.21,1.55-61.62-.05-5.92-.11-12-.11-18a2,2,0,0,1,4,0c0,5.92.05,12,.11,17.95.18,20.52.37,41.74-1.57,62a103.64,103.64,0,0,0-.14,11.45c.12,5.33.24,10.84-.53,15.29A2,2,0,0,1,326.06,163Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M321.39,56.92c-2.51,0-5.12-.08-7.69-.17-2.36-.08-4.59-.15-6.59-.15h0a2,2,0,1,1,0-4c2.07,0,4.33.07,6.72.15a105.3,105.3,0,0,0,14.1-.14,2,2,0,1,1,.46,4A62.65,62.65,0,0,1,321.39,56.92Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M304.06,164.65a2,2,0,0,1-2-2.35,169,169,0,0,0,1.64-19.07c1.34-28.56,1.34-55.68,1.33-84.4V54.61a2,2,0,0,1,4,0v4.22c0,28.77,0,55.94-1.34,84.59A172.17,172.17,0,0,1,306,163,2,2,0,0,1,304.06,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M294.72,71.48a2,2,0,0,1-.5-3.94c3-.76,9.27-1,12.21-1a2,2,0,0,1,2,2,2,2,0,0,1-2,2h0c-3.09,0-8.84.23-11.21.84A2,2,0,0,1,294.72,71.48Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M293.72,164.65a2,2,0,0,1-1.83-2.8c.82-1.89.66-8.07.56-11.76,0-1.24-.06-2.36-.06-3.25,0-15.17.08-30.62.17-45.56s.17-30.42.17-45.62a2,2,0,0,1,4,0c0,15.21-.08,30.68-.17,45.64s-.17,30.38-.17,45.54c0,.86,0,1.95.06,3.15.16,6.1.19,11-.89,13.45A2,2,0,0,1,293.72,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M262.06,163a2,2,0,0,1-2-2c0-2.26.07-5.12.16-8.15s.18-5.88.18-8.46c0-15.6.34-31.5.68-46.88.29-13.41.59-27.28.66-40.86a2,2,0,0,1,4,0c-.07,13.62-.37,27.5-.66,40.93-.33,15.35-.67,31.23-.67,46.79,0,2.65-.09,5.66-.18,8.58s-.17,5.81-.16,8a2,2,0,0,1-2,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M263.72,58.66a2,2,0,0,1-.71-3.87c4.15-1.57,11.14-2.13,15.87-2.13l2.68,0c1.82,0,3.7,0,5.56,0l1.16,0c2.24,0,5,.1,7.28,1.15a2,2,0,1,1-1.69,3.63c-1.49-.7-3.81-.74-5.67-.78l-1.23,0c-1.76-.07-3.59,0-5.36,0l-2.73,0c-4.74,0-11,.58-14.46,1.87A2,2,0,0,1,263.72,58.66Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M526.22,162.32a2,2,0,0,1-1.2-3.6c.67-.5,1.5-1.17,2.37-1.89,3.18-2.6,7.14-5.84,10.45-6.47a2,2,0,1,1,.75,3.93c-2.32.44-6,3.45-8.67,5.64-.91.75-1.77,1.45-2.51,2A2,2,0,0,1,526.22,162.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M537.89,152a2,2,0,0,1-1.94-1.52c-2.45-9.89-8.79-18.71-14.92-27.24-2-2.72-4-5.54-5.81-8.31-4-6-7.85-12.14-11.61-18.09-4.54-7.18-9.24-14.61-14-21.73-.43-.63-.86-1.24-1.28-1.84a32.83,32.83,0,0,1-3.65-6.06,25,25,0,0,0-3.51-6.14A2,2,0,1,1,484,58.26c1.92,2,3.8,6.13,4.32,7.35a29.37,29.37,0,0,0,3.24,5.33c.44.62.89,1.25,1.33,1.91C497.72,80,502.43,87.48,507,94.68c3.76,5.94,7.64,12.08,11.57,18,1.79,2.71,3.7,5.37,5.72,8.19,6.35,8.84,12.91,18,15.55,28.61a2,2,0,0,1-1.46,2.42A2,2,0,0,1,537.89,152Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M469.56,71a2,2,0,0,1-1.49-3.33c2.79-3.12,6.43-5.35,10-7.51,1.2-.74,2.33-1.43,3.43-2.16a2,2,0,0,1,2.21,3.34c-1.16.77-2.37,1.51-3.55,2.23-3.28,2-6.66,4.08-9.06,6.77A2,2,0,0,1,469.56,71Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M525.22,163.32a2,2,0,0,1-1.91-1.42c-.52-1.73-2.08-3.44-3.58-5.09a35.82,35.82,0,0,1-2.45-2.89c-2.46-3.36-4.63-6.91-6.74-10.34l-3.35-5.48c-3.07-5-6.25-10.23-9.49-15.35A412.58,412.58,0,0,1,476,83.94c-.39-.8-.78-1.63-1.18-2.47-1.92-4.07-3.91-8.27-6.69-11.07A2,2,0,1,1,471,67.58c3.26,3.29,5.5,8,7.47,12.18.39.83.78,1.64,1.16,2.42a408.43,408.43,0,0,0,21.47,38.44c3.26,5.14,6.44,10.36,9.53,15.4L514,141.5c2.06,3.37,4.19,6.85,6.55,10.07a32.68,32.68,0,0,0,2.18,2.56c1.8,2,3.67,4,4.45,6.62a2,2,0,0,1-1.92,2.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M175.8,162.31a2,2,0,0,1-.76-3.85c.77-.31,1.74-.76,2.77-1.23,3.73-1.72,8.37-3.86,11.74-3.64a2,2,0,1,1-.26,4c-2.35-.14-6.66,1.83-9.81,3.28-1.07.49-2.08,1-2.93,1.31A2,2,0,0,1,175.8,162.31Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M189.68,155.24h0a2,2,0,0,1-2-2c.11-10.19-3.81-20.32-7.59-30.11-1.21-3.13-2.46-6.36-3.54-9.51-2.32-6.79-4.55-13.73-6.7-20.44-2.59-8.09-5.27-16.45-8.13-24.55-.25-.72-.52-1.41-.78-2.1a32.89,32.89,0,0,1-2-6.78,25,25,0,0,0-1.86-6.83,2,2,0,1,1,3.47-2c1.37,2.39,2.13,6.89,2.34,8.2a29.35,29.35,0,0,0,1.8,6c.27.71.54,1.43.81,2.18,2.88,8.16,5.57,16.55,8.17,24.67,2.14,6.69,4.36,13.62,6.67,20.36,1.05,3.07,2.23,6.13,3.48,9.36,3.92,10.15,8,20.64,7.86,31.6A2,2,0,0,1,189.68,155.24Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M143.89,59.67A2,2,0,0,1,142.78,56c3.49-2.32,7.57-3.56,11.52-4.77,1.35-.41,2.62-.8,3.86-1.23a2,2,0,0,1,1.3,3.78c-1.31.45-2.67.87-4,1.27-3.68,1.12-7.48,2.28-10.48,4.27A2,2,0,0,1,143.89,59.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M174.57,163a2,2,0,0,1-2-1.92c-.07-1.8-1.15-3.85-2.19-5.82a35.88,35.88,0,0,1-1.65-3.41C167.21,148,166,144,164.83,140.2L163,134.1c-1.72-5.67-3.49-11.52-5.35-17.31a412.5,412.5,0,0,1-11.24-43c-.18-.87-.35-1.78-.52-2.69-.84-4.42-1.71-9-3.7-12.4a2,2,0,1,1,3.46-2c2.33,4,3.31,9.14,4.17,13.66.17.9.34,1.78.51,2.64a408.42,408.42,0,0,0,11.13,42.6c1.87,5.82,3.65,11.69,5.37,17.37l1.85,6.09c1.15,3.77,2.33,7.66,3.81,11.36a32.7,32.7,0,0,0,1.47,3c1.25,2.37,2.54,4.82,2.65,7.53a2,2,0,0,1-1.92,2.08Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M469.22,163.85h-.09a2,2,0,0,1-1.91-2.09c.51-11.39.62-19.78.34-25.67-.77-16.11-.72-32.88-.67-49.1,0-13.22.08-26.89-.33-40a2,2,0,0,1,4-.13c.41,13.13.37,26.84.33,40.09,0,16.17-.1,32.9.67,48.9.29,6,.17,14.53-.34,26A2,2,0,0,1,469.22,163.85Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M455.89,164.13a2,2,0,0,1-2-2V137.82c0-5.58.21-11.22.42-16.68.3-8,.61-16.27.25-24.37-.34-7.72-.34-15.63-.34-23.28V71.32c0-2.12-.07-4.46-.14-6.94a129.62,129.62,0,0,1,.29-17.58,2,2,0,1,1,4,.46,127,127,0,0,0-.26,17c.07,2.51.14,4.87.14,7.05v2.16c0,7.61,0,15.47.33,23.1.37,8.26.05,16.62-.25,24.7-.2,5.42-.41,11-.41,16.53v24.31A2,2,0,0,1,455.89,164.13Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M438.72,80a2,2,0,0,1-.79-3.84c3.45-1.47,9.57-1.25,14.49-1.07,1.35,0,2.62.1,3.61.1a2,2,0,0,1,0,4c-1.07,0-2.38,0-3.76-.1-4.28-.16-10.15-.37-12.77.75A2,2,0,0,1,438.72,80Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M440.47,164.13a2,2,0,0,1-2-2V148.68c0-11.78-.44-23.72-.87-35.26s-.88-23.59-.87-35.43a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,11.76.44,23.71.87,35.28s.88,23.56.88,35.41v13.45A2,2,0,0,1,440.47,164.13Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M433,164.28a2,2,0,0,1-2-2V152c0-9.67.09-19.68.19-29.35s.19-19.75.19-29.49a2,2,0,0,1,4,0c0,9.76-.1,19.81-.19,29.53S435,142.32,435,152v10.31A2,2,0,0,1,433,164.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M399.1,95.25c-1.5,0-3.07-.11-3.08-2l2,0v-2h1.37c16.41-.09,27.84-.13,34-.13a2,2,0,1,1,0,4c-6.11,0-17.53,0-33.94.13Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M399.22,164.65a2,2,0,0,1-2-2c0-10.34-.4-24.44-1-35.1-.49-8.79-.39-18-.28-26.87,0-2.5.06-5,.07-7.43a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2c0,2.45,0,4.94-.07,7.45-.1,8.82-.21,18,.28,26.6.6,10.72,1,24.92,1,35.32A2,2,0,0,1,399.22,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M395,163.53h0a2,2,0,0,1-2-2l0-1.28c.06-4.91.16-13.14.39-17.83.37-7.49,0-15.16-.28-22.58-.22-5.11-.45-10.39-.45-15.59,0-6.31-.06-13.12-.12-19.7s-.12-13.44-.12-19.79a2,2,0,1,1,4,0c0,6.33.06,13.16.13,19.76s.13,13.41.13,19.74c0,5.12.23,10.35.45,15.42.33,7.51.66,15.28.28,22.95-.23,4.61-.33,12.79-.39,17.68l0,1.28A2,2,0,0,1,395,163.53Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M354.22,67a2,2,0,0,1,0-4c2.48,0,4.91-.19,7.26-.38,2-.16,4-.32,6.06-.37,5-.13,9.83.07,13.53.26,2.42.13,10.07.23,13.41.23a2,2,0,0,1,0,4c-3,0-11-.1-13.62-.24-3.62-.19-8.39-.39-13.22-.26-2,.05-3.85.2-5.84.36C359.37,66.79,356.87,67,354.22,67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M355.5,164.65a2,2,0,0,1-2-2c0-2.37-.2-7.26-.39-12s-.39-9.7-.39-12.15c0-12.37-.19-24.84-.37-36.89S352,77.1,352,64.74a2,2,0,1,1,4,0c0,12.33.19,24.77.37,36.81s.38,24.55.38,37c0,2.37.2,7.26.39,12s.39,9.7.39,12.15A2,2,0,0,1,355.5,164.65Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M262.56,84.32a2,2,0,0,1-.87-.2c-1.92-.93-7-1.28-8.9-.34A2,2,0,1,1,251,80.2c3.07-1.54,9.51-1.1,12.44.32a2,2,0,0,1-.88,3.8Z" transform="translate(-53.25 -44.96)"/></g></g><g id="COLOR-2" data-name="COLOR"><path class="cls-7" d="M348.43,470c-2.63-1-6-1-8.83-1.21-4.22-.38-8.44-.52-12.67-.62-8.68-.21-17.29.23-25.92-.82a58.42,58.42,0,0,0-15.84.35c-4.32.6-8.71,1.09-13,1.84-6.7,1.17-13.45,1.86-20.12,3.25-5.91,1.24-11.79,2.64-17.71,3.83-2.56.52-5.13,1-7.69,1.49-.88.18-3.73.26-4.27,1.08-.74,1.11.42,4.52.63,5.75.67,3.87,1.55,8,3.4,11.51A140.8,140.8,0,0,0,234,508.57c2.85,4.25,4.81,8.24,8.61,11.85a50.38,50.38,0,0,0,12.91,9.06c6.17,2.86,13.11,5.65,19.89,6.31a85.31,85.31,0,0,0,14-.13c2.73-.16,5.46-.65,8.16-1a122,122,0,0,0,14.46-3.5,36.34,36.34,0,0,0,12.24-5.8c7-5.16,12.12-12.82,17.1-19.83a60,60,0,0,0,3.33-5.67,39.58,39.58,0,0,0,2.58-6.66c1.62-4.58,1.84-9.14,2.88-13.77C350.78,476.48,352.27,471.49,348.43,470Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M272.5,468.5c-.55,7,4.53,14,11.81,14,7.66,0,11.95-7.38,12.41-14-3.09-.42-7.19,1.21-10.45,1.23A57.65,57.65,0,0,1,272.5,468.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M290.26,472c-3.34-.13-4.94,3.06-.58,2.67,2.51-.23,5.53-3,1.25-2.83" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M566,470c-2.63-1-6-1-8.83-1.21-4.22-.38-8.44-.52-12.67-.62-8.68-.21-17.29.23-25.92-.82-18.38-2.22-37,.43-55,4.19C455.38,473.24,447,474.6,439,477a22.34,22.34,0,0,0,.84,6.53c.75,3.28,1.14,6.75,2.57,9.82a112.66,112.66,0,0,0,9.11,15.2c2.85,4.25,4.81,8.24,8.61,11.85a50.38,50.38,0,0,0,12.91,9.06c6.17,2.86,13.11,5.65,19.89,6.31a64.13,64.13,0,0,0,22.71-1.38c6.84-1.83,14-4,19.51-8.59,4.69-4,10.07-7.07,14.29-11.55,2.36-2.51,5.09-4.83,7-7.72,2.46-3.72,4-8,5.56-12.17s3.3-8,4.88-12C567.68,480.36,570.64,471.62,566,470Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M492.5,468.5c.12,7,6.16,13.3,13.38,12.25A15.38,15.38,0,0,0,516,474.18a10,10,0,0,0,1.8-4.45c.18-2.63-.45-2.46-2.81-2.49-3.94,0-7.84-.25-11.77-.25C500.19,467,495.9,466.38,492.5,468.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-32" d="M315,336.21c-3.66-2.95-5.67-7.23-9.3-10.61a61.08,61.08,0,0,0-13.44-9.16c-13.63-7.12-22.83,11.34-15.79,22.31,1.81,2.82,3.9,6.21,5.88,8.72,2.17,2.76,5.2,4.37,6.55,7.9-5.6,3.14-9.54,8.71-14,13.22-4.26,4.27-9.21,8.45-12.54,13.52-6,9.16-8.62,20.26-12.72,30.3-1.67,4.08-3.53,7.71-4.1,11.93.88-.56,2.17-.79,3-1.35-.69,6.27-5.62,4.49-9.37,9.14A81.54,81.54,0,0,0,230,445.5c-2.49,4.82-4,10.2-5.38,15.5a42.67,42.67,0,0,0-1.63,8c-.08,1.43.32,3.13,0,4.52-.24,1.12-2,1.94-2,3,0,5,1.76,2.87,5,2.16,4.82-1.05,9.7-2.48,14.66-3.53,11.74-2.48,23.52-5.57,35.38-7.38,13-2,26.14-1.74,39.38-1.74a121.68,121.68,0,0,1,18.1,1.38c4,.58,8.63-.25,12.5.62,13.48,3.05-4.54,36.54-8,41.74-3.59,5.43-8.81,10.7-13.66,15.14-17.42,16-52.62,19.6-71.13,3.4-3.87-3.39-8.18-6.07-11.48-10-2.56-3.09-4.87-7.49-8.66-8.7-.2,5.41-2.39,12.29-1.1,17.24,1.24,4.78,4.77,10.72,8.52,13.7,10.08,8,23.71,10.68,36.14,12.46,6.95,1,13.36,3.11,19.89,5.3,6.29,2.11,12.84,2.16,19.22,3.75a129.87,129.87,0,0,0,18.63,3.61c19.63,2,38.31,8.92,58.11,10.9,8.06.81,17.29-3,25-5,9.67-2.49,19.64-3.34,29.46-5s19.43-3,29-5c26.08-5.38,52.67-10.58,77.5-20.36,5.66-2.23,6-3,6-9.14,0-4.5.11-9,0-13.5s-.23-9.77-2.39-13.45c-6.66,16.31-24.6,27.61-42.11,29-16.18,1.25-40.74-.14-53-12.53C454.77,514.15,449.39,505,444.5,496c-2.2-4.06-7.86-16-5-20.76,1.8-3,11.67-2,15.14-2.34,7.56-.73,15.16-1.67,22.75-2.42,14.61-1.43,29.36-3.19,44-3.86a166.26,166.26,0,0,1,29.35.78c5.67.76,11.27,2,17,1.57-1.84-6.64-3.32-13.49-5.52-20.14-1.83-5.55-6.93-10.4-10.44-14.94-2.31-3-5.15-5.56-6.5-9.25-1.09-3-.88-6.4-1.87-9.51a106,106,0,0,0-8.23-18.77c-6.24-11.45-12-22.6-21.15-32-2.26-2.33-4.65-4.29-6.76-6.75a20.87,20.87,0,0,0-6.1-5.09c-.54-.29-2.94-1.07-3.1-1.77-.65-3,6.25-6.28,8.11-7.71a21,21,0,0,0,7.09-11.23c1.46-5.57.17-8.86-3.45-13.25s-8.49-6-14.18-6c-6.75,0-10.71,3.57-15.28,8.09a24.4,24.4,0,0,0-5.5,7.9c-1.46,3.52-2.07,7.25-3.21,10.66-1.59-.87-2.6-2.55-4.12-3.59a27,27,0,0,0-8.5-3.24c-4.63-1.12-9.44-1.34-14.09-2.34-4.33-.94-8.63-2.49-12.93-3.73-5.4-1.57-10.35-1.59-16-1.59-12.77,0-25.3.87-38,2-12.39,1.1-25.51,1.3-37.58,4.33a122.83,122.83,0,0,0-13.36,3.92c-2.8,1.05-7.43,1.34-9.43,3A14.6,14.6,0,0,1,315,336.21Z" transform="translate(-53.25 -44.96)"/><path class="cls-32" d="M229.13,623.25c.89,1.17,1.92,3.92,2.74,4.87,1.3,1.5,2.83,2.79,4.21,4.21a82.17,82.17,0,0,1,6.68,7.93c3.71,4.95,4.32,10.93-.5,15.32-5.63,5.12-13.27,6-20.58,4.77-5.58-.92-8.09-4.39-12-8-2.89-2.68-6.07-4.7-8.76-7.58-3.41-3.66-6.39-7.37-2.9-11.67,3.77-4.65,10.31-6.32,15.92-7.45,3.29-.66,11.72-4.79,14.75-2.82A1.88,1.88,0,0,1,229.13,623.25Z" transform="translate(-53.25 -44.96)"/><path class="cls-32" d="M566,624.33c-4.5,5.82-7.4,11.21-12.83,16.15s-4.81,10.93-.67,16.68c4.66,6.47,17.4,5.51,23.58,2.74,9-4,18.16-10.94,22.66-20,1.53-3.07,1.13-2.81-1.62-4.79a69.33,69.33,0,0,0-9.77-5.8C581.45,626.37,576.32,625,566,624.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-10" d="M383.12,470.36c-4.4,2-11.06,9.12-12.45,14-2.15,7.44,4.66,10.07,10.72,8.56,4.63-1.15,8.94-3.74,13.79-4,2.3-.1,4.26.7,6.41,1.39,2.45.79,4.77,1.95,7.27,2.57,6.06,1.51,12.87-1.12,10.72-8.56-1.39-4.83-8.05-12-12.45-14" transform="translate(-53.25 -44.96)"/><path class="cls-9" d="M393.83,462.79a18.23,18.23,0,0,0-7.35,2.06c-2.93,1.7-5.13,5.48-1.36,7.86,4.51,2.85,16.6,2.72,20.71-.84,2.88-2.49,2.1-6.25-1.3-7.7A23.59,23.59,0,0,0,393.83,462.79Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M401,490.33c-2.85-1.27-7.34-1.63-10.46-1.34-3.28.31-3.21,2.87-3.58,5.87-.26,2.07-.66,8.48,1.53,9.5,1.47.69,4.55-.06,6.26.11a15.56,15.56,0,0,0,4.83,0C405,503.31,401.23,493.16,401,490.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-7" d="M510.83,472c-3.34-.13-4.94,3.06-.58,2.67,2.51-.23,5.53-3,1.25-2.83" transform="translate(-53.25 -44.96)"/><path class="cls-33" d="M560.91,668.12c0-1.84.56-4.94-.4-6.62-.74-1.31-2.44-1.5-3.69-2.11a11.57,11.57,0,0,1-5.08-4.89c-3.75-7-.4-12.58,4.49-17.77,2.1-2.22,3.94-4.35,4.32-7.5s-.31-6-.36-9.07c0-1.58.14-3.18.11-4.74,0-.78.26-3.69,0-4.24,1.45,2.88,3.64,5.18,4.62,8.42,1.32,4.38,4,4.19,8,4.76a92.15,92.15,0,0,1,10.5,2c6.07,1.61,14.06,4.53,15.75,11.39.41,1.66,3.47-2.07,3.74-2.9.66-2,.46-4.22.45-6.28,1.23-.16,2.15-1.09,3.38-1.17-.9-1-1.73-2.52-2.91-3.44,1.84-2.05,1.58-3.31-.38-4.65-2.17-1.48-1.34-2.76-1.65-5.3a39.1,39.1,0,0,0-1.89-7.92,58.56,58.56,0,0,0-7.94-14.85c-3.7-5.19-8.79-9.52-13.92-13.24a68.21,68.21,0,0,0-8.86-5.52c-2.45-1.26-6.23-2-8-4.15,1.08-2.54,1.48-5.31,2.46-7.89a13,13,0,0,0,.91-6.71,37.36,37.36,0,0,0-2.8-9c-.76-1.89-1.17-4.3-3.42-4.9-3.36-.9-7.19,2.16-10.17,3.27q-6.93,2.58-14,4.84c-9.38,3-18.89,5.63-28.46,8-25,6.06-50.38,10.09-75.76,14q-11,1.71-22,3.82a57.18,57.18,0,0,0-8.85,2.39c-2.64,1-5.4-.68-8-1.22q-4.67-1-9.35-1.84-9.24-1.73-18.54-3.16c-24.86-3.85-49.68-8.14-74.12-14.14-10.36-2.54-20.65-5.39-30.81-8.66q-7.54-2.43-15-5.18c-2.45-.91-4.91-1.84-7.33-2.83-1.74-.7-3.09-2.28-4.29-.4s-1.61,5.42-2.17,7.66c-1.09,4.37-2.51,9.25-1.29,13.74.72,2.67,3.45,6.2,2.49,9.08-.55,1.66-2.06,1.46-3.53,2.05a37.62,37.62,0,0,0-5.61,2.95,64.39,64.39,0,0,0-18.26,17,58.28,58.28,0,0,0-8,15.09,43.9,43.9,0,0,0-1.84,7.89c-.32,2.28-.07,3.79-1.86,5.29-.72.61-1.35.41-1.48,1.66a4.11,4.11,0,0,0,1.34,2.8c-1.18.92-2,2.49-2.91,3.44,1.24.08,2.16,1,3.38,1.17,0,2.42-.47,5.93,1.21,7.94,1,1.19,2.81,2.33,4,.82s.55-3.19,1.91-4.66c2.44-2.64,6.15-4.18,9.48-5.31a79.51,79.51,0,0,1,14.05-3c3.79-.56,6.63-.61,8.16-4.4.54-1.34,1.66-4.24,2.9-5,1.16,2.17,1.1,4.83,1.3,7.21.32,3.8-.19,8.6,1.75,12,1.64,2.89,4.65,4.7,6.43,7.48a12,12,0,0,1,.35,12.77,10,10,0,0,1-4.13,4.33c-1.71.78-3.68,1.13-3.61,3.32,0,.91.52,1.9.56,2.88.07,1.64,0,3.29.05,4.93.1,8.11.25,15.62-1,23.45-1.39,8.62,2.78,7.83,9.13,11.09,7.41,3.81,14.76,8.81,22.48,11.89,9.71,3.87,21.29,5.47,31.42,8,7.78,1.95,15.39,4.44,23.07,6.74,20.13,6,39.23,12.91,60.46,9.87,29.79-4.26,60-3.23,89.34-10.76,19.65-5,39.24-8.93,58.6-15.13A117.05,117.05,0,0,0,546.43,708c4-2,12.41-4,14.5-8.19,1.47-2.92.11-8.2.07-11.39C560.92,681.63,561,674.88,560.91,668.12Z" transform="translate(-53.25 -44.96)"/><path class="cls-34" d="M399.75,580.86a69.12,69.12,0,0,1,4.48,10.28c.68,1.78,2.41,4.44,2.53,6.3s.46.9-.88,2c-1.09.92-2.07.55-2.95,2a9.39,9.39,0,0,0-.79,3.94,31.94,31.94,0,0,0,.66,8.16c2.37,12.11,1.73,25.25,2.94,37.65.76,7.85,2.22,15,2.26,23.06,0,5.48,3.54,12.13,1.26,17.11-3.09,6.74-8.66,12-13.07,17.81-2.64-1.83-4-6.26-6.06-8.84-2.42-3-5.46-10.59-9.34-11.43-.36-3.59.56-7.58.71-11.2.51-12.06,2.79-23.94,4.6-35.84,1.73-11.41,2.17-22.8,3.15-34.23.11-1.34.63-3.71.2-4.94-1.13-3.26-3.19-4.05-2.63-7.94.47-3.31,2.83-6.07,4.74-8.68C393.71,583.2,396.57,575.41,399.75,580.86Z" transform="translate(-53.25 -44.96)"/></g><g id="SHADOWS-2" data-name="SHADOWS"><g class="cls-3"><path d="M286.67,316.33c-3.62,2.59-8.05,10-3.81,14,1.6,1.53,4.85,2,6.81,3.41,2.36,1.74,4.42,3.91,7,5.31,1.58-1.79,0-13.45,3-5.87,1.94,5,5.63,6.09,9,1.11,1.13.93,2.55,2.49,2.73,4,.29,2.41-2.2,3.24-4.57,5-3.7,2.71-11.85,10.52-16.83,10.1-3-.26-4.52-4.4-6.58-6.61-2.77-3-5.22-5.63-7-9.34-3.52-7.36-3.28-16,4.58-20.73" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M473,335.67c1.84-7.87,8.06-16.08,15.65-19.33,4.8-2.05,13.27-3.46,17.31.6-5.42.4-11.26-.72-12.61,5.72a57.49,57.49,0,0,0-1,14.3c2.79.38,5.42-.8,8.23-.57.12,2.17-3.51,4.44-3,6.12,1.24,3.87,9.78-2.53,11.37-3.39-1.13,4.6-8.65,10.11-12.95,12.18-1.59-4.63-7.3-6.17-11.42-7.77-2.63-1-5.47-1.41-8-2.53C474.89,340.25,473.69,338.9,473,335.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M365.33,466c10-7,24.85-9.09,37-6.83,4.54.84,11.69,1.72,13.68,6.33,1.59,3.69,1.5,9.1,2.46,13.1,1.3,5.39,2.09,10.9,3.57,16.25,1.88,6.83,4.32,14.52,7.56,20.85,6.61,12.94,15.94,22.93,29.41,28.55,8.63,3.6,16.54,4.43,25.89,4.42a53,53,0,0,1-31.73-17.33c-4.93-5.48-8.81-12-12.16-18.56-3.75-7.33-8.36-14.24-10.76-22.18a70.49,70.49,0,0,1-2.92-19.1c-.05-2.64-.45-5.2-.33-7.84.06-1.42.83-3.59.33-5-1.27-3.61-11.3-4.6-15.07-5.1-6.49-.86-13.3-1.32-19.85-1.57-7.06-.26-14.22,1.94-21,3.59-5.23,1.27-11.4,4.17-7.05,11.07" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M392.67,462.33c-4.53.82-10.59,3.67-10,9.15.57,5.25,10.25,5.34,14.22,3.84C393.46,474.42,383.84,469.37,392.67,462.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M390.67,475.67c-3.65,0-8,1.1-10.35,4.33-1.68,2.33-2.7,7.07-.31,8.34,2.8,1.5,8.7-1.34,11.74-1.66s5.78-.19,8.5,1.67a43.92,43.92,0,0,0-14.91,2c-3.09,1-7.17,4-10.5,3.66-3.74-.37-6.27-4.13-6.17-7.67.16-5.81,6.45-9.4,10.67-12.33" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M367.33,487.67c-1.28,4-.14,8.45,3.41,10.58,3,1.8,7.53,1.2,10.1,3.22s1.51,6,4.64,7.22c2.93,1.16,10.37-1,13.08-2.27-3.56-.31-7.68.23-10.14-2.8-3.22-4-.84-8.61-1.14-12.91-4.66,1.53-10.47,4.44-14.95,1" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M489,468.67c-5.68,0-12.84,3.07-18.25,4.91-4.34,1.48-14.53,2.44-17.34,6.16-3.64,4.82-1.14,16.07.59,21,2.81,8.08,9.47,14.77,15.65,20.55,5.66,5.3,12.71,7.83,19,11.6-6,.48-12.19-2.87-17.51-5.44a57.25,57.25,0,0,1-18.2-13.59c-9.08-9.64-12.68-22.75-17.86-34.28-2.53-5.63-1.81-9.69-.66-15.6,1.81-9.28,3.75-17.09,7.85-25.7,9.21-19.37,38.33-29.09,58.26-29.31,15.86-.17,28.66,5.54,42.11,13-5-.46-10.55-2.65-15.66-3.57a83.41,83.41,0,0,0-15.57-1.07c-12.92.08-27.78,5.36-38.33,12.72-8.12,5.66-13.31,12.83-17.7,21.73-2,4.09-2.48,5.44,2.49,5.88,6.77.59,14-1.23,20.66.06-2.85,2.43-8.56,1.42-10.76,4.4,6.37,2.67,16.78,1.08,23.76,1.72s14.54.64,21.47,2.07c-3.85,1.2-8.56,1-12.56,1.52C495.12,468.08,490.24,470.3,489,468.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M267.33,405.67c-7,.76-20.15,6.64-20,15,2.6-.2,5.64-2.17,8.28-3,4.31-1.29,8.75-2.19,13.09-3.42,8.06-2.27,16.47-4.55,24.84-4.93,6.23-.28,13,1.43,18.74,3.81,5.27,2.17,12.38,5.48,16.71,9.18,9.29,7.95,13.51,23.72,17,34.72,1.22,3.88,3.35,7.72,4.32,11.63,1.47,5.87-.26,13.57-.85,19.5-1.08,11-5.36,19.46-11.74,28.58a170.58,170.58,0,0,1-11.57,14.6c-2.36,2.68-4.21,5.15-7.32,7s-7.12,3.23-10.22,5.27C318,545,327,537.3,333.64,532c8-6.39,16.32-12.51,18.54-22.93,2.81-13.21,7-26.41,9.17-39.71,1.74-10.86,1.17-26-6.33-34.8a66.17,66.17,0,0,0-6.51-6.08c-2.72-2.44-4.64-5.5-7.38-7.88a134.89,134.89,0,0,0-12.48-10c-5.13-3.47-11.67-6.74-17.78-8-5.71-1.14-11.71-1-17.49-1.39-8.92-.63-20.34-2.62-28.13,2.81C265.24,404.7,265.6,405,267.33,405.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M290.33,411.33c-6.84,2.45-14.82,2.28-21.6,6-6.22,3.41-12.05,8.64-17.57,13.13s-9.15,11.08-13.51,16.79c-2.55,3.34-7.33,10.5-5.68,15.08,1.5,4.17,8.16,2.08,11.4,1.46,6.78-1.29,13.58-3.3,20.45-3.74-4.71,2.88-11.12,4-15.16,7.86,4.23,1.73,10.8.5,15.34.74,4.19.22,8.4.69,12.58,1A63,63,0,0,0,254,477c-3.91,2.2-11.33,5.54-12.33,10.34-1.1,5.28.29,11.72,2.08,16.6,5.18,14.09,21,22.35,33.93,28a46.07,46.07,0,0,0,10.4,2.82c2.48.46,6.95.12,8.65.92-7.27-.42-15,1.7-22.34,1.67-7.13,0-13.42-2.58-20.06-4.67-5.83-1.84-11.48-2-16.85-5.53-1.73-1.13-4.59-3-5.16-4.62-1-3,.87-5.18,1.3-8a14.57,14.57,0,0,0-.64-6.32c-1.35-4.81-4.41-8.94-5.84-13.72-.92-3.05-1.72-6.36-2.39-9.51-.31-1.43-.38-3.08-.76-4.49-.5-1.87-1.37-2.08-2.27-3.85-1.45-2.87.23-4.52.6-7.48.57-4.54.19-8.55,2.21-12.84,4.8-10.23,10.44-20.13,19.29-27.47A78.1,78.1,0,0,1,259.2,418.5c3.53-1.7,7.13-3.52,10.77-5,4.28-1.71,8.72-1.6,13-2.86" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M334,537c-5.51,4.05-12.08,7.07-18,10.51-3.43,2-6.63,4.54-10.32,6.08-4.62,1.92-11.17,5-14.73.42,1.08-1.31,4.06-2,5.71-2.6,4-1.54,8.12-2.65,12.15-4.07,5.6-2,15.9-3.35,19.85-8" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M392.72,583.1a20.56,20.56,0,0,0-1.53,3.33c-1,2.9-3,6.84-3.2,9.9-.17,3.55,5.58,6.69,8.63,6.62a26.18,26.18,0,0,1-2-4.75,5.52,5.52,0,0,1,4.05-4.71c4.7-1,2.45,5.12,6.65,5.46.51-6.64-5.73-13.69-8-19.91C395.47,579.15,393.86,581.09,392.72,583.1Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M402.67,603.33c-1.55,1.36-2.47,3.56-4,5-1.09,1-2.34,1.24-3,2.63-1.48,3.07-.64,9.55-1,13-.58,5.85-.32,11.69-.65,17.59-.18,3.28-.39,9.08-2,11.72-.15-2.76-2.17-9.55-5.35-9.94-.33,5.78-.57,11.59-1,17.37-.49,6-2.1,12.49-1.65,18.51.57,7.65,1.43,15.64,7.29,21.07,1.56-2.31,3.85-6.63,6.28-7.95.13,1.73,0,3.53.12,5.27,3.76.1,8.61-5.58,10.88-8.27.56,3-3.39,7.63-4.93,10s-4.53,6.88-7.5,8.12c-4.29,1.8-10.9-10.54-14.17-13.86-2.28-2.32-5.7-4.73-7-7.73-2.32-5.23-.64-13.75-.64-19.26,0-13.78.69-26.83,3.46-40.32.55-2.66,2.2-8.53.15-10.86-.92-1-4.1-1.49-5.44-2.35-2.17-1.39-4-3.4-6.09-4.85a48.36,48.36,0,0,0,11.93-1.38c3.61-1.06,3.17-2.56,4.33-5.87,1.82-5.2,2.89-1.82,6.68-.09C392.47,602.37,400.21,602.57,402.67,603.33Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M404.67,600.67c-1.17,3-.47,8-.28,11.31,4.62-4.61,2.15,6.64,3.3,7.87,1.86,2,17.76-5.76,20.65-6.85,17.88-6.73,35.75-14,54-19.43a200.6,200.6,0,0,0,25.22-9.16c-2.34-.3-5,.68-7.22,1.29-4.84,1.33-9.73,2-14.62,3.14-7.89,1.8-15.4,4.6-23.09,7-12.19,3.75-23.7,9.06-35.81,13-4.52,1.45-11.73,4.33-14.45,0-3.19-5-4.43-13.2-6-18.88-1.41-5.16-1.6-6.67,2.29-10.18s8.65-4.38,13.23-6.67c-7.11-.6-16.23.87-23.25,2.66-.29,4.74,2.78,10.93,4.66,15.34C405.1,595.22,408.06,597.12,404.67,600.67Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M421,595.67c-1.36,1.21-2.2,4.47-2.28,6.31,1.62-1.1,2.77-3.11,4.23-4.29-.08,1,.44,1.94.44,2.94,1.16-.49,3.08-6.27,1.88-7.56-2-2.16-4.45,1.91-4.6,3.6" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M520.33,553.33c9.15-3.9,20-7.21,30-8.17,2.22-.21,5.83-1.27,6,1.5s-5,4.7-7.23,5.34c4.14,0,8.17-.85,8.57,4,.36,4.31-1.6,9.12-4.31,12.29,10.7,1.49,13.52-12.74,11.23-20.34-.68-2.26-1.85-7.69-4.26-8.78-4.86-2.2-15.12,5.39-19.33,6.85" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M562,571.67c-.11,2.51,1.66,4.34,2.42,6.58.86,2.53,1.2,5.24,2,7.76,1.42,4.23,2.9,8.37,4.2,12.51,2.39,7.66,8.36,10.46,15.67,11.15,3.63.34,8.25.4,10.72,3.35-3.93,4.38-18.12,1.2-20,6.92,3.86,1.23,8.51.46,12.29,2.17-3.4,1.47-8.66.3-12,1.89,3.57,1.88,7.83,3.39,11,5.62-4.23.31-9-1.32-13.05.46S567,636.2,563.6,639c-3.18,2.6-5.39,6.43-6.94,10.33s-.42,6.65,0,10.29c-2.76-.2-7.7-5.19-8.55-8-1.25-4.1,1.43-9.94,3-13.5,5.47-12.44,2.85-28.16,3.29-41.68.33-10,.32-18.93,2.32-28.48" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M548.67,654c-.32,4.49,2.76,12.28,6.67,14.5,5.9,3.35,4.38-4.76,4.62-8.45A12.91,12.91,0,0,1,548.67,654Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M278.33,551c1.84,2.56,6.92,2.59,9.74,3.33,4.29,1.14,8.62,2,12.93,2.91,5.16,1.13,13.37,1.77,17.63,4.35-11.6,1-22.56-1.3-34-2.18A150.75,150.75,0,0,1,269.32,557c-2.88-.52-10.85-1.35-12.34,2-.49,1.09.91,3.56,1,4.71.17,1.6-.46,3.81.05,5.37,1.07,3.27,6.25,6.05,9.24,7.61a67.67,67.67,0,0,0,13.19,5.19c4.46,1.24,9.51,1.22,13.82,2.76,9,3.2,17.31,7.84,26.68,10.28,6.33,1.65,13,2.17,18.89,4.77-10.65-1.33-21.53-2.58-32.05-4.88-9.17-2-20-3.75-29.5-2.15-7,1.19-11,13.49-12.08,19.46-1.8,9.65-.92,19.28-.91,29,0,4.27-2.06,7.93-2.24,12.31-.18,4.54.48,9.07.24,13.61-.53,10,0,19.72,0,29.68,0,6.15.21,12.38.62,18.22-5-4.71-12.74-5.56-18.72-8.57-2-1-5.91-2-7.31-3.59s-.78-4-.54-6.48c.64-6.56-.42-12.57-1-19-.42-4.44-.39-9.32-1.38-13.52-.39,0-.76,0-1.16,0,.31-2.23,3.13-3,4.95-4.27,3.87-2.68,5.25-5.48,5.94-10.13.6-4,.39-6.59-2.36-9.71-2.06-2.33-5.21-3.94-6.28-7.07-1.5-4.43-.65-10.6-1.29-15.27-.76-5.55-1.75-10.65-1.34-16.3a122.57,122.57,0,0,0-.31-20c-.44-4.87.47-12.84-2.6-16.89-2.24-3-4.2-3.91-3.84-8.33.33-4.08,2.42-8.24,3.76-12.09,1.43-4.11,2.78-7.18,7.39-5.43,6.44,2.45,13.62,7.94,20.52,8.52A74,74,0,0,1,278.33,551Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-3"><path d="M229.33,570c-4.59,1-10.21,6.73-13.46,10.13A142,142,0,0,0,205,592.47c-2.76,3.65-5.61,7.23-8,11.1-2.66,4.32-1.86,7.91-3,12.43-.82,3.24-2.65,3.94-2.57,7.67,0,.83.55,1.58.55,2.47,0,.41-1.29.92-1.24,1.26.35,2.44,2.63,2.17,3.57,4.43.63,1.52-.36,3.16.55,4.67,1.17,1.93,4.15,2.93,5.47,5,3.93,6.08,6.07,10.68,12.69,14.53,6,3.5,12.13,4.91,19,3.38,3.7-.83,12.41-4.35,12-9.26-5.23,3.7-16.81,5.39-17.71-2.9-.32-3-.25-7.19,1.14-10,.89-1.77,2.65-3,3.26-4.88a7.62,7.62,0,0,1,1.76.25c-1.47-3-5-4.91-5.76-8.32-.94-4.51,2.19-9.4,4.16-13.15C237.22,599.1,230.25,585.2,229.33,570Z" transform="translate(-53.25 -44.96)"/></g></g><g id="LIGHTS"><g class="cls-35"><path class="cls-7" d="M552.25,251c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C552.94,253.89,553,252.63,552.25,251Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M543.3,134.37c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C544,137.27,544,136,543.3,134.37Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M467.29,196.29c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C468,199.18,468,197.91,467.29,196.29Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M664,239.37c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C664.73,242.26,664.78,241,664,239.37Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M395.2,206.7c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C395.9,209.6,396,208.33,395.2,206.7Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M490.21,264.49c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C490.91,267.38,491,266.11,490.21,264.49Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M503.78,95.86c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C504.48,98.75,504.53,97.48,503.78,95.86Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M681.87,531.06c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C682.56,534,682.62,532.68,681.87,531.06Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M149,482.09c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C149.72,485,149.78,483.72,149,482.09Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M633.27,482.86c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C634,485.75,634,484.48,633.27,482.86Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M179.43,517.52c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C180.13,520.42,180.18,519.15,179.43,517.52Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M165.19,633c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C165.88,635.94,165.93,634.67,165.19,633Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M187.74,639.86c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C188.44,642.75,188.49,641.48,187.74,639.86Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M145.49,539.88c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C146.19,542.78,146.24,541.51,145.49,539.88Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M657.92,563.36c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C658.61,566.25,658.67,565,657.92,563.36Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M587.59,553c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36A5.15,5.15,0,0,1,589.4,557C588.28,555.89,588.34,554.63,587.59,553Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M335.84,215.69c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C336.53,218.59,336.58,217.32,335.84,215.69Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M427.19,90.19c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36A5.15,5.15,0,0,1,429,94.19C427.89,93.09,427.94,91.82,427.19,90.19Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M225.82,231.69c0,3.28,0,4.81-2.87,6.4.87,1,2.32,1.66,3,3s.32,3,.73,4.19c0-2.13,1.22-7.54,3.61-8.36a5.15,5.15,0,0,1-2.65-1.25C226.52,234.59,226.57,233.32,225.82,231.69Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M359.42,266.65c0,1.12,0,1.64-1,2.18.29.35.79.57,1,1s.11,1,.25,1.43c0-.73.42-2.57,1.23-2.85a1.76,1.76,0,0,1-.9-.43C359.65,267.64,359.67,267.21,359.42,266.65Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M339.39,141c0,1.12,0,1.64-1,2.18.29.35.79.57,1,1s.11,1,.25,1.43c0-.73.42-2.57,1.23-2.85a1.76,1.76,0,0,1-.9-.43C339.63,142,339.65,141.57,339.39,141Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M363.07,260.66c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C363.48,262.38,363.51,261.62,363.07,260.66Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M345.15,131.25c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C345.56,133,345.59,132.21,345.15,131.25Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M662.2,258.7c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C662.61,260.41,662.64,259.66,662.2,258.7Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M182.29,542.66c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C182.71,544.37,182.74,543.62,182.29,542.66Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M220.61,677.2c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C221,678.91,221.05,678.16,220.61,677.2Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M116.86,539.75c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C117.27,541.47,117.3,540.71,116.86,539.75Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M669.88,245.85c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C670.29,247.56,670.32,246.81,669.88,245.85Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M592.3,133.64c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C592.71,135.35,592.74,134.6,592.3,133.64Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M99.4,519.52c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C99.81,521.23,99.85,520.48,99.4,519.52Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M629.94,495.14c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C630.35,496.85,630.38,496.1,629.94,495.14Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M578.78,209.48c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C579.19,211.2,579.22,210.45,578.78,209.48Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M498.53,87.64c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95A3,3,0,0,1,499.6,90C498.94,89.35,499,88.6,498.53,87.64Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M621.17,210.72c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C621.58,212.43,621.61,211.68,621.17,210.72Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M129.34,220.08c0,1.12,0,1.64-1,2.18.29.35.79.57,1,1s.11,1,.25,1.43c0-.73.42-2.57,1.23-2.85a1.76,1.76,0,0,1-.9-.43C129.57,221.07,129.59,220.63,129.34,220.08Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-35"><path class="cls-7" d="M133,214.09c0,1.94,0,2.84-1.7,3.79.51.61,1.37,1,1.77,1.79s.19,1.76.43,2.48c0-1.26.72-4.46,2.14-4.95a3,3,0,0,1-1.57-.74C133.4,215.8,133.43,215.05,133,214.09Z" transform="translate(-53.25 -44.96)"/></g></g><g id="DETAILS-2" data-name="DETAILS"><path class="cls-24" d="M479.33,333.67a1,1,0,0,1-.92-1.38c.22-.54.45-1.1.66-1.64a1,1,0,1,1,1.87.72c-.22.56-.45,1.13-.68,1.69A1,1,0,0,1,479.33,333.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M480.33,337a1,1,0,0,1-.38-1.93.65.65,0,0,0,.39-.55,1,1,0,1,1,2,.29,2.62,2.62,0,0,1-1.61,2.11A1,1,0,0,1,480.33,337Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M483.67,332l-.2,0a1,1,0,0,1-.79-1.18,5.48,5.48,0,0,1,1.22-2.46,1,1,0,0,1,1.52,1.31,3.46,3.46,0,0,0-.78,1.54A1,1,0,0,1,483.67,332Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M483,327.67h-.08a1,1,0,0,1-.91-1.08,2.65,2.65,0,0,1,1.54-2.14,1,1,0,1,1,.92,1.78c-.44.23-.46.45-.46.53A1,1,0,0,1,483,327.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M307,335a1,1,0,0,1-.48-.12,4.52,4.52,0,0,1-1.72-1.72,1,1,0,0,1,1.74-1,2.54,2.54,0,0,0,.94,1A1,1,0,0,1,307,335Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M308.67,340.67a1,1,0,0,1-.7-.29,4.44,4.44,0,0,1-1.27-2.15,1,1,0,0,1,1.95-.46,2.52,2.52,0,0,0,.73,1.18,1,1,0,0,1-.7,1.71Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M304,338.67a1,1,0,0,1-.72-.31,5.2,5.2,0,0,1-1.23-2.05,1,1,0,1,1,1.9-.62,3.2,3.2,0,0,0,.77,1.28,1,1,0,0,1-.72,1.69Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M302,330.33a1,1,0,0,1-.69-.28,17,17,0,0,1-2.12-2.48,1,1,0,1,1,1.64-1.15,15,15,0,0,0,1.88,2.19,1,1,0,0,1-.69,1.72Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M261.67,463.67a1,1,0,0,1-.19-2,210.85,210.85,0,0,1,41.19-4,1,1,0,1,1,0,2,208.87,208.87,0,0,0-40.81,4Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M491.33,461.33a1,1,0,0,1-.46-1.89c3.49-1.78,8.65-1.75,13.18-1.72,1.59,0,3.08,0,4.39-.05l.44,0c4.21-.22,9-.48,13,.38a1,1,0,0,1-.42,2c-3.75-.8-8.37-.55-12.46-.34l-.45,0c-1.36.07-2.89.06-4.5.05-4.32,0-9.21-.05-12.27,1.5A1,1,0,0,1,491.33,461.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M394,506.5a1.5,1.5,0,0,1-1.5-1.5V489.67a1.5,1.5,0,0,1,3,0V505A1.5,1.5,0,0,1,394,506.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M397,686.67h-.14a1,1,0,0,1-.85-1.13,6,6,0,0,1,1.2-2.81,1,1,0,1,1,1.58,1.23,4.05,4.05,0,0,0-.8,1.86A1,1,0,0,1,397,686.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M398.67,689a1,1,0,0,1-1-.89,1.25,1.25,0,0,1,1.43-1.43,1.25,1.25,0,0,1-.33,2.32Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M372,601a1,1,0,0,1-.35-.06,1.67,1.67,0,0,1-.94-2.23A1.39,1.39,0,1,1,372,601Zm.6-1.6Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M374.67,599.33a1,1,0,0,1-.65-.24,4,4,0,0,1-1.33-2.22,1,1,0,0,1,2-.42,2,2,0,0,0,.67,1.11,1,1,0,0,1-.65,1.76Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M420.67,598a1,1,0,0,1-1-1v-3a1,1,0,0,1,2,0v3A1,1,0,0,1,420.67,598Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M192,626.33a1,1,0,0,1-.71-1.7c3.28-3.33,12-4.81,15.58-5.29a1,1,0,0,1,.27,2c-5.45.73-12.1,2.35-14.42,4.71A1,1,0,0,1,192,626.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M193,630a1,1,0,0,1-.43-1.9,27.69,27.69,0,0,1,3.3-.75,1,1,0,1,1,.24,2c-.68.08-2.55.55-2.81.63A1,1,0,0,1,193,630Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M604.33,629.33l-.21,0a21,21,0,0,1-5-2,21.42,21.42,0,0,0-4.71-2,47.68,47.68,0,0,0-12-1.64h0a1,1,0,0,1,0-2,49.77,49.77,0,0,1,12.52,1.69,22.92,22.92,0,0,1,5.16,2.12,19.2,19.2,0,0,0,4.55,1.87,1,1,0,0,1-.21,2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M605.67,625.67h0a18.9,18.9,0,0,1-5-1.06,14,14,0,0,0-5.2-.94,1,1,0,0,1-1.08-.91,1,1,0,0,1,.91-1.08,15.42,15.42,0,0,1,6,1,17.07,17.07,0,0,0,4.49,1,1,1,0,0,1,0,2Z" transform="translate(-53.25 -44.96)"/></g><g id="LINEART"><path class="cls-24" d="M561,701a2.5,2.5,0,0,1-2.5-2.5V684.63c0-7-.05-14.7-.17-23.48a2.5,2.5,0,1,1,5-.06c.11,8.8.17,16.5.17,23.54V698.5A2.5,2.5,0,0,1,561,701Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M560.38,634.64a2.5,2.5,0,0,1-2.5-2.46c-.25-14.88-.48-30.71-.42-46.42,0-7.15,0-13.43,0-19.2a2.5,2.5,0,0,1,2.49-2.51h0a2.5,2.5,0,0,1,2.5,2.49c0,5.78,0,12.08,0,19.24-.07,15.65.17,31.46.42,46.31a2.5,2.5,0,0,1-2.46,2.54Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M559.63,541.5a2.5,2.5,0,0,1-2.5-2.44c-.29-12.49-.76-23.82-1.45-34.65a2.5,2.5,0,0,1,5-.31c.68,10.89,1.16,22.29,1.45,34.84a2.5,2.5,0,0,1-2.44,2.56Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M547.24,430.29a2.5,2.5,0,0,1-2.4-1.8q-.26-.9-.53-1.8c-5.82-19.3-15-43.91-34.51-63.11-13.58-13.36-32.91-23.48-57.45-30.09-6.15-1.65-11.36-2.85-16-3.66-17.78-3.15-36.76-2.18-55.12-1.24-4,.21-8.05.41-12,.57-35.32,1.43-66.4,13.65-87.49,34.41-19.51,19.2-28.69,43.81-34.51,63.11a2.5,2.5,0,1,1-4.79-1.44c6-19.87,15.47-45.24,35.79-65.23,22-21.63,54.23-34.36,90.8-35.84,4-.16,8-.37,12-.57,18.64-1,37.91-1.94,56.25,1.31,4.74.84,10.1,2.07,16.38,3.76C479,335.49,499.11,346,513.31,360c20.32,20,29.8,45.36,35.79,65.23q.28.92.55,1.85a2.5,2.5,0,0,1-2.4,3.2Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M232,540h0a2.5,2.5,0,0,1-2.46-2.54c.17-9.84.55-19.7,1.1-29.31a2.5,2.5,0,1,1,5,.29c-.55,9.54-.92,19.33-1.1,29.11A2.5,2.5,0,0,1,232,540Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M235.67,635.7a2.5,2.5,0,0,1-2.5-2.38c-.18-3.87-.41-7.43-.7-10.88-1.6-19.07-2.59-38-2.94-56.19a2.5,2.5,0,1,1,5-.1c.35,18.11,1.33,36.91,2.92,55.87.3,3.51.53,7.13.72,11.06a2.5,2.5,0,0,1-2.38,2.62Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M236.44,704.72a2.5,2.5,0,0,1-2.47-2.16c-.71-5.17-.46-6.39,0-7.95.24-.79.55-1.77.36-5.79-.41-9-.49-18.31-.57-27.28v-1.29a2.5,2.5,0,0,1,5,0v1.29c.08,8.93.16,18.16.56,27.1.2,4.52-.14,6.06-.58,7.49-.24.78-.45,1.45.15,5.79a2.5,2.5,0,0,1-2.13,2.82Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M291,354.83a2.49,2.49,0,0,1-1-.23c-7-3.19-17.19-13.06-18.28-23.27-.61-5.75,1.75-10.8,6.83-14.6a16.09,16.09,0,0,1,13.71-3.12c13.11,3,23,20.91,24.85,24.47a2.5,2.5,0,1,1-4.44,2.31c-4.62-8.89-13-20-21.53-21.9a11.15,11.15,0,0,0-9.6,2.25c-3.69,2.76-5.28,6.05-4.85,10.07.85,7.94,9.54,16.56,15.39,19.25a2.5,2.5,0,0,1-1,4.77Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M497.67,352.83a2.5,2.5,0,0,1-1.55-4.46l1.68-1.32c3.62-2.82,7.72-6,10.47-9.17a14.43,14.43,0,0,0,2.58-15.12c-2-4.73-6.39-7.56-11.94-7.77-11-.44-21.13,11.1-24.17,22a2.5,2.5,0,1,1-4.82-1.34c3.63-13,15.5-26.18,29.17-25.66,7.45.28,13.56,4.31,16.34,10.79A19.45,19.45,0,0,1,512,341.18c-3.06,3.5-7.36,6.85-11.15,9.81l-1.66,1.3A2.49,2.49,0,0,1,497.67,352.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M223.17,481.17a2.49,2.49,0,0,1-1.79-.76c-2.65-2.72-3.46-6.28-2-9.07a13.19,13.19,0,0,0,.68-3.53c.08-.73.16-1.42.28-2.06a67.86,67.86,0,0,1,7-20.67A68.93,68.93,0,0,1,247.25,421a66,66,0,0,1,97.16,20.76c3,5.36,4.85,11.47,6.64,17.78a3.24,3.24,0,0,0,1.57,2.36c2.67,2.24,3,4.42,2.81,5.86s-1.12,3.55-4.45,5.1a2.5,2.5,0,0,1-2.12-4.53c1.26-.59,1.59-1.12,1.6-1.22s-.14-.6-1.07-1.37a7.5,7.5,0,0,1-3.16-4.82c-1.71-6-3.47-11.82-6.2-16.71A60.88,60.88,0,0,0,250.23,425a64,64,0,0,0-18.46,22.4,63.26,63.26,0,0,0-6.56,19.27c-.09.51-.16,1.11-.23,1.73a15.77,15.77,0,0,1-1.19,5.22c-.34.67-.12,2,1.17,3.33a2.5,2.5,0,0,1-1.79,4.24Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M286.66,540c-.89,0-1.78,0-2.68-.05a66.06,66.06,0,0,1-63.3-61.13,2.5,2.5,0,0,1,5-.37,61.13,61.13,0,0,0,122-2.13c.08-2,.06-3.93,0-5.88a2.5,2.5,0,1,1,5-.27c.12,2.1.13,4.24,0,6.35A66.22,66.22,0,0,1,286.66,540Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M284.37,485.33a15.13,15.13,0,0,1-15-13.82,2.5,2.5,0,0,1,5-.43,10.13,10.13,0,1,0,20.19-1.76,2.5,2.5,0,0,1,5-.43,15.15,15.15,0,0,1-13.76,16.39C285.26,485.31,284.81,485.33,284.37,485.33Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M223.17,481.17a2.5,2.5,0,0,1-.53-4.94l2.9-.63c7.58-1.64,14.74-3.2,22.69-4.56,3.42-.59,6.9-1.29,10.26-2a171.15,171.15,0,0,1,22-3.46c17.18-1.17,34.56-.63,49.51,0,1.58.06,3.28.05,5.09,0,5.17,0,10.51-.05,14.94,1.54a2.5,2.5,0,0,1-1.69,4.71c-3.6-1.29-8.49-1.27-13.22-1.25-1.86,0-3.62,0-5.31,0-14.82-.59-32-1.13-49,0a167.45,167.45,0,0,0-21.4,3.37c-3.4.69-6.92,1.4-10.41,2-7.85,1.35-15,2.89-22.48,4.52l-2.9.63A2.47,2.47,0,0,1,223.17,481.17Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M439.67,478.95a2.49,2.49,0,0,1-.8-.13c-3.48-1.17-4.63-3.13-5-4.57s-.26-3.61,2.14-6.14a3.25,3.25,0,0,0,1.29-2.52c1.07-6.47,2.23-12.75,4.6-18.41a65.89,65.89,0,0,1,94.21-31.56,68.94,68.94,0,0,1,22.51,21.73,67.86,67.86,0,0,1,9.31,19.75c.19.63.34,1.3.51,2a13.18,13.18,0,0,0,1.08,3.42c1.71,2.61,1.32,6.24-1,9.24a2.5,2.5,0,0,1-4-3.06c1.13-1.46,1.2-2.8.79-3.43a15.75,15.75,0,0,1-1.77-5.05c-.14-.61-.27-1.2-.42-1.7a63.24,63.24,0,0,0-8.68-18.41,64,64,0,0,0-20.86-20.18,61,61,0,0,0-87.09,29.16c-2.16,5.17-3.26,11.13-4.28,17.3a7.5,7.5,0,0,1-2.6,5.15c-.83.88-.93,1.4-.91,1.49s.41.59,1.73,1a2.5,2.5,0,0,1-.8,4.87Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M502.91,538.8a66.23,66.23,0,0,1-65.32-56.08c-.32-2.1-.55-4.22-.67-6.32a2.5,2.5,0,1,1,5-.29c.11,1.94.32,3.91.62,5.85A61.13,61.13,0,0,0,564,470.36a2.5,2.5,0,0,1,5-.2,66.18,66.18,0,0,1-66.13,68.64Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M504.75,483.85a15.13,15.13,0,0,1-15.12-14.74,2.5,2.5,0,0,1,2.43-2.56h.07a2.5,2.5,0,0,1,2.5,2.44,10.13,10.13,0,1,0,20.26-.52,2.5,2.5,0,0,1,2.43-2.56,2.46,2.46,0,0,1,2.56,2.43,15.15,15.15,0,0,1-14.74,15.51Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M440.26,477.84a2.5,2.5,0,0,1-1.11-4.74c4.22-2.08,9.53-2.66,14.67-3.21,1.79-.19,3.48-.38,5-.62,14.79-2.28,32-4.77,49.2-5.53a170.23,170.23,0,0,1,22.29,1c3.42.3,7,.6,10.42.8,8.08.46,15.38,1.2,23.12,2l2.89.29a2.5,2.5,0,0,1-.5,5l-2.89-.29c-7.68-.78-14.93-1.51-22.9-2-3.54-.2-7.11-.51-10.57-.81a168.33,168.33,0,0,0-21.64-.94c-16.95.75-34,3.23-48.66,5.48-1.67.26-3.42.45-5.27.65-4.71.51-9.57,1-13,2.72A2.48,2.48,0,0,1,440.26,477.84Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M393.72,477.54c-4.22,0-8.34-.81-10.74-2.32a6,6,0,0,1-3.13-5.28c0-2.5,1.83-5.12,4.53-6.69a20.53,20.53,0,0,1,8.22-2.34h0a25.62,25.62,0,0,1,11.67,1.54,7.17,7.17,0,0,1,4.44,5.39,6.91,6.91,0,0,1-2.52,6.33C403.56,476.47,398.57,477.54,393.72,477.54Zm-.67-11.65a15.45,15.45,0,0,0-6.16,1.69,3.86,3.86,0,0,0-2,2.46c0,.3.26.62.79,1,3.77,2.38,14.27,2,17.29-.6a2,2,0,0,0,.85-1.78,2.22,2.22,0,0,0-1.46-1.56,20.71,20.71,0,0,0-9.27-1.16Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M377.41,495.74a10.85,10.85,0,0,1-7.91-3c-2.15-2.23-2.76-5.43-1.73-9,1.63-5.66,8.82-13.11,13.56-15.24a2.5,2.5,0,0,1,2,4.56c-3.85,1.73-9.71,8.27-10.8,12.06-.53,1.84-.35,3.23.53,4.15,1.3,1.35,4.16,1.8,7,1.11a43.8,43.8,0,0,0,4.76-1.59,29.73,29.73,0,0,1,9.23-2.35,16.92,16.92,0,0,1,6.25,1.18l.88.29c1.06.34,2.08.74,3.07,1.13a31.94,31.94,0,0,0,3.89,1.34c2.8.69,5.66.24,7-1.11.88-.92,1.06-2.31.53-4.15-1.09-3.79-7-10.33-10.8-12.06a2.5,2.5,0,1,1,2-4.56c4.74,2.13,11.93,9.58,13.56,15.24,1,3.57.42,6.77-1.73,9-2.6,2.69-7.1,3.65-11.76,2.49a36.21,36.21,0,0,1-4.51-1.54c-1-.37-1.85-.73-2.76-1l-.94-.31a12.24,12.24,0,0,0-4.46-.93,25.55,25.55,0,0,0-7.69,2,48.2,48.2,0,0,1-5.31,1.76A16,16,0,0,1,377.41,495.74Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M394.25,507.75a17.94,17.94,0,0,1-5.4-.66c-3.8-1.3-3.85-4.93-3.88-7.34,0-.32,0-.65,0-1-.08-2.48-.06-5.07,0-7.36v-.91a2.5,2.5,0,0,1,2.5-2.48h0a2.5,2.5,0,0,1,2.48,2.52v.91c0,2.24,0,4.78,0,7.16,0,.36,0,.72,0,1.08,0,2.28.17,2.56.5,2.67,1.55.53,5.59.49,7.9.11a6.24,6.24,0,0,0,.89-.2c0-.3,0-.75,0-1.13,0-.63-.09-1.42-.08-2.32,0-1.83,0-3-.08-4.32,0-1.11-.09-2.26-.09-3.82a2.5,2.5,0,0,1,5,0c0,1.47,0,2.57.08,3.63.05,1.29.1,2.63.08,4.58,0,.71,0,1.34.07,1.94.14,2.26.36,5.69-5,6.58A33.27,33.27,0,0,1,394.25,507.75Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M286.42,555.33A80.37,80.37,0,1,1,366.79,475,80.46,80.46,0,0,1,286.42,555.33Zm0-150.74A70.37,70.37,0,1,0,356.79,475,70.45,70.45,0,0,0,286.42,404.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M503,554.33A80.37,80.37,0,1,1,583.34,474,80.46,80.46,0,0,1,503,554.33Zm0-150.74A70.37,70.37,0,1,0,573.34,474,70.45,70.45,0,0,0,503,403.59Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M426,465a5,5,0,0,1-4.26-2.37c-1.47-2.38-11.35-7.06-25.79-7.89-13.45-.77-24.29,2.35-29,8.36a5,5,0,0,1-7.85-6.19c6.85-8.69,20.51-13.12,37.45-12.15,12.95.74,29,5,33.73,12.62A5,5,0,0,1,426,465Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M210,462h-.27c-5.85-.31-10.27-2.79-12.11-6.8a8.69,8.69,0,0,1,1-9.07c2.79-3.64,8-5.12,14.2-4.06a5,5,0,0,1-1.68,9.86,11.76,11.76,0,0,0-2.75-.18,10.12,10.12,0,0,0,1.86.26,5,5,0,0,1-.26,10Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M579,462a5,5,0,0,1-.26-10,10.1,10.1,0,0,0,1.86-.26,11.7,11.7,0,0,0-2.75.18,5,5,0,0,1-1.68-9.86c6.23-1.07,11.41.42,14.2,4.06a8.69,8.69,0,0,1,1,9.07c-1.85,4-6.26,6.49-12.11,6.8Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M382.36,612.58a2.56,2.56,0,0,1-.46,0c-10.2-1.9-18.76-4.71-27.82-7.67-3.3-1.08-6.7-2.2-10.31-3.31-21.85-6.75-44.73-12.41-66.85-17.89-8.13-2-16.54-4.1-24.7-6.19l-1.4-.36c-8.17-2.07-19.37-4.9-24-13.77-3.18-6.08,0-16.94,2.14-24.13.25-.86.49-1.65.68-2.35a2.5,2.5,0,0,1,4.82,1.35c-.2.71-.44,1.53-.7,2.41-1.66,5.63-4.74,16.12-2.5,20.4,3.62,6.9,13.15,9.31,20.82,11.25l1.41.36c8.14,2.08,16.54,4.16,24.66,6.18,22.19,5.5,45.14,11.18,67.13,18,3.65,1.13,7.08,2.25,10.39,3.33,8.9,2.92,17.31,5.67,27.18,7.51a2.5,2.5,0,0,1-.46,5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M396.13,578.5a2.54,2.54,0,0,1-.52-.06c-11.08-2.36-21.5-4.28-32.79-6-44.24-6.84-90.83-15.53-131.76-32.57a2.5,2.5,0,1,1,1.92-4.62c40.44,16.84,86.67,25.45,130.6,32.25,11.39,1.76,21.9,3.69,33.07,6.08a2.5,2.5,0,0,1-.52,4.95Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M382.36,612.58h-.18a2.5,2.5,0,0,1-2.32-2.67c.53-7.58,4.21-14.32,7.78-20.84,2.44-4.47,4.75-8.69,6.09-13.12a2.5,2.5,0,1,1,4.79,1.45c-1.49,4.92-4,9.58-6.49,14.07-3.46,6.33-6.73,12.3-7.18,18.79A2.5,2.5,0,0,1,382.36,612.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M411,612.58a2.5,2.5,0,0,1-.46-5c9.73-1.82,17.93-4.52,26.61-7.38,3.41-1.13,6.94-2.29,10.73-3.46,22-6.79,44.92-12.47,67.11-18,8.13-2,16.53-4.1,24.68-6.18l.33-.08c7.38-1.89,15.74-4,19.9-10.15,3.84-5.67,2.12-10-.26-15.95a65.76,65.76,0,0,1-2.41-6.77,2.5,2.5,0,1,1,4.81-1.35,61.79,61.79,0,0,0,2.24,6.27c2.5,6.27,5.09,12.75-.25,20.61-5.22,7.69-15,10.18-22.79,12.19l-.33.08c-8.16,2.09-16.58,4.17-24.71,6.19-22.12,5.48-45,11.14-66.83,17.89-3.74,1.16-7.25,2.31-10.64,3.43-8.85,2.92-17.2,5.67-27.26,7.55A2.57,2.57,0,0,1,411,612.58Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M397,578.5a2.5,2.5,0,0,1-.52-4.95c11.18-2.38,21.68-4.32,33.07-6.08,40.41-6.25,86.22-13.34,128.13-30.79a2.5,2.5,0,1,1,1.92,4.62C517.14,559,471,566.12,430.32,572.42c-11.29,1.75-21.71,3.66-32.79,6A2.54,2.54,0,0,1,397,578.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M411,612.58a2.5,2.5,0,0,1-2.49-2.33c-.45-6.45-3.76-12.4-7.27-18.7-2.52-4.53-5.13-9.21-6.63-14.17a2.5,2.5,0,1,1,4.79-1.45c1.34,4.44,3.71,8.69,6.21,13.18,3.62,6.5,7.36,13.22,7.89,20.78a2.5,2.5,0,0,1-2.32,2.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M229.87,663.57a41.28,41.28,0,0,1-16.34-3.66,39.84,39.84,0,0,1-19.73-21.19,2.5,2.5,0,0,1,4.63-1.89,34.79,34.79,0,0,0,17.19,18.54c6.44,3,21.18,6.34,25.68-2,3.47-6.46.36-10.22-5-15.81a36.79,36.79,0,0,1-6.18-7.72,6.23,6.23,0,0,1-2.7-3.22,5.9,5.9,0,0,0-.87-1.53,2.5,2.5,0,0,1,3.93-3.09A10.75,10.75,0,0,1,232,624.6c.29.67.32.74,1.16,1.19a2.5,2.5,0,0,1,1.09,1.14c1.18,2.47,3.34,4.73,5.64,7.13,5,5.18,11.16,11.64,5.8,21.63C242.57,661.53,236.38,663.57,229.87,663.57Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M193.09,620.7H193a2.5,2.5,0,0,1-2.38-2.61c.45-9.82,3.75-18.54,10.68-28.29,5.72-8,18.92-20.32,30.37-22.5a2.5,2.5,0,1,1,.93,4.91c-9,1.72-21.17,12-27.23,20.49-6.34,8.92-9.36,16.82-9.76,25.62A2.5,2.5,0,0,1,193.09,620.7Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M228.33,626.08a2.5,2.5,0,0,1-2-4.06l0,0a2.5,2.5,0,0,1,.44-2,3.43,3.43,0,0,1,.48-1.3,2.52,2.52,0,0,1,.31-.85,71,71,0,0,0,4.08-8.66,2.5,2.5,0,0,1,4.63,1.89,84,84,0,0,1-3.7,8,2.5,2.5,0,0,1-.55,1.84l-.24.27a2.83,2.83,0,0,1-.18.82,4.76,4.76,0,0,1-1.27,3l-.11.13A2.5,2.5,0,0,1,228.33,626.08Zm-1.22-2.85h0Zm4.08-6.18h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M196.12,640.27a2.51,2.51,0,0,1-2.43-3.1c2.94-11.89,21.33-14.36,31.21-15.68,1.25-.17,2.34-.31,3.19-.45a2.5,2.5,0,1,1,.82,4.93c-.89.15-2,.3-3.34.48-8.08,1.08-24.9,3.34-27,11.93A2.5,2.5,0,0,1,196.12,640.27Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M195.84,640.28a5.69,5.69,0,0,1-4.05-1.56c-2.2-2.12-2.4-5.65-2.39-8.37l-.2-.1a3.72,3.72,0,0,0-.83-.34,2.5,2.5,0,0,1-1.65-4.21,12.38,12.38,0,0,0,.84-1.07c.21-.29.44-.6.68-.9a4.87,4.87,0,0,1-.28-4.23c1.74-4.17,9.13-5.1,16.86-5.49,10.49-.53,22.23,1.82,25.58,2.55a2.5,2.5,0,1,1-1.07,4.88c-6.58-1.44-16.4-2.83-24.2-2.44-9.92.5-12,1.88-12.48,2.35a3.58,3.58,0,0,0,.67,1,2.5,2.5,0,0,1-.33,3.64,3.19,3.19,0,0,0-.29.26,2.5,2.5,0,0,1,1.73,2.39v.79c0,1.45-.09,4.83.84,5.72.06.06.2.2.72.16a2.5,2.5,0,0,1,.29,5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M565.37,663.57c-6.51,0-12.69-2-15.83-7.89-5.36-10,.83-16.45,5.8-21.63,2.3-2.39,4.47-4.66,5.64-7.12a2.49,2.49,0,0,1,1.09-1.14c.85-.45.88-.52,1.16-1.19a10.73,10.73,0,0,1,1.54-2.65,2.5,2.5,0,0,1,3.93,3.09,5.91,5.91,0,0,0-.87,1.53,6.23,6.23,0,0,1-2.7,3.22,36.77,36.77,0,0,1-6.18,7.72c-5.36,5.59-8.47,9.34-5,15.81,4.5,8.39,19.24,5,25.68,2a34.79,34.79,0,0,0,17.19-18.54,2.5,2.5,0,1,1,4.63,1.89,39.84,39.84,0,0,1-19.73,21.19A41.28,41.28,0,0,1,565.37,663.57Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M602.15,620.7a2.5,2.5,0,0,1-2.5-2.38c-.41-8.8-3.42-16.7-9.76-25.62-5.67-8-20.58-19.22-29.88-21a2.5,2.5,0,1,1,.93-4.91c10.84,2.06,26.66,14.06,33,23,6.94,9.74,10.23,18.47,10.68,28.29a2.5,2.5,0,0,1-2.38,2.61Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M566.91,626.08a2.49,2.49,0,0,1-2-.94l-.11-.14a4.77,4.77,0,0,1-1.27-3,2.8,2.8,0,0,1-.18-.83l-.24-.27a2.5,2.5,0,0,1-.55-1.84,84,84,0,0,1-3.7-8,2.5,2.5,0,1,1,4.63-1.89,71.12,71.12,0,0,0,4.08,8.66,2.5,2.5,0,0,1,.31.85,3.43,3.43,0,0,1,.48,1.31,2.48,2.48,0,0,1,.44,1,2.53,2.53,0,0,1,0,1l0,0a2.5,2.5,0,0,1-2,4.06Zm1.22-2.85h0Zm-4.08-6.18h0Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M599.12,640.27a2.5,2.5,0,0,1-2.42-1.9c-2.12-8.59-18.94-10.84-27-11.93-1.31-.18-2.45-.33-3.34-.48a2.5,2.5,0,1,1,.82-4.93c.85.14,1.93.29,3.19.45,9.88,1.33,28.28,3.79,31.21,15.68a2.5,2.5,0,0,1-2.43,3.1Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M599.4,640.28H599a2.5,2.5,0,1,1,.29-5c.51,0,.66-.11.72-.16.92-.89.86-4.27.84-5.72v-.79a2.5,2.5,0,0,1,1.73-2.39,3.12,3.12,0,0,0-.29-.26,2.5,2.5,0,0,1-.33-3.64,3.58,3.58,0,0,0,.67-1c-.44-.47-2.56-1.85-12.43-2.34-7.86-.39-17.68,1-24.26,2.44a2.5,2.5,0,1,1-1.07-4.88c3.35-.73,15.08-3.08,25.52-2.55,7.79.39,15.18,1.32,16.92,5.49a4.87,4.87,0,0,1-.28,4.23c.24.31.46.61.68.9a12.45,12.45,0,0,0,.84,1.07,2.5,2.5,0,0,1-1.65,4.21,3.73,3.73,0,0,0-.83.34l-.2.1c0,2.72-.18,6.25-2.39,8.37A5.69,5.69,0,0,1,599.4,640.28Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M395.89,605.19a13.23,13.23,0,0,1-2.15-.17,13.89,13.89,0,0,1-9.52-6.77,2.5,2.5,0,1,1,4.23-2.66,8.94,8.94,0,0,0,6.1,4.49c3.11.51,6.78-.8,10.32-3.69a2.5,2.5,0,1,1,3.16,3.88C404.08,603.49,399.85,605.19,395.89,605.19Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M381.45,690.17h-.18A2.5,2.5,0,0,1,379,687.5c.55-7.7,1.54-17.78,2.59-28.45,2-20.32,4.27-43.35,4.29-57.89a2.5,2.5,0,0,1,2.5-2.5h0a2.5,2.5,0,0,1,2.5,2.5c0,14.78-2.3,37.94-4.31,58.37-1,10.64-2,20.68-2.58,28.32A2.5,2.5,0,0,1,381.45,690.17Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M409.89,690.37A2.5,2.5,0,0,1,407.4,688c-.55-7.75-1.55-18-2.62-28.77-2-20.33-4.27-43.38-4.29-58.11a2.5,2.5,0,0,1,2.5-2.5h0a2.5,2.5,0,0,1,2.5,2.5c0,14.49,2.27,37.41,4.27,57.63,1.07,10.85,2.08,21.1,2.63,28.91a2.5,2.5,0,0,1-2.32,2.67Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M395.67,712.41a2.5,2.5,0,0,1-2-.94A128.91,128.91,0,0,1,379.22,689a2.5,2.5,0,1,1,4.5-2.19,123.3,123.3,0,0,0,13.91,21.57,2.5,2.5,0,0,1-2,4.06Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M395.67,712.41a2.5,2.5,0,0,1-2-4.06,124.1,124.1,0,0,0,13.94-21.57,2.5,2.5,0,0,1,4.5,2.19,129.3,129.3,0,0,1-14.52,22.5A2.5,2.5,0,0,1,395.67,712.41Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M222,539.15a40.07,40.07,0,0,1-11.74-1.43c-25.41-7.8-19.39-36.26-14.54-59.13,1.89-8.93,3.68-17.36,3.44-23.49a2.5,2.5,0,1,1,5-.19c.26,6.75-1.59,15.48-3.55,24.72-4.65,22-9.93,46.86,11.12,53.32,4.87,1.5,10.81,1.27,16.55,1,2-.08,4.08-.16,6.05-.16a2.5,2.5,0,0,1,0,5c-1.87,0-3.81.07-5.86.15S224.16,539.15,222,539.15Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M559,542.83a2.5,2.5,0,0,1-2.1-3.85c2.37-3.68,7.95-4.14,13.34-4.59,3.45-.29,7-.59,8.82-1.67,11.8-7.07,17.55-20.9,14.67-35.23-1.06-5.25-2.55-10.19-4-15C587.16,474,584.5,465.2,584.5,455a2.5,2.5,0,0,1,5,0c0,9.46,2.44,17.53,5,26.07,1.48,4.9,3,10,4.11,15.44,3.31,16.43-3.36,32.33-17,40.51-2.79,1.68-7,2-11,2.36-3.8.32-8.52.71-9.55,2.32A2.5,2.5,0,0,1,559,542.83Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M486,344.5a2.5,2.5,0,0,1-1.32-4.62c2.93-1.83,5.25-6.67,6.36-13.29a2.5,2.5,0,1,1,4.93.82c-1,5.77-3.24,13.35-8.64,16.71A2.49,2.49,0,0,1,486,344.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M487,345.5a2.5,2.5,0,0,1-2.07-3.9c2.69-4,7.07-5.2,10.93-6.28.81-.23,1.61-.45,2.37-.7a2.5,2.5,0,1,1,1.53,4.76c-.83.27-1.68.51-2.56.75-3.33.93-6.48,1.82-8.14,4.27A2.5,2.5,0,0,1,487,345.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M300,347.5a2.49,2.49,0,0,1-1.68-.65L297,345.61c-2.17-2-7.92-7.44-10.14-7.13a2.5,2.5,0,1,1-.68-5c4.23-.58,9.15,3.66,14.24,8.44l1.28,1.19A2.5,2.5,0,0,1,300,347.5Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M300.5,347.5a2.5,2.5,0,0,1-2.07-1.1c-2.93-4.33-2.93-10.32-2.93-15.13v-.77A2.5,2.5,0,0,1,298,328h0a2.5,2.5,0,0,1,2.5,2.5v.77c0,4.34,0,9.26,2.07,12.33a2.5,2.5,0,0,1-2.07,3.9Z" transform="translate(-53.25 -44.96)"/></g><g id="HAIR_DETAILS" data-name="HAIR DETAILS"><path class="cls-24" d="M400.45,398h0Z" transform="translate(-53.25 -44.96)"/></g><g id="layers"><g class="cls-36"><circle class="cls-7" cx="233.17" cy="430" r="75.37"/></g><g class="cls-36"><circle class="cls-7" cx="449.72" cy="429" r="75.37"/></g><path class="cls-24" d="M426,465a5,5,0,0,1-4.26-2.37c-1.47-2.38-11.35-7.06-25.79-7.89-13.45-.77-24.29,2.35-29,8.36a5,5,0,0,1-7.85-6.19c6.85-8.69,20.51-13.12,37.45-12.15,12.95.74,29,5,33.73,12.62A5,5,0,0,1,426,465Z" transform="translate(-53.25 -44.96)"/><path class="cls-24" d="M286.42,555.33A80.37,80.37,0,1,1,366.79,475,80.46,80.46,0,0,1,286.42,555.33Zm0-150.74A70.37,70.37,0,1,0,356.79,475,70.45,70.45,0,0,0,286.42,404.59Z" transform="translate(-53.25 -44.96)"/><g class="cls-37"><path class="cls-7" d="M532.48,427.22c1.29,3.14,3.66,6,5.79,8.72a96.55,96.55,0,0,1,18.14,38.2c1,4.5,7.56,4.49,9.69.91a10.2,10.2,0,0,0,1.13-4.2,51.8,51.8,0,0,0-3.32-24.26c-1.32-3.37-3.17-5.84-5.09-8.79-2.11-3.25-3-6.77-6-9.49-3.77-3.43-7.3-7.66-11.88-10.14-2.12-1.15-4.77-2-6.87-.84a5.82,5.82,0,0,0-2.52,4.86A11.66,11.66,0,0,0,532.48,427.22Z" transform="translate(-53.25 -44.96)"/></g><g class="cls-37"><path class="cls-7" d="M316.29,432.4c1.29,3.14,3.66,6,5.79,8.72a96.55,96.55,0,0,1,18.14,38.2c1,4.5,7.56,4.49,9.69.91a10.2,10.2,0,0,0,1.13-4.2,51.8,51.8,0,0,0-3.32-24.26c-1.32-3.37-3.17-5.84-5.09-8.79-2.11-3.25-3-6.77-6-9.49-3.77-3.43-7.3-7.66-11.88-10.14-2.12-1.15-4.77-2-6.87-.84a5.82,5.82,0,0,0-2.52,4.86A11.66,11.66,0,0,0,316.29,432.4Z" transform="translate(-53.25 -44.96)"/></g><path class="cls-24" d="M503,554.33A80.37,80.37,0,1,1,583.34,474,80.46,80.46,0,0,1,503,554.33Zm0-150.74A70.37,70.37,0,1,0,573.34,474,70.45,70.45,0,0,0,503,403.59Z" transform="translate(-53.25 -44.96)"/></g><g id="CIRCLE"><path class="cls-24" d="M397.38,745.79A344.13,344.13,0,0,1,154,158.33,341.87,341.87,0,0,1,397.38,57.54h3l11.29.28h.07a344.13,344.13,0,0,1-14.36,688Zm0-679.25c-184.79,0-335.12,150.34-335.12,335.13S212.59,736.79,397.38,736.79,732.5,586.46,732.5,401.67A334.16,334.16,0,0,0,411.4,66.83l-11.17-.28Z" transform="translate(-53.25 -44.96)"/></g></svg>
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyShadows.png b/vendor/github.com/golang/dep/docs/assets/DigbyShadows.png
deleted file mode 100644
index e24ab79524a593437e373b12864df5d66460bcef..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/DigbyShadows.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyShadows.svg b/vendor/github.com/golang/dep/docs/assets/DigbyShadows.svg
deleted file mode 100644
index de7d138b23d792be0a3230e7b7051c4bb448bf8b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/assets/DigbyShadows.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 720.07 762.53"><defs><style>.cls-1{fill:#ced8d2}.cls-2{fill:#1d1d1b}.cls-3{opacity:.2}.cls-4{fill:#050505}.cls-5{fill:#ccbca8}.cls-6{fill:#b7a38d}.cls-7{fill:#b79765}.cls-8{fill:#fff}.cls-9{fill:#d7b89b}.cls-10{opacity:.27}.cls-11{opacity:.51}.cls-12{fill:#e3fbfc}.cls-13{opacity:.56}.cls-14{opacity:.39}.cls-15{fill:none;stroke:#1d1d1b;stroke-linecap:round;stroke-linejoin:round;stroke-width:5px}</style></defs><title>BoyerShadows</title><g id="BACKGROUND_OCLOR" data-name="BACKGROUND OCLOR"><path class="cls-1" d="M604,97c102.41,62,170.85,174.54,170.85,303,0,195.53-158.51,354-354,354s-354-158.51-354-354A352.48,352.48,0,0,1,139,185.68l6.95-8.83A356,356,0,0,1,220.64,108Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M774.33,418.17H743a2.5,2.5,0,0,1,0-5h31.33a2.5,2.5,0,0,1,0,5Z" transform="translate(-60.79 2.5)"/></g><g id="shadow"><g class="cls-3"><path class="cls-4" d="M683,482.33c-18.83,3.44-37.15,12-54.59,19.58-9,3.89-18.46,6.69-27.67,10.08-5.37,2-15.08,4-18.46,8.83.79-8.35-.94-19-3.12-27.1-2.32-8.64-7.87-15.93-6.74-25.29,10.4-.89,21.59,1.16,32.08,1.24,14.77.12,29.37.81,44.09,1.92C660,472.46,673.68,471.94,683,482.33Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M291,512.33c-30.31,0-58.76,13-86.18,24.53-16.11,6.77-34.42,9.42-51.16,14.65-10.28,3.21-21.33,5.38-31.33,8.65-5.92,1.94-11.34,5.75-17.38,7.26-3.81-5.92-4.16-13.61-6.52-20.21-3.8-10.67-7.68-21.23-11.12-32C83.14,502,72,486.26,73.7,471.75c10.35.26,20.59,2.61,31.22,2.58,15.75,0,31.49,1.5,47.24,2,23.23.68,46.12,6.64,69,9.85,15.67,2.2,30.65,10.18,46.2,13.66C276.88,501.94,286.34,504.48,291,512.33Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M267.7,678.5c9.58,1.57,19,4.62,28.83,4.61,8.83,0,17.49-2.54,26.5-2.12,6.67.31,13.14,1.66,19.79,2,15.14.78,28.27,4,42.83,8.8,10.37,3.41,20.13,9,30.39,12.38,8.91,2.93,20.7,1.92,30.18.2,13.06-2.37,25.5-7.44,38.49-10.12,15-3.1,27.84-5.3,42-11.55,12.52-5.54,25.66-10.15,38.37-15.42,4.46-1.85,17.39-3.54,16.48-10.31-.43-3.2-6.84-6.92-9-8.77-7.25-6.25-14.56-10-23.13-14.16-12.82-6.3-19.11-8.37-33.63-7.06-35.83,3.25-71.88,6.13-106.13,17.5-8.81,2.93-20.59,8.56-30,7.84-16.78-1.3-33.56-3-50.42-1.94-10.88.66-21.23,2.49-32.25,1.95-10.47-.52-20.93-3.28-31.32-5-13.79-2.29-29.89-6.58-51.33-3-5.23-.11-14,7.91-14.7,13.33-1.24,9.58,10.32,5.68,16.42,5.39C234.49,662.17,249.83,675.57,267.7,678.5Z" transform="translate(-60.79 2.5)"/></g></g><g id="COLOR"><path class="cls-5" d="M379.67,631.39l50.88-10.2,110.17-24.29,74.73-16.24-13.42-60L594.42,482H680l66-17.43V289l-50.12-6.6V177.1l-23.14-25.84-5.41-2.66L604,148V12.67L539,0,400,5V32H290L222,46V174.2l-83,2.89V312.74L80,314l-3.72,4.24,1,154.1,1.75,2,57.45,11.84,57.15-.53L343,454.5c-.07,0,4.24,22.37,4.47,23.62l4.68,24.73c1.64,8.67,3.73,18.35,2.53,27.22-.51,3.75-.49,7.66-.68,11.44-.17,3.33-.59,6.81,3.25,7.49,1.29.23,2.84-.51,3.7.5s.4,3.3.62,4.55c.37,2.13,1.11,4.34,1.52,6.52l2.81,14.86,5,26.61,5.49,29s.05.34.06.34Z" transform="translate(-60.79 2.5)"/><polygon class="cls-6" points="134.41 488.2 78.21 488.68 13.87 477.07 16.52 316.5 280.95 315.24 352.71 324.5 352.71 390.84 343.71 391 134.41 488.2"/><polygon class="cls-6" points="355.21 150.5 355.21 297.5 635.1 295.83 635.1 179.59 624.21 167 611.96 153.75 591.85 151.83 355.21 150.5"/><polygon class="cls-6" points="161.71 172.5 161.21 48.46 229.21 34.5 366.21 34.5 366.21 148.95 355.21 150.5 354.38 177.49 227.43 179.46 161.71 172.5"/><path class="cls-7" d="M345.88,628.62a19.34,19.34,0,0,0-3.63,1.85c-2.64,1.58-5.9,2.39-8.78,3.45-3.7,1.36-7.63,3.4-11.49,4.23L304,642l-23,.65-32.85-9.12-7.9,6.43-9.5,4.29-10.13,2L217.74,642l4.69-12.72,8.29-7.88-10.09-12.88-6.8-21.21c-.15-4.54-.28-9.09-.46-13.63-.3-7.38-4.83-1.22-7.93-5.12-2.19-2.75,1.31-8.37,2.14-11.07,1.07-3.46,3.65-6.93,4.39-10.37.4-1.85-.79-3.32-.72-5.08,0-1.19.59-1.75.76-2.79.45-2.78-.62-5.74-.77-8.51a117.36,117.36,0,0,0-1.67-11.85c-.45-2.87-.2-6.63-2.31-8.89-1.73-1.86-4.94-2-6.25-4.25-1.1-1.9.2-3.86,0-6-.46-5.23-3.43-9.56-5.81-14.05l-6.84-12.87-8.25-15.52-7.75-20.06,1.3-22.67L182,391.63l3.62-6.63-6.09-2.31-4.76-8.25-.58-11,2.6-4.53,6.43-3.44,5.21,1.25,9.51,9L222.55,355l38.54-8.5,1-7.65,2.74-5.2,5.88-1,3.44,2.58,4.14,9.6,24,.7,32,5.52L350,363.07l8.4-3.82L373.94,355l11.35.35,4.29,3.65L365.95,378.2l6.22,22,14.59,20.54,7.77,6.22-.82,12.28-.82,3.44L343,454.5c-.52.12,6.72,41.69,7.34,45.53.84,5.22,1.15,10.56,2.18,15.72a45.42,45.42,0,0,1,.49,8.61V535.8c0,3.16-.7,9.73,1.75,12.08,1.49,1.43,2.23-.07,3.76.62,2.49,1.13,3,8.54,3.63,11.14L365,572.22c1.27,5.54,3,11.17,3.86,16.79l6.24,40.78,3.37,3.93,3.22-.31.51,6.09-8.08,3.15c-7.9-3.34-15.36-6.95-21.87-12.71a6,6,0,0,0-1.84-1.28A6.58,6.58,0,0,0,345.88,628.62Z" transform="translate(-60.79 2.5)"/><path class="cls-8" d="M367.71,375s25.05-15.79,25.17-15.79,4.73,6.38,4.73,6.38l6.18,19.06-3.15,14-5.14,6.35-5.92,2.45-5.69-4.41-4.45-2.88.39-7.3L371,391.63Z" transform="translate(-60.79 2.5)"/><polygon class="cls-8" points="268 386.47 240.1 389.87 209.14 394.5 194.94 395.41 192.21 407.55 197.47 425.94 207.9 439.05 220.17 446.08 230.11 448.31 240.1 448.06 252.46 444.82 262.21 437.75 268.24 430.09 273.17 419.72 275.01 407.55 273.81 397.65 268 386.47"/><path class="cls-2" d="M362.47,402.31a4.84,4.84,0,0,0,1.79,1l3.11,1.18a10.32,10.32,0,0,0,3.91.92c2.44-.07,4.46-1.82,6.24-3.49a6,6,0,0,0,2.17-3.23A4.82,4.82,0,0,0,378,394.8c-2.45-2.47-7.94-4.68-11.46-3.35C363.61,392.55,359.91,399.72,362.47,402.31Z" transform="translate(-60.79 2.5)"/><path class="cls-9" d="M355,414.41c.84,3.95,4.6,7.43,8.59,6.85,2.93-.42,5.19-2.74,7.93-3.87,4.64-1.92,9.9-.21,14.92-.33a5,5,0,0,0,2-.35,3.89,3.89,0,0,0,1.84-4.23,10.3,10.3,0,0,0-2.31-4.34q-2.11-2.7-4.46-5.2c-1.22-1.3-3-2.65-4.61-1.88a6.15,6.15,0,0,0-1.74,1.69,7.77,7.77,0,0,1-7,2.48c-3.49-.58-7.21-4.17-10.76-2.09S354.24,410.71,355,414.41Z" transform="translate(-60.79 2.5)"/><g class="cls-10"><path class="cls-8" d="M368.81,388.34l-1.1-23.69s8.48-17.33,8.09-18,6.68-6.06,6.68-6.06l13-1,8.29,1.85,9.82,12.28,7.21,15.07L424.21,386l-4.71,21.73-6.39,11.59-8.61,4.11L390.36,422l-5.08-3.31,3.67-3.79v-5.42l-4-6.79-5.56-2.47-1.51-7.57Z" transform="translate(-60.79 2.5)"/></g><g class="cls-10"><polygon class="cls-8" points="226.66 366.6 237.24 361.46 250.18 361.46 265.7 366.6 279.96 384.01 285.01 395.42 287.35 407.55 286.4 422.15 279.23 440.12 268 452.2 253.91 456.94 235.27 454.47 220.17 446.08 208.28 425.94 205.61 398.57 213.7 378.9 226.66 366.6"/></g><g class="cls-11"><path class="cls-8" d="M409,439.75c2.36,4.34,2.22,12.12,2.69,17.5.09,1.06-.14,3.22.56,4,1.48,1.65,1-.36,2.56-.69.63-.14,1.51.46,1.75.39.58-.16,1.31-1.06,1.76-1.16,1.15-.24,3,.52,4.19,0,.76-.35,1-1.35,1.69-1.59.86-.31,1.44.2,2.31.08,1.47-.21,4-2,4.8-.05,1.43.12,1.21-1.24,2.15-1.49.72-.19,1.17.59,1.7.51.9-.12,3.54-.38,4.45-1,2.39-1.52,1-8.77.9-11.83A110.37,110.37,0,0,0,439,431.52c-2.13,0-4.39,1.84-6.54,2.33-5.92,1.36-12,1.57-17.91,3.15" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-8" d="M536.5,417c-1.36,2.71.54,8.93,1.31,12,.62,2.48,1.22,5,1.73,7.46,1.31-.76,1.41-1.43,3-1.49a14.4,14.4,0,0,0,1.74.77c1.14.13,1.75-.4,2.77-.56,1.84-.29,4.55-.88,6.77-.28-2.06-4.24-3-8.94-3.79-13.6-.18-1,.13-3.81-.67-4.58C547.82,415.29,542.06,417.06,536.5,417Z" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-8" d="M547.25,294.25c0,9.83-1.48,19.55-1.25,29.38,0,1-.43,3.13,0,4,1.14,2.17,1,.14,2.53.12s2.27,1.32,4.2,1.26c1.21,0,2.66-.62,4-.76,3.52-.36,8.43.88,11.46,2.23.67-11.62-.15-23.39-.24-34.95-.89,0-1.82,0-2.72,0" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-8" d="M374.75,251c-.19,4,.75,8,.75,12,0,3.31-.18,6.68,0,10,.21,3.74.35,7.47.54,11.21,1.38.2,3.73-1.36,4.73-1,1.66.62.39,3.52,2.47,3.79,1.05.14,1.18-1.19,2-1.3s1.31.73,2,.73,1.89-.48,2.52-.4,1.11.91,1.41.91c4.59,0,3.49-6.39,3.58-10.1.13-5.21,1.23-10.28,1.25-15.49,0-1.39.84-6.83-.05-7.82-.59-.65-1.81-.24-2.59-.25-4.44,0-8.91.19-13.36.19" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-8" d="M106.25,316.25c-1.22.56-1,9.29-1,11.36,0,3.62.17,7.29,0,10.9-.18,4,.39,8.06.28,12,1.35-.75,2.9-3.06,4.67-2.25.54.25.24,1.64,1,1.93.91.36,1.25-.45,2.07-.48,1.63-.05,2.85.13,4.37-.9,2.49-1.67,1.66-4,1.38-7a76.43,76.43,0,0,1,.5-16.47c.16-1.27,1.52-4.07.75-5.3-1.56-2.48-7.92.65-10.25-1.75" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-8" d="M164.25,177.75c-1.19,3.13-.24,7.9-.49,11.31a68.35,68.35,0,0,0,.46,11.07c.29,3.43-.16,7.73,1.25,10.84,1-.46,1.46-1.42,2.82-1.47.78,0,2,.77,2.82,1,2.6.78,4.87,1.11,5.37-1.72,1.86-10.4-1.63-22.08,1-32.28" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-8" d="M314.75,177.5c0,7.1,1,13.7,1.73,20.63.29,2.92-.35,7.68,1,10.32,1.16,2.23.77.49,2.85-.06,2.62-.7,1.29.93,3.27,1.47.61.17,2.79-.54,3.55-.66a40.06,40.06,0,0,0,4.08-.44c.39-.1,2-.76,2.13-.74.87.11,1.12.85,1.65,1,1.47.41,3.44.31,4.72,1.27,2.09-1.86,1.25-6.75,1.25-9.29a111.45,111.45,0,0,1,.28-11.35c.43-4.23,2.08-8.41,2-12.67,0,.13-.45.23-.75.54" transform="translate(-60.79 2.5)"/></g><path class="cls-8" d="M638.75,149.5c0,7.67-.1,15.3-.27,22.94.64-1.54,2.45-3.17,4.22-2.9.54,3.11,1,3.66,3.49,1.74,1.22,3.69,3.36-.27,4.8-1s3.29.33,4.75,0c2-.47,2.21-2.73,2.48-4.73.72-5.42,1.62-10.88,2.52-16.27" transform="translate(-60.79 2.5)"/><g class="cls-11"><path class="cls-8" d="M565.25,4.5c-1.2,3.83-.25,9.22-.25,13.24s-.2,8.22.13,12.26c.34,4.2,1,8.33,1.41,12.49.65-.46,1.79-2.75,2.71-2.77.62,0,1.28,1.34,2,1.55-.51-.15,2.6-.36,2.12-.27.58-.11,1.29.45,2.08-.47,0,.81.59,1.27.81,1.76a1.44,1.44,0,0,1,1.94-.08c1.62-2.72,1.09-7.6,1.24-10.71s.35-6.07.57-9.07c.26-3.51-1.82-10.46-.26-13.18" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-8" d="M344,32c-.48,1,.06,2.92,0,4.3-.19,2.38-1.19,4.66-1.53,7-.46,3.24-.18,6.66-.18,9.93,0,4-.57,8.72.5,12.48,1.9-1.32,4.18-5.76,6.51-6,.23.57.47,2.78,1.23,3,1.51.34,1.67-2.51,2.77-2.78,1.7-.43,1.94,2.07,3.94.33,1,2.63,1.73,0,3-.48s2.08.81,3.71-.52c.4,1.15,1.06,2.27,2.23,2.45,1.38-2.07,1.35-4.43,1.62-6.86.37-3.41,1.16-6.53,1.19-10,0-4.25-.05-8.71,1.25-12.62" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-8" d="M247.5,41.25c-.35,3.5,1.76,7.33,2.25,10.81.25,1.81.14,4,1.25,5.48,1.82-3,4.84,1.18,5.79-1,6.84,1.07,2.63-13.17,5-16.54" transform="translate(-60.79 2.5)"/></g><g class="cls-11"><path class="cls-8" d="M709.67,295.33c2.33,3.49,2,11.62,2,16a48.19,48.19,0,0,1-1.63,14c1.82-1.77,2.28-.66,4.27-.64,1.46,0,2.63.09,4.2,0,4.21-.25,4.85.8,4.83-4.4,0-9,1.83-19.42,1.67-27.6" transform="translate(-60.79 2.5)"/></g><path class="cls-7" d="M372.5,517.5c-1,0-4.6-.61-5.25-.27-1.44.77-.83,5.27-1.06,7.08a86.53,86.53,0,0,0-.65,15.65c3.48.21,7.31-1.35,10.34-2.82,2.46-1.19,7-2.37,8.37-5,1.23-2.26-.15-5.42-1.3-7.43C380.22,520,375.95,520.66,372.5,517.5Z" transform="translate(-60.79 2.5)"/><path class="cls-8" d="M364,513.75c-1.64,0-3.47.25-5-.4-1-.43-1.89-2-2.87-2.21-2.63-.57-3.64,4.44-3.93,6.55-.65,4.7,0,9.78-.21,14.56-.18,3.54-.83,7.5-.49,11,.27,2.77,5.17,7.86,7,3.79,2.07,0,2.24,1.42,4.13-.47,2.36-2.36,2.43-8.28,2.58-11.46A89.06,89.06,0,0,0,364,513.75Z" transform="translate(-60.79 2.5)"/><path class="cls-8" d="M346.75,488.75c-4.43-.36-9,1.44-13.25,2.5s-8.35,2.19-12.6,2.12a119.23,119.23,0,0,0-14.92.71c-9.72,1-19.31,3-29,4.43-8,1.18-16.07.42-24.15.8a160.73,160.73,0,0,1-21.67-.3c-3.36-.3-6.5-1.24-9.81-1.71s-7.16.62-10.52,0c-2.57-.5-10.5-4.42-12.24-.89-1.1,2.24,1.65,9,3.37,10.62,1.91,1.8,3.77,2.19,5.08,4.74s1.34,5.38,2.05,8a61.06,61.06,0,0,1,2,12c.21,3.07-.48,6-.26,9,.41,5.51-1.6,10.3-2.13,15.74-.27,2.81-1.92,4.91-2.43,7.58-.45,2.35-1.55,4.24.74,5.47,1.78,1,4.4.33,6.33.6,4.14.59,8.24,1.38,12.37,2.18,10.84,2.11,23,2.42,34,1.95a173.24,173.24,0,0,1,25.22.5c7.15.72,14.39,1.51,21.56,1.87s13.5.73,20.7-.13c4.43-.53,8.73-1,13.2-1.3,3.77-.21,7.17-.5,10.6-2,2.85-1.28,10.28-3.3,11-6.25.81-3.33-1.57-7.8-2-11.1-.3-2.5-.36-4.25-1.34-6.51-5.43.15-6.21-5.74-6.47-10.28-.19-3.35,1.7-6.78,2.08-10.14a70.7,70.7,0,0,0,.18-8.57c-.06-4.81-1.46-9.9-2.56-14.55-.51-2.15-4.41-14.24-4.69-14.24" transform="translate(-60.79 2.5)"/><path class="cls-8" d="M367.67,422.33c-.24-.33.24-.54-.26-.66-.48,7.73,6.38,11.62,12.85,8.57,5.41-2.54,7.2-11,.74-12.92A11.57,11.57,0,0,0,367.67,422.33Z" transform="translate(-60.79 2.5)"/><path class="cls-12" d="M231,391.5c-3,2.57-14.36,15.14-8,18.65C227.9,412.85,231.23,401.12,231,391.5Z" transform="translate(-60.79 2.5)"/><path class="cls-12" d="M230.5,419c-3.25,2.7-10.29,24.24-2.73,21.27C233.1,438.17,229.89,425.67,230.5,419Z" transform="translate(-60.79 2.5)"/></g><g id="shadows"><g class="cls-3"><polygon class="cls-4" points="161.21 48.46 229.21 34.5 229.19 179.59 354.38 179.59 198.21 202.51 165.27 179 161.71 172.5 161.21 48.46"/></g><g class="cls-3"><path class="cls-4" d="M412.5,180c-9,23.6-18.5,48.61-25.84,72.42a252.61,252.61,0,0,0,28.76,0c.84-14.23.89-28.77,1.08-43C416.62,200.39,413.53,192.41,412.5,180Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M290,251c-10.86,19.34-26.07,40.4-36,61.4,11.67,1.24,25-.47,36.87-1C291,291.92,291.49,272.44,290,251Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><polygon class="cls-4" points="138.57 177.49 78.21 179.59 78.21 315.24 138.57 316.5 138.57 177.49"/></g><g class="cls-3"><polygon class="cls-4" points="19.21 316.5 83.21 324.62 83.21 489.21 16.52 476.5 19.21 316.5"/></g><g class="cls-3"><polygon class="cls-4" points="354.64 254.92 229.21 253.5 229.19 316.5 284.48 316.5 352.71 324.5 352.71 354 354.64 387.5 375.37 390.84 373.21 297.5 354.38 296.75 354.64 254.92"/></g><g class="cls-3"><polygon class="cls-4" points="373.21 297.5 373.21 390.49 499.03 390.84 497.21 418.17 519.23 416.91 535.94 484.5 619.21 484.5 621.21 297.5 535.86 298.09 537.21 150.5 354.38 150.5 354.38 296.75 373.21 297.5"/></g><g class="cls-3"><path class="cls-4" d="M408.5,254.5c-1.72,11.63-.54,23.82-1.84,35.55-.81,7.35-1.51,14.57-1.7,22.27a66,66,0,0,1,17.46-1.74c.89,16.3-1.28,32.82-1.95,49.07-.4,9.85.58,19.49,1.1,29.27,3.85-.45,7.23-1.33,11.34-1.5,6-19.23-.34-41,.59-60.82.14-3-.42-8.29,1.69-10.16,2.33-2.07,11.37-2.31,14.31-2.47,22.9-1.22,45.35-4.54,68-7.48,15-1.94,29.77-6.35,44.85-7,5.65-.24,10.71-.52,16.1-2.13,4.42-1.32,12.76-1.92,15.73-4.76-19.4-3.52-39.12-1.68-58.76-2.1-21.15-.45-42.22,0-63.38,0-13.56,0-27.86,2.62-41.3.54-2.23-.35-4.87-.59-6.85-1.92-3.59-2.41-3.44-5.78-4.67-10.64-1.16-4.63-1.79-24.93-5.74-26.48" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><polygon class="cls-4" points="475.7 2.59 339.21 7.5 339.21 34.5 366.21 34.5 366.21 149.74 475.7 151.07 475.7 2.59"/></g><g class="cls-3"><path class="cls-4" d="M341.85,454.31,502,417.85l38.69,179L375.87,633.72l-10.22-53.87-3-15.57c-1.05-5.55-3.3-11.65-3.17-17.26,3.09,1.72,5.12-1.35,5.72-4.28.92-4.53.23-4.23,5.51-4.25,4.9,0,8.53-2.82,12.31-5.76,4.51-3.52.94-6.64-2-10-4.31-4.86-8.66-5.73-15-6.07,0-9.28-10.17-1.72-12.72-8.82-1.68-4.67-2.19-10.14-3.22-15L343,459.5C342.9,459.23,341.84,454.32,341.85,454.31Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M261.67,345.33c.71-3-1.64-12.36,3.83-12.33,4.53,0,2.93,9.79,2.79,12.95-2.3.13-4.85-.24-7,.72" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M185.67,384.33c-6.22,1.13-9.76-9-10.41-13.68-.87-6.31.63-9.24,5.5-13,.47.32.22.28.4.2.73,3.17-1.09,6.15.92,9.13,1.49,2.22,4.23,2.45,6.3,3.52-1.15-.91-2.45-1.66-2.5-3.15,2,.39,4.4,4.37,6.46,3.11,1.5-.91,1.11-5.52.46-6.75,4.1.69,4.17,4.81,2.71,7.25-2.34,3.9-10.33,10.17-9.43,14.94C186.3,385.68,186.39,385.36,185.67,384.33Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M246.31,350.72c-1.27,1.27-3.4,2.11-5.06,3.18-3.34,2.15-6.16,5-9.25,7.45a83.09,83.09,0,0,0-12.87,12.81c-6.32,7.81-10.75,19.13-12.07,29.1-1,7.23.18,15.24.94,22.44.89,8.47,1.71,17.31,5.26,25.15,6.2,13.7,14.95,28.54,27.78,37,4.94,3.24,10,7.2,15.71,9,4.31,1.39,8.84,1.24,13.23,2.23-3.06,3.07-9.28,2.33-12.72,5.42-2.88,2.59-2.79,5.92.95,7.19,1.69.58,4.05.24,5.86.63,2.82.61,5.36,1.53,8.3,1.71,3.71.23,7.52,0,11.24,0-4.16,0-8.39-.24-12.26,1.54-3.43,1.58-7,2.52-10.31,4s-5.71,4.56-8.28,6.88c-3.22,2.91-6.67,8-2.12,11.25,3,2.13,10.59,2.31,12.25,6.16,1.73,4-4.14,4.18-6.95,4.75-3.63.74-9,1.22-6.26,5.77,2.29,3.86,5.3,3.53,5.33,8.58,0,3.45-1.43,6.07,1.66,8.07s8,1.95,11.52,2.83A65.85,65.85,0,0,0,285.33,576c3.28,0,9-.88,11.31,1.67-5.49,3.45-15.75,3-22.13,4.33-3.3.67-9.6,1.64-11.55,4.74-1.42,2.26-.69,6.78-.06,9.21,1.12,4.33,5,7,8.11,9.71,7.07,6.19,11.31,14.54,20.31,18.52,7.76,3.43,18,3.45,26.41,3.9,5.7.31,12,.81,17.6-.09,1.3-.21,4.62-.53,5.43-1.89,1.26-2.12-1.19-2.72-1.72-4.68,3.66-2.07,10.79,3,14,4.44,3.72,1.65,7.76,2.41,11.4,4.31,2.53,1.33,5.48,3.6,8.5,3.16a27.55,27.55,0,0,0,.48-13.23c-.43,3.89,3.95,16.67,8.8,14.5.53,2.9.1,5.59-2.72,7-7.7,4-22.12-6.42-28.33-10.84-5.24-3.74-6.78-.89-12.26,1.34s-11.38,3.62-17.24,5.13c-13.27,3.42-27.45,4.4-41.22,3.74-6.22-.3-11.5-2.13-17.13-4.47-2.59-1.07-5.4-1.43-8-2.46-1.61-.64-3.45-2.28-5.33-2.07-2.44.27-4.62,4.29-7,6-4.84,3.47-16.18,13.83-22.49,9s-.22-12.28,3-17.15c2.25-3.4,4.66-6.16,5.47-10.1-7-4.26-11.11-13.77-13.31-21.1-2.79-9.27-6.33-20.47-2.68-29.91-2-.35-6,1.29-7.57-.06s-.53-5.59,0-7.34c.93-3.08,2.16-6.15,3.31-9.15.73-1.92,2.61-5.11,2.37-7.18-.1-.91-1.35-1.87-1.35-2.4,0-2,.85-1.63,1.28-2.93,1.06-3.16.25-6.76-.33-10.16-.71-4.15-2.2-8.09-3.37-12.11-.56-1.91-.78-6.27-2.05-7.67-.93-1-2.91-.38-3.93-1.12-1.66-1.21-1.44-2.7-1.74-4.63-.69-4.47.35-8.63-1.27-12.86-1.95-5.08-5.41-9.49-8.65-13.8-2.05-2.73-4.34-5.08-5.69-8.32-1.9-4.58-2.83-9.51-4.9-14-3.89-8.46-5.68-16.8-6.42-26.21a54,54,0,0,1,8-31.47c3-4.62,4.06-9.85,7.65-14.39,6.72-8.49,11.63-17.25,21.5-22.32C221.14,354.82,233.33,349.9,246.31,350.72Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M273.67,368.33c-1.13-4-10.12,5-11.35,6.5-3.26,3.95-6,6.85-7.91,11.76a50.11,50.11,0,0,0-1.75,31.1c2.35,8.41,7.94,19.78,14.9,25.18,8.52,6.6,20.57,8.32,31.14,7.47,7.79-.62,14.35-5.58,19.9-10.8a50.14,50.14,0,0,0,11.1-16.46c-2,6.48-13.41,14.93-19.84,16.73-7.47,2.09-18.4,4.18-25.55.2-12.48-7-24.38-25.35-15.32-39.27,1.93-3,4.76-6,8-7.44,2.18-1,7.74-1.36,8-4.23-4.36-1.48-9.49.89-13.33-2.77-1.72-1.63-3-5.48-3.35-7.8C267.7,374.2,270,374,273.67,368.33Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M359.67,386.67c-4.3.06-10.59,3.22-11.17,7.85-.33,2.66.75,9.09,2.09,11.12,2-3.53,2.56-7.41,5.28-10.79,3.21-4,5.34-3.32,10.09-3.56C364.29,386.61,362.59,383.8,359.67,386.67Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M360.33,402.67c-2.91.29-6.34,5.53-7,8.35a16,16,0,0,0,1,8.82c1.31,2.8,4.78,4.71,7,7,2.44,2.46,3.76,5.82,6.19,8.2,4.57,4.46,10.14-.65,11.77-5.29-4.84,1.22-7,2.58-8.76-3.54-1.17-4.17.93-5.16,3.54-7.84,1.11-1.15,3.21-1,1.6-2.67-1.4-1.43-5.15.3-6.75.42-2.58.19-4.06-.07-5.6-2.48C362,411.52,359.72,407.17,360.33,402.67Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M359.67,358.33c-.76.31-6.6,4-6.82,4.65-.49,1.41,2.81,4.23,3.75,5.6,2.32,3.38,6.22,6.22,7.66,10a8,8,0,0,0-.28-1.18,30.47,30.47,0,0,0,2.79,7.56c.88,1.57,3.17,6.14,4.59,7.15,2.35,1.66,3.71-1.5,6.4,1.84,1.45,1.79,3,5.84,2.28,7.93,3.41,1.11,4.83,2.88,7.61,4.73,2.32,1.54,1.94,1.59,4.19-.58,1.35-1.3,3.83-4,4.12-5.72-3.86,1.79-7.87,1.35-10.92-1.69s-6.29-6-9.56-9c-2.79-2.59-5-5-4.83-8.95.13-2.92,2.57-6.66,2-9.33C366.92,372.31,363.62,363.75,359.67,358.33Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M341,454.67c-4.14,3.75-3.56,16.7-4.66,22.34-.85,4.35-3.51,10.22-3,14.61,4-.2,7.16.24,6.62,4.9-.45,3.82-5.52,4.61-4.63,8.09,2.95,1.11,6.66,1.29,7,5.23.39,5-5.31,1.2-8.28,1.55-1,2.37,5.49,3.72,6.64,4.42s1.78,1.62,3.23,2.23,3.23.49,4.56,1.5c2.28,1.73,1.85,4.47,4.18,6.17,2.35-2.21-.25-7,3-8.41,1.49,1.3.19,3.11,2.35,3.71,3.27.9,2.13-2.54,3.66-3.83,3.18-2.68,2.27,5.63,2.39,7.79,2.19-1.18,3.11-.88,5.36.12,1.51.67,6.09,2.23,6.62,3.59,1.42,3.68-6.64,8.48-8.25,11,2.05,1.28,10.43-3,12.74-4.34a10.33,10.33,0,0,0,4.82-6.82c1.65-7.43-5.83-10.9-12.25-11.55-3.49-.35-3.25.33-5.57-2-3.24-3.23-4.07-2.28-8.2-2.66-1.23-.11-6-.63-6.92-1.32-1.46-1.12-1.27-4.38-1.59-5.86-.75-3.48-2.39-6.71-3.1-10.21-1.46-7.27-1-14.8-2.22-22.12-.81-5.08-2.44-10.34-2.17-15.51" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M350.67,541c-3-.23-6.11.62-9,1.25-3.12.68-3.7.34-3.57,3.08.17,3.43,3.3,4.68,4.94,7.07,1.28,1.87,2.56,5.74,3.23,7.93,1.2,3.91,1.76,8.4-1.57,11.42-3.64,3.3-9.51,1.66-12.73,4.58,1.34,1.83,7.16,1.55,9.67,2.25,3.09.86,6.73,1.93,8.65,4.76,3,4.38,3.42,10.73,6.07,15.46,1.72,3.06,2.83,6,5.24,8.52,3.08,3.27,6.61,6.19,9.69,9.4,1.18-15.4-6.86-29-8.6-43.82-.71-6.11-1.3-12.15-1.6-18.31-.08-1.64.39-4.13-.59-5.22-1.18-1.31-5.14-1.94-6.81-3.7" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M384.67,530c.3,8.5-6.07,13.8-11.35,19.33-3.39,3.55-4.81,8.52-5,13.33-.25,7.06.67,13.93.67,20.93,0,5.53-.81,11.5-.34,16.93,1.65-11.38-.9-24.65-4.25-35.53-1.69-5.47-3.45-11.3-3.69-17,6.54,1.48,5.79-3.28,6-8,2.64-.59,5.35-.85,8-1.37,3.17-.61,6.32-2.67,9.27-3" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M435.35,507.66c-4.24,1.67-9.4-.44-13.87-.81-3.78-.31-7.49-1-11.29-1.06-1.72,0-6.63-1.22-8.09-.41-3.43,1.92,3.15,5.19,5.13,6.06a124.84,124.84,0,0,0,16,6.13c10.08,2.86,22.82,1.09,32.08-3.58,7.21-3.64,10.57-8.8,15.72-14.36-5.8,2.45-10.79,5.86-17.25,6.83A116.77,116.77,0,0,1,435.35,507.66Z" transform="translate(-60.79 2.5)"/></g><g class="cls-3"><path class="cls-4" d="M435,527c-2.45,0-4.91,0-7.33,0-4.11,0-3.83,1.13-.38,2.87,5.4,2.72,21.11,6.84,22.34-3.47-3.72-.21-7.54-.06-11.29-.06" transform="translate(-60.79 2.5)"/></g><g class="cls-13"><path class="cls-8" d="M403.49,349.46c-1.42-2-4.26-1.57-6.78-1.52a3.17,3.17,0,0,0-.93,1.51c-2.56,3,4.57,9.28,6.21,12.51,2.07,4.1.56,13.79,3.3,16.77,6.24,6.81,5.75-10.13,5.15-13.27C409.27,359.45,406.45,355.81,403.49,349.46Z" transform="translate(-60.79 2.5)"/></g><g class="cls-13"><path class="cls-8" d="M322,374c-1.2-3.64-13.68-1.56-7.75,5.24,2.13,2.44,6.18,3.72,8.74,5.76a26,26,0,0,1,7.41,8.5c2,4,2.86,14.65,6.09,17,4.07,3,5.05-1,5.51-4.24.83-5.84-1.21-10.45-3.71-15.46C334.78,383.79,330.24,379.88,322,374Z" transform="translate(-60.79 2.5)"/></g></g><g id="DETAILS"><path class="cls-2" d="M391.56,572.73a1,1,0,0,1-.25-2l33.32-8.69a1,1,0,0,1,.5,1.94l-33.32,8.69A1,1,0,0,1,391.56,572.73Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M398.8,603.88a1,1,0,0,1-.93-.63c-4.16-10.56-5.82-20.87-7.3-31.38a1,1,0,1,1,2-.28c1.46,10.39,3.1,20.57,7.18,30.93a1,1,0,0,1-.93,1.37Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M398.8,603.88a1,1,0,0,1-.24-2c11.3-2.76,24.26-5.85,34.69-7.87a1,1,0,1,1,.38,2c-10.39,2-23.32,5.09-34.6,7.85A1,1,0,0,1,398.8,603.88Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M433.44,596a1,1,0,0,1-.92-.61c-2.65-6.23-4.23-13.44-5.76-20.4-.92-4.17-1.78-8.11-2.84-11.69a1,1,0,0,1,1.92-.57c1.08,3.65,2,7.62,2.87,11.83,1.51,6.88,3.07,14,5.65,20a1,1,0,0,1-.92,1.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M430.55,564.05a1,1,0,0,1-.25-2l33.32-8.69a1,1,0,0,1,.5,1.94L430.8,564A1,1,0,0,1,430.55,564.05Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M437.79,595.21a1,1,0,0,1-.93-.63c-4.16-10.56-5.82-20.87-7.3-31.38a1,1,0,1,1,2-.28c1.46,10.39,3.11,20.57,7.18,30.93a1,1,0,0,1-.93,1.37Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M437.79,595.21a1,1,0,0,1-.24-2c11.3-2.76,24.26-5.85,34.69-7.87a1,1,0,1,1,.38,2c-10.39,2-23.32,5.09-34.6,7.85A1,1,0,0,1,437.79,595.21Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M472.43,587.35a1,1,0,0,1-.92-.61c-2.65-6.23-4.24-13.44-5.76-20.4-.92-4.17-1.78-8.11-2.84-11.69a1,1,0,0,1,1.92-.57c1.08,3.65,1.95,7.62,2.87,11.83,1.51,6.88,3.07,14,5.65,20a1,1,0,0,1-.92,1.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M469.54,555.13a1,1,0,0,1-.25-2l33.32-8.69a1,1,0,1,1,.5,1.94l-33.32,8.69A1,1,0,0,1,469.54,555.13Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M476.78,586.28a1,1,0,0,1-.93-.63c-4.16-10.56-5.82-20.87-7.3-31.38a1,1,0,1,1,2-.28c1.46,10.39,3.11,20.57,7.18,30.93a1,1,0,0,1-.93,1.37Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M476.78,586.28a1,1,0,0,1-.24-2c11.31-2.76,24.27-5.86,34.69-7.87a1,1,0,0,1,.38,2c-10.38,2-23.31,5.09-34.6,7.85A1,1,0,0,1,476.78,586.28Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M511.42,578.43a1,1,0,0,1-.92-.61c-2.65-6.23-4.23-13.44-5.76-20.4-.92-4.17-1.78-8.11-2.84-11.69a1,1,0,1,1,1.92-.57c1.08,3.65,1.95,7.62,2.87,11.83,1.51,6.88,3.07,14,5.65,20a1,1,0,0,1-.92,1.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M411,594.15a1,1,0,0,1-1-.75,147.58,147.58,0,0,1-3-14.59,1,1,0,0,1,2-.3,146,146,0,0,0,2.94,14.39,1,1,0,0,1-1,1.25Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M404.8,579.33a.31.31,0,0,0,0,.19c0,.18.32.13.49,0a15.4,15.4,0,0,1,5.9-1.86,13.93,13.93,0,0,1-2.23-2.31c-.38-.46-1.53-2.3-2.17-2.28-.82,0-.82,2.22-.95,2.8A23.77,23.77,0,0,1,404.8,579.33Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M417.37,592.77a1,1,0,0,1-1-.75,147.58,147.58,0,0,1-3-14.59,1,1,0,0,1,2-.3,146,146,0,0,0,2.94,14.39,1,1,0,0,1-1,1.25Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M411.2,578a.31.31,0,0,0,0,.19c0,.18.32.13.49,0a15.4,15.4,0,0,1,5.9-1.86,13.93,13.93,0,0,1-2.23-2.31c-.38-.46-1.53-2.3-2.17-2.28-.82,0-.82,2.22-.95,2.8A23.77,23.77,0,0,1,411.2,578Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M408.18,597.66a1,1,0,0,1-.14-2,113.17,113.17,0,0,0,12.62-2.59,1,1,0,0,1,.51,1.93,115.38,115.38,0,0,1-12.84,2.63Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M455.14,587.53l-.29,0a3,3,0,0,1-2.33-2.1,16.6,16.6,0,0,1-.68-2l-2.24-7.76a1,1,0,1,1,1.92-.55l2.24,7.76a14.83,14.83,0,0,0,.59,1.77c.22.52.52.88.75.91a.8.8,0,0,0,.62-.44,4.3,4.3,0,0,0,.38-1.52,1,1,0,0,1,2,.26,6,6,0,0,1-.64,2.26A2.74,2.74,0,0,1,455.14,587.53Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M443.83,577.65a1.81,1.81,0,0,1-1.5-.64c-.86-1.07,0-2.7.28-3.23a9.06,9.06,0,0,1,5.24-4.79,13.43,13.43,0,0,1,5.21-.59,7.57,7.57,0,0,1,4.56,1.92c.75.55,2.14,1.58,2.24,3.18a1,1,0,0,1-.77,1c-3.13.75-6.31,1.44-9.45,2.06-.59.12-1.19.21-1.79.31a28,28,0,0,0-2.87.56A4.39,4.39,0,0,1,443.83,577.65Zm8.13-7.28a10.64,10.64,0,0,0-3.46.52,7.11,7.11,0,0,0-4.12,3.83,4.21,4.21,0,0,0-.38.92,3.18,3.18,0,0,0,.45-.09,29.36,29.36,0,0,1,3.08-.61c.58-.09,1.15-.18,1.72-.3,2.74-.54,5.51-1.14,8.25-1.78a6.36,6.36,0,0,0-1.07-.93,5.68,5.68,0,0,0-3.49-1.53Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M449.68,569.86a1,1,0,0,1-.95-.68l-.65-1.95a1,1,0,1,1,1.89-.64l.66,2a1,1,0,0,1-.95,1.32Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M487.63,569.34a7.54,7.54,0,0,1-2.89-.62,4.08,4.08,0,0,1-1.66-1.15,4.62,4.62,0,0,1-.81-2l-1.89-9.07a1,1,0,0,1,2-.41l1.89,9.07a3,3,0,0,0,.41,1.2,2.27,2.27,0,0,0,.87.55,5.12,5.12,0,0,0,2.67.42,2.93,2.93,0,0,0,2-1.2c.79-1.21.35-3-.12-4.65L488.21,555a1,1,0,0,1,1.92-.56l1.89,6.42c.6,2,1.14,4.39-.12,6.31a4.88,4.88,0,0,1-3.42,2.08A5.85,5.85,0,0,1,487.63,569.34Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M481.41,557a1,1,0,0,1-.38-1.93,10,10,0,0,1,2.29-.55l5.71-.89a1,1,0,1,1,.31,2l-5.71.89a8.28,8.28,0,0,0-1.84.43A1,1,0,0,1,481.41,557Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M490.11,579a1,1,0,0,1-1-.73c-.84-3-1.53-6.16-2.07-9.27a1,1,0,0,1,2-.34c.53,3,1.21,6.1,2,9.07a1,1,0,0,1-1,1.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M486.73,580.72a1,1,0,0,1-.4-1.92,11.07,11.07,0,0,1,2.91-.69l.95-.14a13.12,13.12,0,0,0,2.83-.84,1,1,0,1,1,.78,1.84,15.09,15.09,0,0,1-3.26,1l-1,.16a9.4,9.4,0,0,0-2.39.54A1,1,0,0,1,486.73,580.72Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M539.23,438.62h-.05a1,1,0,0,1-.92-.76,100.06,100.06,0,0,1-2.75-19.47,1,1,0,1,1,2-.08,98.07,98.07,0,0,0,2.08,16.38q.29-.45.62-.87a1,1,0,0,1,1.55,0,3,3,0,0,0,1.45,1.13.67.67,0,0,0,.6-.23,1,1,0,0,1,1.91-.48.66.66,0,0,0,.78.29,2.38,2.38,0,0,0,.25-.15,2.75,2.75,0,0,1,1-.43,2.79,2.79,0,0,1,1.72.3l.35.14h.05a1,1,0,0,1,1.57-.38,4,4,0,0,0,1.15.68c-1.13-6.06-2.51-12.14-4.09-18.09a1,1,0,1,1,1.93-.51c1.72,6.47,3.2,13.1,4.39,19.69a1,1,0,0,1-.23.83.94.94,0,0,1-.79.34,6.06,6.06,0,0,1-2.82-.83,2.28,2.28,0,0,1-1.79.15c-.17-.06-.34-.13-.52-.2a2,2,0,0,0-.52-.18,1.72,1.72,0,0,0-.28.16,4.4,4.4,0,0,1-.47.27,2.6,2.6,0,0,1-2,.06l-.29-.12,0,0a2.66,2.66,0,0,1-2.24.61,3.67,3.67,0,0,1-1.69-.87,10.64,10.64,0,0,0-.95,2A1,1,0,0,1,539.23,438.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M413.45,463.26a1,1,0,0,1-.8-.4c-1.36-1.8-1.36-4.11-1.36-6.14v-.54a34.58,34.58,0,0,0-3.39-14.73,1,1,0,1,1,1.8-.87,36.62,36.62,0,0,1,3.59,15.59v.55a13.41,13.41,0,0,0,.31,3.6l.66-.92a1,1,0,0,1,1.67.06.37.37,0,0,0,.31.11.38.38,0,0,0,.31-.12l.07-.15a2.15,2.15,0,0,1,.55-.8c1.06-.91,2.17-.05,2.7.36a3.14,3.14,0,0,0,.62.41.21.21,0,0,0,.19,0,3,3,0,0,0,1-1.69,1,1,0,0,1,1.81-.24,2,2,0,0,0,3.34-.39,1,1,0,0,1,1.69-.34,3.62,3.62,0,0,0,2.06,1.31.43.43,0,0,0,.31-.13,2.09,2.09,0,0,0,.27-.51,4.56,4.56,0,0,1,.43-.81,2.72,2.72,0,0,1,2.6-1.06,3,3,0,0,1,1.39.55l.45-.45a1,1,0,0,1,1.59.25.43.43,0,0,0,.78-.35,1,1,0,0,1,1.77-.91,2.4,2.4,0,0,0,.38.45l-1.72-21.17a1,1,0,0,1,2-.16l1.86,22.86a1,1,0,0,1-1.15,1.07A4.46,4.46,0,0,1,440,457a2.36,2.36,0,0,1-.95.8,2.48,2.48,0,0,1-2.26-.15l-.54.54a1,1,0,0,1-1.64-.35.78.78,0,0,0-.64-.4.79.79,0,0,0-.72.23,3,3,0,0,0-.23.46,3.62,3.62,0,0,1-.64,1.07,2.39,2.39,0,0,1-1.79.77,4.43,4.43,0,0,1-2.59-1.09,4,4,0,0,1-2.48,1.18,4.09,4.09,0,0,1-2.49-.47,3.7,3.7,0,0,1-1.47,1.51,2.18,2.18,0,0,1-1.77.1,4.43,4.43,0,0,1-1.15-.7l-.26-.2-.09.18a2.34,2.34,0,0,1-2,1.14,2.22,2.22,0,0,1-1-.18l-1,1.45a1,1,0,0,1-.8.42Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M568,334.05a2,2,0,0,1-1.63-.84q-.62-.86-1.14-1.78a2.62,2.62,0,0,1-1.57.53,3.26,3.26,0,0,1-2.43-1.15l-.8-.81a3.77,3.77,0,0,1-4.27.95,4,4,0,0,1-1.4-1.09l-.28.46a2.83,2.83,0,0,1-4.34.92l-1.78-1.15a13.94,13.94,0,0,1-1.61,1.75,2,2,0,0,1-3.34-1.73,114.37,114.37,0,0,0,.86-19.86c0-.71-.07-1.42-.11-2.13a46.28,46.28,0,0,1,.41-11.9,2,2,0,0,1,3.92.81,42.57,42.57,0,0,0-.33,10.87c0,.72.08,1.45.11,2.17a118.36,118.36,0,0,1-.32,15.26,2,2,0,0,1,.92.31l2.7,1.75,1.05-1.76a2,2,0,0,1,1.89-1,4,4,0,0,1,3,2.11l.21.31a4.35,4.35,0,0,0,.77-1.08,2,2,0,0,1,3.2-.48l1.59,1.62a2.92,2.92,0,0,1,2.11-1.48,2,2,0,0,1,1.14.17c.08-3.24-.09-6.52-.25-9.73-.35-7-.71-14.15,1.29-21.07a2,2,0,1,1,3.84,1.11c-1.81,6.28-1.48,12.83-1.13,19.77.27,5.39.55,11-.26,16.43a2,2,0,0,1-2,1.71Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M723.53,328.85a2,2,0,0,1-1.7-.94h0a3.37,3.37,0,0,1-1.62.17,3.55,3.55,0,0,1-1.3-.46,2,2,0,0,1-1.19.4,2,2,0,0,1-1.59-.77,4.51,4.51,0,0,0-1.65-1.3,8.46,8.46,0,0,1-2.29,2.39,2,2,0,0,1-3.14-1.52,48.11,48.11,0,0,1,.34-7.82c.06-.61.12-1.22.17-1.83a90.75,90.75,0,0,0-.81-22.43,2,2,0,0,1,3.95-.64,94.8,94.8,0,0,1,.84,23.42c-.06.62-.12,1.25-.18,1.87s-.15,1.48-.21,2.21a2,2,0,0,1,.52,0,8.49,8.49,0,0,1,3.76,1.46,3.43,3.43,0,0,0,4.1-.29h0c.07-9.84.45-19.76,1.14-29.55a2,2,0,0,1,4,.28c-.78,11.06-1.17,22.29-1.15,33.37a2,2,0,0,1-2,2Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M637.16,177a2,2,0,0,1-2-2.4,143.33,143.33,0,0,0,2.81-24,2,2,0,0,1,4,.13,147.05,147.05,0,0,1-1.22,14.67,2.79,2.79,0,0,1,2.14,1.26l1.59,2.13a3.5,3.5,0,0,1,.5-.66,3.06,3.06,0,0,1,4.17-.17l.15-.26a2,2,0,0,1,1.79-1,2,2,0,0,1,1.73,1.1q.29.58.56,1.17l1.26-1.74a2.6,2.6,0,0,1,2.63-1.2,63.58,63.58,0,0,0,2.49-16.74,2,2,0,0,1,2-2h0a2,2,0,0,1,2,2,67.58,67.58,0,0,1-4,22,2,2,0,0,1-2,1.32,2,2,0,0,1-1.54-.82l-1.84,2.54a3.31,3.31,0,0,0-4.89.84,2,2,0,0,1-1.91-.57l-.1-.11a3.58,3.58,0,0,1-.21.34,2,2,0,0,1-1.61.85,2.09,2.09,0,0,1-1.63-.81l-3-4.05L639,175.74A2,2,0,0,1,637.16,177Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M578.34,48.08a2,2,0,0,1-1-.25,5.11,5.11,0,0,1-2.11-2.27,3,3,0,0,1-1.94-.21,3.58,3.58,0,0,1-1.52-1.43,2,2,0,0,1-3.17-.08L568,43a18.65,18.65,0,0,0-.65,2.92,2,2,0,0,1-4-.28q0-18.63,0-37.26a2,2,0,0,1,2-2h0a2,2,0,0,1,2,2q0,14.29,0,28.57h0a2,2,0,0,1,1.76.82l.71,1q.19-.25.41-.48a2,2,0,0,1,3.22.4l1,1.85a2,2,0,0,1,1.76-1.37c-.05-9.67.38-19.39,1.28-29a2,2,0,1,1,4,.38A288.91,288.91,0,0,0,580.34,46a2,2,0,0,1-2,2.06Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M341.35,72.24a2,2,0,0,1-2-2.07c.46-12.23,1.44-24.6,2.91-36.75a2,2,0,1,1,4,.48c-1,8.09-1.74,16.27-2.27,24.44a2,2,0,0,1,2.25-.33,11,11,0,0,1,2.36,1.58l.3-.64a2,2,0,0,1,3.7.19l.48,1.37a3.47,3.47,0,0,1,2.3-1.8,2,2,0,0,1,1.66.4l.16.15.08-.15a2,2,0,0,1,2.43-.89q.18-.64.32-1.28a2,2,0,0,1,3.93.11q0,.25.09.51a2,2,0,0,1,2-1.12l2.38-24.32a2,2,0,0,1,4,.39l-3.12,31.83a2,2,0,0,1-3.57,1,8.93,8.93,0,0,1-.56-.81,2,2,0,0,1-3-.59l-.26-.48q-.31.63-.65,1.25a9.33,9.33,0,0,0-4.17,1,2,2,0,0,1-1.71-.68l-.2-.24a3.67,3.67,0,0,1-1.7,1.06,2.83,2.83,0,0,1-2.46-.47,2.94,2.94,0,0,1-.64-.68,2,2,0,0,1-3.08-.44,6.92,6.92,0,0,0-.75-1,31,31,0,0,1-3.55,8A2,2,0,0,1,341.35,72.24Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M250.94,60a2,2,0,0,1-2-1.71L246.6,42.31a2,2,0,1,1,4-.58L252,51.65a2,2,0,0,1,1.31.75l.35.44a2,2,0,0,1,2.52.09,3.33,3.33,0,0,1,.47.5,2.46,2.46,0,0,1,.74-.33,2,2,0,0,1,1,0,2,2,0,0,1,1.21-.66c.05-4.25.07-8.52,0-12.75a2,2,0,0,1,2-2,2,2,0,0,1,2,2c0,5.9,0,11.88-.12,17.78a2,2,0,0,1-3,1.67,5.14,5.14,0,0,1-.61-.43,2,2,0,0,1-2.39-.14,2.66,2.66,0,0,1-1.36.08A3.1,3.1,0,0,1,255,58.1a2,2,0,0,1-1.1.3,2,2,0,0,1-1-.27,2,2,0,0,1-1.82,1.81Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M340.36,215.29h-.1a2,2,0,0,1-1.83-1.51c0-.09-.06-.22-.1-.37a2,2,0,0,1-2.54-.55,5.77,5.77,0,0,1-.38-.57,1.5,1.5,0,0,0-2,.7,2.42,2.42,0,0,1-2.31-1.24,3.3,3.3,0,0,1-.73.66,3.23,3.23,0,0,1-2.57.42,3.9,3.9,0,0,1-1.72-.94L326,212a7.25,7.25,0,0,0-3.9.33,2,2,0,0,1-1.52-.63q-.69-.73-1.3-1.52l-.78,1.1a2,2,0,0,1-3.63-1,286.61,286.61,0,0,1-.45-32.05,2,2,0,0,1,2.08-1.91,2,2,0,0,1,1.91,2.08c-.37,8.76-.33,17.62.13,26.4a2,2,0,0,1,2.54.87q.33.6.71,1.16a13.67,13.67,0,0,0,5.52-1.38,2,2,0,0,1,1.48,2v.13a3.09,3.09,0,0,1,3.68-1.4,2.81,2.81,0,0,1,.86.51l.5-1a2,2,0,0,1,3.78.82l0,.35a2,2,0,0,1,1,2,3.47,3.47,0,0,1,.74.11,50.87,50.87,0,0,0,.36-7.37v-.84a208.41,208.41,0,0,1,1.46-24.08,2,2,0,1,1,4,.47,204.43,204.43,0,0,0-1.43,23.61v.84c0,4.07,0,8.28-1.47,12.29A2,2,0,0,1,340.36,215.29Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M388.18,290.76a2.88,2.88,0,0,1-2.64-1.93,2,2,0,0,1-2.78-.7l-.18.21a2,2,0,0,1-3.18-.19q-.27-.4-.56-.78a16.48,16.48,0,0,0-.57,1.72,2,2,0,0,1-3.93-.47l-1-34.89a2,2,0,1,1,4-.12l.84,28.28a2,2,0,0,1,1.56.52q.68.62,1.29,1.31.2-.34.38-.69A2,2,0,0,1,383.1,282a2,2,0,0,1,1.77,1l.06.11a2,2,0,0,1,3.53.81l.19.87.92-1.57a2,2,0,0,1,3.72.89q0,.2,0,.39l.06,0c1.1-7.19,2-14.54,1.41-21.78,0-.57-.1-1.13-.16-1.7a28.16,28.16,0,0,1,0-7.76,2,2,0,1,1,3.94.7,24.78,24.78,0,0,0,.07,6.67c.06.59.12,1.18.16,1.76.73,8.92-.66,17.76-2,26.32a4,4,0,0,1-6.32.89,2.86,2.86,0,0,1-1.82,1.19A2.66,2.66,0,0,1,388.18,290.76Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M176,215.44a2,2,0,0,1-1.12-.34,8,8,0,0,1-1.65-1.5l-.06.07a2,2,0,0,1-3,.23q-.18-.17-.35-.36a2,2,0,0,1-2.12-.32q-.42-.37-.82-.77l0,.15a2,2,0,0,1-3.94-.14,198.32,198.32,0,0,1-1.3-35.58,2,2,0,1,1,4,.21,194.37,194.37,0,0,0,.65,29.33h.13a2,2,0,0,1,1.72,1,10,10,0,0,0,.56.9l.19-.32a2,2,0,0,1,3.55.21,2,2,0,0,1,2.92.93,2,2,0,0,1,.22-.25,104.51,104.51,0,0,0-.31-12.64c-.42-6.48-.85-13.19.58-19.75a2,2,0,1,1,3.91.85c-1.31,6-.92,12.15-.5,18.64a89.68,89.68,0,0,1,.08,15.77,2,2,0,0,1-1.27,1.64l-.2.61a2,2,0,0,1-1.9,1.38Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M105.57,354.11a2,2,0,0,1-2-2.32,82.63,82.63,0,0,0,.84-19.26c-.09-1.22-.21-2.43-.32-3.65a61.71,61.71,0,0,1-.39-10.8,2,2,0,1,1,4,.32,57.8,57.8,0,0,0,.39,10.1c.12,1.25.24,2.49.33,3.74a86.64,86.64,0,0,1,0,13.21l.17.05a2,2,0,0,1,1.25,1.26,2,2,0,0,1,3.41-.55,2,2,0,0,1,2.72-.39c-.92-8.6.7-17.35,2.13-25.16a2,2,0,0,1,3.93.72c-1.59,8.64-3.24,17.58-1.78,26.27.41,2.42-.13,4.09-1.6,4.95a2,2,0,0,1-2.71-.67,2,2,0,0,1-1.35-.21,2,2,0,0,1-2.37-.24l-.42-.4a3.82,3.82,0,0,1-2.09.58,3.71,3.71,0,0,1-1.5-.36l-.84,1.69A2,2,0,0,1,105.57,354.11Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M312.16,134.92a.81.81,0,0,1,0-1.62L340,133a.83.83,0,0,1,.82.8.81.81,0,0,1-.8.82l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M311.72,160.82a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.55.44-26.09a.81.81,0,0,1,1.61.17c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M340.48,161.46h0c-8.56-.47-19.33-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M340.48,161.46a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,1.62-.07c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M344.5,135.77a.81.81,0,0,1,0-1.62l27.89-.27a.81.81,0,1,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M344.06,161.67a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.81.81,0,0,1,1.61.17c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M372.82,162.31h0c-8.55-.47-19.32-.58-28.72-.64a.81.81,0,0,1-.81-.81.8.8,0,0,1,.81-.81c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M372.82,162.31a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.8.8,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M376.88,136.43a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M376.44,162.33a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.55.44-26.09a.81.81,0,1,1,1.61.17c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M405.21,163h0c-8.57-.47-19.33-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.41.05,20.2.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M405.21,163a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.84.84,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M323.19,155.57a.81.81,0,0,1-.81-.8,119.45,119.45,0,0,1,.53-12,.81.81,0,1,1,1.61.15,117.78,117.78,0,0,0-.52,11.88.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M321.06,142.69a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,321.06,142.69Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M328.49,155.74a.81.81,0,0,1-.81-.8,119.74,119.74,0,0,1,.53-12,.81.81,0,1,1,1.61.15,118.08,118.08,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M326.36,142.86a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,326.36,142.86Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M359.46,159.08a1.87,1.87,0,0,1-.68-.13,2.44,2.44,0,0,1-1.42-2.11,13.4,13.4,0,0,1-.14-1.71L357,148.6a.81.81,0,1,1,1.62-.06l.24,6.54a12,12,0,0,0,.12,1.51c.07.45.23.79.41.86a.65.65,0,0,0,.57-.23,3.52,3.52,0,0,0,.6-1.12.81.81,0,1,1,1.5.6,4.84,4.84,0,0,1-.94,1.65A2.32,2.32,0,0,1,359.46,159.08Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M364.67,149.6h0c-2.6,0-5.24-.11-7.83-.24-.48,0-1-.07-1.46-.11a22.82,22.82,0,0,0-2.37-.12c-1,0-1.7-.28-2-.89-.46-1,.53-2.12.86-2.48a7.33,7.33,0,0,1,5.06-2.73,10.84,10.84,0,0,1,4.21.56,6.13,6.13,0,0,1,3.2,2.4,3.77,3.77,0,0,1,1.13,2.94A.81.81,0,0,1,364.67,149.6Zm-11.45-2.09c.77,0,1.54.07,2.28.13.47,0,.94.08,1.4.1,2.26.11,4.56.19,6.83.22a5.18,5.18,0,0,0-.66-.94,4.6,4.6,0,0,0-2.44-1.89,9.3,9.3,0,0,0-3.58-.49,5.76,5.76,0,0,0-4,2.2,3.41,3.41,0,0,0-.48.65,2.61,2.61,0,0,0,.37,0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M358.38,144.1a.81.81,0,0,1-.81-.75l-.13-1.66a.81.81,0,0,1,1.61-.13l.13,1.66a.81.81,0,0,1-.74.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M389.22,151.27l-.45,0a5.75,5.75,0,0,1-2.82-1.17,3.27,3.27,0,0,1-1.08-1.23,3.75,3.75,0,0,1-.23-1.76l.3-7.5a.82.82,0,0,1,.84-.78.81.81,0,0,1,.78.84l-.3,7.49a2.47,2.47,0,0,0,.09,1,1.72,1.72,0,0,0,.57.6,4.14,4.14,0,0,0,2,.86,2.37,2.37,0,0,0,1.83-.54c.86-.8.88-2.32.82-3.68l-.22-5.41a.81.81,0,1,1,1.62-.07l.22,5.41c.07,1.72,0,3.67-1.34,4.94A3.88,3.88,0,0,1,389.22,151.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M392.22,140.66h-.07l-4.66-.42a6.73,6.73,0,0,0-1.53,0,.81.81,0,0,1-.23-1.6,8.12,8.12,0,0,1,1.91,0l4.66.42a.81.81,0,0,1-.07,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M388.35,159.23a.81.81,0,0,1-.81-.79c-.06-2.56,0-5.14.2-7.69a.81.81,0,0,1,1.62.12c-.19,2.49-.25,5-.19,7.53a.81.81,0,0,1-.79.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M389.16,160.06q-.43,0-.86,0l-.83-.08a7.63,7.63,0,0,0-2,0,.81.81,0,0,1-.26-1.6,8.9,8.9,0,0,1,2.41,0l.78.07a10.65,10.65,0,0,0,2.38-.1.81.81,0,0,1,.25,1.6A12.24,12.24,0,0,1,389.16,160.06Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M436.16,110.93a.81.81,0,0,1,0-1.62L464,109a.85.85,0,0,1,.82.8.81.81,0,0,1-.8.82l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M435.72,136.83a.81.81,0,0,1-.8-.71c-1.19-9.11-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M464.49,137.47h0c-8.55-.47-19.32-.58-28.73-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M464.48,137.47a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75A.81.81,0,0,1,464,109a.84.84,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M468.5,111.78a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M468.06,137.69a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M496.82,138.33h0c-8.55-.47-19.32-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M496.82,138.33a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M500.89,112.44a.81.81,0,0,1,0-1.62l27.89-.27a.84.84,0,0,1,.82.8.81.81,0,0,1-.8.82l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M500.45,138.34a.81.81,0,0,1-.8-.71c-1.19-9.11-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M529.21,139h0c-8.55-.47-19.32-.59-28.73-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.22.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M529.21,139a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M447.2,131.58a.81.81,0,0,1-.81-.8,119.88,119.88,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.36,118.36,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M445.07,118.7a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,445.07,118.7Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M452.5,131.76a.81.81,0,0,1-.81-.8,119.9,119.9,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.39,118.39,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M450.37,118.88a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,450.37,118.88Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M483.46,135.1a1.87,1.87,0,0,1-.68-.13,2.44,2.44,0,0,1-1.42-2.11,13.51,13.51,0,0,1-.14-1.71l-.24-6.54a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78l.24,6.54a12.11,12.11,0,0,0,.12,1.51c.08.45.24.79.41.86a.64.64,0,0,0,.57-.23,3.54,3.54,0,0,0,.6-1.12.81.81,0,1,1,1.5.6,4.78,4.78,0,0,1-.94,1.65A2.32,2.32,0,0,1,483.46,135.1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M488.68,125.61h0c-2.61,0-5.24-.11-7.83-.24-.48,0-1-.07-1.46-.11a21.9,21.9,0,0,0-2.37-.12c-1,0-1.7-.28-2-.89-.46-1,.53-2.12.86-2.48a7.33,7.33,0,0,1,5.06-2.73,10.85,10.85,0,0,1,4.21.56,6.13,6.13,0,0,1,3.2,2.4,3.77,3.77,0,0,1,1.13,2.94A.81.81,0,0,1,488.68,125.61Zm-11.45-2.09c.77,0,1.54.07,2.28.13.47,0,.94.08,1.4.1,2.26.11,4.55.19,6.83.22a5.15,5.15,0,0,0-.66-.94,4.59,4.59,0,0,0-2.44-1.89,9.34,9.34,0,0,0-3.58-.49,5.76,5.76,0,0,0-4,2.2,3.38,3.38,0,0,0-.48.65l.37,0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M482.39,120.11a.81.81,0,0,1-.81-.75l-.13-1.66a.81.81,0,0,1,1.62-.13l.13,1.66a.81.81,0,0,1-.74.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M513.23,127.28l-.45,0a5.74,5.74,0,0,1-2.82-1.17,3.27,3.27,0,0,1-1.08-1.23,3.76,3.76,0,0,1-.23-1.76l.3-7.5a.85.85,0,0,1,.84-.78.81.81,0,0,1,.78.84l-.3,7.49a2.48,2.48,0,0,0,.09,1,1.84,1.84,0,0,0,.57.6,4.14,4.14,0,0,0,2,.86,2.39,2.39,0,0,0,1.83-.54c.86-.8.88-2.32.82-3.68l-.22-5.41a.81.81,0,0,1,.78-.84.8.8,0,0,1,.84.78l.22,5.41c.07,1.72,0,3.67-1.34,4.94A3.88,3.88,0,0,1,513.23,127.28Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M516.23,116.68h-.07l-4.66-.42a6.78,6.78,0,0,0-1.53,0,.81.81,0,1,1-.23-1.6,8.16,8.16,0,0,1,1.91,0l4.66.42a.81.81,0,0,1-.07,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M512.36,135.24a.81.81,0,0,1-.81-.79c-.06-2.55,0-5.14.2-7.69a.82.82,0,0,1,.87-.75.81.81,0,0,1,.75.87c-.19,2.5-.25,5-.19,7.53a.81.81,0,0,1-.79.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M513.16,136.07q-.43,0-.86,0l-.83-.08a7.66,7.66,0,0,0-2,0,.81.81,0,1,1-.26-1.6,9,9,0,0,1,2.42,0l.77.07a10.62,10.62,0,0,0,2.38-.1.81.81,0,0,1,.25,1.6A12.27,12.27,0,0,1,513.16,136.07Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M490.5,258.07a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M490.06,284a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M518.83,284.61h0c-8.55-.47-19.32-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M518.83,284.61a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M522.84,258.92a.81.81,0,0,1,0-1.62l27.89-.27a.79.79,0,0,1,.82.8.81.81,0,0,1-.8.82l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M522.4,284.82a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.55.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M551.17,285.46h0c-8.55-.47-19.32-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M551.17,285.46a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.74a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M555.23,259.58a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M554.79,285.48a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M583.56,286.12h0c-8.55-.47-19.32-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M583.55,286.12a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M501.54,278.72a.81.81,0,0,1-.81-.8,119.9,119.9,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.39,118.39,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M499.41,265.84a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,499.41,265.84Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M506.84,278.89a.81.81,0,0,1-.81-.8,119.9,119.9,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.39,118.39,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M504.71,266a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,504.71,266Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M537.81,282.23a1.86,1.86,0,0,1-.68-.13,2.44,2.44,0,0,1-1.42-2.11,13.51,13.51,0,0,1-.14-1.71l-.24-6.54a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78l.24,6.54a12.11,12.11,0,0,0,.12,1.51c.08.45.24.79.41.86a.65.65,0,0,0,.57-.23,3.49,3.49,0,0,0,.6-1.12.81.81,0,1,1,1.51.6,4.85,4.85,0,0,1-.94,1.65A2.32,2.32,0,0,1,537.81,282.23Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M543,272.75h0c-2.6,0-5.24-.11-7.83-.24-.48,0-1-.07-1.46-.11a23.26,23.26,0,0,0-2.38-.12c-1,0-1.7-.28-2-.89-.46-1,.53-2.12.86-2.48a7.33,7.33,0,0,1,5.06-2.73,10.88,10.88,0,0,1,4.21.56,6.13,6.13,0,0,1,3.2,2.4,3.76,3.76,0,0,1,1.13,2.94A.81.81,0,0,1,543,272.75Zm-11.45-2.09c.77,0,1.54.07,2.28.13.47,0,.94.08,1.4.1,2.26.11,4.55.19,6.83.22a5.25,5.25,0,0,0-.66-.94,4.6,4.6,0,0,0-2.44-1.89,9.31,9.31,0,0,0-3.58-.49,5.76,5.76,0,0,0-4,2.2,3.47,3.47,0,0,0-.48.65,2.52,2.52,0,0,0,.37,0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M536.73,267.24a.81.81,0,0,1-.81-.75l-.13-1.66a.81.81,0,0,1,1.62-.13l.13,1.66a.81.81,0,0,1-.74.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M567.57,274.42l-.45,0a5.76,5.76,0,0,1-2.82-1.17,3.26,3.26,0,0,1-1.08-1.23,3.8,3.8,0,0,1-.23-1.76l.3-7.49a.81.81,0,0,1,.81-.78h0a.81.81,0,0,1,.78.84l-.3,7.49a2.49,2.49,0,0,0,.09,1,1.85,1.85,0,0,0,.57.6,4.15,4.15,0,0,0,2,.86,2.37,2.37,0,0,0,1.83-.54c.86-.8.88-2.32.82-3.68l-.22-5.41a.81.81,0,0,1,1.62-.07l.22,5.41c.07,1.72,0,3.67-1.34,4.94A3.88,3.88,0,0,1,567.57,274.42Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M570.57,263.81h-.07l-4.66-.42a6.7,6.7,0,0,0-1.53,0,.81.81,0,1,1-.23-1.6,8.16,8.16,0,0,1,1.91,0l4.66.42a.81.81,0,0,1-.07,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M566.7,282.37a.81.81,0,0,1-.81-.79c-.06-2.55,0-5.13.2-7.69a.82.82,0,0,1,.87-.75.81.81,0,0,1,.75.87c-.19,2.5-.25,5-.19,7.53a.81.81,0,0,1-.79.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M567.51,283.21q-.43,0-.86,0l-.83-.08a7.59,7.59,0,0,0-2,0,.81.81,0,1,1-.26-1.6,9,9,0,0,1,2.42,0l.77.07a10.58,10.58,0,0,0,2.38-.1.81.81,0,0,1,.25,1.6A12.27,12.27,0,0,1,567.51,283.21Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M587.27,441.82a.81.81,0,0,1,0-1.62l23.12-.22a.81.81,0,1,1,0,1.62l-23.12.22Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M610.83,468.41h0c-5.06-.28-11.42-.46-19.44-.56a.81.81,0,0,1,0-1.62h0c8,.1,14.43.28,19.51.56a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M610.82,468.41a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M614.84,442.72a.81.81,0,0,1,0-1.62l27.89-.27h0a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M614.4,468.62a.81.81,0,0,1-.8-.71c-1.19-9.12-.47-17.54.44-26.09a.8.8,0,0,1,.89-.72.81.81,0,0,1,.72.89c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M643.17,469.26h0c-8.55-.47-19.32-.58-28.72-.64a.81.81,0,0,1,0-1.62h0c9.42.05,20.21.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M643.16,469.26a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.86.86,0,0,1,.84.78c.13,3.08,0,6.37-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M647.23,443.38a.81.81,0,0,1,0-1.62l27.89-.27a.81.81,0,0,1,0,1.62l-27.89.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M646.79,469.28a.81.81,0,0,1-.8-.71c-1.19-9.11-.47-17.54.44-26.09a.81.81,0,1,1,1.61.17c-.9,8.45-1.61,16.77-.44,25.71a.81.81,0,0,1-.7.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M675.55,469.92h0c-8.57-.47-19.33-.59-28.72-.64a.81.81,0,0,1,0-1.62h0c9.41.05,20.2.17,28.8.64a.81.81,0,0,1,0,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M675.55,469.92a.81.81,0,0,1-.8-.68c-.86-5.42-.68-11.39-.52-17.16.1-3.46.2-6.72.07-9.75a.81.81,0,0,1,.78-.84.85.85,0,0,1,.84.78c.13,3.08,0,6.38-.07,9.86-.17,5.7-.34,11.59.5,16.86a.81.81,0,0,1-.67.93Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M593.54,462.51a.81.81,0,0,1-.81-.8,119.92,119.92,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.4,118.4,0,0,0-.52,11.89.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M591.41,449.64a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,591.41,449.64Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M598.84,462.69a.81.81,0,0,1-.81-.8,119.87,119.87,0,0,1,.53-12,.81.81,0,0,1,1.61.15,118.37,118.37,0,0,0-.52,11.88.81.81,0,0,1-.8.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M596.71,449.81a.25.25,0,0,0-.06.14c0,.15.23.16.38.12a12.47,12.47,0,0,1,5-.3,11.28,11.28,0,0,1-1.29-2.25c-.21-.43-.75-2.1-1.26-2.22s-1.08,1.58-1.29,2A19.26,19.26,0,0,1,596.71,449.81Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M629.8,466a1.87,1.87,0,0,1-.68-.13,2.44,2.44,0,0,1-1.42-2.11,13.55,13.55,0,0,1-.14-1.71l-.24-6.54a.81.81,0,0,1,.78-.84.84.84,0,0,1,.84.78l.24,6.54a11.94,11.94,0,0,0,.12,1.51c.07.45.24.79.41.86a.64.64,0,0,0,.57-.23,3.49,3.49,0,0,0,.6-1.12.81.81,0,0,1,1.51.6,4.82,4.82,0,0,1-.94,1.65A2.32,2.32,0,0,1,629.8,466Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M635,456.54h0c-2.59,0-5.23-.11-7.83-.24-.48,0-1-.07-1.47-.11-.79-.07-1.6-.13-2.37-.12-1,0-1.71-.28-2-.89-.46-1,.53-2.12.86-2.48a7.32,7.32,0,0,1,5.06-2.73,10.87,10.87,0,0,1,4.21.56,6.13,6.13,0,0,1,3.2,2.4,3.77,3.77,0,0,1,1.13,2.94A.81.81,0,0,1,635,456.54Zm-11.45-2.09c.76,0,1.53.07,2.28.13.47,0,.94.08,1.41.1,2.27.11,4.56.19,6.83.22a5.12,5.12,0,0,0-.66-.94,4.59,4.59,0,0,0-2.44-1.89,9.45,9.45,0,0,0-3.58-.49,5.76,5.76,0,0,0-4,2.2,3.43,3.43,0,0,0-.48.65l.37,0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M628.73,451a.81.81,0,0,1-.81-.75l-.13-1.66a.81.81,0,0,1,.74-.87.8.8,0,0,1,.87.74l.13,1.66a.81.81,0,0,1-.75.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M659.57,458.22l-.45,0A5.76,5.76,0,0,1,656.3,457a3.27,3.27,0,0,1-1.08-1.23A3.76,3.76,0,0,1,655,454l.3-7.49a.81.81,0,0,1,.81-.78h0a.81.81,0,0,1,.78.84l-.3,7.49a2.51,2.51,0,0,0,.09,1,1.72,1.72,0,0,0,.57.6,4.16,4.16,0,0,0,2,.86,2.39,2.39,0,0,0,1.83-.54c.86-.8.88-2.32.82-3.68l-.22-5.41a.81.81,0,0,1,.78-.84.83.83,0,0,1,.84.78l.22,5.41c.07,1.72,0,3.67-1.34,4.94A3.88,3.88,0,0,1,659.57,458.22Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M662.57,447.61h-.07l-4.66-.42a6.67,6.67,0,0,0-1.53,0,.81.81,0,0,1-.23-1.6,8,8,0,0,1,1.91,0l4.66.42a.81.81,0,0,1-.07,1.62Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M658.7,466.17a.81.81,0,0,1-.81-.79c-.06-2.55,0-5.14.2-7.69a.81.81,0,1,1,1.62.12c-.19,2.5-.25,5-.19,7.53a.81.81,0,0,1-.79.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M659.5,467c-.29,0-.57,0-.86,0l-.83-.08a7.66,7.66,0,0,0-2,0,.81.81,0,1,1-.26-1.6,9,9,0,0,1,2.42,0l.77.07a10.54,10.54,0,0,0,2.38-.1.81.81,0,1,1,.25,1.6A12.16,12.16,0,0,1,659.5,467Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M649.15,174.82a1.5,1.5,0,0,1-1.06-2.56l1.28-1.28a1.5,1.5,0,0,1,2.12,2.12l-1.29,1.28A1.5,1.5,0,0,1,649.15,174.82Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M646.76,297.47a1.91,1.91,0,0,1-.54-.08c-.46-.14-2-.78-1.73-3.32a821.6,821.6,0,0,0,2-121.16,1.5,1.5,0,1,1,3-.17,824.54,824.54,0,0,1-1.89,120.89,1.64,1.64,0,0,1,.42.25,2.14,2.14,0,0,1,.42,2.58A1.82,1.82,0,0,1,646.76,297.47Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M720.11,472.24h0a1.5,1.5,0,0,1-1.49-1.51c.17-47.52-.5-95.68-2-143.15a1.5,1.5,0,0,1,1.45-1.55,1.48,1.48,0,0,1,1.55,1.45c1.5,47.5,2.17,95.7,2,143.26A1.5,1.5,0,0,1,720.11,472.24Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M580,590.51c-.85,0-2.61-.4-3.33-3.53l-34.2-149.63a1.5,1.5,0,0,1,2.92-.67L579.55,586a1.76,1.76,0,0,1,1.05,0,2.53,2.53,0,0,1,1.49,2.71,2,2,0,0,1-1.94,1.81Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M509.61,417.68a1.5,1.5,0,0,1-1.49-1.35c-.91-9-1.45-18.11-1.61-27.13a1.5,1.5,0,0,1,1.47-1.53h0a1.5,1.5,0,0,1,1.5,1.47c.16,8.93.69,18,1.59,26.88a1.5,1.5,0,0,1-1.34,1.64Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M172.54,314.24a1.5,1.5,0,0,1-1.5-1.4c-2.16-33.64-3.43-67.8-3.77-101.51a1.5,1.5,0,0,1,1.48-1.52h0a1.5,1.5,0,0,1,1.5,1.48c.34,33.66,1.61,67.76,3.77,101.35a1.5,1.5,0,0,1-1.4,1.59Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M102.22,479.3a1.5,1.5,0,0,1-1.5-1.5,976.48,976.48,0,0,1,8.15-126.63,1.5,1.5,0,0,1,3,.39,973.51,973.51,0,0,0-8.13,126.24,1.5,1.5,0,0,1-1.5,1.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M382.09,318.12a1.5,1.5,0,0,1-1.5-1.46,137.6,137.6,0,0,1,2.19-27.88,1.5,1.5,0,0,1,3,.54,134.6,134.6,0,0,0-2.15,27.27,1.5,1.5,0,0,1-1.46,1.53Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M567,147.95h-.11a1.5,1.5,0,0,1-1.39-1.61c2.5-34.22,3.92-69,4.21-103.28a1.5,1.5,0,0,1,1.5-1.49h0a1.5,1.5,0,0,1,1.49,1.51c-.29,34.38-1.71,69.19-4.22,103.47A1.5,1.5,0,0,1,567,147.95Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M254.41,176.21a1.5,1.5,0,0,1-1.5-1.49l-.43-115.58A1.5,1.5,0,0,1,254,57.63h0a1.5,1.5,0,0,1,1.5,1.49l.43,115.58a1.5,1.5,0,0,1-1.49,1.51Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M323.06,194a.88.88,0,0,1-.34-1.68,20.41,20.41,0,0,0,8.61-6.82.88.88,0,1,1,1.42,1A21.88,21.88,0,0,1,323.4,194,.88.88,0,0,1,323.06,194Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M329.51,195.91a.88.88,0,0,1-.31-1.69,7.32,7.32,0,0,0,3.11-2.27.87.87,0,0,1,1.37,1.09,9.07,9.07,0,0,1-3.85,2.81A.88.88,0,0,1,329.51,195.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M383.94,269.31a.88.88,0,0,1-.59-1.52,18.54,18.54,0,0,0,4.38-6.13.87.87,0,1,1,1.6.7,20.31,20.31,0,0,1-4.8,6.71A.88.88,0,0,1,383.94,269.31Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M387,272.83a.87.87,0,0,1-.61-1.5l3-3a.87.87,0,0,1,1.22,1.25l-3,3A.87.87,0,0,1,387,272.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M550.94,316.28a.87.87,0,0,1-.46-1.62,10.51,10.51,0,0,0,4.81-7.27.88.88,0,0,1,1.73.26,12.29,12.29,0,0,1-5.62,8.49A.87.87,0,0,1,550.94,316.28Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M555.08,319.94a.88.88,0,0,1-.68-1.43l4.05-5a.88.88,0,0,1,1.36,1.11l-4.05,5A.87.87,0,0,1,555.08,319.94Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M646.36,158.78a.87.87,0,0,1-.72-1.36l6.27-9.32a.87.87,0,1,1,1.45,1l-6.27,9.32A.87.87,0,0,1,646.36,158.78Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M647.38,163.19a.88.88,0,0,1-.49-1.6,22.85,22.85,0,0,0,6.44-6.52.88.88,0,0,1,1.47,1,24.63,24.63,0,0,1-6.94,7A.87.87,0,0,1,647.38,163.19Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M715.47,312.87a.88.88,0,0,1-.23,0,.87.87,0,0,1-.61-1.08,45.45,45.45,0,0,0,1.57-9.31.87.87,0,0,1,1.75.11,47.17,47.17,0,0,1-1.63,9.67A.87.87,0,0,1,715.47,312.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M717.5,317.38a.87.87,0,0,1-.87-.87V314a.88.88,0,0,1,1.75,0v2.5A.87.87,0,0,1,717.5,317.38Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M569.57,20.39h-.13a.88.88,0,0,1-.74-1l.52-3.5a.87.87,0,1,1,1.73.26l-.52,3.5A.88.88,0,0,1,569.57,20.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M572.25,30a.86.86,0,0,1-.28,0,.88.88,0,0,1-.55-1.11A43.82,43.82,0,0,0,573.68,17a.91.91,0,0,1,.92-.83.87.87,0,0,1,.83.92,45.63,45.63,0,0,1-2.35,12.32A.88.88,0,0,1,572.25,30Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M351.81,47.69a.88.88,0,0,1-.63-1.48,27.74,27.74,0,0,0,5.53-8.54.87.87,0,1,1,1.62.66,29.07,29.07,0,0,1-5.89,9.08A.87.87,0,0,1,351.81,47.69Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M356.83,51.68a.88.88,0,0,1-.58-1.53A45.23,45.23,0,0,0,362,44.08a.87.87,0,1,1,1.38,1.08,47,47,0,0,1-5.94,6.3A.87.87,0,0,1,356.83,51.68Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M255.46,48.4a.87.87,0,0,1-.77-.46L253.09,45a.87.87,0,1,1,1.54-.83l1.59,2.95a.87.87,0,0,1-.77,1.29Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M173.55,192.77a.87.87,0,0,1-.4-.1,12.56,12.56,0,0,1-6.25-7.89.88.88,0,0,1,1.7-.43,10.78,10.78,0,0,0,5.36,6.77.88.88,0,0,1-.41,1.65Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M171.49,204.89a.87.87,0,0,1-.48-.15,10,10,0,0,1-4.38-8.8.88.88,0,1,1,1.75.11,8.22,8.22,0,0,0,3.6,7.23.87.87,0,0,1-.48,1.6Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M114,331.87a.88.88,0,0,1-.81-.53l-1.49-3.5a.88.88,0,0,1,1.61-.69l1.49,3.5a.87.87,0,0,1-.8,1.22Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M112.89,344.45a.88.88,0,0,1-.72-.38,24.28,24.28,0,0,1-3.57-7.84.87.87,0,0,1,1.7-.43,22.53,22.53,0,0,0,3.32,7.28.87.87,0,0,1-.72,1.37Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M190.82,374.17a.88.88,0,0,1-.82-.58,9.05,9.05,0,0,0-7.67-5.79.88.88,0,0,1,.12-1.75,10.85,10.85,0,0,1,9.19,6.94.87.87,0,0,1-.82,1.17Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M189.51,373.73a.87.87,0,0,1-.62-.25,4.18,4.18,0,0,0-5.15-.45.87.87,0,0,1-1-1.43,5.92,5.92,0,0,1,7.39.64.88.88,0,0,1-.62,1.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M269.07,343.71a.87.87,0,0,1-.86-.72,17.45,17.45,0,0,1-.2-4.76.88.88,0,0,1,1.74.17,15.71,15.71,0,0,0,.18,4.28.87.87,0,0,1-.71,1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M268.36,343.16a.87.87,0,0,1-.57-1.54l3.13-2.7a.87.87,0,1,1,1.14,1.33l-3.13,2.7A.87.87,0,0,1,268.36,343.16Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M377.93,433.36h-.11a.88.88,0,0,1-.76-1,26.76,26.76,0,0,0-1.74-14.15.88.88,0,1,1,1.63-.63,28.38,28.38,0,0,1,1.85,15A.88.88,0,0,1,377.93,433.36Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M420.89,450.7a1,1,0,0,1-.53-1.85l9.92-6.12a1,1,0,0,1,1,1.7l-9.92,6.12A1,1,0,0,1,420.89,450.7Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M424.36,453.7a1,1,0,0,1-.45-1.89l2.94-1.46a1,1,0,1,1,.89,1.79l-2.93,1.46A1,1,0,0,1,424.36,453.7Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M544.14,426.87a1,1,0,0,1-.45-1.89l2-1a1,1,0,1,1,.89,1.79l-2,1A1,1,0,0,1,544.14,426.87Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M545.1,431.23h-.49a1,1,0,0,1,0-2h.49a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M475.12,219.77a1,1,0,0,1,0-2A235.3,235.3,0,0,0,547,203.46a1,1,0,0,1,.69,1.88,237.28,237.28,0,0,1-72.48,14.43Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M510.53,226.27a1,1,0,0,1-.25-2l9.8-2.54a1,1,0,0,1,.5,1.94l-9.8,2.54A1,1,0,0,1,510.53,226.27Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M544.37,369.75a1,1,0,0,1-.07-2c16.71-1.22,32.23-8.25,47.24-15.05a1,1,0,0,1,.83,1.82c-14.46,6.55-30.85,14-47.92,15.23Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M580.71,394.05a1,1,0,0,1-.45-1.89l5.5-2.76a1,1,0,0,1,.9,1.79l-5.5,2.76A1,1,0,0,1,580.71,394.05Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M454.49,60.42a1,1,0,0,1,0-2,214.71,214.71,0,0,0,53.3-9.11,1,1,0,1,1,.58,1.91,216.68,216.68,0,0,1-53.8,9.19Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M327.29,102.14a1,1,0,0,1-.06-2,192.46,192.46,0,0,0,70.27-18,1,1,0,1,1,.86,1.81,194.47,194.47,0,0,1-71,18.23Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M432.07,510.83c-10.54,0-21-1.47-31.26-2.9a1,1,0,1,1,.28-2c12.26,1.72,24.94,3.49,37.49,2.68,13.92-.91,25.89-5.09,34.6-12.1a1,1,0,1,1,1.25,1.56c-9,7.27-21.39,11.6-35.73,12.54C436.49,510.76,434.28,510.83,432.07,510.83Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M450.56,528.21h-.06c-9.42-.56-19-.73-28.4-.49h0a1,1,0,0,1,0-2c9.48-.23,19.09-.06,28.57.5a1,1,0,0,1-.06,2Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M359,529.5a1,1,0,0,1-1-1,55.34,55.34,0,0,1,.78-8.08c.31-2.13.63-4.32.73-6.47a1,1,0,0,1,1-1,1,1,0,0,1,1,1,66.87,66.87,0,0,1-.74,6.67,53.91,53.91,0,0,0-.75,7.79,1,1,0,0,1-1,1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M357.5,544.5a1,1,0,0,1-1-1v-6a1,1,0,0,1,2,0v6A1,1,0,0,1,357.5,544.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M227.31,549.06c-4.17,0-11.51-.6-15.38-4.5a1.5,1.5,0,1,1,2.13-2.11c3.07,3.09,9.95,3.87,15.35,3.56a1.5,1.5,0,0,1,.17,3C229,549,228.26,549.06,227.31,549.06Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M227.5,541a1.46,1.46,0,0,1-.31,0,20.42,20.42,0,0,0-5.58-.47,1.5,1.5,0,0,1-.22-3,23.41,23.41,0,0,1,6.42.53,1.5,1.5,0,0,1-.31,3Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M328.5,560a1.5,1.5,0,0,1-.7-2.83c1.12-.59,2.3-1.27,3.42-2a1.5,1.5,0,1,1,1.57,2.56c-1.17.72-2.41,1.43-3.58,2A1.48,1.48,0,0,1,328.5,560Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M340,561a1.5,1.5,0,0,1-.55-2.9,4.24,4.24,0,0,0,1.83-1.48,1.5,1.5,0,1,1,2.44,1.74,7.21,7.21,0,0,1-3.17,2.52A1.5,1.5,0,0,1,340,561Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M230.5,604a1.5,1.5,0,0,1-1.07-.45,8.85,8.85,0,0,1-2.42-4.84,1.5,1.5,0,0,1,3-.43,5.86,5.86,0,0,0,1.58,3.16A1.5,1.5,0,0,1,230.5,604Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M236.5,613a1.49,1.49,0,0,1-.89-.29,5.41,5.41,0,0,1-2.11-4.15,1.5,1.5,0,0,1,1.44-1.55,1.47,1.47,0,0,1,1.55,1.44,2.46,2.46,0,0,0,.89,1.85,1.5,1.5,0,0,1-.89,2.71Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M239.5,604.5a1.5,1.5,0,0,1-1.16-.55,3.88,3.88,0,0,1-.81-3.23,1.5,1.5,0,0,1,2.95.56.86.86,0,0,0,.19.77,1.5,1.5,0,0,1-1.16,2.45Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M184.5,419a1.5,1.5,0,0,1-1.48-1.25,8,8,0,0,1,.7-5,1.5,1.5,0,0,1,2.57,1.55,5.2,5.2,0,0,0-.3,3,1.5,1.5,0,0,1-1.23,1.73Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M186,431.5a1.5,1.5,0,0,1-1.22-.63,7.49,7.49,0,0,1-1.28-4.41,1.5,1.5,0,1,1,3,.07,4.53,4.53,0,0,0,.72,2.59A1.5,1.5,0,0,1,186,431.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M192,424.5a1.5,1.5,0,0,1-1.37-.9,14.86,14.86,0,0,1-1.11-3.89,1.5,1.5,0,1,1,3-.42,11.86,11.86,0,0,0,.89,3.11,1.5,1.5,0,0,1-1.37,2.1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M204.5,533h-36a1.5,1.5,0,0,1,0-3h36a1.5,1.5,0,0,1,0,3Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M204,549.5H185.5a1.5,1.5,0,0,1,0-3H204a1.5,1.5,0,0,1,0,3Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M189.5,578.5c-6,0-12.13-.13-18-.25s-12-.25-18-.25a1.5,1.5,0,0,1,0-3c6,0,12.13.13,18,.25s12,.25,18,.25a1.5,1.5,0,0,1,0,3Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M194.74,597.1c-1.16,0-2.31,0-3.45-.05s-2.2,0-3.29,0a1.5,1.5,0,0,1,0-3h0c1.11,0,2.23,0,3.36,0a47.35,47.35,0,0,0,10.34-.52,1.5,1.5,0,0,1,.6,2.94A37.75,37.75,0,0,1,194.74,597.1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M204.57,643.61c-1.36,0-2.93-.29-3.46-1.53a1.5,1.5,0,0,1,2.52-1.56,6.25,6.25,0,0,0,2.15,0,1.5,1.5,0,0,1,.43,3A11.65,11.65,0,0,1,204.57,643.61Zm-.69-2.69h0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M224.41,412a4.41,4.41,0,0,1-2.14-.58,4.94,4.94,0,0,1-2.65-4c-.63-6.22,8.66-15.66,10.4-17.13a1.5,1.5,0,0,1,2.47,1.11c.19,7.81-1.82,17.46-5.91,19.94A4.16,4.16,0,0,1,224.41,412Zm5-16.86c-3.19,3.51-7.12,8.94-6.81,12a2,2,0,0,0,1.11,1.64,1.14,1.14,0,0,0,1.3,0C227.15,407.56,229,401.53,229.42,395.18Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M226.47,442.05a3.21,3.21,0,0,1-2.82-1.63c-2.75-4.65,2.88-20.07,5.89-22.57a1.5,1.5,0,0,1,2.45,1.29,49.5,49.5,0,0,0,.16,7c.44,6.71.89,13.65-3.83,15.5A5.05,5.05,0,0,1,226.47,442.05ZM229,424.37c-2.07,4.91-4,12.42-2.8,14.52.07.11.18.3,1,0,2.69-1.05,2.27-7.41,1.94-12.52C229.11,425.68,229.07,425,229,424.37Z" transform="translate(-60.79 2.5)"/><g class="cls-14"><path class="cls-2" d="M659,528.67a1,1,0,0,1-.06-2l1.29-.08c4.56-.29,8.88-.57,13.44-.59h0a1,1,0,0,1,0,2c-4.5,0-8.79.29-13.32.58l-1.29.08Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M680.33,545.33H669.67a1,1,0,0,1,0-2h10.67a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M638.33,570H633a1,1,0,0,1,0-2h5.33a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M421,664.7c-.45,0-.91,0-1.36,0a1,1,0,0,1,.1-2,43.87,43.87,0,0,0,6.81-.34c1.22-.12,2.49-.25,3.75-.32a1,1,0,0,1,1.06.94,1,1,0,0,1-.94,1.06c-1.22.07-2.46.2-3.66.32A57,57,0,0,1,421,664.7Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M457.67,654a1,1,0,0,1-.36-1.93c3.28-1.27,7.31-1.07,11.22-.87,1.35.07,2.62.13,3.81.13a1,1,0,0,1,0,2c-1.25,0-2.54-.07-3.91-.14-3.69-.19-7.51-.38-10.39.74A1,1,0,0,1,457.67,654Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M503,674H490.33a1,1,0,1,1,0-2H503a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M340.77,690.77a22.36,22.36,0,0,1-6-.81,1,1,0,1,1,.54-1.93,21.35,21.35,0,0,0,7.64.63,1,1,0,0,1,.19,2Q341.92,690.77,340.77,690.77Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M393,700h-8a1,1,0,0,1,0-2h8a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M645,630.67h-7.33a1,1,0,0,1,0-2H645a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M731,508.67h-2.67a1,1,0,0,1,0-2H731a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M630.33,513.33a1,1,0,0,1-.35-1.94,11.21,11.21,0,0,1,4.38-.73,1,1,0,0,1,1,1,1,1,0,0,1-1,1,9.37,9.37,0,0,0-3.62.6A1,1,0,0,1,630.33,513.33Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M753,472h-2.67a1,1,0,1,1,0-2H753a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M765.67,446H763a1,1,0,0,1,0-2h2.67a1,1,0,1,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M111,505.33h-5.33a1,1,0,1,1,0-2H111a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M144.33,500.67h-4a1,1,0,1,1,0-2h4a1,1,0,0,1,0,2Z" transform="translate(-60.79 2.5)"/></g><g class="cls-14"><path class="cls-2" d="M120.56,518.83a7.62,7.62,0,0,1-4.12-1,1,1,0,0,1,1.14-1.65,7.18,7.18,0,0,0,4.58.51,1,1,0,1,1,.38,2A10.47,10.47,0,0,1,120.56,518.83Z" transform="translate(-60.79 2.5)"/></g></g><g id="LINEART"><path class="cls-15" d="M145.95,176.85" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M255.72,395.42a2.5,2.5,0,0,1-.07-5c14.6-.4,26.34-2.39,38.77-4.49a316.57,316.57,0,0,1,34.2-4.45,2.5,2.5,0,0,1,.32,5,312.48,312.48,0,0,0-33.68,4.38c-12,2-24.51,4.16-39.46,4.56Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M365,378.9a2.5,2.5,0,0,1-1.06-4.76c5.28-2.48,9.35-5.59,13.65-8.88a95.33,95.33,0,0,1,12-8.2,2.5,2.5,0,0,1,2.42,4.38,91.32,91.32,0,0,0-11.39,7.8c-4.33,3.31-8.8,6.72-14.56,9.43A2.49,2.49,0,0,1,365,378.9Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M371.49,408.63a13.15,13.15,0,0,1-1.43-.08,12.82,12.82,0,0,1-8.47-4.94,9.18,9.18,0,0,1-1.83-7.18c1.23-6.66,9.76-7.66,14.6-7.21h0a9.63,9.63,0,0,1,4.79,1.55,8.4,8.4,0,0,1,3.17,7.19,11.07,11.07,0,0,1-6.4,9.79A11.23,11.23,0,0,1,371.49,408.63Zm.79-14.5c-3.31,0-7.17.89-7.6,3.21a4.26,4.26,0,0,0,.92,3.28,7.71,7.71,0,0,0,5,3,6.7,6.7,0,0,0,3.36-.42,6.08,6.08,0,0,0,3.38-5.35,3.59,3.59,0,0,0-1.08-3,5.2,5.2,0,0,0-2.35-.64h0C373.39,394.15,372.85,394.13,372.29,394.13Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M363.66,424.5a11.22,11.22,0,0,1-7.68-3,12.76,12.76,0,0,1-3.34-12.21,15.39,15.39,0,0,1,7.71-9.63,2.5,2.5,0,0,1,2.39,4.39,10.53,10.53,0,0,0-5.24,6.45,7.79,7.79,0,0,0,1.94,7.37,6.05,6.05,0,0,0,6.84,1,13.26,13.26,0,0,0,1.65-1.22,18.82,18.82,0,0,1,2.06-1.53c3.61-2.23,8-2,11.37-1.58,1.91.24,4,.51,5-.3s.89-3.23,0-5c-1.06-2.1-5.27-5.48-8-6.77a2.5,2.5,0,0,1,2.15-4.51c3.08,1.47,8.52,5.54,10.28,9s2,8.39-1.34,11.12c-2.66,2.14-6.14,1.7-8.68,1.37s-5.91-.53-8.19.87a14.67,14.67,0,0,0-1.52,1.14,17.46,17.46,0,0,1-2.31,1.68A10.19,10.19,0,0,1,363.66,424.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M376.27,435a8.13,8.13,0,0,1-4-1,13,13,0,0,1-3.16-2.74,12,12,0,0,1-1.82-2.39c-1.18-2.18-2.32-5.7-2-8.26a2.5,2.5,0,1,1,5,.56,11.53,11.53,0,0,0,1.46,5.31,8.1,8.1,0,0,0,1.12,1.4,8.88,8.88,0,0,0,1.92,1.75,4,4,0,0,0,4-.44,6.94,6.94,0,0,0,2.53-4.42,20.49,20.49,0,0,0-.59-7,2.5,2.5,0,1,1,4.89-1,24.37,24.37,0,0,1,.62,8.94,11.8,11.8,0,0,1-4.51,7.58A9.3,9.3,0,0,1,376.27,435Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M388.38,410.24a2.5,2.5,0,0,1-.38-5c5.57-.87,10.41-5.64,12.34-12.16,2.08-7,.34-14.44-1.48-19.41a28.74,28.74,0,0,0-3.29-6.64c-4.09-5.88-11.69-9.55-19.85-9.6h-.15c-9,0-17,4.08-22.08,7.51a2.5,2.5,0,0,1-2.79-4.15c8.19-5.51,16.84-8.38,25-8.36,9.76,0,18.92,4.55,23.93,11.74a33.58,33.58,0,0,1,3.88,7.78c3,8.15,3.54,16,1.58,22.56-2.48,8.36-8.9,14.52-16.37,15.68Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M291.58,645.16a94,94,0,0,1-26.67-3.83,95.29,95.29,0,0,1-38-21.85c-11.07-10.39-14.37-23.33-16.28-35.77a40.63,40.63,0,0,1,0-12.24,2.5,2.5,0,0,1,5,.53,35.69,35.69,0,0,0,0,11c2.05,13.35,5.35,24,14.76,32.88a89.3,89.3,0,0,0,82.71,21.78c2-.48,4-.93,6-1.37,10.24-2.28,19.91-4.44,28.15-10.85a2.5,2.5,0,0,1,3.07,3.95c-9.13,7.1-19.33,9.38-30.14,11.79-2,.44-3.95.88-5.94,1.36A97.5,97.5,0,0,1,291.58,645.16Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M200.22,497.51a2.5,2.5,0,0,1-2.21-1.33c-2.34-4.4-4.81-8.85-7.19-13.15-2.67-4.82-5.43-9.81-8-14.76-6.07-11.51-11.81-24-12.76-37.34-1-13.78,3-28.47,12.17-44.91,4.35-7.8,8.33-13.25,12.9-17.67a67.46,67.46,0,0,1,17.65-11.86c27.92-13.6,60.15-14.28,88-13.15,28.91,1.17,48.72,11.29,66.24,33.85a2.5,2.5,0,1,1-3.95,3.07c-16.52-21.27-35.21-30.82-62.49-31.92s-58.7-.46-85.61,12.65a62.58,62.58,0,0,0-16.36,11c-4.2,4.06-7.9,9.15-12,16.51C177.87,404,174.09,417.8,175,430.58c.88,12.41,6.39,24.33,12.2,35.36,2.59,4.91,5.34,9.87,8,14.67,2.39,4.32,4.87,8.79,7.23,13.22a2.5,2.5,0,0,1-2.21,3.68Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M261.89,349a2.49,2.49,0,0,1-1.67-.64,4.61,4.61,0,0,1-1.32-3.69,34.16,34.16,0,0,1,.75-6.35,12.71,12.71,0,0,1,2-5,8.89,8.89,0,0,1,9.85-3.06c3,1.06,5.42,3.7,7.23,8.08a43.72,43.72,0,0,1,2,5.84,2.5,2.5,0,0,1-4.84,1.25,38.8,38.8,0,0,0-1.73-5.17c-1.24-3-2.63-4.71-4.25-5.28a3.88,3.88,0,0,0-4.19,1.3,8.26,8.26,0,0,0-1.17,3.09,29.18,29.18,0,0,0-.64,5.42c0,.09,0,.16,0,.21a2.5,2.5,0,0,1-2,4Zm1.67-4.36h0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M183.89,387.5a2.52,2.52,0,0,1-.41,0c-3.94-.65-7.3-3.73-9.72-8.89-2.67-5.71-3.34-11.18-1.95-15.82,1.62-5.36,7.07-10.44,13.41-9.67,5,.61,8.67,4.6,11.1,7.24l4.87,5.3a2.5,2.5,0,1,1-3.68,3.38l-4.87-5.3c-2.55-2.78-5.08-5.3-8-5.66-3.68-.45-7,2.84-8,6.15-1.31,4.35.2,9.06,1.69,12.25,1.17,2.51,3.17,5.61,6,6.08a2.5,2.5,0,0,1-.41,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M294.85,448.5A43.45,43.45,0,1,1,338.3,405,43.5,43.5,0,0,1,294.85,448.5Zm0-81.9A38.45,38.45,0,1,0,333.3,405,38.49,38.49,0,0,0,294.85,366.6Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M394.52,444.82a2.5,2.5,0,0,1-2.5-2.41c-.18-4.94-.79-11.63-1.59-17.47a4.05,4.05,0,0,1,0-1.16A2.53,2.53,0,0,1,392.5,421a2.46,2.46,0,0,1,2.86,2,4.07,4.07,0,0,1,0,1.28c.82,6,1.44,12.85,1.63,17.9a2.5,2.5,0,0,1-2.41,2.59Zm-4.09-20.91h0Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M375.87,636.22a2.5,2.5,0,0,1-2.46-2l-16-84.58a2.5,2.5,0,0,1,4.91-.93l15.56,82L537.75,595,500.12,420.84,344.73,456.22l10,56.84a2.5,2.5,0,0,1-4.92.87l-10.45-59.18a2.5,2.5,0,0,1,1.91-2.87l160.17-36.47a2.5,2.5,0,0,1,3,1.91l38.69,179a2.5,2.5,0,0,1-1.9,3L376.42,636.16A2.45,2.45,0,0,1,375.87,636.22Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M542.38,599.64a2.5,2.5,0,0,1-.49-5c23.54-4.76,47.28-10.1,70.61-15.88L578,417l-53.49,1.44c-6.61.18-13.44.36-20.07,1a2.5,2.5,0,0,1-.51-5c6.82-.7,13.74-.89,20.44-1.07L580,411.91a2.46,2.46,0,0,1,2.51,2l35.43,166.24a2.5,2.5,0,0,1-1.84,2.95c-24.16,6-48.78,11.58-73.18,16.51A2.48,2.48,0,0,1,542.38,599.64Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M339.58,545.66a2.5,2.5,0,0,1-.67-4.91A92.52,92.52,0,0,1,350.66,539l1.36-.16a2.5,2.5,0,0,1,.57,5l-1.36.15a94.18,94.18,0,0,0-11,1.58A2.5,2.5,0,0,1,339.58,545.66Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M365,542.15a2.5,2.5,0,0,1-.41-5c10.27-1.72,16.43-4,18.3-6.92a3.28,3.28,0,0,0,.4-2.81c-1-4-7.08-6.94-18-8.69a2.5,2.5,0,0,1,.79-4.94c8.44,1.36,19.9,4.12,22,12.38a8.33,8.33,0,0,1-1.05,6.79c-2.78,4.27-9.46,7.09-21.67,9.13A2.49,2.49,0,0,1,365,542.15Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M353,517.24l-.28,0A200,200,0,0,0,330.45,516a2.5,2.5,0,0,1,0-5,205,205,0,0,1,22.86,1.26,2.5,2.5,0,0,1-.27,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M374.91,644.09a19.3,19.3,0,0,1-7.71-1.6,35.5,35.5,0,0,1-5.75-3.38l-23.4-15.86a2.5,2.5,0,0,1,2.8-4.14L364.26,635a31.89,31.89,0,0,0,4.94,2.93,14.31,14.31,0,0,0,7.26,1.1,4.63,4.63,0,0,0,2.48-.81c1-.83,1-2.61.47-3.86a2.5,2.5,0,0,1,4.65-1.85c1.39,3.49.62,7.4-1.87,9.52a9.29,9.29,0,0,1-5.17,2A19.23,19.23,0,0,1,374.91,644.09Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M224.4,649.13a19.38,19.38,0,0,1-5.42-.75,5.09,5.09,0,0,1-3-2,5.2,5.2,0,0,1-.74-3c.17-10,7.38-17.73,14.76-24.76a2.5,2.5,0,1,1,3.45,3.62c-6.61,6.3-13.07,13.13-13.21,21.23v.08l.14,0c4.2,1.22,9.32.4,14-2.26,4.56-2.56,8.4-6.47,11.86-10.31a2.5,2.5,0,0,1,3.71,3.35c-3.75,4.16-7.94,8.4-13.13,11.32A25.75,25.75,0,0,1,224.4,649.13Zm-4.15-5.26h0Zm-.31-.44Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M559.82,416.91a2.5,2.5,0,0,1-2.5-2.5V390.84H404.5a2.5,2.5,0,0,1,0-5H559.82a2.5,2.5,0,0,1,2.5,2.5v26.08A2.5,2.5,0,0,1,559.82,416.91Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M447.94,433.1a2.5,2.5,0,0,1-2.5-2.5V388.34a2.5,2.5,0,0,1,5,0V430.6A2.5,2.5,0,0,1,447.94,433.1Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M682,484.5H594.42a2.5,2.5,0,1,1,0-5H679.5v-182h-243v90.84a2.5,2.5,0,0,1-5,0V295a2.5,2.5,0,0,1,2.5-2.5H682a2.5,2.5,0,0,1,2.5,2.5V482A2.5,2.5,0,0,1,682,484.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M682,484.5a2.5,2.5,0,0,1-.66-4.91l62.16-16.93V291.75l-61.27,5.74a2.5,2.5,0,1,1-.47-5l64-6A2.5,2.5,0,0,1,748.5,289V464.57a2.5,2.5,0,0,1-1.84,2.41l-64,17.43A2.52,2.52,0,0,1,682,484.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M598,297.5a2.5,2.5,0,0,1-2.5-2.5V150.5H417.66v142H434a2.5,2.5,0,0,1,0,5H415.16a2.5,2.5,0,0,1-2.5-2.5V148a2.5,2.5,0,0,1,2.5-2.5H598a2.5,2.5,0,0,1,2.5,2.5V295A2.5,2.5,0,0,1,598,297.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M670.74,151.74h0L598,150.5a2.5,2.5,0,1,1,.09-5l72.74,1.24a2.5,2.5,0,0,1,0,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M695.88,296.2a2.5,2.5,0,0,1-2.5-2.5V177.1a2.5,2.5,0,0,1,5,0V293.7A2.5,2.5,0,0,1,695.88,296.2Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M604,150.5a2.5,2.5,0,0,1-2.5-2.5V16L541.5,3.1V148a2.5,2.5,0,0,1-5,0V0a2.5,2.5,0,0,1,.93-1.94,2.5,2.5,0,0,1,2.1-.5l65,14a2.5,2.5,0,0,1,2,2.44V148A2.5,2.5,0,0,1,604,150.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M400,30.5a2.5,2.5,0,0,1-2.5-2.5V5a2.5,2.5,0,0,1,2.41-2.5l139-5A2.51,2.51,0,0,1,541.5-.09a2.5,2.5,0,0,1-2.41,2.59L402.5,7.41V28A2.5,2.5,0,0,1,400,30.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M415.16,179.6H289.78l-68-5.1A2.5,2.5,0,0,1,219.5,172V46a2.5,2.5,0,0,1,2-2.45l68-14a2.49,2.49,0,0,1,.5-.05H427a2.5,2.5,0,0,1,2.5,2.5V148a2.5,2.5,0,0,1-5,0V34.5H290.25L224.5,48V169.68l65.56,4.92h125.1a2.5,2.5,0,0,1,0,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M290,179.6h0a2.5,2.5,0,0,1-2.5-2.5l0-145.1a2.5,2.5,0,0,1,2.5-2.5h0a2.5,2.5,0,0,1,2.5,2.5l0,145.1A2.5,2.5,0,0,1,290,179.6Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M290,316.5H139a2.5,2.5,0,0,1-2.5-2.5V177.1a2.5,2.5,0,0,1,2.41-2.5L242,171a2.5,2.5,0,1,1,.17,5L141.5,179.51v132h146l0-59.5a2.5,2.5,0,0,1,.74-1.77,2.38,2.38,0,0,1,1.78-.72l125.16,1a2.5,2.5,0,1,1,0,5l-122.64-1,0,59.48A2.5,2.5,0,0,1,290,316.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M199.36,316.5a2.5,2.5,0,0,1-2.5-2.5V175a2.5,2.5,0,0,1,5,0V314A2.5,2.5,0,0,1,199.36,316.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M415.16,324.62H144l-.3,0L77,316.48a2.5,2.5,0,0,1,.3-5H139a2.5,2.5,0,0,1,0,5H118.54l25.61,3.12H369.87l-28.15-3.12H290a2.5,2.5,0,0,1,0-5h51.88l.27,0,73.31,8.12a2.5,2.5,0,0,1-.28,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M195.71,489.21H139a2.51,2.51,0,0,1-.5-.05L76.81,476.45a2.5,2.5,0,0,1-2-2.45V314a2.5,2.5,0,0,1,5,0V472l59.44,12.25h56.46a2.5,2.5,0,0,1,0,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M144,489.21a2.5,2.5,0,0,1-2.5-2.5V322.12a2.5,2.5,0,0,1,5,0v164.6A2.5,2.5,0,0,1,144,489.21Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M415.16,391a2.5,2.5,0,0,1-2.5-2.5V322.12a2.5,2.5,0,0,1,5,0V388.5A2.5,2.5,0,0,1,415.16,391Z" transform="translate(-60.79 2.5)"/><circle class="cls-2" cx="268" cy="397.88" r="4.97"/><circle class="cls-2" cx="332.92" cy="374.31" r="4.97"/><path class="cls-2" d="M746,291.5l-.33,0-50.12-6.6a2.5,2.5,0,1,1,.65-5l50.12,6.6a2.5,2.5,0,0,1-.32,5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M260.2,516c-11.18,0-22.1-.85-32.78-1.67-5.72-.44-11.25-1.28-17.79-2.41-.42-.07-1.15-.13-1.93-.2-3.83-.31-6.88-.7-8.48-2.55-2.33-2.7-2.49-14.1-2.49-14.21a2.5,2.5,0,0,1,.76-1.78,2.43,2.43,0,0,1,1.81-.7,86.45,86.45,0,0,1,11.45,1.34c2.72.44,5.53.9,8.3,1.14,2.19.19,4.39.43,6.52.67,2.37.27,4.82.54,7.24.73,11.37.88,23.05.62,37.87-.85,4.78-.47,9.53-.91,14.27-1.34,8.69-.79,17.68-1.62,26.58-2.67,6.31-.75,12-1.48,17.45-2.22,4.9-.67,9.64-1.59,14.23-2.48l3-.57a2.5,2.5,0,0,1,.94,4.91l-3,.57c-4.65.9-9.46,1.83-14.5,2.52-5.46.75-11.2,1.48-17.54,2.23-9,1.06-18,1.89-26.71,2.69-4.73.43-9.47.87-14.23,1.34-15.12,1.5-27.08,1.76-38.75.86-2.5-.19-5-.47-7.41-.74-2.1-.23-4.26-.48-6.39-.66-3-.25-5.88-.73-8.69-1.18s-5.43-.89-8.12-1.12c.21,3.07.69,7.15,1.22,8.31.74.45,3.75.69,5.05.8.93.08,1.73.14,2.37.25,6.4,1.1,11.79,1.92,17.33,2.35,16.15,1.25,32.85,2.55,49.94.84,3.43-.34,7-.56,10.36-.78,4.63-.29,9.41-.59,14-1.2,3.91-.53,7.81-1.15,11.58-1.76a221.82,221.82,0,0,1,23.71-2.93c2.85-.15,5.73-.1,8.52-.05,1.38,0,2.75,0,4.11,0a2.5,2.5,0,0,1,0,5c-1.39,0-2.8,0-4.2,0-2.7,0-5.49-.1-8.17,0a215,215,0,0,0-23.18,2.88c-3.81.61-7.74,1.25-11.71,1.78-4.73.63-9.6.94-14.31,1.23-3.36.21-6.84.43-10.18.76C272.16,515.75,266.14,516,260.2,516Zm-57.09-10Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M312.32,579.89q-1.43,0-2.86,0c-15-.5-31.12-1.47-50.81-3.05-3.23-.26-6.56-.34-9.77-.42-3.72-.09-7.57-.19-11.4-.55a74,74,0,0,1-8.77-1.55c-2-.44-4.12-.9-6.18-1.21a55.21,55.21,0,0,0-9.94-.29c-2.27.07-4.62.13-7,0a2.5,2.5,0,0,1-2.38-2.36c-.21-3.82-.29-8.26,1.5-12.54a66.07,66.07,0,0,0,3.9-11.72,3.41,3.41,0,0,0-.06-2.55l-.09-.07a4.08,4.08,0,0,1-1.68-3.3,3.78,3.78,0,0,1,1.78-2.78l.12-.09c1.49-5.19-.17-11.18-1.78-17a76.62,76.62,0,0,1-2.05-8.66,2.5,2.5,0,0,1,4.94-.76,71.94,71.94,0,0,0,1.93,8.08c1.86,6.69,3.78,13.6,1.57,20.34a3.23,3.23,0,0,1-.73,1.2,3.74,3.74,0,0,1,.63,1.13,7.77,7.77,0,0,1,.32,5.48,70.61,70.61,0,0,1-4.19,12.63,19.26,19.26,0,0,0-1.21,8c1.44,0,2.85,0,4.33-.08a59.92,59.92,0,0,1,10.83.34c2.22.33,4.4.81,6.51,1.27a69.34,69.34,0,0,0,8.18,1.46c3.64.35,7.4.44,11,.53,3.29.08,6.68.16,10.05.43,19.61,1.58,35.68,2.55,50.57,3,12.67.43,25.17-2.26,37.24-4.86,7.23-1.55,12.09-2.88,14.44-3.93a2.5,2.5,0,0,1,2,4.56c-2.71,1.21-7.75,2.6-15.43,4.25C336.44,577.34,324.6,579.89,312.32,579.89Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M372,620.83a2.49,2.49,0,0,1-1.73-.69c-1.32-1.27-2.55-2.67-3.74-4a39,39,0,0,0-5.07-5.14,2.5,2.5,0,0,1,3.07-3.94,43.31,43.31,0,0,1,5.76,5.79c1.17,1.33,2.27,2.59,3.43,3.71a2.5,2.5,0,0,1-1.73,4.31Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M357,551.65a5.21,5.21,0,0,1-2.67-1c-5.24-3.3-4.58-11.16-4.14-16.36.07-.8.13-1.54.16-2.18.06-1.23.14-2.47.22-3.7.17-2.67.34-5.43.34-8.11,0-.37-.07-1-.15-1.64-.32-2.75-.76-6.51,1.74-8.64a5,5,0,0,1,2.09-1,4.05,4.05,0,0,1,3.34.57,3.84,3.84,0,0,1,.47-.26,2.5,2.5,0,0,1,3.11.82l.07.09a3.77,3.77,0,0,1,5.15,1c1.64,2.09,1.54,5.24,1.47,7.55,0,.38,0,.72,0,1,0,4.07,0,8.45-.34,12.9,0,.57-.06,1.32-.08,2.17-.17,6.18-.56,11.92-3.51,14.29-.94.76-1.91,1.54-3.26,1.25a2.59,2.59,0,0,1-1.34-.75,2.73,2.73,0,0,1-2.64,2Zm-1.41-37.47a16,16,0,0,0,.13,3.87,20.36,20.36,0,0,1,.18,2.21c0,2.84-.18,5.68-.35,8.43-.08,1.21-.15,2.42-.21,3.64,0,.69-.1,1.49-.17,2.34-.28,3.34-.73,8.69,1.06,11l.18-.14a3.3,3.3,0,0,1,3.06-2,2.86,2.86,0,0,1,2.16.91c.92-2.23,1.07-7.73,1.13-9.73,0-.93,0-1.74.09-2.36.28-4.31.32-8.59.33-12.58,0-.35,0-.75,0-1.18a22.32,22.32,0,0,0-.07-3.18,2.63,2.63,0,0,1-3.27.36,2.5,2.5,0,0,1-3.7-.65l-.09-.14C355.94,514.73,355.76,514.44,355.59,514.19Zm4.89,30.51h0Zm-4.74-30.9h0Zm-1.62-1.9h0Z" transform="translate(-60.79 2.5)"/></g><g id="circle"><path class="cls-2" d="M153.52,177.1A349.71,349.71,0,0,1,222,114.31L221,102a6,6,0,0,0-3.76,1,361.7,361.7,0,0,0-75.95,70.06,6,6,0,0,0-1.31,4.4" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M139.38,195.21A344.77,344.77,0,0,0,72.79,400c0,191.91,156.13,348,348,348s348-156.13,348-348c0-121.6-61.55-232-164.86-296l.87-13a6,6,0,0,1,2.24.81A359.84,359.84,0,0,1,780.86,400,360.13,360.13,0,0,1,89.08,540.14,360.53,360.53,0,0,1,134.23,182a6,6,0,0,1,3.74-2.26Z" transform="translate(-60.79 2.5)"/></g><g id="layers"><g class="cls-10"><path class="cls-8" d="M368.81,388.34l-1.1-23.69s8.48-17.33,8.09-18,6.68-6.06,6.68-6.06l13-1,8.29,1.85,9.82,12.28,7.21,15.07L424.21,386l-4.71,21.73-6.39,11.59-8.61,4.11L390.36,422l-5.08-3.31,3.67-3.79v-5.42l-4-6.79-5.56-2.47-1.51-7.57Z" transform="translate(-60.79 2.5)"/></g><g class="cls-10"><polygon class="cls-8" points="226.66 366.6 237.24 361.46 250.18 361.46 265.7 366.6 279.96 384.01 285.01 395.42 287.35 407.55 286.4 422.15 279.23 440.12 268 452.2 253.91 456.94 235.27 454.47 220.17 446.08 208.28 425.94 205.61 398.57 213.7 378.9 226.66 366.6"/></g><path class="cls-2" d="M426,376.14c-2.08-12-7.08-22.86-14.06-30.5-7.32-8-16-11.61-24.38-10.16s-15.34,7.76-19.54,17.76c-3.34,7.95-4.62,17.52-3.76,27.46a26.09,26.09,0,0,0-17.18,6.73c-8.49-20.91-28.27-34.1-48.45-30.6-23.83,4.13-39.32,30-34.53,57.59,4.35,25.11,24,43.19,45.38,43.19a38.08,38.08,0,0,0,6.5-.56c11.63-2,21.63-9.18,28.14-20.17a55,55,0,0,0,6.39-37.42c-.32-1.87-.74-3.7-1.23-5.49a19.71,19.71,0,0,1,15.78-7.13c.22,1.27.63,3.21.91,4.42a3.06,3.06,0,0,0,6-1.36c-.26-1.15-.67-3.1-.87-4.24-1.89-10.9-1-21.56,2.6-30,3.37-8,8.67-13,14.95-14.1s13,1.85,18.82,8.26c6.2,6.78,10.66,16.52,12.54,27.41,3.81,22-4.06,41.81-17.54,44.14a13,13,0,0,1-3.13.12,23.62,23.62,0,0,1-10.67-3.64,11.5,11.5,0,0,0-1.58-1.14c-.49-.19-1.28.36-1.83.46a9.58,9.58,0,0,0-1.67.32,1.45,1.45,0,0,0-1,1.23,2.66,2.66,0,0,0,.7,1.39,13,13,0,0,1,.83,1.85c.22.45.71.67,1.13.94a28.53,28.53,0,0,0,15.33,4.73,17.49,17.49,0,0,0,3-.24C420.27,424.45,430.38,401.47,426,376.14Zm-87.14,57.62c-5.59,9.43-14.08,15.56-23.92,17.26-20.5,3.55-40.6-13.34-44.81-37.64s9-47,29.55-50.52a32.07,32.07,0,0,1,5.48-.47c18.49,0,35.5,16,39.33,38.11A48.84,48.84,0,0,1,338.85,433.76Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M309.47,458.61c-22.09,0-42-18.92-46.37-44-4.88-28.17,11-54.53,35.35-58.75,19.89-3.45,39.86,8.82,49,29.93a27.19,27.19,0,0,1,15.71-6,58.73,58.73,0,0,1,3.92-26.87c4.34-10.33,11.55-16.85,20.3-18.36s17.73,2.2,25.29,10.47c7.11,7.77,12.19,18.78,14.3,31h0c4.48,25.87-6,49.37-23.34,52.37a18.5,18.5,0,0,1-3.14.25,29.35,29.35,0,0,1-15.87-4.89l-.23-.14a3,3,0,0,1-1.25-1.2c-.13-.27-.23-.54-.33-.81a4.14,4.14,0,0,0-.42-.92l-.16-.22a2.91,2.91,0,0,1-.72-1.74,2.4,2.4,0,0,1,1.67-2.16,5.81,5.81,0,0,1,1.34-.29l.5-.07a3.31,3.31,0,0,0,.46-.17,2.52,2.52,0,0,1,1.92-.24,4.9,4.9,0,0,1,1.26.85,5.44,5.44,0,0,0,.5.39,21.77,21.77,0,0,0,3.33,1.76,21.47,21.47,0,0,0,6.86,1.72,12,12,0,0,0,2.89-.11c12.94-2.24,20.45-21.52,16.73-43-1.85-10.71-6.22-20.27-12.3-26.91-5.63-6.15-12-9-17.91-7.95s-11,5.82-14.2,13.51c-3.49,8.3-4.39,18.77-2.53,29.48.2,1.14.6,3.06.86,4.19a4.06,4.06,0,1,1-7.91,1.81c-.22-1-.53-2.43-.77-3.66a18.76,18.76,0,0,0-13.84,6.39c.45,1.71.82,3.41,1.11,5.07a56,56,0,0,1-6.51,38.1C338.31,448.64,328.07,456,316.15,458A39.24,39.24,0,0,1,309.47,458.61Zm-4.33-101.34a37.16,37.16,0,0,0-6.35.55c-23.28,4-38.41,29.35-33.72,56.44,4.18,24.15,23.27,42.36,44.4,42.36a37.25,37.25,0,0,0,6.33-.54c11.34-2,21.09-9,27.45-19.69a54,54,0,0,0,6.26-36.74c-.31-1.77-.71-3.58-1.21-5.4l-.14-.5.32-.4a20.76,20.76,0,0,1,16.59-7.5l.81,0,.14.79c.23,1.3.63,3.22.9,4.37a2.06,2.06,0,0,0,2.47,1.55,2.06,2.06,0,0,0,1.55-2.47c-.27-1.16-.68-3.13-.88-4.3-1.92-11.08-1-21.95,2.66-30.59,3.5-8.33,9.08-13.56,15.7-14.7s13.62,1.89,19.73,8.57C414.49,356,419,365.93,420.95,377c3.9,22.55-4.33,42.87-18.36,45.3a14,14,0,0,1-3.37.13,23.47,23.47,0,0,1-7.5-1.87,23.81,23.81,0,0,1-3.64-1.93,7.5,7.5,0,0,1-.69-.53,5.15,5.15,0,0,0-.63-.48,4.85,4.85,0,0,0-.5.19,4.3,4.3,0,0,1-.86.29l-.6.09a4.18,4.18,0,0,0-.89.18.65.65,0,0,0-.38.3,1.91,1.91,0,0,0,.33.55l.19.27a5.89,5.89,0,0,1,.65,1.35c.08.21.16.42.26.63a1.78,1.78,0,0,0,.49.36l.29.18a27.71,27.71,0,0,0,14.78,4.57,16.5,16.5,0,0,0,2.8-.22c16.26-2.82,26-25.27,21.71-50.06h0c-2.05-11.85-7-22.5-13.81-30-7.08-7.75-15.42-11.24-23.47-9.85S373,344,368.94,353.64c-3.27,7.78-4.54,17.11-3.68,27l.09,1.08h-1.09a25.09,25.09,0,0,0-16.52,6.47l-1.06,1-.54-1.33C338.55,369.1,322.28,357.27,305.14,357.27Zm4.32,95.22c-19,0-36.41-16.32-40.32-38.94-4.3-24.85,9.32-48,30.36-51.67a33.19,33.19,0,0,1,5.65-.49c19.14,0,36.48,16.74,40.32,38.94a49.84,49.84,0,0,1-5.75,33.94C334,444,325.23,450.25,315.1,452A33,33,0,0,1,309.46,452.49Zm-4.31-89.1a31.2,31.2,0,0,0-5.31.46c-20,3.46-32.85,25.6-28.73,49.36S294.8,453.49,314.76,450c9.55-1.65,17.8-7.61,23.23-16.79h0a47.84,47.84,0,0,0,5.5-32.58C339.81,379.42,323.32,363.39,305.14,363.39Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M371.49,408.63a13.15,13.15,0,0,1-1.43-.08,12.82,12.82,0,0,1-8.47-4.94,9.18,9.18,0,0,1-1.83-7.18c1.23-6.66,9.76-7.66,14.6-7.21h0a9.63,9.63,0,0,1,4.79,1.55,8.4,8.4,0,0,1,3.17,7.19,11.07,11.07,0,0,1-6.4,9.79A11.23,11.23,0,0,1,371.49,408.63Zm.79-14.5c-3.31,0-7.17.89-7.6,3.21a4.26,4.26,0,0,0,.92,3.28,7.71,7.71,0,0,0,5,3,6.7,6.7,0,0,0,3.36-.42,6.08,6.08,0,0,0,3.38-5.35,3.59,3.59,0,0,0-1.08-3,5.2,5.2,0,0,0-2.35-.64h0C373.39,394.15,372.85,394.13,372.29,394.13Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M363.66,424.5a11.22,11.22,0,0,1-7.68-3,12.76,12.76,0,0,1-3.34-12.21,15.39,15.39,0,0,1,7.71-9.63,2.5,2.5,0,0,1,2.39,4.39,10.53,10.53,0,0,0-5.24,6.45,7.79,7.79,0,0,0,1.94,7.37,6.05,6.05,0,0,0,6.84,1,13.26,13.26,0,0,0,1.65-1.22,18.82,18.82,0,0,1,2.06-1.53c3.61-2.23,8-2,11.37-1.58,1.91.24,4,.51,5-.3s.89-3.23,0-5c-1.06-2.1-5.27-5.48-8-6.77a2.5,2.5,0,0,1,2.15-4.51c3.08,1.47,8.52,5.54,10.28,9s2,8.39-1.34,11.12c-2.66,2.14-6.14,1.7-8.68,1.37s-5.91-.53-8.19.87a14.67,14.67,0,0,0-1.52,1.14,17.46,17.46,0,0,1-2.31,1.68A10.19,10.19,0,0,1,363.66,424.5Z" transform="translate(-60.79 2.5)"/><path class="cls-2" d="M376.27,435a8.13,8.13,0,0,1-4-1,13,13,0,0,1-3.16-2.74,12,12,0,0,1-1.82-2.39c-1.18-2.18-2.32-5.7-2-8.26a2.5,2.5,0,1,1,5,.56,11.53,11.53,0,0,0,1.46,5.31,8.1,8.1,0,0,0,1.12,1.4,8.88,8.88,0,0,0,1.92,1.75,4,4,0,0,0,4-.44,6.94,6.94,0,0,0,2.53-4.42,20.49,20.49,0,0,0-.59-7,2.5,2.5,0,1,1,4.89-1,24.37,24.37,0,0,1,.62,8.94,11.8,11.8,0,0,1-4.51,7.58A9.3,9.3,0,0,1,376.27,435Z" transform="translate(-60.79 2.5)"/></g></svg>
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyShadowsScene2.png b/vendor/github.com/golang/dep/docs/assets/DigbyShadowsScene2.png
deleted file mode 100644
index 569ddfe9e6231a946c718b5d572c4e821d5c2406..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/DigbyShadowsScene2.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/DigbyShadowsScene2.svg b/vendor/github.com/golang/dep/docs/assets/DigbyShadowsScene2.svg
deleted file mode 100644
index 71d9bb8a0188cc5b8acfcbd56bb3811521e8cfae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/assets/DigbyShadowsScene2.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 725.13 841.56"><defs><style>.cls-1{fill:#1c1c1b}.cls-2{fill:#ced8d2}.cls-3{opacity:.2}.cls-4{opacity:.45}.cls-5{fill:#ccbca8}.cls-6{fill:#b79765}.cls-7{fill:#fff}.cls-8{opacity:.38}.cls-9{fill:#f6d2a2}.cls-10{fill:#b7a38d}.cls-11{fill:#1d1d1b}.cls-12{opacity:.19}</style></defs><title>BoyerShadowsScene2</title><g id="Capa_10" data-name="Capa 10"><path class="cls-1" d="M764.83,322.58A357.59,357.59,0,0,0,608.13,193.31l.36-11,36.64-58.43a2.5,2.5,0,0,0-2.34-3.82l-24.27,2.17,11.87-36.4a2.5,2.5,0,0,0-1.76-3.2l-134.5-34a2.5,2.5,0,0,0-3.05,1.89l-21.16,96.39L429.15,79.7a2.51,2.51,0,0,0-2.31-1.2L276.83,89a2.5,2.5,0,0,0-2.15,3.41l3.72,9.52-17.26-4.35a2.5,2.5,0,0,0-2.5,4.06l53.29,61.29V202.7a3.52,3.52,0,0,0-3.42-.16,357.58,357.58,0,1,0,456.3,120Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M468.33,885.06a362.61,362.61,0,0,1-162-687q.32-.16.65-.29v-33l-52.07-59.88a7.5,7.5,0,0,1,7.49-12.19l7.84,2-.18-.47A7.5,7.5,0,0,1,276.48,84l150-10.5a7.49,7.49,0,0,1,6.93,3.59l34.28,56.48,18.48-84.19a7.5,7.5,0,0,1,9.15-5.67l134.51,34a7.5,7.5,0,0,1,5.29,9.6l-9.52,29.2L642.34,115a7.5,7.5,0,0,1,7,11.45l-35.92,57.28-.2,6.29a362.56,362.56,0,0,1-144.91,695ZM310,207.39a352.51,352.51,0,1,0,296.15-9.48L603,196.57l.51-15.82,34.68-55.31-26.8,2.39L624.8,86.77,495.4,54.06,472.12,160.13,425.66,83.6,280.58,93.76l6,15.39-18.95-4.78,49.29,56.69v50.56Z" transform="translate(-105.77 -43.5)"/></g><g id="background_color" data-name="background color"><path class="cls-2" d="M606.14,196.29C733.21,250,822.37,375.85,822.37,522.5c0,195.53-158.51,354-354,354s-354-158.51-354-354c0-138.66,79.71-258.7,195.81-316.8" transform="translate(-105.77 -43.5)"/></g><g id="background_shadows" data-name="background shadows"><g class="cls-3"><polygon points="655.41 575.12 531.59 650.5 494.43 631.06 496.06 597.66 556.54 578.75 655.41 575.12"/></g><g class="cls-3"><path d="M168.51,577.42l-52.39,5.17s20.59,65.66,26.2,78.18S178.74,727,185.62,737.5s37.45,40.32,37.45,40.32L383.61,705Z" transform="translate(-105.77 -43.5)"/></g></g><g id="Capa_9" data-name="Capa 9"><path class="cls-1" d="M770.15,537.19c-5.12,0-9.59-.48-13-1.76a2.5,2.5,0,0,1,1.78-4.67c7.58,2.88,23.89.83,38.27-1,8.92-1.12,17.34-2.18,23.83-2.18a2.5,2.5,0,0,1,0,5c-6.19,0-14.46,1-23.21,2.14C788.21,535.95,778.35,537.19,770.15,537.19Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M116.11,585.09a2.5,2.5,0,0,1-.58-4.93c12-2.85,23.67-3.07,36.58-3.07a2.5,2.5,0,0,1,0,5h0c-12.64,0-24,.21-35.42,2.93A2.48,2.48,0,0,1,116.11,585.09Z" transform="translate(-105.77 -43.5)"/><g class="cls-4"><path class="cls-1" d="M307.84,758.67h-4.67a2.5,2.5,0,0,1,0-5h4.67a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M348.51,782.67h-6a2.5,2.5,0,1,1,0-5h6a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M491.18,824.67h-2.67a2.5,2.5,0,1,1,0-5h2.67a2.5,2.5,0,1,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M546.51,806h-2.67a2.5,2.5,0,0,1,0-5h2.67a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M693.18,678.67a2.5,2.5,0,0,1-1-4.78,9.8,9.8,0,0,1,4.46-.89,2.5,2.5,0,0,1,2.41,2.59,2.53,2.53,0,0,1-2.59,2.41,4.85,4.85,0,0,0-2.2.44A2.49,2.49,0,0,1,693.18,678.67Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M671.17,663.33a2.5,2.5,0,0,1-.21-5l3.06-.29c1.43-.14,2.86-.28,4.3-.38a2.5,2.5,0,0,1,.36,5c-1.4.1-2.79.24-4.18.37l-3.13.29Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M743.84,654h-6a2.5,2.5,0,0,1,0-5h6a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M787.18,579.33h-8a2.5,2.5,0,0,1,0-5h8a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M628.13,800.15a18.45,18.45,0,0,1-6.49-1,2.5,2.5,0,1,1,1.73-4.69c2.16.8,4.77.7,7.54.59,1,0,2-.07,2.94-.07a2.5,2.5,0,0,1,0,5h-.09c-.87,0-1.75,0-2.65.07S629.13,800.15,628.13,800.15Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M302.11,802.76a25.61,25.61,0,0,1-6.21-.84,2.5,2.5,0,0,1,1.22-4.85,18.38,18.38,0,0,0,6.44.61,2.5,2.5,0,1,1,.57,5A17.58,17.58,0,0,1,302.11,802.76Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M354.79,816.06a18.53,18.53,0,0,1-8-1.64,2.5,2.5,0,0,1,2.15-4.51,14.84,14.84,0,0,0,7.42,1.1,2.5,2.5,0,0,1,.35,5Q355.72,816.06,354.79,816.06Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-4"><path class="cls-1" d="M239.84,748.67h-5.33a2.5,2.5,0,1,1,0-5h5.33a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/></g></g><g id="COLOR"><path class="cls-5" d="M636.94,672.51l.8-29.52,123.44-24.37V376.75L670.5,347.84,601.4,325l3.79-143.43L643,122.5,615,125,627.37,87,493.51,51,468.33,152.25,427,81,277,91.5l5.55,14.05L262,101.71,313.76,162l.69,106.83L247.51,274l-11.2-.75,8.12,48.44-1.59,103.56v2.92l-42.58,5.43V470.5l-50.82,8v45l-4.36,2,12.4,36-2,100.22,95.38,63.2c.75.5,131-19.64,131-19.64Z" transform="translate(-105.77 -43.5)"/><path class="cls-6" d="M488,791.08c1.73.41,3.46.83,5.22,1.13,6.25,1.07,11.6,2.26,18.06,1.63,15.87-1.55,33.24-1.7,48.46-6.84,9.3-3.14,17.6-8.61,25.79-14l21.6-14.3c7.14-4.73,14.35-9.51,20.21-15.76,3.07-3.27,6-7.1,10.28-8.44,3.42-1.07,6.91,0,10.21-1s6.54-3.75,8.88-6.16a28.13,28.13,0,0,0,8.11-19.64c-.06-4.51-1.64-9.52-5.69-11.52-5.15-2.55-8.9,1.34-12.27,4.65-2.85,2.8-5.23,7.7-7.65,2-1.27-3-1-5.72-1.82-8.82-2-7.49-2.87-17.1-6.28-24.09s-13.47-5.69-19.9-5c-3.27.35-6.28,2.14-9.35,2.57-5.08.73-10.24-.11-15.36.77-10,1.71-20.73,3.63-30.14,7.61-10.29,4.35-19,11.78-28.48,17.55-6.62,4-8.49,8.54-12.51,14.63-2.18,3.29-2.85,4.21-7.09,4.81a13.21,13.21,0,0,0-7.4,3,133.18,133.18,0,0,0-20,17.45A147.06,147.06,0,0,0,464.33,755c-2.47,4-4.95,7.94-7.57,11.93-2.18,3.31-7.21,7.6-8.2,11.21,4.48.44,9.38,4.8,13.63,6.63,4,1.74,8.69,4.48,13,5.08,2.75.39,5.59-.06,8.33.34C485,790.4,486.49,790.73,488,791.08Z" transform="translate(-105.77 -43.5)"/><path class="cls-6" d="M577.72,629.6q1.12-1.14,2.21-2.32c2.31-2.5,6.69-5.41,7.4-8.85a12.6,12.6,0,0,0-.2-4.62c-.49-2.9-4-13.59-1.07-15.25a6.65,6.65,0,0,1,2.48-.54c4.88-.6,8.84-4.32,11.51-8.45,7.67-11.89,6.78-30.25-1.48-41.48l-5.77-7.85a42.81,42.81,0,0,0-6.15-7.19,24.19,24.19,0,0,0-19.1-5.79c-5.24.6-10.62,1.84-15.71.44-6.12-1.68-10.55-6.81-15.62-10.61-11.44-8.57-26.51-10.51-40.81-10.52a6.36,6.36,0,0,1-3.58-.7,7.41,7.41,0,0,1-2-2.67,19.85,19.85,0,0,0-6.55-6.83,7,7,0,0,0-4.88-1.36,8.49,8.49,0,0,0-3.73,2.19c-2.45,2.07-5.11,4.3-6.63,7.19-1.34,2.55-.75,6.11-3.41,7.46-2.07,1.05-6.25,1-8.69,1.86q-6,2.11-11.86,4.63c-11.08,4.77-21.65,10.62-32.2,16.46-9.48,5.25-19.69,11.33-23.34,21.53-.76,2.13-2.21,3-3.16,5a22.16,22.16,0,0,0-23.17,2.28,10.31,10.31,0,0,0-4.1,5.86,10.86,10.86,0,0,0,1.44,6.8,28,28,0,0,0,16.12,13.78,4.73,4.73,0,0,1,2.38,1.28c1.42,1.8-.31,4.55-1,6.29a16.18,16.18,0,0,0-1.49,6.8v50.12c0,5.83.09,12,3.07,17,24.4.82,49.14-5.34,73.43-7.85,10.86-1.13,21.79-1.25,32.68-2,13.67-1,27.24-2.89,40.81-4.83,6.15-.88,12.4-1.86,18.23-4.11a93,93,0,0,0,25.29-15.26A110.36,110.36,0,0,0,577.72,629.6Z" transform="translate(-105.77 -43.5)"/><path class="cls-7" d="M551.14,648.24a67.44,67.44,0,0,1-9.66,4.38,66.76,66.76,0,0,1-13.13,2.49q-36.59,4.39-73.27,7.93c-22.21,2.14-43.57,6.23-65.86,7.06a40.19,40.19,0,0,0-15.61,3.34c-.16,3.1-.3,6.31.75,9.23s3.64,5.53,6.75,5.62a31.17,31.17,0,0,0,1.32,12.18,62.17,62.17,0,0,0,3.63,8.47c2.84,5.82,5.29,12.19,8.67,17.71,2.63,4.3,5.48,8.34,6.8,13.35,1.23,4.67,3.06,6.19,6.32,9.51,3.59,3.65,7.3,7.54,11,11.31,5.46,5.63,10.9,9.18,18,12.77,1.93,1,3.89,1.83,5.74,2.84,3.09,1.68,3.64,2.29,6.11-.71,3.95-4.81,7.13-10.25,11.23-14.92,3.41-3.88,6.75-7.86,9.78-12,4.73-6.42,9.78-12.61,14.9-18.73,4.32-5.16,10.41-8.76,15-13.52,2.82-2.94.35-3.06-.08-7.15-.74-7,2.48-24.26,12.5-18.55,3.65,2.08,4.47,6.22,7.77,7.92,1-2.83,4.22-5.08,6.75-6.63,4.12-2.52,7.95-5.48,12.35-7.42,6.86-3,13.52-6.36,20.46-9.1,7.16-2.83,14.43-6.14,22-7.72,8.37-1.74,16.44-1.92,25-2.34,6.53-.32,13.08-.12,19.43-1.12,0-1.92-3.18-4.81-4.48-6.45a70.75,70.75,0,0,0-5.79-6.52c-4.4-4.28-8.58-.64-12.84,2.51s-15.29,11-19.27,3.36c-4.43-8.46,2.81-15.4,10.76-15.85,4.41-.25,7.76.45,11.09,3.34,2.94,2.54,5,6.21,8.85,7.3,3.25-5.74-.65-13.37-5.28-16.92-5-3.86-11-3.82-15.33-8.71-1.53-1.75-3-6-5-7-2.57-1.27-4.3,2.26-6,4.44-4,5.2-7.54,10.85-13.37,14.23S557.26,645.07,551.14,648.24Z" transform="translate(-105.77 -43.5)"/><g class="cls-8"><path class="cls-7" d="M548.55,520.1a25.14,25.14,0,0,1,6.58-6.75,23.42,23.42,0,0,1,7.31-2.95,40.69,40.69,0,0,1,35.7,8.76c11.42,10,15.88,25.19,17.67,39.75.86,7,2.84,12.83,1.86,20a46.19,46.19,0,0,1-9.29,22.14,24.82,24.82,0,0,1-7.23,6.57c-4.26,2.37-9.29,2.79-14.15,3.17l-12.41,1c-3,.23-6.28.43-9-1-2.14-1.16-3.63-3.21-5-5.2C543.23,581.15,529,547.74,548.55,520.1Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-8"><path class="cls-7" d="M423.16,562.28a25.14,25.14,0,0,1,6.58-6.75c17.24-11.2,40.27-11.29,59.15-4.76,7.48,2.59,15,6.48,19.15,13.23,2.19,3.57,3.27,7.7,5.06,11.48,2.78,5.88,5.22,8.87,5.62,15.37.35,5.59,1.06,11.13,1.07,16.75,0,10.38-1.67,22-10.26,29-9.82,7.93-21.24,14.51-33.77,16-11.55,1.37-23.07-1.78-33.34-6.94-4.59-2.31-11.26-5.26-14.7-9.17-2.83-3.22-4.69-8.71-6.44-12.64C412.37,603.93,410,580.92,423.16,562.28Z" transform="translate(-105.77 -43.5)"/></g><path class="cls-9" d="M521.44,619.75a4.06,4.06,0,0,0,.1,2.17,3.59,3.59,0,0,0,1.47,1.52,10.39,10.39,0,0,0,11.8-.66c2.25-1.82,3.66-4.55,6-6.22,4.47-3.15,10.66-1.55,15.94-3a8.15,8.15,0,0,0,5.21-3.66c1.57-2.92.15-6.82-2.56-8.74s-6.3-2.16-9.56-1.52a7.14,7.14,0,0,0-2.58.94c-.5.33-.92.76-1.44,1.07a7.24,7.24,0,0,1-2.14.74,91,91,0,0,1-9.6,2.15c-1.8.21-4-.33-5.66.51C524.25,607.22,522.06,615.55,521.44,619.75Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M539.69,595.19a16.74,16.74,0,0,0-5.23,2.53,7.4,7.4,0,0,0-2.66,3.05,2.77,2.77,0,0,0-.21,1.58,3,3,0,0,0,1.52,1.83,8.09,8.09,0,0,0,4.66.9,34.56,34.56,0,0,0,4.74-.86,12.39,12.39,0,0,0,4.27-1.41,3.67,3.67,0,0,0,1.78-3.83,4.43,4.43,0,0,0-2.74-2.55,12.88,12.88,0,0,0-7.51-.78" transform="translate(-105.77 -43.5)"/><path class="cls-7" d="M538.59,620.55a4.57,4.57,0,0,0,.24,1.64c.34,1.06,2.86,5.74,4,6.17,3.37,1.25,12-3.91,12-7.67-.11-7-5.46-6-10.54-4.6C541.69,616.81,538.73,617.93,538.59,620.55Z" transform="translate(-105.77 -43.5)"/><path class="cls-6" d="M511.18,690.5c-9.54-4.09-12.13,7.26-11.68,14.67.27,4.56,1.43,7.6,6.67,7.33,4.82-.25,10.48-4.16,12.43-8.64S516.34,693.51,511.18,690.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-6" d="M601.84,640.83c-4.64-2.27-18.77,2-20.76,7.33-5.05,13.47,13.34,13.65,20.77,9.07C608.25,653.3,614.29,646.82,601.84,640.83Z" transform="translate(-105.77 -43.5)"/><polygon class="cls-10" points="261.69 395.02 182.17 404.84 135.41 383.03 140.61 281.16 130.54 229.75 142.41 232.33 236.08 222.66 247.41 240.66 251.49 239.66 264.08 210.62 310.13 222.66 306.47 236.45 312.74 236 302.08 275.33 302.33 355.11 274.9 357.33 280.37 390.09 254.85 381.34 261.69 395.02"/></g><g id="shadows"><g class="cls-3"><path d="M397.5,545.11c5-5.27,11.18-9.17,17.39-13.1A178.07,178.07,0,0,1,454,513.52c9.72-3.16,11.15,1.58,1.09,5.49-13.06,5.07-23.87,13.14-34.14,22.5-5,4.57-9.92,9.43-12.86,15.51-1.65,3.4-2.59,7.48-5.24,10.47-3.92,4.43-14.43-.32-16.81-4.62C382.68,556.72,393.35,549.5,397.5,545.11Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M382,562c-5.63,0-12.67-3.47-18-.5-4.91,2.72-4.43,8.73-2.47,13.29s24.31,23.4,28.12,14.83c3.14-7.07-16.95-5.47-16.56-12.54a19.12,19.12,0,0,1,7.37-1.17C378.68,571.07,368.68,567.89,382,562Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M384,591c7.86,3.69,6.66,5.87,5.47,14.64-1.21,9-1.08,18.17-1.47,27.24-.3,6.87-1.18,15,3.13,21,4.79,6.71,16.64,7.09,24.13,8.07,8,1,18.91-.5,26.2,3.17-3.93,3.94-14.31,4.92-19.68,6.17-4.66,1.08-15.51,2.6-18.16,7.19-7,12.16,24.8,5.86,29.86,6.61C430.25,689,423,689.26,419.59,694c-3.68,5.12-3.85,13.11-4.19,19.11-.23,4-1.78,10.13,1.1,13.51,3.7,4.34,9.49-.2,14.53.43-2.72,3.86-10.18,13.25-3.22,15.51,5.82,1.89,4.29-2.58,6.7,3.49,1.45,3.66,1.39,8.13,5.53,10.21,7.8,3.9,21.8-9.37,27.09-14.47,6.7-6.46,11.79-11.78,19.74-16.69-.87,11.91-14.7,18-9.25,31.79,2.53,6.4,8.75,6.78,14.38,8.92,8.59,3.25,15.42,8.84,25,9.72,13.5,1.24,33.1,1.14,42-10.27,2.18-2.8,3.23-5.43,4.67-8.7,1.78-4,3.92-5.88,6.72-9-1,5.36-8.77,20-1.41,23.71,13.74,6.92,12.34-18.61,19-20.89,1.43-.49,5.89.68,8,.15,3.36-.85,6.88-3.07,10-4.63,5.77-2.91,12-4.53,17.39-8,3.74-2.42,7.76-5.79,11.54-7.81.46,4.6-7.45,12.32-10.55,15.42-4.11,4.11-10.12,7.33-15,10.76s-9.45,7.28-14.4,10.37c-4.23,2.65-9.38,3.45-13.18,6.19s-7.22,7.6-11.81,9.46c-2.16.88-4.08.2-6.25.73-2.45.6-5,2.09-7.69,3-13.71,4.59-29,9.28-43.56,8.5-8-.42-15-2.41-22.5-4.38-8.37-2.18-16.81-1.56-25-5.12-3.7-1.61-6.83-4.38-10.5-5.89-4.3-1.76-7.44-.64-11.5-1.1-7.84-.9-15.56-9.4-22-13.38-5.16-3.2-7.15-4.55-9.89-10.14a35.34,35.34,0,0,0-6.62-9.37c-4-4.35-3.95-10.18-8-14.61a57.14,57.14,0,0,1-6.5-8.39c-2.83-4.55-4.85-10.14-7.38-14.9a40.53,40.53,0,0,1-4.22-19.15c-5.68-.11-6.63-13.83-2.5-13.65.6-5.41-.77-12.84-1.3-18.39-.71-7.47-.6-14.91-.62-22.45,0-13.08,2.26-27.58,5.5-40.09" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M426.51,572c1.41-7.49,16.39-15.55,23.46-15.42-3.75,6.73-9.32,11.19-11.58,19.07a45.42,45.42,0,0,0-1.77,18.11A40.07,40.07,0,0,0,441.13,608c2.54,4.31,6.43,5.21,9.94,8-3,3.14-4.63,3.31-2.09,7.76,2.93,5.14,8.72,6.95,14.14,8.37,10.51,2.77,28.08,4.58,34.86-6.49-16.19,15.3-36.68,25.36-58.07,12.58-12.57-7.51-19.57-13.86-23.88-28.61-1.87-6.42-3.34-12.12-.9-18.64C417.81,583.78,425.11,577.49,426.51,572Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M531,599c-3.57,4.47-7.85,6.24-9.5,12a57.08,57.08,0,0,0-2,12.5c-.29,5.67,1,8.58,7.25,8,5.91-.53,7-2.14,12.5,0,6.66,2.55,8.28-.52,12.58-5.54-4.84,1.41-5.52,1.57-8.1-2.32-1.2-1.81-1.57-7.2-4-7.68-3.17-.63-5.09,5-8.61,4.07C526.64,618.81,526.54,607.42,531,599Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M550.51,537c-4.84,2.19-3.83,18.15-3.61,22.88.17,3.51-.69,7.91.13,11.32,1,4,4.64,8.32,6.79,11.76,3.47,5.55,6.81,14.68,12.42,18.55,2.47,1.71,5.68,1.68,8.27,3,2,1,4,3.89,6.48,4,9.84.57,2.46-8.92,4.07-12.52-1.59-1.66-2.65-.1-4.69-1.08-2.83-1.35-4.65-3.69-6.49-6.16-2.19-2.94-10.08-12.09-8.81-15.26C556.24,566.71,556.23,550.37,550.51,537Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M541,653.5c-4.87,1.15-16.92,1.11-19,6.51,2.92,2.72,8.27,1.67,10,5,1.52,2.94-1.09,7.9-.94,10.93,1.35-.47,1.81,0,3-1.23-.18.23-.84,1.14-1,1.24,11.63-9.73,25.33-19.65,39.84-24.52a46.33,46.33,0,0,0,1.51-8.3c-2.32,3.22-7.76,10.68-12.17,10.41-4.11-.26-5.75-6-10.75-3.52" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M453,696.5c-2.61-11.13,16.36,1.09,19,2.51s8.67,6,12,5c2.82-.81,4-6.32,4.5-9.37.67,3.88,1.2,13.8,6,7.29,1.12,2,3.18,1.81,4.88.63,2.47,7.16,8.24,2.66,13.12,2.08,5.19-.62,4.57,2.06,1.09,5.5-3.27,3.22-7.93,5-11.6,7.86-4.18,3.22-9.4,11.64-15.46,10.93-.22-3,2.27-5.72,0-8.33s-8.35-1.45-11.26-1.64C465.86,718.33,452.75,711.41,453,696.5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M522,674c-8-.49-16.6,3.35-24.53,4.11-6.43.62-13.74,1.36-20,3.52,2.5,2.54,8.24,1.53,11.48,1.48,1.54,0,3.76-.59,5.25-.13,3.06.95,2.36,2.71,4.44,4.23,3.43,2.5,6,0,10.7.89,3.2.61,6.72,2.68,10,3.34.81-5.63-1.54-4.06,2.59-8.94C524,680.17,527.32,675.21,522,674Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M587.51,635.5c-2.71,2.1-4,5.66-6.25,8.25-1.88,2.15-4.78,2.8-4.17,6.17,7-1.05,3.11,7.88,7.44,10.45,4.76,2.83,11.54-2.32,13.93-5.55-2.39,1.91-6.4,2.54-9.36,2.1-2.8-7.06-.07-13.59,6.91-15.68,2.73-.82,6.22.58,3.81-2.65-1.29-1.72-5.39,1.22-4.12-3.25.6-2.11,4.27-1.68,5.28-3.76C597.63,631,589.38,625.44,587.51,635.5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M638,714.5c-.73-4.45,7.31-16.33,12.42-15.42C651.87,705,642.81,714,643.5,721c.88,9,10.68,2.07,14.41-1.45.53,7.84-12.88,16.15-19.61,17-1.17.14-3.7.38-4.79,0-3.38-1.19-2.44.34-2-3.33C632.39,725.34,636.61,717.18,638,714.5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M149.44,520V478.5L278.51,461l9,79.5,33-75L427,514.83l-3.29,9.8-18.49,11.77c.57-.36-1.54-8.07-1.79-9a193.18,193.18,0,0,1-25.81,4.06c-26.8,2.53-54.93,12.18-78.25,26.11-13,7.79-25.92,20.72-34.38,33.37a62.39,62.39,0,0,0-6.54,11.79c-2.89,7.39-.68,11.48-.05,18.7.46,5.29-.47,11-.78,16.28l-2.2,37.91L252.51,726l-97-64.27,2-101.09L142,522.5l7,1.5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M238.51,426.5C232,427,225.38,430,219,430.89c-3.94.57-12.23.11-15.32,2.54-3.36,2.64-1.89,12.95-2.18,17.08-.37,5.2-2.53,13.57-1.42,18.43,9.62-2.43,19.82-2.39,29.79-3.41,10.33-1.06,21.15-3,31.39-3.5,3.72-.18,12.9-2.25,15.62.46,2.25,2.24,1.78,8.66,2.11,11.55.8,6.93,1.46,13.84,2.47,20.71,1.2,8.15,2.61,16.1,4,24.25,1.06,6,.85,12.5,3.12,18.26,6.35-9.54,13-21.37,16.62-32.52,2.25-6.92,3.77-13.84,6.26-20.75,2-5.68,3.07-15,9.83-17,8-2.32,18.46,6.73,25.46,9.47A140.2,140.2,0,0,1,370.51,489c6.61,4.21,18.87,10.6,26.93,11a141,141,0,0,0,.09-21.89C396.9,471.33,392,470.72,387,466c-2.93-2.78-5.59-6-8.31-8.93s-3.23-5.8-4.75-9.29c-1.35-3.11-3.44-5.93-4.14-9.21-6.1-.5-12.51,2.61-18.74,2.9-6.91.32-13,1.68-19.78,3.06A249.22,249.22,0,0,1,294.35,449c-7.85.36-12.06-3.22-18.83-7-5.83-3.28-11.78-5.78-17.87-8.5C251.93,431,245.54,425.89,238.51,426.5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><polygon points="137.08 381.75 138.66 278.19 130.54 228.5 143.74 231.78 236.73 222.66 245.81 240.49 194.74 245.5 179 285.98 182.46 404.33 137.08 381.75"/></g><g class="cls-3"><polyline points="208.66 222.66 208.68 118.5 154.77 56.5 275.74 87 330.85 154.64 330.74 352.89 302.33 355.11 302.24 272.5 313.05 235.7 306.24 236.47 310.13 224.59 262.74 208.7 251.69 240.49 245.81 240.49 236.73 222.66 208.68 225.41"/></g><g class="cls-3"><path d="M357.26,283.5c2.08-1.83,1.64-6,4.49-7.27,1.34-.57,4.9-.4,6.45-.55,3.69-.35,7.36-.09,11-.58,11.07-1.49,22.26-.56,33-.3a22.58,22.58,0,0,0-1.33,5.22c-9.5-.26-19,2.65-28.28,4.23-5.37.91-10.91,1.35-16.31,2C364.25,286.52,360.31,287.34,357.26,283.5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M301,290.75c5.31-2.94,15.62-2.08,21.84-2.25,4.48-.12,9.5-1,13.88-.46-.6,1.65-2.53,3.08-3.47,4.71-1.53,2.65-3,5.16-4.72,7.74a119.15,119.15,0,0,0-8.1,13.25c-.72,1.47-1.54,3.09-.48,4.26,1.93,2.12,9.39,2,12,2.25,10.58,1.17,22,1.52,32.51,0,4.11-.59,8.19-.46,12.31-.81,3.62-.31,7.26-1.66,10.91-1.45-5.2-.24-12.24,2.24-17.18,3.76-6.67,2.05-13.53,3.4-20.15,5.55-12.44,4-25.07,7.38-37.65,10.9-9.71,2.72-16.76,8.44-20.84,17.72a69.12,69.12,0,0,0-5.36,18.3c-.29-4.92-1-9.78-1-14.72,0-4.35.48-9-.13-13.27-.9-6.39-1.86-13.37.57-19.54C290.84,314.24,293.23,301.07,301,290.75Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M380.84,407.17c-1.77,5.07-3,10-6.17,14.5-.91,1.32-2.1,3.7-3.37,4.64s-2.7.82-3.84,1.51c2.48,3.34,13.65,5,17.67,5.3,0-3.72-1.84-7.9-2.46-11.65C382.12,418.17,383,412.71,380.84,407.17Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M397.91,409.93a180.76,180.76,0,0,1,18,11.59c5.38,3.79,11.2,6.89,16.6,10.66,4.38,3.06,7.88,6.76,13.23,8a139.68,139.68,0,0,1,14.18,4.34c3.94,1.35,8.21,1.38,12.24,2.32,5.63,1.31,11.3,1.65,16.92,2.92,5.05,1.14,12.39,6.53,17.75,5.08,4.42-1.19,6.07-11.94,8.39-15.6,4.34-6.84,8-13.64,9.68-21.74.88-4.22,1.25-8.22,3.34-12.07,2-3.66,5.26-15.42,9.31-8s3.58,14.83,10.13,21a70.59,70.59,0,0,1,9.66,10.69c3,4.1,7.16,9.47,11.21,12.49,4.2,3.14,10.07,3.95,14.64,6.63,3.68,2.16,7.61,3.82,11.31,6a60.37,60.37,0,0,0,18.37,7.09c12.47,2.52,25.74-2.17,37.9-4-.55,2.26-3.1,4-4.44,6-1.06,1.58-1.43,3.29-2.78,4.64-1.74,1.73-1.53,1.43-4.29,1.68-5.33.48-10.51,1.73-15.8,2.33-13.56,1.53-27.06,3.54-40.6,5.25-6.48.82-13,1.48-19.45,2.18-4.19.45-7.6,2.14-11.62,3.26-2.92.81-5.81.72-8.65,1.32-4.63,1-5.85,6.3-8,10.27-2.56,4.67-4.6,9.71-7.45,14.24s-6.54,1-10.65-.1c-6.11-1.59-13.92-1.39-20.22-1.07-2.53.13-4.53.13-5.91-1.69-1.81-2.39-1.4-4.13-4.1-6-5.81-4-12.71-.16-16.07,5.25-1.53,2.47-2.14,6.12-4.26,7.85-3.86,3.16-12.35,4-17.09,5.33-5.67,1.61-11,2.55-16.51,4.82a63.19,63.19,0,0,1-9.37,3c1.67-2.65,3.33-6.34,2.92-9.57-2.71-.41-4.59-3.14-6.62-4.8-2.82-2.31-6.19-3.9-9.31-5.58-6.3-3.39-14.42-.82-15-9.87-.39-5.76,2.56-12.55.66-18.13s-7.08-10.94-10.34-16c-3.81-5.89-8.77-11.11-12.49-17-2.23-3.55-3.8-7-6.53-10.32-2.24-2.74-5.24-5.44-6.2-9,5.23-.55,12.68,4.75,17.59,6.64,3.15,1.21,7.1,3.56,10.53,3.34a83.1,83.1,0,0,1-7.71-20.4,37.54,37.54,0,0,1-.85-9.78c.16-3.59,3.17-6.26,6.93-4.33,1.7.87,2.56,3.33,4.13,4.72A35.08,35.08,0,0,0,397.91,409.93Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M498.84,341.5c-1.85,2.24-2.51,5.38-3.74,8-1.85,4-4.24,7.62-5.94,11.67-2.29,5.46-4.64,10.71-7.11,16s-4.92,10.64-7.84,15.56c9,1.25,19.34-6.2,28.13-2.94,5.28,2,3.3,10.27,3.57,14.54.38,6.06,1.32,12.13,1.59,18.21.21,4.91,1,9.78,1.35,14.67s.27,10.82,1.91,15.26c1.49-11,7.73-20.76,12.08-30.66,3.34-7.59,7.26-15.17,11.32-22.34,3.58-6.33,10.87-2.74,16.41-.57,10.71,4.18,21.14,8.74,32.28,11.34a116.68,116.68,0,0,1,11.65,3.9c7,2.42,14,5.37,20.69,8.34,8.65,3.83,18.84,9.26,28.28,9.28-2.75-4.55-1.46-10.57-2-15.74s-1-10.33-1-15.55c0-3.66.2-4.46-3-5.89-6.12-2.74-13.07-3.65-19.15-6.43-13.72-6.28-27.27-13-41.12-18.93-8.26-3.52-17.18-5.41-25.28-9.06-7-3.14-14.15-4-21.15-6.69-4.64-1.78-8.43-6-13.31-6.93-2-.39-4.17.41-6.07-.28-2.49-.91-4-3.38-6.92-3.78" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M433.43,154.58c-6.07,1.08-12.36.51-18.52.58-3.35,0-9-.6-12,.73,1.38-.62,6.78,8.19,7.55,9.6,2.42,4.42,6.84,6.94,10,10.75,3,3.58,5.09,7.55,7.57,11.43,2.9,4.53,6.57,10.87,11.43,13.47,4.53-10.25,13.06-19.2,19.41-28.39,2.56-3.71,4-7.7,6.66-11.3s6.15-7.6,7-12.23c-3.25-.48-6,1.2-9.06,1.54-2.73.3-5.54,0-8.32.34C447.82,152,440.62,153.31,433.43,154.58Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M472.51,143.5c2.59-2.07,2.86-7.34,3.66-10.48,1-4.06,2.45-8.06,3.5-12.15a92.72,92.72,0,0,0,2.84-19c.54-11.33,3.49-22.76,6.25-33.74,1.25-5,1.45-10.37,2.79-15.19a27.26,27.26,0,0,1,9.75.44c5.54,1.34,10.83,2.11,16.38,3.33,11.54,2.52,23,4.73,34.35,7.91,9.32,2.6,18.55,5.52,28,7.86,9.07,2.26,18.78,3.33,27.66,6.23a35.11,35.11,0,0,1,9.52,4.59c.81.58,3.62,2,3.93,2.66,1.11,2.55-4,8.71-5.42,11-3.23,5.28-6.39,10.37-9.84,15.49-2.1,3.12-3.41,7-5.73,9.89s-4.23,2.61-7.68,3.16c-4,.63-7.45,2.4-11.34,3.44-4.83,1.29-10,1.63-15,2.31-10.49,1.44-21,2.34-31.52,3.85-8.37,1.2-16.91-.11-25.32.85-6.48.73-12.91,2-19.41,2.68C484.44,139.1,477.72,138.2,472.51,143.5Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M476.51,142.17c-.26,2.37-2.93,5.46-4.82,7.49-3.76,4.05-5.93,8-8.85,12.65-5.36,8.61-11.9,16.14-16.32,25.32a95,95,0,0,1-7,12.15c-1.54,2.29-1.7,3.79-2,6.8-.91,9.54.39,18.75,1,28.22.52,8,1.31,16,1.33,24,0,8.83-2.32,17.54-2.33,26.3.38-12.56,5.41-26.66,10.59-37.93,4.26-9.26,8.41-17.29,15.17-25,3.35-3.82,7.22-6.77,11.1-10,5.25-4.35,10.9-8.67,17.52-11,6.4-2.2,13.1-3,19.48-5.2,15-5.09,30.4-11,46.42-11.86-6.77.32-13.86-.56-20.63-.93-10.38-.56-20.83.27-31.22.27-3.42,0-12.51,2.09-10.53-2.58,1-2.39,5.17-5.25,7.15-6.83,12-9.58,24.27-18.84,37.91-26,8.8-4.64,18.27-8.1,27.56-11.57,7.69-2.87,15.67-6.69,24-7.32-5.87-.3-11.73,1.6-17.48,2.52a201.78,201.78,0,0,1-21.49,2.13c-9.89.48-19.93.34-29.81,0-14.37-.48-28.51,3.68-42.73,3.68" transform="translate(-105.77 -43.5)"/></g><g class="cls-3"><path d="M401.84,536.83c-11,0-18.59,4.06-27.85,9.48-6.91,4-17.08,9-21.31,16-6.15,10.22-3.41,26-1.5,37.2,2.22,13-3.3,22.81-4.68,35.32-1,8.85-.12,18.69.68,27.45,1.25,13.73-3.83,33.5,2.05,46.16,2.56,5.5,10.14,6.08,14.65,10.37,3.14,3,7.47,6.92,9.33,11,2.15,4.72,1.93,10.11,5.35,14.67,4.08,5.44,10.34,9.23,15.3,13.69,3.81,3.42,6.72,7.37,11.49,9.52,7.94,3.57,17.77,4.79,26.39,4.37-.38-4.86-13.29-10.74-17.08-14.57-6.59-6.66-12-17.42-16.65-25.63-5.39-9.57-15-21.1-16.75-32.06-.25-1.6,0-7.54-.88-8.84-1.44-2.15-4.58-.58-6.38-3.62-2.52-4.25-.48-16.51,4.4-18-2-21.66-1.22-43.66-1.22-65.61,0-4.4.8-9.45-1.17-13.11-2.12-3.93-7.74-6.1-10.72-9.19-6.12-6.34-9.28-21.65,2.28-24.59,5.56-1.41,10.68,4.26,14.91,2.32,3.16-1.45,5-8.12,6.83-10.73a64.56,64.56,0,0,1,8.53-9" transform="translate(-105.77 -43.5)"/></g></g><g id="DETAILS"><path class="cls-11" d="M652,604.19a1.5,1.5,0,0,1-.3-3l27.16-5.51a1.5,1.5,0,0,1,.6,2.94l-27.15,5.51A1.5,1.5,0,0,1,652,604.19Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M656.45,629.7a1.5,1.5,0,0,1-1.43-1c-2.88-8.79-3.75-17.24-4.47-25.85a1.5,1.5,0,0,1,1.37-1.62,1.52,1.52,0,0,1,1.62,1.37c.7,8.42,1.55,16.68,4.33,25.16a1.5,1.5,0,0,1-1.43,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M656.44,629.7a1.5,1.5,0,0,1-.27-3c9.22-1.72,19.79-3.64,28.25-4.79a1.5,1.5,0,0,1,.41,3c-8.4,1.15-18.92,3.05-28.11,4.77Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M684.63,624.91a1.5,1.5,0,0,1-1.41-1c-1.87-5.22-2.81-11.14-3.73-16.87-.54-3.4-1.06-6.61-1.74-9.53a1.5,1.5,0,0,1,2.92-.68c.7,3,1.23,6.29,1.78,9.74.89,5.59,1.82,11.37,3.59,16.33a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M683.75,598.95a1.5,1.5,0,0,1-.3-3l27.16-5.51a1.5,1.5,0,1,1,.6,2.94l-27.15,5.51A1.5,1.5,0,0,1,683.75,598.95Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M688.15,624.45a1.5,1.5,0,0,1-1.43-1c-2.88-8.79-3.75-17.24-4.47-25.85a1.5,1.5,0,0,1,1.37-1.62,1.52,1.52,0,0,1,1.62,1.37c.7,8.42,1.55,16.68,4.33,25.16a1.5,1.5,0,0,1-1.43,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M688.15,624.45a1.5,1.5,0,0,1-.27-3c9.21-1.72,19.77-3.64,28.25-4.79a1.5,1.5,0,0,1,.41,3c-8.42,1.15-18.93,3.06-28.11,4.77Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M716.33,619.67a1.5,1.5,0,0,1-1.41-1c-1.87-5.22-2.81-11.14-3.73-16.87-.54-3.4-1.06-6.61-1.74-9.53a1.5,1.5,0,1,1,2.92-.68c.7,3,1.23,6.29,1.78,9.74.89,5.59,1.82,11.37,3.59,16.33a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M715.47,593.5a1.5,1.5,0,0,1-.3-3L742.33,585a1.5,1.5,0,0,1,.6,2.94l-27.16,5.51A1.49,1.49,0,0,1,715.47,593.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M719.87,619a1.5,1.5,0,0,1-1.43-1c-2.88-8.79-3.75-17.24-4.47-25.85a1.5,1.5,0,0,1,3-.25c.7,8.42,1.55,16.68,4.33,25.16a1.5,1.5,0,0,1-1.43,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M719.87,619a1.5,1.5,0,0,1-.27-3c9.21-1.72,19.76-3.64,28.25-4.79a1.5,1.5,0,1,1,.4,3c-8.43,1.15-18.94,3.06-28.11,4.77Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M748.05,614.22a1.5,1.5,0,0,1-1.41-1c-1.87-5.22-2.82-11.14-3.73-16.87-.54-3.4-1.06-6.61-1.74-9.53a1.5,1.5,0,0,1,2.92-.68c.7,3,1.23,6.29,1.78,9.74.89,5.59,1.82,11.38,3.59,16.33a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M666.66,622.38a1.5,1.5,0,0,1-1.47-1.21,120.78,120.78,0,0,1-1.74-12,1.5,1.5,0,1,1,3-.28,118,118,0,0,0,1.7,11.69,1.5,1.5,0,0,1-1.47,1.79Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M662.34,609.44a.26.26,0,0,0,0,.15c0,.15.25.12.39.05a12.33,12.33,0,0,1,4.83-1.24,11.24,11.24,0,0,1-1.68-2c-.28-.39-1.12-1.92-1.64-1.94s-.76,1.76-.89,2.22A19.33,19.33,0,0,1,662.34,609.44Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M671.86,621.56a1.5,1.5,0,0,1-1.47-1.21,120.75,120.75,0,0,1-1.74-12,1.5,1.5,0,1,1,3-.28,117.9,117.9,0,0,0,1.7,11.69,1.5,1.5,0,0,1-1.18,1.76Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M667.54,608.61a.26.26,0,0,0,0,.15c0,.15.25.12.39.05a12.33,12.33,0,0,1,4.83-1.24,11.24,11.24,0,0,1-1.68-2c-.28-.39-1.12-1.92-1.64-1.94s-.76,1.76-.89,2.22A19.33,19.33,0,0,1,667.54,608.61Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M702.49,619a2.52,2.52,0,0,1-.46,0,3.11,3.11,0,0,1-2.3-2.24,14.26,14.26,0,0,1-.48-1.74l-1.45-6.37a1.5,1.5,0,1,1,2.93-.67l1.45,6.37a12.26,12.26,0,0,0,.35,1.31,5.84,5.84,0,0,0,.14-.61,1.5,1.5,0,0,1,2.95.56,5.49,5.49,0,0,1-.71,2A2.91,2.91,0,0,1,702.49,619Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M693.91,610.54a2.17,2.17,0,0,1-1.89-.87c-.61-.85-.49-2,.34-3.36a8.16,8.16,0,0,1,4.83-3.94,11.49,11.49,0,0,1,4.48-.26,6.73,6.73,0,0,1,3.94,1.92,4.41,4.41,0,0,1,1.9,3.2,1.5,1.5,0,0,1-1.23,1.49c-2.55.46-5.14.88-7.71,1.25-.48.07-1,.12-1.47.17a21.5,21.5,0,0,0-2.27.32A4.39,4.39,0,0,1,693.91,610.54ZM700,605a7.29,7.29,0,0,0-2,.25,4.76,4.76,0,0,0-2.72,2.06c.51-.07,1-.12,1.51-.18s.91-.09,1.36-.16c1.77-.25,3.56-.53,5.33-.83a3.56,3.56,0,0,0-2.16-1.06A11.39,11.39,0,0,0,700,605Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M698.86,604.5a1.5,1.5,0,0,1-1.45-1.11l-.44-1.6a1.5,1.5,0,1,1,2.89-.79l.44,1.6a1.5,1.5,0,0,1-1.45,1.89Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M729.58,605.81a6.59,6.59,0,0,1-2.87-.71,4,4,0,0,1-1.54-1.23,4.38,4.38,0,0,1-.67-2l-1.1-7.41a1.5,1.5,0,1,1,3-.44l1.1,7.41a2.64,2.64,0,0,0,.16.7,1.16,1.16,0,0,0,.41.26,3.42,3.42,0,0,0,1.76.39,1.67,1.67,0,0,0,1.19-.6c.52-.71.27-2,0-3.21l-1.22-5.27a1.5,1.5,0,1,1,2.92-.68l1.22,5.27c.31,1.32.88,3.77-.5,5.66a4.62,4.62,0,0,1-3.34,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M724.92,595.53a1.5,1.5,0,0,1-.49-2.92,8.6,8.6,0,0,1,2-.38l4.62-.46a1.5,1.5,0,0,1,.3,3l-4.62.46a6.16,6.16,0,0,0-1.34.23A1.5,1.5,0,0,1,724.92,595.53Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M730.91,613.71a1.5,1.5,0,0,1-1.46-1.19c-.54-2.52-1-5.09-1.25-7.65a1.5,1.5,0,1,1,3-.34c.28,2.46.68,4.93,1.2,7.36a1.5,1.5,0,0,1-1.47,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M728.12,615a1.5,1.5,0,0,1-.52-2.91,9.5,9.5,0,0,1,2.54-.46l.75-.07A9.73,9.73,0,0,0,733,611a1.5,1.5,0,1,1,1,2.82,12.73,12.73,0,0,1-2.81.67l-.85.08a7.07,7.07,0,0,0-1.76.29A1.49,1.49,0,0,1,728.12,615Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M500.65,218.38a1.5,1.5,0,0,1-.13-3l27.59-2.52a1.5,1.5,0,1,1,.27,3l-27.59,2.52Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M502.24,244.21a1.5,1.5,0,0,1-1.47-1.19c-1.9-9.06-1.85-17.55-1.62-26.18a1.5,1.5,0,1,1,3,.08c-.23,8.44-.28,16.74,1.56,25.48a1.5,1.5,0,0,1-1.47,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M502.24,244.21a1.5,1.5,0,0,1-.11-3c9.34-.71,20.05-1.46,28.61-1.69h0a1.5,1.5,0,0,1,0,3c-8.49.22-19.15,1-28.46,1.68Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M530.77,242.53a1.5,1.5,0,0,1-1.46-1.15C528,236,527.73,230,527.44,224.2c-.17-3.44-.33-6.68-.69-9.66a1.5,1.5,0,0,1,3-.36c.37,3.08.53,6.38.71,9.87.28,5.66.57,11.51,1.79,16.63a1.5,1.5,0,0,1-1.46,1.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M532.74,216.62a1.5,1.5,0,0,1-.13-3l27.59-2.52a1.5,1.5,0,1,1,.27,3l-27.59,2.52Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M534.33,242.45a1.5,1.5,0,0,1-1.47-1.19c-1.9-9.06-1.85-17.55-1.62-26.18a1.5,1.5,0,1,1,3,.08c-.23,8.44-.28,16.74,1.56,25.48a1.5,1.5,0,0,1-1.47,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M534.33,242.45a1.5,1.5,0,0,1-.11-3c9.34-.71,20.05-1.46,28.61-1.69a1.5,1.5,0,0,1,.08,3c-8.49.22-19.15,1-28.46,1.68Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M562.86,240.77a1.5,1.5,0,0,1-1.46-1.15c-1.29-5.39-1.58-11.38-1.87-17.17-.17-3.44-.33-6.68-.69-9.66a1.5,1.5,0,0,1,3-.36c.37,3.08.53,6.38.71,9.87.28,5.66.57,11.51,1.79,16.63a1.5,1.5,0,0,1-1.46,1.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M564.86,214.67a1.5,1.5,0,0,1-.13-3l27.59-2.52a1.5,1.5,0,1,1,.27,3L565,214.66Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M566.45,240.5A1.5,1.5,0,0,1,565,239.3c-1.9-9.06-1.85-17.55-1.62-26.18a1.5,1.5,0,1,1,3,.08c-.23,8.44-.28,16.74,1.56,25.48a1.5,1.5,0,0,1-1.47,1.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M566.45,240.5a1.5,1.5,0,0,1-.11-3c9.33-.71,20-1.46,28.61-1.69a1.5,1.5,0,0,1,.08,3c-8.51.22-19.16,1-28.46,1.68Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M595,238.81a1.5,1.5,0,0,1-1.46-1.15c-1.29-5.39-1.58-11.38-1.87-17.18-.17-3.44-.33-6.68-.69-9.66a1.5,1.5,0,0,1,3-.36c.37,3.08.53,6.38.71,9.87.28,5.66.57,11.51,1.79,16.63a1.5,1.5,0,0,1-1.46,1.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M513.19,238.06a1.5,1.5,0,0,1-1.49-1.37,120.8,120.8,0,0,1-.42-12.11,1.52,1.52,0,0,1,1.52-1.48,1.5,1.5,0,0,1,1.48,1.52,118,118,0,0,0,.41,11.81,1.5,1.5,0,0,1-1.37,1.62Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M510.14,224.71a.26.26,0,0,0,0,.15c0,.15.24.14.38.09a12.33,12.33,0,0,1,4.93-.71,11.24,11.24,0,0,1-1.46-2.14c-.24-.42-.91-2-1.42-2.11s-.95,1.66-1.12,2.11A19.33,19.33,0,0,1,510.14,224.71Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M518.45,237.8a1.5,1.5,0,0,1-1.49-1.37,120.79,120.79,0,0,1-.42-12.11,1.5,1.5,0,0,1,1.5-1.48h0a1.5,1.5,0,0,1,1.48,1.52,118,118,0,0,0,.41,11.81,1.5,1.5,0,0,1-1.37,1.62Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M515.4,224.46a.26.26,0,0,0,0,.15c0,.15.24.14.38.09a12.33,12.33,0,0,1,4.93-.71,11.24,11.24,0,0,1-1.46-2.14c-.24-.42-.91-2-1.42-2.11s-.95,1.66-1.12,2.11A19.33,19.33,0,0,1,515.4,224.46Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M549.29,238.63a2.53,2.53,0,0,1-.73-.11,3.11,3.11,0,0,1-2-2.48,14,14,0,0,1-.28-1.78l-.75-6.5a1.5,1.5,0,1,1,3-.34l.74,6.49a12.42,12.42,0,0,0,.2,1.34,5.71,5.71,0,0,0,.21-.59,1.5,1.5,0,1,1,2.87.88,5.48,5.48,0,0,1-.93,2A3,3,0,0,1,549.29,238.63Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M541.83,229.26a2.3,2.3,0,0,1-2.2-1.1c-.51-.91-.27-2,.7-3.3a8.16,8.16,0,0,1,5.24-3.39,11.43,11.43,0,0,1,4.48.23,6.71,6.71,0,0,1,3.71,2.33,4.4,4.4,0,0,1,1.54,3.39,1.5,1.5,0,0,1-1.39,1.34c-2.58.18-5.21.32-7.8.4-.49,0-1,0-1.48,0a22.18,22.18,0,0,0-2.28.07Zm12-2h0Zm-6.65-2.92a6.64,6.64,0,0,0-1.09.09,4.76,4.76,0,0,0-2.93,1.75c.51,0,1,0,1.51,0s.92,0,1.37,0c1.79-.06,3.59-.14,5.39-.24a3.56,3.56,0,0,0-2-1.29A10,10,0,0,0,547.15,224.35Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M547.14,223.79a1.5,1.5,0,0,1-1.48-1.27l-.26-1.64a1.5,1.5,0,1,1,3-.47l.26,1.64a1.5,1.5,0,0,1-1.25,1.72Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M578,228.46h-.11a6.37,6.37,0,0,1-3.25-1,4,4,0,0,1-1.4-1.39,4.39,4.39,0,0,1-.46-2l-.29-7.49a1.5,1.5,0,0,1,3-.12l.29,7.49a2.64,2.64,0,0,0,.08.71,1.17,1.17,0,0,0,.38.3,3.4,3.4,0,0,0,1.7.58,1.69,1.69,0,0,0,1.25-.46c.6-.65.49-2,.35-3.19l-.64-5.37a1.5,1.5,0,0,1,3-.35l.64,5.37c.16,1.34.46,3.85-1.12,5.57A4.6,4.6,0,0,1,578,228.46Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M574,217.71a1.5,1.5,0,0,1-.33-3,8.77,8.77,0,0,1,2.05-.15l4.65,0a1.5,1.5,0,0,1,0,3h0l-4.64,0a6.15,6.15,0,0,0-1.35.08A1.53,1.53,0,0,1,574,217.71Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M578,236.44a1.5,1.5,0,0,1-1.49-1.35c-.26-2.55-.4-5.16-.41-7.74a1.5,1.5,0,0,1,1.49-1.51h0a1.5,1.5,0,0,1,1.5,1.49c0,2.48.14,5,.39,7.45a1.5,1.5,0,0,1-1.34,1.64Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M575.09,237.37a1.5,1.5,0,0,1-.36-3,9.55,9.55,0,0,1,2.58-.18h.75a9.75,9.75,0,0,0,2.19-.27,1.5,1.5,0,1,1,.71,2.92,12.81,12.81,0,0,1-2.87.36h-.85a7.06,7.06,0,0,0-1.79.1A1.52,1.52,0,0,1,575.09,237.37Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M266.5,686.83a1.5,1.5,0,0,1-.31-3l27.11-5.73a1.5,1.5,0,1,1,.62,2.94l-27.11,5.73A1.55,1.55,0,0,1,266.5,686.83Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M271.1,712.29a1.5,1.5,0,0,1-1.42-1c-3-8.77-3.9-17.21-4.68-25.81a1.5,1.5,0,1,1,3-.27c.76,8.41,1.68,16.66,4.53,25.13a1.5,1.5,0,0,1-.94,1.9A1.52,1.52,0,0,1,271.1,712.29Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M271.1,712.29a1.5,1.5,0,0,1-.29-3c9.18-1.79,19.71-3.79,28.21-5a1.5,1.5,0,0,1,.43,3c-8.43,1.22-18.92,3.21-28.07,5A1.46,1.46,0,0,1,271.1,712.29Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M299.24,707.28a1.5,1.5,0,0,1-1.41-1c-1.91-5.2-2.91-11.12-3.87-16.84-.57-3.39-1.11-6.6-1.81-9.51a1.5,1.5,0,0,1,2.92-.71c.73,3,1.28,6.27,1.86,9.72.94,5.59,1.91,11.36,3.73,16.3a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M298.16,681.32a1.5,1.5,0,0,1-.31-3L325,672.62a1.5,1.5,0,0,1,.62,2.94l-27.11,5.73A1.55,1.55,0,0,1,298.16,681.32Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M302.77,706.79a1.5,1.5,0,0,1-1.42-1c-3-8.77-3.9-17.22-4.68-25.81a1.5,1.5,0,1,1,3-.27c.76,8.41,1.68,16.66,4.53,25.13a1.5,1.5,0,0,1-.94,1.9A1.52,1.52,0,0,1,302.77,706.79Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M302.77,706.79a1.5,1.5,0,0,1-.29-3c9.2-1.8,19.75-3.8,28.21-5a1.5,1.5,0,1,1,.43,3c-8.4,1.21-18.9,3.21-28.07,5Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M330.91,701.78a1.5,1.5,0,0,1-1.41-1c-1.91-5.2-2.91-11.12-3.87-16.84-.57-3.39-1.11-6.6-1.81-9.51a1.5,1.5,0,0,1,2.92-.71c.73,3,1.28,6.27,1.86,9.72.94,5.58,1.91,11.36,3.73,16.3a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M329.83,675.62a1.5,1.5,0,0,1-.31-3l27.11-5.73a1.5,1.5,0,1,1,.62,2.94l-27.11,5.73A1.55,1.55,0,0,1,329.83,675.62Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M334.44,701.08a1.5,1.5,0,0,1-1.42-1c-3-8.77-3.9-17.21-4.68-25.81a1.5,1.5,0,1,1,3-.27c.76,8.41,1.68,16.66,4.53,25.12a1.5,1.5,0,0,1-.94,1.9A1.52,1.52,0,0,1,334.44,701.08Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M334.44,701.08a1.5,1.5,0,0,1-.29-3c9.19-1.79,19.74-3.8,28.21-5a1.5,1.5,0,0,1,.43,3c-8.41,1.22-18.91,3.21-28.07,5Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M362.58,696.07a1.5,1.5,0,0,1-1.41-1c-1.91-5.2-2.91-11.12-3.87-16.83-.57-3.39-1.11-6.6-1.82-9.52a1.5,1.5,0,0,1,2.92-.71c.73,3,1.28,6.28,1.86,9.72.94,5.58,1.91,11.36,3.73,16.3a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M281.26,704.9a1.5,1.5,0,0,1-1.47-1.2c-.81-3.95-1.43-8-1.84-12a1.5,1.5,0,1,1,3-.3c.4,3.9,1,7.83,1.79,11.68a1.5,1.5,0,0,1-1.17,1.77A1.54,1.54,0,0,1,281.26,704.9Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M276.84,692a.26.26,0,0,0,0,.15c0,.15.25.12.39,0a12.33,12.33,0,0,1,4.82-1.28,11.24,11.24,0,0,1-1.7-2c-.29-.39-1.14-1.92-1.66-1.93s-.75,1.76-.87,2.23A19.33,19.33,0,0,1,276.84,692Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M286.45,704a1.5,1.5,0,0,1-1.47-1.2,120.91,120.91,0,0,1-1.84-12,1.5,1.5,0,1,1,3-.3,118,118,0,0,0,1.79,11.68,1.5,1.5,0,0,1-1.17,1.77A1.53,1.53,0,0,1,286.45,704Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M282,691.12a.26.26,0,0,0,0,.15c0,.15.25.12.39,0a12.33,12.33,0,0,1,4.82-1.28,11.24,11.24,0,0,1-1.7-2c-.29-.39-1.14-1.92-1.66-1.93s-.75,1.76-.87,2.23A19.33,19.33,0,0,1,282,691.12Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M317.05,701.25a2.49,2.49,0,0,1-.44,0,3.11,3.11,0,0,1-2.32-2.23,14.09,14.09,0,0,1-.49-1.73l-1.5-6.36a1.5,1.5,0,0,1,2.92-.69l1.5,6.36a12.44,12.44,0,0,0,.36,1.31,5.79,5.79,0,0,0,.13-.61,1.5,1.5,0,1,1,3,.54,5.42,5.42,0,0,1-.7,2.05A2.91,2.91,0,0,1,317.05,701.25Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M308.39,692.83a2.17,2.17,0,0,1-1.87-.86c-.61-.84-.51-2,.31-3.36a8.15,8.15,0,0,1,4.8-4,11.42,11.42,0,0,1,4.48-.3,6.72,6.72,0,0,1,4,1.88,4.4,4.4,0,0,1,1.93,3.18,1.5,1.5,0,0,1-1.22,1.49c-2.56.49-5.15.93-7.7,1.31-.48.07-1,.13-1.46.18a21.61,21.61,0,0,0-2.27.33A4.39,4.39,0,0,1,308.39,692.83Zm6.15-5.59a7.42,7.42,0,0,0-2.07.27,4.76,4.76,0,0,0-2.71,2.08c.51-.08,1-.13,1.51-.19s.91-.1,1.36-.17c1.76-.26,3.54-.56,5.32-.87a3.57,3.57,0,0,0-2.17-1A11.49,11.49,0,0,0,314.55,687.24Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M313.31,686.76a1.5,1.5,0,0,1-1.44-1.09l-.45-1.6a1.5,1.5,0,1,1,2.89-.81l.45,1.6a1.5,1.5,0,0,1-1.44,1.91Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M344,687.81a6.59,6.59,0,0,1-2.83-.68,3.93,3.93,0,0,1-1.55-1.22,4.38,4.38,0,0,1-.69-2l-1.16-7.4a1.5,1.5,0,0,1,3-.47l1.16,7.4a2.62,2.62,0,0,0,.17.69,1.14,1.14,0,0,0,.41.26,3.37,3.37,0,0,0,1.76.38,1.67,1.67,0,0,0,1.18-.61c.52-.72.26-2,0-3.21l-1.27-5.26A1.5,1.5,0,0,1,347,675l1.27,5.26c.32,1.32.91,3.77-.46,5.66a4.62,4.62,0,0,1-3.33,1.84Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M339.3,677.57a1.5,1.5,0,0,1-.5-2.91,8.62,8.62,0,0,1,2-.39l4.62-.5a1.5,1.5,0,1,1,.32,3l-4.62.5a6.21,6.21,0,0,0-1.34.24A1.49,1.49,0,0,1,339.3,677.57Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M345.44,695.71a1.5,1.5,0,0,1-1.46-1.17c-.56-2.51-1-5.08-1.31-7.64a1.5,1.5,0,1,1,3-.36c.3,2.46.73,4.93,1.26,7.35a1.5,1.5,0,0,1-1.47,1.83Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M342.65,697a1.5,1.5,0,0,1-.53-2.9,9.58,9.58,0,0,1,2.54-.48l.74-.08a9.78,9.78,0,0,0,2.15-.53,1.5,1.5,0,0,1,1,2.81,12.85,12.85,0,0,1-2.81.69l-.84.09a7.08,7.08,0,0,0-1.77.31A1.5,1.5,0,0,1,342.65,697Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M698.06,387.11a3.52,3.52,0,0,1-1.07-.17c-19.51-6.22-39-13.58-57.77-20.69-27.37-10.35-55.66-21.06-84.39-28.32a3.53,3.53,0,1,1,1.73-6.84c29.12,7.36,57.61,18.14,85.16,28.56,18.72,7.08,38.09,14.41,57.42,20.57a3.53,3.53,0,0,1-1.07,6.89Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M233.85,453.13a3.53,3.53,0,0,1-.9-6.94c12.29-3.27,24.88-6.06,37.4-8.29a3.53,3.53,0,0,1,1.24,6.95c-12.33,2.19-24.72,4.94-36.82,8.16A3.55,3.55,0,0,1,233.85,453.13Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M557.18,676.67a1.5,1.5,0,0,1-1.35-.85,43.4,43.4,0,0,1-1.72-4.29c-1-2.89-1.94-5.39-4.29-7.6a1.5,1.5,0,1,1,2.05-2.19c2.88,2.7,4,5.79,5.06,8.78a41,41,0,0,0,1.6,4,1.5,1.5,0,0,1-1.35,2.15Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M564.18,672.33a1.5,1.5,0,0,1-1.22-.62,9.23,9.23,0,0,1-1.36-4.23,12.75,12.75,0,0,0-.42-2.11,8.8,8.8,0,0,0-1.28-2.19,8.19,8.19,0,0,1-1.89-4.25,1.5,1.5,0,0,1,3-.18,5.7,5.7,0,0,0,1.34,2.7,11.35,11.35,0,0,1,1.68,3,15.14,15.14,0,0,1,.54,2.62,6.87,6.87,0,0,0,.83,2.91,1.5,1.5,0,0,1-1.22,2.38Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M411.84,735.33a1.5,1.5,0,0,1-.95-2.66c4.89-4,15-6.91,21.52-7.33a1.5,1.5,0,1,1,.19,3c-6.1.39-15.52,3.16-19.81,6.67A1.49,1.49,0,0,1,411.84,735.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M425.84,743a1.5,1.5,0,0,1-.73-2.81c.79-.43,1.54-.93,2.35-1.46a21.68,21.68,0,0,1,4.89-2.64,1.5,1.5,0,0,1,1,2.84,19.12,19.12,0,0,0-4.21,2.31c-.81.54-1.66,1.09-2.55,1.58A1.49,1.49,0,0,1,425.84,743Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M492.18,698.67h-.07a1.5,1.5,0,0,1-1.43-1.57c.16-3.24,3.28-9.69,5.4-12a1.5,1.5,0,1,1,2.19,2.05c-1.71,1.82-4.47,7.53-4.6,10A1.5,1.5,0,0,1,492.18,698.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M492.18,708.33a1.5,1.5,0,0,1-1.37-2.12,14.94,14.94,0,0,0,1.2-4.79,1.5,1.5,0,0,1,3,.14,17.83,17.83,0,0,1-1.46,5.88A1.5,1.5,0,0,1,492.18,708.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M488.84,783.33a1.5,1.5,0,0,1-.57-.11c-.86-.35-1.75-.69-2.57-1a1.5,1.5,0,1,1,1-2.84c.89.3,1.84.66,2.76,1a1.5,1.5,0,0,1-.57,2.89Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M492.18,776.67H492a9.22,9.22,0,0,1-3.59-1.2,1.5,1.5,0,1,1,1.51-2.59,6.19,6.19,0,0,0,2.41.8,1.5,1.5,0,0,1-.17,3Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M498.45,782.38a6.56,6.56,0,0,1-2.51-.49,1.5,1.5,0,0,1,1.14-2.78,3.67,3.67,0,0,0,1.9.23,1.5,1.5,0,1,1,.39,3A7.09,7.09,0,0,1,498.45,782.38Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M631.18,690.67a1.5,1.5,0,0,1-1.5-1.5v-3a1.5,1.5,0,0,1,3,0v3A1.5,1.5,0,0,1,631.18,690.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M632.51,700.67h-.21A1.5,1.5,0,0,1,631,699a2.59,2.59,0,0,0-.21-1.5,1.5,1.5,0,0,1,2.72-1.26,5.58,5.58,0,0,1,.46,3.17A1.5,1.5,0,0,1,632.51,700.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M627.18,696.33a1.5,1.5,0,0,1-1.5-1.5v-1.67a1.5,1.5,0,0,1,3,0v1.67A1.5,1.5,0,0,1,627.18,696.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M372.18,581.33a1.5,1.5,0,0,1-.72-2.82c3.81-2.08,14.85-4.39,18.79-.4a1.5,1.5,0,1,1-2.13,2.11c-2.49-2.52-11.85-.91-15.21.93A1.49,1.49,0,0,1,372.18,581.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M388.51,580.33a1.5,1.5,0,0,1-1.14-.52,24.8,24.8,0,0,0-5.8-4.47c-3.37-2.12-6.86-4.32-8.77-8.56a1.5,1.5,0,1,1,2.74-1.23c1.54,3.42,4.5,5.28,7.63,7.25a27.44,27.44,0,0,1,6.47,5.05,1.5,1.5,0,0,1-1.14,2.48Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M510.58,669.36l-1.18,0h-1.23a1.5,1.5,0,0,1,0-3h1.29a13.85,13.85,0,0,0,4-.29,1.5,1.5,0,1,1,.81,2.89A13.35,13.35,0,0,1,510.58,669.36Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M521.51,671.33h-2a1.5,1.5,0,0,1,0-3h2a1.5,1.5,0,0,1,0,3Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M549.17,628a1.5,1.5,0,0,1-1.47-1.21A30,30,0,0,0,543,616.46a1.5,1.5,0,1,1,2.31-1.92c2.25,2.71,4.66,8.39,5.32,11.67a1.5,1.5,0,0,1-1.18,1.76A1.46,1.46,0,0,1,549.17,628Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M268.51,659a1.5,1.5,0,0,1-1.5-1.5v-4.67a1.5,1.5,0,0,1,3,0v4.67A1.5,1.5,0,0,1,268.51,659Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M267.84,666.67a1.5,1.5,0,0,1-1.49-1.33,8.15,8.15,0,0,1,.41-3.67,1.5,1.5,0,0,1,2.83,1,5.18,5.18,0,0,0-.26,2.33,1.5,1.5,0,0,1-1.32,1.66Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M273.17,659.33a1.5,1.5,0,0,1-1.48-1.3,4.89,4.89,0,0,1,.48-2.88,1.5,1.5,0,1,1,2.68,1.35,1.89,1.89,0,0,0-.19,1.12,1.5,1.5,0,0,1-1.28,1.69Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M165.51,652.67a1.5,1.5,0,0,1-1.4-.95,33.38,33.38,0,0,1-2.1-13,1.5,1.5,0,0,1,3,.16,30.59,30.59,0,0,0,1.9,11.7,1.5,1.5,0,0,1-1.39,2.05Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M170.51,646.67a1.5,1.5,0,0,1-1.2-.59,17.13,17.13,0,0,1-1.55-2.73c-.19-.39-.38-.77-.57-1.13a1.5,1.5,0,0,1,2.65-1.42c.21.39.41.81.62,1.22a15.28,15.28,0,0,0,1.25,2.25,1.5,1.5,0,0,1-1.19,2.41Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M270.84,441.67h0a1.5,1.5,0,0,1-1.5-1.5,15.5,15.5,0,0,0-.58-3.65,27.65,27.65,0,0,1-.57-2.81,30,30,0,0,1-.21-3.51c0-.44,0-.87,0-1.29a1.5,1.5,0,0,1-1.85-.73,8.88,8.88,0,0,1-.72-2.27,3.93,3.93,0,0,1-.73.54,1.5,1.5,0,0,1-2.2-.92l-.08-.3-.06-.22c-.17.32-.34.63-.53.93a1.5,1.5,0,0,1-2.17.42,6.21,6.21,0,0,1-.52-.43,28.48,28.48,0,0,1,.58,7.39,1.5,1.5,0,1,1-3-.26,27.61,27.61,0,0,0-.63-7.12,35.76,35.76,0,0,1-.73-6.67,1.5,1.5,0,0,1,2.74-.82,18.52,18.52,0,0,1,1.35,2.49c.26.54.51,1.07.78,1.55.22-.52.42-1.09.62-1.72a1.5,1.5,0,0,1,2.46-.64,5.09,5.09,0,0,1,1.07,1.51c.07-.19.13-.37.2-.55a1.5,1.5,0,0,1,2.78,0,12.55,12.55,0,0,1,.71,2.64,1.41,1.41,0,0,1,.86-.25,1.5,1.5,0,0,1,1.4,1,19,19,0,0,1,.69,5.67,27.31,27.31,0,0,0,.18,3.17,24.77,24.77,0,0,0,.52,2.51,18,18,0,0,1,.67,4.36A1.5,1.5,0,0,1,270.84,441.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M206.51,695.33a1.5,1.5,0,0,1-1.41-1c-1.2-3.37-.75-7-.32-10.57a34.32,34.32,0,0,0,.4-6.41,2.38,2.38,0,0,1-1.44.28c-1.77-.24-2.37-2.24-3-4.35l0-.13a4.77,4.77,0,0,1-1.67,2.22,1.5,1.5,0,0,1-2.18-.57,15.46,15.46,0,0,1-1.05-3.23l-.14-.57-.12.56a21.28,21.28,0,0,1-.67,2.66,1.5,1.5,0,0,1-1.35,1,1.49,1.49,0,0,1-1.43-.89,38.93,38.93,0,0,1-2-6.27c-.21-.8-.41-1.59-.62-2.35-.15.79-.28,1.6-.42,2.43s-.23,1.4-.35,2.12-.29,1.44-.47,2.28c-.65,3-1.64,7.55-.66,9.66a1.5,1.5,0,0,1-2.72,1.26c-1.41-3-.38-7.76.45-11.56.17-.8.33-1.54.45-2.17s.24-1.38.35-2.06a31.06,31.06,0,0,1,1.81-7.32,1.5,1.5,0,0,1,2.72-.09,34.45,34.45,0,0,1,2.38,7.07l.26,1a7.69,7.69,0,0,1,1.07-2.13,1.5,1.5,0,0,1,1.13-.61,1.53,1.53,0,0,1,1.19.49,9.35,9.35,0,0,1,1.9,4.11,9.09,9.09,0,0,1,.77-1.8,1.5,1.5,0,0,1,2.42-.22,11.77,11.77,0,0,1,1.88,4.24c.17.57.4,1.33.61,1.85a8.94,8.94,0,0,0,.62-.88,1.5,1.5,0,0,1,2.69.34c1.09,3.36.65,6.94.23,10.41s-.8,6.49.17,9.19a1.5,1.5,0,0,1-1.41,2Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M455.51,328.33a1.5,1.5,0,0,1-1.5-1.43c0-.59-.09-1.18-.15-1.76a24.68,24.68,0,0,1-.18-2.65,1.5,1.5,0,0,1,3,0,21.91,21.91,0,0,0,.17,2.33c.07.64.13,1.28.17,1.93a1.5,1.5,0,0,1-1.43,1.57Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M455.51,339.67a1.5,1.5,0,0,1-1.5-1.5v-2a1.5,1.5,0,0,1,3,0v2A1.5,1.5,0,0,1,455.51,339.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M462.18,330.33a1.5,1.5,0,0,1-1.45-1.13c-.24-.93-.51-2.33-.69-3.47a1.5,1.5,0,1,1,3-.47c.17,1,.43,2.36.64,3.2a1.5,1.5,0,0,1-1.46,1.87Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M496.84,441h-.06a1.5,1.5,0,0,1-1.44-1.56v-.35a26,26,0,0,1,.71-6,1.5,1.5,0,0,1,2.88.83,23.86,23.86,0,0,0-.6,5.29v.36A1.5,1.5,0,0,1,496.84,441Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M497.18,450.33a1.5,1.5,0,0,1-1.27-2.3,1.23,1.23,0,0,0,.13-.9,1.5,1.5,0,1,1,2.94-.6,4.22,4.22,0,0,1-.53,3.1A1.5,1.5,0,0,1,497.18,450.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M636.84,488.33a1.5,1.5,0,0,1-1.31-2.22,10.57,10.57,0,0,1,2.73-3.13,1.5,1.5,0,1,1,1.83,2.38,7.6,7.6,0,0,0-1.94,2.2A1.5,1.5,0,0,1,636.84,488.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M743.18,547a1.5,1.5,0,0,1-1.28-2.28,17.16,17.16,0,0,0,1.4-3.36c.16-.46.31-.93.48-1.38a1.5,1.5,0,0,1,2.81,1c-.16.43-.3.86-.45,1.3a19.66,19.66,0,0,1-1.67,4A1.5,1.5,0,0,1,743.18,547Z" transform="translate(-105.77 -43.5)"/><path class="cls-11" d="M747.18,559a1.5,1.5,0,0,1-1-2.61.53.53,0,0,0,.18-.47,1.5,1.5,0,0,1,3-.18,3.52,3.52,0,0,1-1.15,2.87A1.49,1.49,0,0,1,747.18,559Z" transform="translate(-105.77 -43.5)"/></g><g id="LINEART"><path class="cls-1" d="M389.53,594.58a2.5,2.5,0,0,1-.54-.06l-.89-.19c-12.57-2.76-33.6-7.38-31.41-25.13.7-5.64,2.85-9.58,6.39-11.73,7-4.23,17.46-.3,25.87,2.86,2.22.83,4.31,1.62,6.1,2.16a2.5,2.5,0,1,1-1.46,4.78c-1.94-.59-4.1-1.4-6.4-2.26-7.4-2.78-16.62-6.24-21.52-3.26-2.2,1.33-3.51,4-4,8.06-1.51,12.21,12.77,16.39,27.52,19.63l.89.2a2.5,2.5,0,0,1-.54,4.94Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M586.6,621.13h-.12a2.5,2.5,0,0,1-2.37-2.62c.31-6.34.06-8.26-.76-14.61-.25-1.94-.6-4-1-6a2.5,2.5,0,0,1,4.9-1c.45,2.18.81,4.33,1.08,6.39a67.68,67.68,0,0,1,.8,15.5A2.5,2.5,0,0,1,586.6,621.13Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M384.51,562.5a2.5,2.5,0,0,1-2.11-3.83,92.9,92.9,0,0,1,26.15-27.28,106.28,106.28,0,0,1,34-15.26c4.37-1.1,8.81-2.41,13.1-3.68,8.43-2.49,17.14-5.07,26.13-6.25,1.59-.21,3.17-.44,4.75-.66,6.18-.88,12.57-1.8,19-1.59,8.11.27,13.78,2.23,20.9,5a72,72,0,0,1,29.78,21.5,2.5,2.5,0,0,1-3.83,3.22,67.07,67.07,0,0,0-27.75-20.05c-6.87-2.65-11.92-4.4-19.27-4.65-6-.2-11.92.65-18.16,1.54-1.6.23-3.2.46-4.8.67-8.59,1.13-17.12,3.65-25.36,6.09-4.34,1.28-8.82,2.61-13.3,3.73a101.32,101.32,0,0,0-32.41,14.54,87.87,87.87,0,0,0-24.72,25.8A2.5,2.5,0,0,1,384.51,562.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M378.15,676a2.5,2.5,0,0,1-2.48-2.17c-3.25-24.48-5.7-53.7.79-84.83a2.5,2.5,0,0,1,4.89,1c-6.33,30.4-3.92,59.1-.73,83.16a2.5,2.5,0,0,1-2.15,2.81Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M519.25,702.13a2.5,2.5,0,0,1-1.5-4.5A210.35,210.35,0,0,1,546.49,679a136.83,136.83,0,0,1,39.61-13.51c3.2-.56,6.43-.83,9.57-1.09a92.3,92.3,0,0,0,9.49-1.1,104.21,104.21,0,0,1,15.61-1.72l-.75-.81c-3.51-3.81-7.88-8.55-11.65-8.77a2.5,2.5,0,0,1,.29-5c5.79.33,10.71,5.66,15,10.37a49.59,49.59,0,0,0,4.7,4.71,2.5,2.5,0,0,1-1.56,4.45h-.06a98.51,98.51,0,0,0-20.7,1.67,97,97,0,0,1-10,1.17c-3,.25-6.14.5-9.1,1a131.83,131.83,0,0,0-38.16,13,205.28,205.28,0,0,0-28.06,18.21A2.49,2.49,0,0,1,519.25,702.13Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M445.87,782.45a2.5,2.5,0,0,1-1.79-.76c-2.5-2.57-6-4.44-9.79-6.42a61.91,61.91,0,0,1-8-4.77c-1.3-1-2.69-1.91-4.17-2.91a59.53,59.53,0,0,1-9.12-7.07,16.94,16.94,0,0,1-3.32-5.47,13.19,13.19,0,0,0-2-3.59,10.17,10.17,0,0,0-1.83-1.43,10.61,10.61,0,0,1-4.93-6.24,12.12,12.12,0,0,0-.93-2,61.62,61.62,0,0,1-3-5.52c-.79-1.56-1.53-3-2.4-4.48-.58-1-1.24-1.9-1.93-2.89-.57-.81-1.16-1.65-1.71-2.52-1.32-2.08-2.37-4.14-3.38-6.14-.52-1-1-2.06-1.61-3.1C381,708,379.4,699.4,378,689.9a2.5,2.5,0,1,1,4.95-.74c1.35,9,2.83,17.18,7.38,25.56.59,1.08,1.13,2.16,1.67,3.22,1,2,1.95,3.84,3.14,5.71.49.78,1,1.53,1.59,2.33.71,1,1.45,2.07,2.13,3.19,1,1.61,1.79,3.24,2.58,4.81a57.23,57.23,0,0,0,2.78,5.08,16.18,16.18,0,0,1,1.37,2.9,5.94,5.94,0,0,0,3.08,3.91,14.23,14.23,0,0,1,2.74,2.23,17.39,17.39,0,0,1,2.87,4.94,12.66,12.66,0,0,0,2.3,4,55.94,55.94,0,0,0,8.36,6.44c1.46,1,3,2,4.35,3a57.43,57.43,0,0,0,7.38,4.36,57,57,0,0,1,8.81,5.36c3-4.17,6.22-8.18,9.37-12.08a177.59,177.59,0,0,0,12.68-17c7.6-12.15,18.9-24.48,32.7-35.65a2.5,2.5,0,0,1,3.15,3.88C490,726.16,479,738.06,471.72,749.75a181.62,181.62,0,0,1-13,17.53c-3.67,4.54-7.46,9.23-10.75,14.08a2.5,2.5,0,0,1-1.85,1.09Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M518.09,796a170.73,170.73,0,0,1-28.22-2.37c-5.62.34-10.17-1.06-15-2.54-1.41-.43-2.87-.88-4.37-1.29a104,104,0,0,1-23.77-9.44,2.5,2.5,0,1,1,2.44-4.37,99,99,0,0,0,22.64,9c1.59.43,3.09.89,4.54,1.34,4.63,1.43,8.63,2.66,13.46,2.31a2.51,2.51,0,0,1,.6,0,162.56,162.56,0,0,0,38.24,2c12.47-.88,24.46-5.86,34.53-10.61a2.5,2.5,0,0,1,2.13,4.52c-10.49,5-23,10.14-36.31,11.08C525.44,795.85,521.79,796,518.09,796Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M579.89,776.93a2.5,2.5,0,0,1-1.2-4.7,168.65,168.65,0,0,0,16.36-10.06c3.14-2.2,6.54-4.29,9.82-6.3,7.82-4.8,15.91-9.76,21.57-16.9,18.62-23.46,11.39-59.13-7-77.71-1.25-1.26-2.29-2.46-3.21-3.52-2.36-2.71-4.06-4.66-7.51-5.89a2.5,2.5,0,0,1,1.68-4.71c4.69,1.67,7.08,4.41,9.61,7.32.92,1.05,1.86,2.14,3,3.28,10.43,10.51,17.37,25.4,19,40.85,1.78,16.35-2.36,31.79-11.64,43.49-6.22,7.83-14.68,13-22.87,18.05-3.37,2.07-6.55,4-9.56,6.13a173.37,173.37,0,0,1-16.84,10.35A2.49,2.49,0,0,1,579.89,776.93Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M467.17,513.92l-.39,0a2.5,2.5,0,0,1-2.09-2.85c1.1-7.09,5.21-16,13.17-17.81,7.2-1.64,14,4.06,16.22,13.56a2.5,2.5,0,0,1-4.87,1.12c-1.32-5.73-5.27-10.94-10.24-9.81-5.13,1.16-8.43,7.92-9.33,13.7A2.5,2.5,0,0,1,467.17,513.92Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M537.44,607.22h-.74c-4-.16-6.74-1.62-7.5-4s.57-5,4-7.56c2.92-2.24,11.31-4.41,15.13-1.5,1,.74,3,2.91,1.3,7.16S542.27,607.22,537.44,607.22Zm-3.33-5.55a10.86,10.86,0,0,0,6,.29c2.43-.46,4.36-1.49,4.79-2.56h0a2.43,2.43,0,0,0,.29-1.33c-1-1-7.07,0-9,1.52A8.16,8.16,0,0,0,534.12,601.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M461.94,640.88c-1.43,0-2.8,0-4.09-.05-14.46-.36-26.11-9.2-32.81-24.88a71.6,71.6,0,0,1-3.63-12.73,55.67,55.67,0,0,1-1.47-13c.18-9.12,3.38-16.86,10.38-25.08,4.1-4.82,12-9.22,18.08-11.46,20.17-7.44,48.23-1.52,57.84,19.15A94.12,94.12,0,0,1,511,586.68c3.92,13.69,2.82,25.54-3.26,35.23-4.81,7.67-14,13.74-25.16,16.67A82.12,82.12,0,0,1,461.94,640.88ZM466,555.62a46.28,46.28,0,0,0-15.89,2.71c-5.42,2-12.66,6.08-16,10-6.2,7.28-9,14-9.18,21.94h0a50.76,50.76,0,0,0,1.36,11.86A67.88,67.88,0,0,0,429.64,614c3.41,8,11.62,21.43,28.33,21.85,6.55.16,15.12.07,23.35-2.08,9.81-2.57,18.1-8,22.19-14.49,5.3-8.44,6.2-18.94,2.69-31.2a90.18,90.18,0,0,0-4.51-13.16C495.66,561.92,480.59,555.62,466,555.62Zm-43.57,34.61h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M467.07,655.25a61.92,61.92,0,0,1-23.16-4.39,51.53,51.53,0,0,1-28.79-28c-2.13-5-3.34-10.51-4.51-15.82a69.67,69.67,0,0,1-1.84-16.21h0c.2-11.39,4.16-21,12.81-31.27,5.09-6,14.91-11.5,22.39-14.27,19.5-7.21,44.36-3.48,60.45,9.07,12.67,9.89,16,25.19,18.73,37.49,6.14,28-10.29,53.73-39.07,61.25A67.41,67.41,0,0,1,467.07,655.25Zm-2-106.55a54.06,54.06,0,0,0-18.65,3.16c-6.6,2.45-15.41,7.42-19.45,12.21-7.54,8.91-11,17.19-11.15,26.84h0a62.8,62.8,0,0,0,1.68,14.57c1.1,5,2.23,10.16,4.11,14.57,10.56,24.83,38.53,32,60.69,26.17,25.38-6.63,39.34-28.39,34-52.91-3.12-14.23-6.3-25.72-16.18-33.44C490.8,552.63,477.77,548.7,465.08,548.7ZM412.3,590.85h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M578.15,615.43c-5.87,0-12-1.19-17.83-6.13-8-6.76-13.43-15.13-18.08-28a126.1,126.1,0,0,1-4.16-15.7,97.31,97.31,0,0,1-2.3-15.87A51.14,51.14,0,0,1,543,519.87c3.39-5.84,10.34-10.84,15.73-13.2,14.07-6.15,32.68-.86,45.25,12.87,9.54,10.41,12.86,25.54,15.52,37.7,3.71,16.92,2.33,31.23-4.12,42.55-7.37,12.93-19.3,14.13-28.88,15.1A82.79,82.79,0,0,1,578.15,615.43Zm-7-104.21a24,24,0,0,0-9.66,1.92c-4.33,1.9-10,6-12.45,10.27a44.47,44.47,0,0,0-6.25,26h0A90.27,90.27,0,0,0,545,564.08a121,121,0,0,0,3.9,14.81c4.26,11.78,8.89,19,16,25,6.42,5.41,13.41,4.71,20.81,4,10.88-1.09,18.35-2.49,23.53-11.58,5.56-9.75,6.69-22.39,3.36-37.54-3.16-14.41-6.19-26.09-13.84-34.44S580.64,511.22,571.19,511.22Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M583.65,599.89c-12.91,0-24.11-8.93-30.41-24.49-6.2-15.29-11.87-34.24-.67-45.15h0c.33-.32.68-.64,1-.95,9.59-8.13,26.29-5.09,35.28,2.74,12.16,10.58,16.24,24.2,18.63,36.13a28.15,28.15,0,0,1-4.45,22,23,23,0,0,1-16,9.47A28.62,28.62,0,0,1,583.65,599.89ZM556,533.84c-9.16,8.93-3.35,26.93,1.82,39.69,2.86,7.05,11.35,23.23,28.56,21.2A18,18,0,0,0,599,587.28a23.14,23.14,0,0,0,3.59-18.12c-3.15-15.74-8.23-25.71-17-33.34-7.45-6.48-21.33-9-28.78-2.69-.28.24-.54.47-.79.72Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M502.34,715.06a12.41,12.41,0,0,1-1.45-.08,2.5,2.5,0,1,1,.59-5c3.81.45,12.26-2.27,14.54-5.22,1.69-2.17.74-5.17.25-6.36a12.76,12.76,0,0,0-10.33-7.21l-2.56-.05a2.5,2.5,0,0,1,0-5h0l2.66.06a17.75,17.75,0,0,1,14.8,10.31c1.72,4.21,1.38,8.33-.93,11.31C516.83,711.92,508,715.06,502.34,715.06Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M567.78,785.4a11.33,11.33,0,0,1-5.54-1.29,6.36,6.36,0,0,1-2.08-1.92h0c-1.34-2-1.28-4.29-1.24-6.16a54.15,54.15,0,0,1,.73-7.32,57.41,57.41,0,0,1,3.61-13.28c1.85-4.36,7.79-13.46,14.3-13.77,2.15-.11,5.22.7,7.6,5.1a20.48,20.48,0,0,1,2.14,10c0,8.79-3.16,17.45-8.36,23.17-3,3.28-6.47,5.15-10.1,5.42C568.57,785.38,568.21,785.4,567.78,785.4Zm10.15-38.76h-.14c-3.3.16-8.17,6.56-9.94,10.73a52.57,52.57,0,0,0-3.27,12.13,49.13,49.13,0,0,0-.66,6.58c0,1.34-.07,2.65.36,3.28h0a1.35,1.35,0,0,0,.47.41,7.22,7.22,0,0,0,3.72.59c2.94-.22,5.3-2.18,6.77-3.79,4.32-4.76,7-12.36,7.06-19.83a15.72,15.72,0,0,0-1.53-7.62C579.51,746.83,578.42,746.65,577.93,746.65Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M638.39,738.56a8.38,8.38,0,0,1-2.86-.48,7.6,7.6,0,0,1-4.72-5.53,2.5,2.5,0,1,1,4.82-1.34c.49,1.77,1.3,2.06,1.6,2.17,3.61,1.3,12-4.53,14.77-6.45l.64-.44c4.49-3.09,7.55-11.34,8.59-18.14.57-3.7.06-8.38-2-10.17-.35-.3-1.41-1.21-4-.4-5.1,1.57-10.45,7.24-12.17,12.9a2.5,2.5,0,1,1-4.78-1.46C640.4,702,647.05,695,653.69,693c4.37-1.34,7.19,0,8.78,1.39,3.87,3.34,4.41,10,3.69,14.71-.4,2.64-2.81,16.08-10.69,21.5l-.63.43C649.12,735,643.25,738.56,638.39,738.56Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M447.81,618.41c-8.8,0-17.45-1.38-23.25-7.2a2.5,2.5,0,0,1,3.54-3.53c6.33,6.33,18,6.1,28.43,5.37,16.86-1.17,34.34-8.73,52-22.5a2.5,2.5,0,0,1,3.08,3.94c-18.43,14.39-36.84,22.31-54.71,23.54C453.9,618.24,450.84,618.41,447.81,618.41Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M566.29,578.89a30.83,30.83,0,0,1-11.69-2.11,2.5,2.5,0,0,1,1.9-4.62c13.85,5.69,37.34-3,43.33-16.07a2.5,2.5,0,0,1,4.54,2.09C598.86,570.2,581.39,578.89,566.29,578.89Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M556.63,603.14a2.49,2.49,0,0,1-1.14-.28,30.21,30.21,0,0,0-8.12-2.49,2.5,2.5,0,0,1,.78-4.94,34.78,34.78,0,0,1,9.62,3,2.5,2.5,0,0,1-1.14,4.73Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M529.43,626.73a8,8,0,0,1-6-2.45c-2.56-2.71-2.92-7-1-12,2.31-6.09,4.85-10,7.76-12A2.5,2.5,0,1,1,533,604.5c-2,1.35-4,4.58-5.88,9.6-.55,1.45-1.66,5,0,6.75s5,.78,7.32-.94c1-.71,1.89-1.55,2.86-2.43a17.66,17.66,0,0,1,14-6c1.06-.05,2.07-.1,3-.23,2.09-.27,4.7-1.25,5.3-3.11,0-.29,0-.8.06-1.22s0-.87.05-1a2.5,2.5,0,1,1,5,.57c0,.05,0,.3,0,.6a10.56,10.56,0,0,1-.18,2.17c-1.16,4.34-5.68,6.42-9.53,6.92-1.17.15-2.32.21-3.43.27a13,13,0,0,0-10.91,4.69c-1,.92-2.08,1.88-3.24,2.74A13.82,13.82,0,0,1,529.43,626.73Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M519.85,593.87a3.53,3.53,0,0,1-2.47-6,44.74,44.74,0,0,1,26.81-12.52,3.53,3.53,0,0,1,.7,7,37.66,37.66,0,0,0-22.57,10.54A3.52,3.52,0,0,1,519.85,593.87Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M491.51,718.37a2.5,2.5,0,0,1-1.68-.65,6.89,6.89,0,0,1-.56-.57,3.4,3.4,0,0,1-2,.17c-3.42-.68-4.15-5.85-4.29-7.42-.39-4.33,1.18-20.68,7.72-27h0a8.46,8.46,0,0,1,7.46-2.49,2.5,2.5,0,0,1,1.95,1.64,4.71,4.71,0,0,1,1.85,0,2.5,2.5,0,0,1,1.12.58,4.43,4.43,0,0,1,3.88,1.52c1.49,2.13.1,4.4-.56,5.5a5.42,5.42,0,0,0-.3.51,66.63,66.63,0,0,0-2.4,9.82l0,.23c-1.5,7.72-1.78,11.54-1.71,12.87a2.5,2.5,0,0,1-1.77,4.15c-1.32.06-2.6.05-3.84,0-1,0-1.92,0-2.87,0a2.5,2.5,0,0,1-1.74,1Zm-2.59-5.64h0Zm1-2.27a2.43,2.43,0,0,1,.38,0,2.5,2.5,0,0,1,2.06,1.9c1.4-.07,2.75-.06,4-.05H497a81.17,81.17,0,0,1,1.79-13l0-.22a71.26,71.26,0,0,1,2.62-10.6,5,5,0,0,1,.23-.54,2.51,2.51,0,0,1-1.52-.41l0,0c-.31.25-.62.48-.92.67a2.5,2.5,0,0,1-3.83-2.3c0-.09,0-.19,0-.29a4.89,4.89,0,0,0-1.19.87h0c-4.59,4.42-6.62,18.44-6.21,22.93a10.75,10.75,0,0,0,.28,1.64A2.5,2.5,0,0,1,489.94,710.45ZM500,712.29h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M374,676.5a2.5,2.5,0,0,1-.3-5c52.83-6.38,114.94-14,175.09-21.86a2.5,2.5,0,1,1,.65,5c-60.17,7.9-122.3,15.49-175.14,21.87Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M550.07,654.18a2.5,2.5,0,0,1-1.68-4.35c4.28-3.89,9.64-7.94,14.83-11.86,9.22-7,18.75-14.15,22.48-20.59a2.5,2.5,0,1,1,4.33,2.51c-4.24,7.32-14.18,14.82-23.79,22.08-5.1,3.85-10.37,7.83-14.48,11.57A2.49,2.49,0,0,1,550.07,654.18Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M378.4,692q-2,0-3.93,0a2.5,2.5,0,0,1-2.42-2.2,88.85,88.85,0,0,1-.51-15.92,2.5,2.5,0,1,1,5,.29,83.89,83.89,0,0,0,.24,12.87c12.87.14,25.88-1.39,38.49-2.87,16.89-2,38.15-4.31,58.71-6.56s41.89-4.58,58.8-6.57a2.5,2.5,0,1,1,.58,5c-16.93,2-38.23,4.32-58.83,6.57s-41.8,4.58-58.67,6.55C403.63,690.55,391,692,378.4,692Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M637.74,676a2.5,2.5,0,0,1-2.5-2.5V517.87l-33.42,6.51a2.5,2.5,0,1,1-1-4.91l36.4-7.09a2.5,2.5,0,0,1,3,2.45V673.51A2.5,2.5,0,0,1,637.74,676Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M637.74,645.49a2.5,2.5,0,0,1-.48-5l121.42-24V378.4L641.23,396a2.51,2.51,0,0,1-1.25-.13l-140.5-52.67a2.5,2.5,0,0,1,.53-4.82l101-14.1a2.52,2.52,0,0,1,1.08.08l159.83,48.76h0a2.49,2.49,0,0,1,1.42,1.16h0l0,0h0a2.49,2.49,0,0,1,.26,1.17V618.63a2.5,2.5,0,0,1-2,2.45L638.22,645.45A2.52,2.52,0,0,1,637.74,645.49ZM510.46,341.95l130.67,49,108.74-16.27L601.14,329.29Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M640.86,433a2.5,2.5,0,0,1-2.5-2.5v-37a2.5,2.5,0,0,1,5,0v37A2.5,2.5,0,0,1,640.86,433Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M500.36,393.33a2.5,2.5,0,0,1-2.5-2.5V344a2.5,2.5,0,0,1,5,0v46.83A2.5,2.5,0,0,1,500.36,393.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M637.74,517.35a2.51,2.51,0,0,1-2.41-3.21c.7-2.41,15.84-32.87,22.19-45.59l-113,13.94-16.81,30a2.5,2.5,0,1,1-4.36-2.44l17.42-31.1a2.5,2.5,0,0,1,1.88-1.26L661.54,463a2.5,2.5,0,0,1,2.54,3.6c-9.21,18.41-23.18,46.64-23.95,48.94A2.48,2.48,0,0,1,637.74,517.35Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M467.63,512.6a2.49,2.49,0,0,1-.93-.18L398.53,485.2a2.5,2.5,0,0,1-1.13-.9L357,425.58a2.5,2.5,0,0,1,3.05-3.71l120.36,52a2.49,2.49,0,0,1,1.07.87l19.66,28.47a2.5,2.5,0,1,1-4.11,2.84l-19.26-27.88L366,429.91l35.05,50.93,67.48,26.95a2.5,2.5,0,0,1-.93,4.82Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M396.21,500.85a2.5,2.5,0,0,1-2.5-2.5V480.93a2.5,2.5,0,0,1,5,0v17.42A2.5,2.5,0,0,1,396.21,500.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M287.51,543a2.47,2.47,0,0,1-.38,0,2.5,2.5,0,0,1-2.11-2.19l-8.71-77L151.94,480.69V522.5a2.5,2.5,0,0,1-5,0v-44a2.5,2.5,0,0,1,2.16-2.48l129.07-17.5a2.5,2.5,0,0,1,2.82,2.2l8,70.3,29.27-66.52a2.5,2.5,0,0,1,3.34-1.26l106.5,49.33a2.5,2.5,0,0,1,1.32,3.06l-3.65,10.88a2.5,2.5,0,1,1-4.74-1.59l2.94-8.76L321.77,468.84l-32,72.67A2.5,2.5,0,0,1,287.51,543Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M256.51,614.13a2.5,2.5,0,0,1-2.47-2.87l10-66.48a2.5,2.5,0,0,1,2.15-2.11L404.9,524.54a2.5,2.5,0,0,1,2.82,2.48v9.9a2.5,2.5,0,0,1-5,0v-7.06l-134,17.53-9.22,61.32,118-16a2.5,2.5,0,0,1,.67,5L256.84,614.11Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M256.51,614.13a2.5,2.5,0,0,1-1.15-.28l-99-51.63a2.5,2.5,0,0,1-1.2-1.37l-13.5-37.5A2.5,2.5,0,0,1,145,520.2l79.5,33.5a2.5,2.5,0,0,1,1.18,1l33,55.63a2.5,2.5,0,0,1-2.15,3.78Zm-97-55.89,90.35,47.12L221.78,558l-73.49-31Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M207.35,551.69a2.5,2.5,0,0,1-.17-5l59.16-4a2.5,2.5,0,0,1,.34,5l-59.16,4Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M252.51,728.5a2.5,2.5,0,0,1-1.38-.42l-97-64.28a2.5,2.5,0,0,1-1.12-2.13L155,560a2.5,2.5,0,0,1,2.5-2.45h.05A2.5,2.5,0,0,1,160,560L158,660.4l95,63,130.14-20.83a2.5,2.5,0,1,1,.79,4.94l-131.1,21A2.56,2.56,0,0,1,252.51,728.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M252.51,728.5h-.09a2.5,2.5,0,0,1-2.41-2.58l4-114.37a2.5,2.5,0,0,1,5,.17l-4,114.37A2.5,2.5,0,0,1,252.51,728.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M454.71,468a2.5,2.5,0,0,1-.2-5l52.56-4.31-1.75-65.17L383.58,403l5.43,32.6a2.5,2.5,0,0,1-4.93.82l-5.88-35.29a2.5,2.5,0,0,1,2.27-2.9l127.09-9.92a2.5,2.5,0,0,1,2.69,2.43l1.88,70.17a2.5,2.5,0,0,1-2.29,2.56L454.92,468Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M560.41,480.52a2.49,2.49,0,0,1-.79-.13l-50.78-17a2.5,2.5,0,0,1,1.59-4.74l50.78,17a2.5,2.5,0,0,1-.79,4.87Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M645.36,469.64a2.5,2.5,0,0,1-2.17-3.73l15-26.56L538,396.62l-26.32,57.8a2.5,2.5,0,0,1-4.55-2.07l27.28-59.88a2.5,2.5,0,0,1,3.11-1.32l125.14,44.48a2.5,2.5,0,0,1,1.34,3.59l-16.48,29.15A2.5,2.5,0,0,1,645.36,469.64Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M279,468a2.5,2.5,0,0,1-.28-5l95.89-11a2.5,2.5,0,1,1,.57,5L279.3,468Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M200.26,474.11a2.5,2.5,0,0,1-2.5-2.5v-38a2.5,2.5,0,0,1,5,0v38A2.5,2.5,0,0,1,200.26,474.11Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M259,466.15a2.49,2.49,0,0,1-1.14-.27l-58.72-30.05a2.5,2.5,0,0,1,.82-4.71l42.58-5.43a2.53,2.53,0,0,1,1.33.2l44.76,19.9L369,436.54a2.5,2.5,0,1,1,.57,5l-81,9.31a2.5,2.5,0,0,1-1.3-.2l-44.74-19.89-33.87,4.32,51.52,26.37a2.5,2.5,0,0,1-1.14,4.73Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M288.23,450.84a2.5,2.5,0,0,1-2.5-2.43l-3.4-116.85-35.44-6.85L245.34,428.2a2.5,2.5,0,0,1-2.5,2.46h0a2.5,2.5,0,0,1-2.46-2.54l1.59-106.47a2.5,2.5,0,0,1,3-2.42L285.24,327a2.5,2.5,0,0,1,2,2.38l3.46,118.85a2.5,2.5,0,0,1-2.43,2.57Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M408.1,401.12a2.5,2.5,0,0,1-2.5-2.5V320c-12.94.83-77.13,7.39-120.57,12a2.5,2.5,0,0,1-2.61-3.33l14.87-41.24a2.5,2.5,0,0,1,2.17-1.65L418.63,277a2.5,2.5,0,0,1,2.59,3.17L410.6,317.82v80.8A2.5,2.5,0,0,1,408.1,401.12ZM301.44,290.62l-13,36c9.27-1,33.4-3.49,57.35-5.92,17.84-1.81,32.09-3.21,42.37-4.18s15.31-1.42,18-1.52l9.23-32.73Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M357.46,286.49a2.5,2.5,0,0,1-2.35-3.34l11.34-31.79a2.5,2.5,0,0,1,3-1.56l47.09,13.64a2.5,2.5,0,0,1,1.72,3.06l-3.88,14.14a2.5,2.5,0,1,1-4.82-1.32l3.23-11.76-42.46-12.3-10.55,29.58A2.5,2.5,0,0,1,357.46,286.49Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M351.79,286.91a2.5,2.5,0,0,1-2.23-1.37L341,268.81l-94.43,9a2.5,2.5,0,1,1-.47-5l96.12-9.12a2.49,2.49,0,0,1,2.46,1.35L354,283.27a2.5,2.5,0,0,1-2.23,3.63Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M284.76,332a2.5,2.5,0,0,1-2.47-2.12l-6.65-43.51-36.22-10.81,7.47,45.74a2.5,2.5,0,0,1-4.93.81l-8.12-49.69a2.5,2.5,0,0,1,3.18-2.8L278.59,282a2.5,2.5,0,0,1,1.76,2l6.89,45.08a2.5,2.5,0,0,1-2.09,2.85Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M601.34,329.24h-.08a2.5,2.5,0,0,1-2.42-2.58l4.57-142.37-163.65,17.2a2.5,2.5,0,0,1-.52-5L605.75,179a2.5,2.5,0,0,1,2.76,2.57l-4.67,145.24A2.5,2.5,0,0,1,601.34,329.24Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M436.5,398.9h0a2.5,2.5,0,0,1-2.46-2.54l3-195.5-120-35.51V268.83a2.5,2.5,0,0,1-5,0V162a2.5,2.5,0,0,1,3.21-2.4l125.06,37A2.5,2.5,0,0,1,442,199l-3,197.4A2.5,2.5,0,0,1,436.5,398.9Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M439.51,201.5a2.5,2.5,0,0,1-2.08-3.88l41-62a2.5,2.5,0,0,1,1.86-1.11L642.79,120a2.5,2.5,0,0,1,2.34,3.82l-37,59a2.5,2.5,0,0,1-4.24-2.66l34.33-54.73L481.93,139.38l-40.34,61A2.5,2.5,0,0,1,439.51,201.5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M403.51,157.5a2.5,2.5,0,0,1-.17-5l66.33-4.57,21.4-97.47a2.5,2.5,0,0,1,3.05-1.89l134.5,34a2.5,2.5,0,0,1,1.76,3.2l-13,40a2.5,2.5,0,1,1-4.75-1.55L624.8,86.77,495.4,54.06l-21.25,96.78a2.5,2.5,0,0,1-2.27,2l-68.2,4.7Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M436.62,200.64a2.5,2.5,0,0,1-1.94-.92l-54.58-67L267.65,104.37l48.68,56a2.5,2.5,0,1,1-3.77,3.28l-53.91-62a2.5,2.5,0,0,1,2.5-4.06l121,30.5a2.51,2.51,0,0,1,1.33.85l55.11,67.64a2.5,2.5,0,0,1-1.94,4.08Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M468.33,151.57a2.5,2.5,0,0,1-2.14-1.2L425.66,83.6,280.58,93.76l3.26,8.33a2.5,2.5,0,1,1-4.66,1.82l-4.5-11.5A2.5,2.5,0,0,1,276.83,89l150-10.5a2.51,2.51,0,0,1,2.31,1.2l41.32,68.07a2.5,2.5,0,0,1-2.13,3.8Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M522.51,687.33a2.5,2.5,0,0,1-2-4,77.06,77.06,0,0,1,20-18.5c2.69-1.64,26.72-16.06,40.51-16.42h.07a2.5,2.5,0,0,1,.07,5c-10.15.27-28.69,10-38,15.69a71.62,71.62,0,0,0-18.59,17.2A2.5,2.5,0,0,1,522.51,687.33Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M540.51,669.67a2.5,2.5,0,0,1-2-4,33.69,33.69,0,0,0,2.67-5.27c1.9-4.25,3.69-8.26,6.47-9.77A2.5,2.5,0,0,1,550,655c-1.29.7-3.09,4.74-4.29,7.41a35.3,35.3,0,0,1-3.23,6.22A2.5,2.5,0,0,1,540.51,669.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M558.51,659.67a2.49,2.49,0,0,1-1.23-.33c-.71-.4-1.68-.83-2.71-1.29-2.24-1-4.78-2.11-6.47-3.76a2.5,2.5,0,1,1,3.49-3.58,19.25,19.25,0,0,0,5,2.77c1.14.5,2.22,1,3.15,1.51a2.5,2.5,0,0,1-1.23,4.67Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M484.51,715c-.87,0-1.8,0-2.85-.08-5.32-.27-26.21-3.31-31.25-13.33-1.28-2.54-2.08-6.67,1.4-11.88,6-8.94,19.6-7.5,30.55-6.35,3.06.32,5.94.63,8.15.63a2.5,2.5,0,0,1,0,5c-2.47,0-5.48-.32-8.67-.65-9.62-1-21.58-2.28-25.87,4.15-1.74,2.61-2.1,4.85-1.09,6.85,3.33,6.61,19.51,10.2,27,10.58,1,0,1.82.07,2.6.07a2.5,2.5,0,0,1,0,5Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M593,628a2.5,2.5,0,0,1-2.32-1.57,19.54,19.54,0,0,0-4-5.67,2.5,2.5,0,0,1,3.54-3.53,24.33,24.33,0,0,1,5,7.33A2.5,2.5,0,0,1,593,628Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M572.5,655a2.61,2.61,0,0,1-.7-.1,2.54,2.54,0,0,1-1.71-3.13c.92-3.26,15-19.9,15.16-20.06a25.2,25.2,0,0,0,2.06-3,22,22,0,0,1,3.52-4.63,2.5,2.5,0,0,1,3.38,3.69,18.24,18.24,0,0,0-2.66,3.61A29.11,29.11,0,0,1,589,635c-3.08,3.56-13.32,16.19-14.16,18.23A2.44,2.44,0,0,1,572.5,655Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M614.19,654a2.49,2.49,0,0,1-.67-.09c-3.05-.85-4.95-3.27-6.78-5.6-1.67-2.13-3.25-4.14-5.5-4.68a32.78,32.78,0,0,0-4.7.14c-6.27.42-10.21.53-12.15-1.51a3.61,3.61,0,0,1-1-3,2.49,2.49,0,0,1,.64-1.4,2.39,2.39,0,0,1,.14-.65c1.66-4.44,6-7.31,12-7.88h0a23.37,23.37,0,0,1,9.1.94,18.94,18.94,0,0,1,11.2,10.37,14.19,14.19,0,0,1,0,11.89A2.5,2.5,0,0,1,614.19,654Zm-13.86-15.42a9.08,9.08,0,0,1,2.07.19c3.95.94,6.25,3.87,8.27,6.46a29.17,29.17,0,0,0,2,2.43,10.16,10.16,0,0,0-.84-5,14,14,0,0,0-8.15-7.58,18.26,18.26,0,0,0-7.08-.72h0a11,11,0,0,0-6.19,2.33,2.58,2.58,0,0,1,.36.61,2.45,2.45,0,0,1,.05,1.71h0c1.82,0,4-.14,5.32-.23C597.94,638.62,599.27,638.54,600.33,638.54Zm-3.91-6.71h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M590.08,663.44a11.54,11.54,0,0,1-8.33-3.41,8.64,8.64,0,0,1-2.31-6.88c.26-4.44,2.92-9.72,6.2-12.28a2.5,2.5,0,0,1,3.08,3.94,13.56,13.56,0,0,0-4.29,8.63,4,4,0,0,0,.84,3c4.68,4.63,11.85,0,14.71-2.27,1.12-.87,2.2-1.82,3.34-2.84a53.86,53.86,0,0,1,4.76-3.91,2.5,2.5,0,1,1,2.87,4.1,49.44,49.44,0,0,0-4.31,3.56c-1.15,1-2.34,2.08-3.59,3C598.52,661.66,594.05,663.44,590.08,663.44Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M608.54,636a2.49,2.49,0,0,1-1.28-.35c-3.93-2.35-12.45-5.87-15.18-5.62a2.5,2.5,0,0,1-.48-5c5-.49,15.66,4.78,18.23,6.31a2.5,2.5,0,0,1-1.29,4.65Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M545.57,631.36h-.23c-3.13-.2-4.86-3.22-6.24-5.64a11.71,11.71,0,0,0-1.85-2.72,2.5,2.5,0,0,1,2.52-4.32c1.6.94,2.65,2.77,3.67,4.55a13.1,13.1,0,0,0,2.12,3.07,20.3,20.3,0,0,0,2-1.2,15.74,15.74,0,0,1,1.92-1.13,34.39,34.39,0,0,1,3.19-1.28c-.36-.67-.75-1.35-1.17-2a24.07,24.07,0,0,1-2.75-5.82,2.5,2.5,0,0,1,4.82-1.31,20.12,20.12,0,0,0,2.23,4.59,25.17,25.17,0,0,1,2.71,5.64,2.5,2.5,0,0,1-2.16,3.19,17.73,17.73,0,0,0-4.84,1.59c-.21.1-.81.48-1.25.76C548.38,630.53,547,631.36,545.57,631.36Z" transform="translate(-105.77 -43.5)"/></g><g id="circle"><g class="cls-12"><path class="cls-7" d="M412.3,590.85c.19-10.39,3.77-19.35,12-29.06C429,556.25,438.5,551,445.2,548.55c18-6.67,41.77-3.38,57.05,8.54,11.26,8.79,14.51,22.08,17.45,35.46,5.89,26.81-10.08,50.17-36.51,57.08-25.62,6.69-54-2.76-64.83-28.2-2-4.68-3.14-9.87-4.31-15.2A66.21,66.21,0,0,1,412.3,590.85Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-12"><path class="cls-7" d="M539.3,549.54a47.78,47.78,0,0,1,6.72-27.9c3-5.17,9.47-9.71,14.09-11.74,12.44-5.44,29.58-.7,41.23,12,8.59,9.38,11.74,22.69,14.68,36.07,3.29,15,2.67,28.79-3.74,40-6.27,11-15.81,12.29-26.17,13.33-7.79.78-15.93,1.62-23.52-4.77-8-6.75-12.87-15-17-26.51a122.75,122.75,0,0,1-4-15.26A93.72,93.72,0,0,1,539.3,549.54Z" transform="translate(-105.77 -43.5)"/></g><path class="cls-1" d="M467.07,655.25a61.92,61.92,0,0,1-23.16-4.39,51.53,51.53,0,0,1-28.79-28c-2.13-5-3.34-10.51-4.51-15.82a69.67,69.67,0,0,1-1.84-16.21h0c.2-11.39,4.16-21,12.81-31.27,5.09-6,14.91-11.5,22.39-14.27,19.5-7.21,44.36-3.48,60.45,9.07,12.67,9.89,16,25.19,18.73,37.49,6.14,28-10.29,53.73-39.07,61.25A67.41,67.41,0,0,1,467.07,655.25Zm-2-106.55a54.06,54.06,0,0,0-18.65,3.16c-6.6,2.45-15.41,7.42-19.45,12.21-7.54,8.91-11,17.19-11.15,26.84h0a62.8,62.8,0,0,0,1.68,14.57c1.1,5,2.23,10.16,4.11,14.57,10.56,24.83,38.53,32,60.69,26.17,25.38-6.63,39.34-28.39,34-52.91-3.12-14.23-6.3-25.72-16.18-33.44C490.8,552.63,477.77,548.7,465.08,548.7ZM412.3,590.85h0Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M578.15,615.43c-5.87,0-12-1.19-17.83-6.13-8-6.76-13.43-15.13-18.08-28a126.1,126.1,0,0,1-4.16-15.7,97.31,97.31,0,0,1-2.3-15.87A51.14,51.14,0,0,1,543,519.87c3.39-5.84,10.34-10.84,15.73-13.2,14.07-6.15,32.68-.86,45.25,12.87,9.54,10.41,12.86,25.54,15.52,37.7,3.71,16.92,2.33,31.23-4.12,42.55-7.37,12.93-19.3,14.13-28.88,15.1A82.79,82.79,0,0,1,578.15,615.43Zm-7-104.21a24,24,0,0,0-9.66,1.92c-4.33,1.9-10,6-12.45,10.27a44.47,44.47,0,0,0-6.25,26h0A90.27,90.27,0,0,0,545,564.08a121,121,0,0,0,3.9,14.81c4.26,11.78,8.89,19,16,25,6.42,5.41,13.41,4.71,20.81,4,10.88-1.09,18.35-2.49,23.53-11.58,5.56-9.75,6.69-22.39,3.36-37.54-3.16-14.41-6.19-26.09-13.84-34.44S580.64,511.22,571.19,511.22Z" transform="translate(-105.77 -43.5)"/><path class="cls-1" d="M519.85,593.87a3.53,3.53,0,0,1-2.47-6,44.74,44.74,0,0,1,26.81-12.52,3.53,3.53,0,0,1,.7,7,37.66,37.66,0,0,0-22.57,10.54A3.52,3.52,0,0,1,519.85,593.87Z" transform="translate(-105.77 -43.5)"/><g class="cls-12"><path class="cls-7" d="M594.18,528.83c-2.91-2.27-6.89-1-6.33,3,.48,3.5,3.92,7.78,5.33,11.35,1.52,3.85,1.69,9.59,4.15,12.83,6.11,8,5.64-6.3,4.59-9.76C600,539.94,598.74,534.06,594.18,528.83Z" transform="translate(-105.77 -43.5)"/></g><g class="cls-12"><path class="cls-7" d="M496.84,563.83c-1-3.57-9.51-2.83-8.77,1.67.41,2.44,3.62,5.41,4.9,7.54a40.24,40.24,0,0,1,4.21,9.12c1.7,5.77-.86,14.73,3.3,19.67,3.29,3.9,6.35,1.12,6.68-2.86.42-5.1-.18-10.25-.7-15.28C505.86,577.61,503,567.14,496.84,563.83Z" transform="translate(-105.77 -43.5)"/></g></g><g id="layers"><path class="cls-1" d="M468.33,880.06a357.61,357.61,0,0,1-159.8-677.52,3.53,3.53,0,1,1,3.16,6.31c-119.58,59.84-193.86,180-193.86,313.64C117.82,715.77,275.06,873,468.33,873S818.84,715.77,818.84,522.5a350,350,0,0,0-214.08-323,3.53,3.53,0,0,1,2.75-6.5,357.56,357.56,0,0,1-139.18,687Z" transform="translate(-105.77 -43.5)"/></g></svg>
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/docs/assets/StatusGraph.png b/vendor/github.com/golang/dep/docs/assets/StatusGraph.png
deleted file mode 100644
index dacdc0b0f8aaf8906fcafba11fb07897f1b077b4..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/StatusGraph.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/annotated-func-arrows.png b/vendor/github.com/golang/dep/docs/assets/annotated-func-arrows.png
deleted file mode 100644
index bcfb1708799a734f3983114ce5693a5d9cdb1d62..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/annotated-func-arrows.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/base-arrows.png b/vendor/github.com/golang/dep/docs/assets/base-arrows.png
deleted file mode 100644
index 0a423404a843335ded6cd1646ea65f3291c242be..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/base-arrows.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/four-states.png b/vendor/github.com/golang/dep/docs/assets/four-states.png
deleted file mode 100644
index 81eecfa70cdbc210963db706632c6249a334d83b..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/four-states.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/func-toggles.png b/vendor/github.com/golang/dep/docs/assets/func-toggles.png
deleted file mode 100644
index 56d07e1b1f0a8d3625e6dbe2c07d9545c04b48a5..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/func-toggles.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/in-sync.png b/vendor/github.com/golang/dep/docs/assets/in-sync.png
deleted file mode 100644
index b0f3a12e2bf82c2f0d2b9f16a6d446e017fbe52f..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/in-sync.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/lock-back.png b/vendor/github.com/golang/dep/docs/assets/lock-back.png
deleted file mode 100644
index b4c4d06d379fd572c1eb98828cb1e687553b31e9..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/lock-back.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/assets/required-arrows.png b/vendor/github.com/golang/dep/docs/assets/required-arrows.png
deleted file mode 100644
index 6180a4a1116d7d97f3ad25e1af7aec1e6cd1b1e0..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/docs/assets/required-arrows.png and /dev/null differ
diff --git a/vendor/github.com/golang/dep/docs/daily-dep.md b/vendor/github.com/golang/dep/docs/daily-dep.md
deleted file mode 100644
index 5d1d23a05f8f8d46c233535496e90f64b74d4505..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/daily-dep.md
+++ /dev/null
@@ -1,147 +0,0 @@
----
-title: Daily Dep
----
-
-This guide is an introduction to the day-to-day use of dep. If you haven't set up a Go project at all yet, though, run through [Creating a New Project](new-project.md) first.
-
-Dep is a tool you'll use regularly in the course of normal Go development. Regularly, but briefly - dependency management is never the place we want to be spending our time or energy! In keeping with Go's philosophy of minimizing knobs, dep has a sparse interface; there are only two commands you're likely to run regularly:
-
-* `dep ensure` is the primary workhorse command, and is the only command that changes disk state.
-* `dep status` reports on the state of your project, and the visible universe of Go software projects.
-
-This guide primarily centers on `dep ensure`, as that's the command you run to effect changes on your project. The [Models and Mechanisms](ensure-mechanics.md) reference document details how the things work under the hood, and is worth reading if you're encountering a confusing `dep ensure` behavior (or just curious!).
-
-## Basics
-
-Let's start with words!
-
-Dep's main command is `dep ensure`. The verb is "ensure" to imply that the action is not just some single, discrete action (like adding a dependency), but enforcing some kind of broader guarantee. If we wanted to express the `dep ensure` guarantee as a sentence, it would go something like this:
-
-> Hey dep, please make sure that [my project](glossary.md#current-project) is [in sync](glossary.md#sync): that [`Gopkg.lock`](Gopkg.lock.md) satisfies all the imports in my project, and all the rules in[ `Gopkg.toml`](Gopkg.toml.md), and that `vendor/` contains exactly what `Gopkg.lock` says it should."
-
-As the narrative indicates, `dep ensure` is a holistic operation. Rather than offering a series of commands to run in succession that incrementally achieve some final state, each run of `dep ensure` delivers a safe, complete, and reproducible set of dependencies with respect to the current state of your project. You might imagine repeated runs of `dep ensure` as being a bit like a frog, hopping from one lily pad to the next.
-
-## Using `dep ensure`
-
-There are four times when you'll run `dep ensure`:
-
-* To add a new dependency
-* To update an existing dependency
-* To catch up after importing a package for the first time in your project, or removing the last import of a package in your project
-* To catch up to a change to a rule in `Gopkg.toml`
-
-If you're not sure if there have been changes to imports or `Gopkg.toml` rules, run `dep check`. It will tell you what is out of sync in your project. If anything is out of sync, running `dep ensure` will bring it back into line.
-
-Let's explore each of these moments. To play along, you'll need to `cd` into a project that's already been set up by `dep init`. If you haven't done that yet, check out the guides for [new projects](new-project.md) and [migrations](migrating.md).
-
-### Adding a new dependency
-
-Let's say that we want to introduce a new dependency on `github.com/pkg/errors`. This can be accomplished with one command:
-
-```bash
-$ dep ensure -add github.com/pkg/errors
-```
-
-> Much like git, `dep status` and `dep ensure` can also be run from any subdirectory of your project root (which is determined by the presence of a `Gopkg.toml` file).
-
-This should succeed, resulting in an updated `Gopkg.lock` and `vendor/` directory, as well as injecting a best-guess version constraint for `github.com/pkg/errors` into our `Gopkg.toml`. But, it will also report a warning:
-
-```bash
-"github.com/pkg/errors" is not imported by your project, and has been temporarily added to Gopkg.lock and vendor/.
-If you run "dep ensure" again before actually importing it, it will disappear from Gopkg.lock and vendor/.
-```
-
-As the warning suggests, you should introduce an `import "github.com/pkg/errors"` in your code, the sooner the better. If you don't, a later `dep ensure` run will interpret your newly-added dependency as unused, and automatically remove it from `Gopkg.lock` and `vendor/`. This also means that if you want to add multiple dependencies at once, you'll need to do it in a single command, rather than one after the other:
-
-```bash
-$ dep ensure -add github.com/pkg/errors github.com/foo/bar
-```
-
-Dep works this way because it considers the import statements it discovers through static analysis of your project's code to be the canonical indicator of what dependencies must be present. That choice does add some pain at this moment, but it reduces friction and automates cleanup elsewhere. Tradeoffs!
-
-Of course, given this model, you don't _have to_ use `dep ensure -add` to add new dependencies - you can also just add an appropriate `import` statement in your code, then run `dep ensure`. However, this approach doesn't always play nicely with [`goimports`](https://godoc.org/golang.org/x/tools/cmd/goimports), and also won't append a `[[constraint]]` into `Gopkg.toml`. Still, it can be useful at times, often for rapid iteration and off-the-cuff experimenting.
-
-The [ensure mechanics section on `-add`](ensure-mechanics.md#add) has a more thorough exploration, including some ways that `dep ensure -add`'s behavior subtly varies depending on the state of your project.
-
-### Updating dependencies
-
-Ideally, updating a dependency project to a newer version is a single command:
-
-```bash
-$ dep ensure -update github.com/foo/bar
-```
-
-This also works without arguments to try to update all dependencies (though it's generally not recommended):
-
-```bash
-$ dep ensure -update
-```
-
-`dep ensure -update` searches for versions that work with the `branch`, `version`, or `revision` constraint defined in `Gopkg.toml`. These constraint types have different semantics, some of which allow `dep ensure -update` to effectively find a "newer" version, while others will necessitate hand-updating the `Gopkg.toml`. The [ensure mechanics](ensure-mechanics.md#update-and-constraint-types) guide explains this in greater detail, but if you want to know what effect a `dep ensure -update` is likely to have for a particular project, the `LATEST` field in `dep status` output will tell you.
-
-### Adding and removing `import` statements
-
-As noted in [the section on adding dependencies](#adding-a-new-dependency), dep relies on the `import` statements in your code to figure out which dependencies your project actually needs. Thus, when you add or remove import statements, dep often needs to care about it.
-
- Only if one of the following has occurred will a `dep ensure` be necessary to bring the project back in sync:
-
-1.  You've added the first `import` of a package, but already `import` other packages from that project.
-2.  You've removed the last `import` of a package, but still `import` other packages from that project.
-3.  You've added the first `import` of any package within a particular project. (Note: this is the [alternate adding approach](#adding-a-new-dependency))
-4.  You've removed the last `import` of a package from within a particular project.
-
-In short, dep is concerned with the set of unique import paths across your entire project, and only cares when you make a change that adds or removes an import path from that set. `dep check` will quickly report any such issues, which will be resolved by running `dep ensure`.
-
-### Rule changes in `Gopkg.toml`
-
-`Gopkg.toml` files contain five basic types of rules. The [`Gopkg.toml` docs](Gopkg.toml.md) explain them in detail, but here's an overview:
-
-* `required`, which are mostly equivalent to `import` statements in `.go` files, except that it's OK to list a `main` package here
-* `ignored`, which causes dep to black hole an import path (and any imports it uniquely introduces)
-* `[[constraint]]`, stanzas that express version constraints and some other rules on a per-project dependency basis
-* `[[override]]`, stanzas identical to `[[constraint]]` except that only the current project can express them and they supersede `[[constraint]]` in both the current project and dependencies
-* `[prune]`, global and per-project rules that govern what kinds of files should be removed from `vendor/`
-
-Changes to any one of these rules will likely necessitate changes in `Gopkg.lock` and `vendor/`; a single successful `dep ensure` run will incorporate all such changes at once, bringing your project back in sync.
-
-## Visualizing dependencies
-
-Generate a visual representation of the dependency tree by piping the output of `dep status -dot` to [graphviz](http://www.graphviz.org/).
-
-### Linux
-
-```
-$ sudo apt-get install graphviz
-$ dep status -dot | dot -T png | display
-```
-
-### macOS
-
-```
-$ brew install graphviz
-$ dep status -dot | dot -T png | open -f -a /Applications/Preview.app
-```
-
-### Windows
-
-```
-> choco install graphviz.portable
-> dep status -dot | dot -T png -o status.png; start status.png
-```
-
-![status graph](assets/StatusGraph.png)
-
-## Key Takeaways
-
-Here are the key takeaways from this guide:
-
-* `dep check` will quickly report any ways in which your project is out of [sync](glossary.md#sync).
-* `dep ensure -update` is the preferred way to update dependencies, though it's less effective for projects that don't publish semver releases.
-* `dep ensure -add` is usually the easiest way to introduce new dependencies, though you can also just add new `import` statements then run `dep ensure`.
-* If you ever make a manual change in `Gopkg.toml`, it's best to run `dep ensure` to make sure everything's in sync.
-* `dep ensure` is almost never the wrong thing to run; if you're not sure what's going on, running it will bring you back to safety ("the nearest lilypad"), or fail informatively.
-
-Also, a couple other miscellaneous tidbits:
-
-* As in the Go toolchain generally, avoid symlinks within your own project. dep tolerates a bit of this, but like the Go toolchain itself, is generally not terribly supportive of symlinks.
-* Never directly edit anything in `vendor/`; dep will unconditionally overwrite such changes. If you need to modify a dependency, fork it and do it properly.
diff --git a/vendor/github.com/golang/dep/docs/deduction.md b/vendor/github.com/golang/dep/docs/deduction.md
deleted file mode 100644
index 20ee63616acfcb84aa4714ee2ba51814447136bc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/deduction.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-title: Import Path Deduction
----
-
-Deduction is dep's algorithm for looking at an import path and determining the portion of the path that corresponds to the source root. The algorithm has a static component, by which a small set of known, popular hosts like GitHub and Bitbucket have their roots deduced:
-
-* `github.com/golang/dep/gps` -> `github.com/golang/dep`
-* `bitbucket.org/foo/bar/baz` -> `bitbucket.org/foo/bar`
-
-The set of hosts supported by static deduction are the same as [those supported by `go get`](https://golang.org/cmd/go/#hdr-Remote_import_paths):
-
-* GitHub
-* Bitbucket
-* Launchpad
-* IBM DevOps Services
-
-In addition, dep also handles [gopkg.in](http://gopkg.in) directly with static deduction because, owing to internal implementation details, it is the easiest way of also attaching filters to adapt the versioning semantics of gopkg.in import paths into dep's versioning model. This turns out fine, as gopkg.in's rules mapping rules are themselves entirely static.
-
-If the static logic cannot identify the root for a given import path, the algorithm continues to a dynamic component: dep makes an HTTP(S) request to the import path, and a server is expected to send back the root import path embedded within the HTML response. Again, this directly emulates the behavior of `go get`.
-
-Import path deduction is applied to all of the following:
-
-* `import` statements found in all `.go` files
-* Import paths in the [`required`](Gopkg.toml.md#required) list in `Gopkg.toml`
-* `name` properties in both [`[[constraint]]`](Gopkg.toml.md#constraint) and [`[[override]]`](Gopkg.toml.md#override) stanzas in `Gopkg.toml`. This is solely for validation purposes, enforcing that these names correspond only to project/source roots.
diff --git a/vendor/github.com/golang/dep/docs/ensure-mechanics.md b/vendor/github.com/golang/dep/docs/ensure-mechanics.md
deleted file mode 100644
index ddd17c4bf6ab0121099e54f77a1f7c7cf20e6963..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/ensure-mechanics.md
+++ /dev/null
@@ -1,212 +0,0 @@
----
-title: Models and Mechanisms
----
-
-While dep has many discrete components and moving parts, all of these parts revolve around a central model. This document explains that model, then explores the dep's primary mechanisms in the context of that model.
-
-## States and flows
-
-Dep is centered around the idea of the "four state system" - a model for classifying and organizing the on-disk state with which a package manager interacts. This was first articulated as a coherent, general model in [this (long) article](https://medium.com/@sdboyer/so-you-want-to-write-a-package-manager-4ae9c17d9527), though many of the principles in the four state model were derived from existing package managers.
-
-Briefly, the four states are:
-
-1.  The [current project's](glossary.md#current-project) source code.
-2.  A [manifest](glossary.md#manifest) - a file describing the current project's dependency requirements. In dep, this is the [`Gopkg.toml`](Gopkg.toml.md) file.
-3.  A [lock](glossary.md#lock) - a file containing a transitively-complete, reproducible description of the dependency graph. In dep, this is the [`Gopkg.lock`](Gopkg.lock.md) file.
-4.  The source code of the dependences themselves. In dep's current design, this is the `vendor/` directory.
-
-We can visually represent these four states as follows:
-
-![dep's four states](assets/four-states.png)
-
-### Functional flow
-
-It's useful to think of dep as a system that imposes a unidirectional, functional flow on the relationships between these states. These functions treat the above states as inputs and outputs, moving them from left to right. Specifically, there are two functions:
-
-* A _solving function_, that takes as its input the set of imports in the current project and the rules in `Gopkg.toml`, and returns as its output a transitively-complete, immutable dependency graph - the information in a `Gopkg.lock`.
-* A _vendoring function_, that takes the information in a `Gopkg.lock` as its input and ensures an on-disk arrangement of source files such that the compiler will use the versions designated in the lock.
-
-We can represent these two functions visually:
-
-![dep's two main functions](assets/annotated-func-arrows.png)
-
-This is `dep ensure` - the typical flow, used when a `Gopkg.toml` already exists. When a project does not yet have a `Gopkg.toml`, `dep init` can generate one. The essential flow remains the same, but with changed inputs: instead of reading from an existing `Gopkg.toml` file, `dep init` constructs one out of data inferred from the user's GOPATH, and/or [a metadata file from another tool](). (In other words, `dep init` automatically migrates a project from other approaches to organizing dependencies.)
-
-This diagram directly corresponds to code as well. The solving function is actually split into a constructor and a method - we first create a [`Solver`](https://godoc.org/github.com/golang/dep/gps#Solver) type, then call its `Solve()` method. The inputs to the constructor are wrapped up in a [`SolveParameters`](https://godoc.org/github.com/golang/dep/gps#SolveParameters), which should look familiar:
-
-```go
-type SolveParameters struct {
-	RootPackageTree pkgtree.PackageTree // Parsed project src; contains lists of imports
-	Manifest gps.RootManifest // Gopkg.toml
-	...
-}
-```
-
-The vendoring function is [`gps.WriteDepTree()`](https://godoc.org/github.com/golang/dep/gps#WriteDepTree). While it takes a handful of arguments, the relevant one is a [`gps.Lock`](https://godoc.org/github.com/golang/dep/gps#Lock) - an interface representing an abstracted form of the data held in a `Gopkg.lock`.
-
-The four state system, and these functional flows through it, are the foundation on which all of dep's behavior is built. If you want to understand dep's mechanics, keep this model at the forefront of your mind.
-
-### Staying in sync
-
-One of dep's design goals is that both of its "functions" minimize both the work they do, and the change they induce in their respective outputs. Consequently, both functions peek ahead at the pre-existing output to understand what work actually needs to be done:
-
-* The solving function checks the existing `Gopkg.lock` to determine if all of its inputs are satisfied. If they are, the solving function can be bypassed entirely. If not, the solving function proceeds, but attempts to change as few of the selections in `Gopkg.lock` as possible.
-* The vendoring function hashes each discrete project already in `vendor/` to see if the code present on disk is what `Gopkg.lock` indicates it should be. Only projects with hash mismatches are rewritten.
-
-Specifically, dep defines a number of invariants that must be met:
-
-| Sync invariant                                               | Resolution when desynced                                     | Func       |
-| ------------------------------------------------------------ | ------------------------------------------------------------ | ---------- |
-| All [`required`](Gopkg.toml.md#required) statements in `Gopkg.toml` must be present in the [`input-imports`](Gopkg.lock.md#input-imports) list in `Gopkg.lock`. | Re-solve, update `Gopkg.lock` and `vendor/` for projects that changed | Solving    |
-| All `import` statements in the current project's non-[`ignored`]((Gopkg.toml.md#ignored)), non-hidden packages must be present in [`input-imports`](Gopkg.lock.md#input-imports) list in `Gopkg.lock`. | Re-solve, update `Gopkg.lock` and `vendor/` for projects that changed | Solving    |
-| All [versions in `Gopkg.lock`](Gopkg.lock.md#version-information-revision-version-and-branch) must be acceptable with respect to the `[[constraint]]` or `[[override]]` declarations made in `Gopkg.toml`. | Re-solve, update `Gopkg.lock` and `vendor/` for projects that changed | Solving    |
-| The [`pruneopts`](Gopkg.lock.md#pruneopts) of each `[[project]]` in `Gopkg.lock` must equal the declaration in `Gopkg.toml`. | Update `Gopkg.lock` and `vendor/`                            | Vendoring* |
-| The [`digest`](Gopkg.lock.md#digest) of each `[[project]]` in `Gopkg.lock` must equal the value derived from hashing the current contents of `vendor/` | Regenerate the projects in `vendor/ `, and update `Gopkg.lock` with the new hash digest if necessary | Vendoring  |
-
-(*`pruneopts` is a little weird, because the desync is between `Gopkg.toml` and `Gopkg.lock`, but it doesn't trigger a solve.)
-
-If peeking ahead reveals that the sync invariants are already met, then the corresponding function needn't do any work; if they don't, then dep takes the resolution step. Either way, when `dep ensure` finishes, we can be sure that we're in the "known good state" of where all sync invariants are maintained.
-
-`dep check` will evaluate all of the above relations, and if any invariants do not hold, it will print a description of the desync and exit 1. This behavior can be disabled on a per-project basis using the [`noverify` field in Gopkg.toml](Gopkg.toml.md#noverify).
-
-## `dep ensure` flags and behavior variations
-
-Each of `dep ensure`'s various flags affects the behavior of the solving and vendoring functions - or even whether they run at all. Some flags can also temporarily result in the project being out of sync. Thinking about these effects in the context of dep's basic model is the fastest path to understanding what's going on.
-
-### `-no-vendor` and `-vendor-only`
-
-These two flags are mutually exclusive, and determine which of `dep ensure`'s two functions are actually performed. Passing `-no-vendor` will cause only the solving function to be run, resulting in the creation of a new `Gopkg.lock`; `-vendor-only` will skip solving and run only the vendoring function, causing `vendor/` to be repopulated from the pre-existing `Gopkg.lock`.
-
-![Flags to run only one or the other of dep's functions](assets/func-toggles.png)
-
-Passing `-no-vendor` has the additional effect of causing the solving function to run unconditionally, bypassing the pre-check ordinarily made against `Gopkg.lock` to see if it already satisfies all inputs.
-
-### `-add`
-
-The general purpose of `dep ensure -add` is to facilitate the introduction of new dependencies into the depgraph. Whereas `-update` is restricted to [source roots](glossary.md#source-root), (e.g. `github.com/foo/bar`), `-add` can take any package import path as an argument (e.g. `github.com/foo/bar` OR `github.com/foo/bar/baz`).
-
-Conceptually, there are two possible things that `-add` might be introducing. Any `dep ensure -add` run will do at least one of these:
-
-1.  Running the solving function in order to generate a new `Gopkg.lock` with the new dependenc(ies)
-2.  Appending a version constraint into `Gopkg.toml`
-
-This implies two preconditions for `dep ensure -add`, at least one of which must be met:
-
-1.  The named import path is not currently in the project's import statements, or in `Gopkg.toml`'s `required` list
-2.  There is no `[[constraint]]` stanza in `Gopkg.toml` for the project root corresponding to the named import path
-
-It is also possible to explicitly specify a version constraint:
-
-```bash
-$ dep ensure -add github.com/foo/bar@v1.0.0
-```
-
-When no version constraint is included in the argument, the solving function will select the latest version that works (generally, the newest semver release, or the default branch if there are no semver releases). If solving succeeds, then either the argument-specified version, or if none then the version selected by the solver, will be appended into `Gopkg.toml`.
-
-The behavioral variations that arise from the assorted differences in input and current project state are best expressed as a matrix:
-
-| Argument to `dep ensure -add` | Has `[[constraint]]` stanza in `Gopkg.toml` | In imports or `required` | Result                                                                                               |
-| ----------------------------- | ------------------------------------------- | ------------------------ | ---------------------------------------------------------------------------------------------------- |
-| `github.com/foo/bar`          | N                                           | N                        | Added temporarily to `Gopkg.lock` & `vendor/`; inferred version constraint appended to `Gopkg.toml`  |
-| `github.com/foo/bar@v1.0.0`   | N                                           | N                        | Added temporarily to `Gopkg.lock` & `vendor/`; specified version constraint appended to `Gopkg.toml` |
-| `github.com/foo/bar`          | Y                                           | N                        | Added temporarily to `Gopkg.lock` & `vendor/`                                                        |
-| `github.com/foo/bar@v1.0.0`   | Y                                           | -                        | **Immediate error**: constraint already present in `Gopkg.toml`                                      |
-| `github.com/foo/bar`          | N                                           | Y                        | Infer version constraint from `Gopkg.lock` and add to `Gopkg.toml`                                   |
-| `github.com/foo/bar`          | Y                                           | Y                        | **Immediate error:** nothing to do                                                                   |
-
-For any of the paths where `dep ensure -add` needs to run the solving function in order to generate an updated `Gopkg.lock`, the relevant information from CLI arguments is applied to the in-memory representation of `Gopkg.toml`:
-
-![Model modifications made by -add](assets/required-arrows.png)
-
-Import path arguments that need to be added are injected via the `required` list, and if an explicit version requirement was specified, the equivalent of a `[[constraint]]` is created.
-
-Though these rules may ultimately be persisted if solving succeeds, they are ephemeral at least until solving succeeds. And, from the solver's perspective, the ephemeral rules are indistinguishable from rules sourced directly from disk. Thus, to the solver, `dep ensure -add foo@v1.0.0` is identical to modifying `Gopkg.toml` by adding `"foo"` to the `required` list, plus a `[[constraint]]` stanza with `version = "v1.0.0"`, then running `dep ensure`.
-
-However, because these modifications are ephemeral, a successful `dep ensure -add` may actually push the project out of sync. Constraint modifications generally do not, but if the `required` list is modified, then the project will desync. The user is warned accordingly:
-
-```bash
-$ dep ensure -add github.com/foo/bar
-"github.com/foo/bar" is not imported by your project, and has been temporarily added to Gopkg.lock and vendor/.
-If you run "dep ensure" again before actually importing it, it will disappear from Gopkg.lock and vendor/.
-```
-
-### `-update`
-
-The behavior of `dep ensure -update` is intimately linked to the behavior of the solver itself. Full detail on that is a topic for the [solver reference material](the-solver.md), but for the purposes of understanding `-update`, we can simplify a bit.
-
-First, to solidify an implication in the discussion of [functional optimizations](#staying-in-sync), the solving function actually takes into account the pre-existing `Gopkg.lock` when it runs:
-
-![Pre-existing lock feeds back into solving function](assets/lock-back.png)
-
-Injecting `Gopkg.lock` into the solver is a necessity. If we want the solver to preserve previously-selected versions by default, then the solver has to learn about the existing `Gopkg.lock` from somewhere. Otherwise, it wouldn't know what to preserve!
-
-As such, the lock is another one of the properties encoded onto the [previously-discussed]() `SolveParameters` struct. That, plus two other properties, are the salient ones for `-update`:
-
-```go
-type SolveParameters struct {
-	...
-	Lock gps.Lock // Gopkg.lock
-	ToChange []gps.ProjectRoot // args to -update
-	ChangeAll bool // true if no -update args passed
-	...
-}
-```
-
-Ordinarily, when the solver encounters a project name for which there's an entry in `Gopkg.lock`, it pulls that version out and puts it at the head of the queue of possible versions for that project. When a specific dependency is passed to `dep ensure -update`, however, it is added to the `ToChange` list; when the solver encounters a project listed in `ToChange`, it simply skips pulling the version from the lock.
-
-"Skips pulling the version from the lock" would imply that `dep ensure -update github.com/foo/bar` is equivalent to removing the `[[project]]` stanza for `github.com/foo/bar` from your `Gopkg.lock`, then running `dep ensure`. And indeed it is - however, that approach is not recommended, and subtle changes may be introduced in the future that complicate the equivalency.
-
-If `-update` is passed with no arguments, then `ChangeAll` is set to `true`, resulting in the solver ignoring `Gopkg.lock` for all newly-encountered project names. This is equivalent to explicitly passing all of your dependences as arguments to `dep ensure -update`, as well as `rm Gopkg.lock && dep ensure`. Again, however, neither of these approaches are recommended, and future changes may introduce subtle differences.
-
-When a version hint from `Gopkg.lock` is not placed at the head of the version queue, it means that dep will explore the set of possible versions for a particular dependency. This exploration is performed according to a [fixed sort order](https://godoc.org/github.com/golang/dep/gps#SortForUpgrade), where newer versions are tried first, resulting in an update.
-
-For example, say there is a project, `github.com/foo/bar`, with the following versions:
-
-```bash
-v1.2.0, v1.1.1, v1.1.0, v1.0.0, master
-```
-
-If we depend on that project with `^1.1.0`, and have `v1.1.0` in our `Gopkg.lock` , then it means there are three versions that match our constraint, and two of them are newer than the one currently selected. (There's also an older version, `v1.0.0`, and a `master` branch, but these aren't allowed by a `^1.1.0` constraint.) An ordinary `dep ensure` run will duplicate and push `v1.1.0` ahead of all the others in the queue:
-
-```bash
-[v1.1.0, v1.2.0, v1.1.1, v1.1.0, v1.0.0, master]
-```
-
-And `v1.1.0` will be selected again, unless some other condition is presented that forces the solver to discard it. When running `dep ensure -update github.com/foo/bar`, however, the locked version is not prepended:
-
-```bash
-[v1.2.0, v1.1.1, v1.1.0, v1.0.0, master]
-```
-
-So, barring some other conflict, `v1.2.0` is selected, resulting in the desired update.
-
-#### `-update` and constraint types
-
-Continuing with our example, it's important to note that updates with `-update` are achieved incidentally - the solver never explicitly targets a newer version. It just skips adding a hint from the lock, then selects the first version in the queue that satisfies constraints. Consequently, `-update` is only effective with certain types of constraints.
-
-It does work with branch constraints, which we can observe by including the underlying revision. If the user has constrained on `branch = "master"`, and `Gopkg.lock` points at a topologically older revision (say, `aabbccd`) than the tip of the canonical source's `master` branch (say, `bbccdde`), then `dep ensure` will end up constructing a queue that looks like this:
-
-```bash
-[master@aabbccd, v1.1.0, v1.2.0, v1.1.1, v1.1.0, v1.0.0, master@bbccdde]
-```
-
-With `-update`, the hint at the head will be omitted; `branch = "master"` will cause the solver to reject all of the semantic versions, and finally settle on `master@bbccdde`.
-
-All versions in the version queue keep track of an underlying revision, which means the same is true if, for example, some upstream project force-pushes a git tag:
-
-```bash
-[v1.1.0@aabbccd, v1.1.0, v1.2.0, v1.1.1, v1.1.0@bbccdde, v1.0.0, master]
-```
-
-Thus, even if an upstream tag is force-pushed in one of your project's dependences, dep will retain the original revision until you explicitly allow it to change via a `dep ensure -update`.
-
-The key takeaway here is that `-update`'s behavior is governed by the type of constraints specified:
-
-| `Gopkg.toml` version constraint type | Constraint example | `dep ensure -update` behavior                                                                                                             |
-| ------------------------------------ | ------------------ | ----------------------------------------------------------------------------------------------------------------------- |
-| `version` (semver range)             | `"^1.0.0"`         | Tries to get the latest version allowed by the range                                                               |
-| `branch`                             | `"master"`         | Tries to move to the current tip of the named branch                                                                   |
-| `version` (non-range semver)         | `"=1.0.0"`         | Change can only occur if the upstream release was moved (e.g. `git push --force <tag>`)                         |
-| `version` (non-semver)               | `"foo"`            | Change can only occur if the upstream release was moved                                                         |
-| `revision`                           | `aabbccd...`       | No change is possible                                                                                                   |
-| (none)                               | (none)             | The first version that works, according to [the sort order](https://godoc.org/github.com/golang/dep/gps#SortForUpgrade) |
diff --git a/vendor/github.com/golang/dep/docs/env-vars.md b/vendor/github.com/golang/dep/docs/env-vars.md
deleted file mode 100644
index 4d6ffcbab1bce3920a6a20de92e300042a90ffc3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/env-vars.md
+++ /dev/null
@@ -1,43 +0,0 @@
----
-id: env-vars
-title: Environment Variables
----
-
-dep's behavior can be modified by some environment variables:
-
-* [`DEPCACHEAGE`](#depcacheage)
-* [`DEPCACHEDIR`](#depcachedir)
-* [`DEPPROJECTROOT`](#depprojectroot)
-* [`DEPNOLOCK`](#depnolock)
-
-Environment variables are passed through to subcommands, and therefore can be used to affect vcs (e.g. `git`) behavior.
-
----
-
-### `DEPCACHEAGE`
-
-If set to a [duration](https://golang.org/pkg/time/#ParseDuration) (e.g. `24h`), it will enable caching of metadata from source repositories: 
-
-* Lists of published versions
-* The contents of a project's `Gopkg.toml` file, at a particular version
-* A project's tree of packages and imports, at a particular version
-
-A duration must be set to enable caching. (In future versions of dep, it will be on by default). The duration is used as a TTL, but only for mutable information, like version lists. Information associated with an immutable VCS revision (packages and imports; `Gopkg.toml` declarations) is cached indefinitely.
-
-The cache lives in `$DEPCACHEDIR/bolt-v1.db`, where the version number is an internal number associated with a particular data schema dep uses.
-
-The file can be removed safely; the database will be automatically rebuilt as needed.
-
-### `DEPCACHEDIR`
-
-Allows the user to specify a custom directory for dep's [local cache](glossary.md#local-cache) of pristine VCS source repositories. Defaults to `$GOPATH/pkg/dep`.
-
-### `DEPPROJECTROOT`
-
-If set, the value of this variable will be treated as the [project root](glossary.md#project-root) of the [current project](glossary.md#current-project), superseding GOPATH-based inference.
-
-This is primarily useful if you're not using the standard `go` toolchain as a compiler (for example, with Bazel), as there otherwise isn't much use to operating outside of GOPATH.
-
-### `DEPNOLOCK`
-
-By default, dep creates an `sm.lock` file at `$DEPCACHEDIR/sm.lock` in order to prevent multiple dep processes from interacting with the [local cache](glossary.md#local-cache) simultaneously. Setting this variable will bypass that protection; no file will be created. This can be useful on certain filesystems; VirtualBox shares in particular are known to misbehave.
diff --git a/vendor/github.com/golang/dep/docs/failure-modes.md b/vendor/github.com/golang/dep/docs/failure-modes.md
deleted file mode 100644
index 3362388be50e0e63d9ce4ef3f19be38b28180a81..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/failure-modes.md
+++ /dev/null
@@ -1,201 +0,0 @@
----
-title: Failure Modes
----
-
-Like all complex, network-oriented software, dep has known failure modes. These generally fall into two categories: I/O and logical. I/O errors arise from unexpected responses to system calls that interact with the network or local disk. Logical failures occur when dep encounters issues within the package management problem domain.
-
-## I/O errors
-
-dep reads from the network, and reads and writes to disk, and is thus subject to all the typical errors that are possible with such activities: full disks, failed disks, lack of permissions, network partitions, firewalls, etc. However, there are three classes of I/O errors that are worth addressing specifically:
-
-* Network failures
-* Bad local cache state
-* `vendor` write errors
-
-In general, these problems aren't things we can reasonably program around in dep. Therefore, they can't be considered bugs for us to fix. Fortunately, most of these problems have straightforward remediations.
-
-### Network failures
-
-> **Remediation tl;dr:** most network issues are ephemeral, even if they may last for a few minutes, and can be addressed simply by re-running the same command. Always try this before attempting more invasive solutions.
-
-dep talks to the network at several different points. These vary somewhat depending on source (VCS) type and local disk state, but this list of operations is generally instructive:
-
-* When dep cannot [statically deduce](deduction.md#static-deduction) the source root of an import path, it issues a `go-get` HTTP metadata request to a URL constructed from the import path.
-* Retrieving the list of available versions for a source (think `git ls-remote`) necessarily requires network activity.
-* Initially downloading (in git terms, `git clone`) an upstream source into the local cache also necessarily requires network activity.
-* Updating a local cache (in git terms, `git fetch`) with the latest changes from an upstream source.
-* Writing out code trees under `vendor` is typically done from the local cache, but under some circumstances a tarball may be fetched on-the-fly from a remote source.
-
-Network failures that you actually may observe are biased towards the earlier items in the list, simply because those operations tend to happen first: you generally don't see update failures as much as version-listing failures, because they usually have the same underlying cause (source host is down, network partition, etc.), but the version-list request happens first on most paths.
-
-#### Persistent network failures
-
-Although most network failures are ephemeral, there are three well-defined cases where they're more permanent:
-
-* **The network on which the source resides is permanently unreachable from the user's location:** in practice, this generally means one of two things: you've forgotten to log into your company VPN, or you're behind [the GFW](https://en.wikipedia.org/wiki/Great_Firewall). In the latter case, setting the _de facto_ standard HTTP proxy environment variables that [`http.ProxyFromEnvironment()`](https://golang.org/pkg/net/http/#ProxyFromEnvironment) respects will cause dep's `go-get` HTTP metadata requests, as well as git, bzr, and hg subcommands, to utilize the proxy.
-
-  * Remediation is also exactly the same when the custom `go-get` HTTP metadata service for a source is similarly unreachable. The failure messages, however, will look like [deduction failures](#deduction-failures).
-
-* **The source has been permanently deleted or moved:** these are [left-pad](https://www.theregister.co.uk/2016/03/23/npm_left_pad_chaos/) events, though note that [GitHub automatically redirects traffic after renames](https://help.github.com/articles/renaming-a-repository/), mitigating the rename problem. But, if an upstream source is removed, dep will be unable to proceed until a new upstream source is established for the import path. To that end:
-
-  * If you still have a copy of the source repository in your local cache or GOPATH, consider uploading it to a new location (e.g. forking it) and using a [`source`](Gopkg.toml.md#source) rule to point to the fork.
-  * If you don't have a whole repository locally, then extracting the code currently in your `vendor` directory into a new repository and pushing it to a . (Note: this may have licensing implications.)
-  * If you have no instances of the code locally, then there's little that can be done - that code is simply gone, and you'll need to refactor your project.
-
-  Future versions of dep will be able to better handle an interim period before a new upstream/forked source is created, or simply living in a world where a given code tree exists solely in your project's `vendor` directory.
-
-* **The user lacks the necessary credentials to interact with a source:** see the [FAQ on configuring credentials](FAQ.md#how-do-i-get-dep-to-authenticate-to-a-git-repo).
-
-The exact error text will vary depending on which of the operations is running, what type of source dep is trying to communicate with, and what actual network problem has occurred. The error text may not always make it immediately clear which combination of these you're dealing with, but for persistent problems, it should at least reduce the search space.
-
-#### Hangs
-
-> **Remediation tl;dr:** hangs are almost always network congestion, or sheer amount of network data to fetch. Wait, or cancel and try again with `-v` to try to get more context.
-
-Almost any case where a dep command, run with `-v`, hangs for more than ten minutes will ultimately be a bug. However, the most common explanation for an apparent dep hangs is actually normal behavior: because dep's operation requires that it keep its own copies of upstream sources hidden away in the [local cache](glossary.md#local-cache), the first run of dep against a project, especially large projects, can take a long time while it populates the cache.
-
-The only known case where dep may hang indefinitely is if one of the underlying VCS binaries it calls is prompting for some kind of input. Typically this means credentials (though not always - make sure to accept remote hosts' SSH keys into your known hosts!), and dep's normal assumption is that necessary credentials have been provided via environmental mechanisms - [configuration files or daemons](FAQ.md#how-do-i-get-dep-to-authenticate-to-a-git-repo), SSH agents, etc. This assumption is necessary for dep's concurrent network activity to work. If your use case absolutely cannot support the use of any such environmental caching mechanism, [please weigh in on this issue](https://github.com/golang/dep/issues/1476).
-
-Unfortunately, until dep [improves the observability of its ongoing I/O operations](), it cannot accurately report to the user which operations are actually underway at any given moment. This can make it difficult to differentiate from other hangs - credentials prompts, long network timeouts induced by firewalls, sluggish TCP when faced with packet loss, etc.
-
-### Bad local cache state
-
-> **Remediation tl;dr:** Remove the local cache dir: `rm -rf $GOPATH/pkg/dep/sources`.
-
-It is possible for parts of the [local cache](glossary.md#local-cache) maintained by dep to get into a bad state. This primarily happens when dep processes are forcibly terminated (e.g. Ctrl-C). This can, for example, terminate a `git` command partway through, leaving bad state on disk. By dep's definition, a [dirty git working copy]() is bad state.
-
-The error messages arising from bad local cache state often do not include full paths, so it may not be immediately obvious that problems are originating in the local cache. If full paths aren't included, then the best hint tends to be that the errors look like local VCS errors, but they're not on files from your own project.
-
-However, for the most part, **dep automatically discovers and recovers from bad local cache state problems**, rebounding back into a good state as it bootstraps each command execution. If you do encounter what appears to be a local cache problem from which dep does not automatically recover, then the fix is typically to just throw out the cache, `rm -rf $GOPATH/pkg/dep/sources`; dep will repopulate it automatically on the next run. However, if you have time, please preserve the local cache dir and report it as a bug!
-
-There are no known cases where, in the course of normal operations, dep can irreparably corrupt its own local cache. Any such case would be considered a critical bug in dep, and you should report it! If you think you've encountered such a case, it should have the following characteristics:
-
-* The error message you're seeing is consistent with some sort of disk state error in a downloaded source within `$GOPATH/pkg/dep/sources`
-* You can identify a bad state (generally: a vcs "status"-type command will either fail outright, or report a modified working tree) in a subdirectory of `$GOPATH/pkg/dep/sources` suggested by the above error
-* The exact same error recurs after removing the local cache dir and running the same command, **without** prematurely terminating the project (e.g. via Ctrl-C)
-
-### `vendor` write errors
-
-Dep may encounter errors while attempting to write out the `vendor` directory itself (any such errors will result in a full rollback; causing no changes to be made to disk). To help pinpoint where the problem may be, know that this is the flow for populating `vendor`:
-
-1.  Allocate a new temporary directory within the system temporary directory.
-2.  Rename the existing `vendor` directory to `vendor.orig`. Do this within the current project's root directory if possible; if not, rename and move it to the tempdir.
-3.  Create a new `vendor` directory within the tempdir and concurrently populate it with all the projects named in `Gopkg.lock`.
-4.  Move the new `vendor` directory into place in the current project's root directory.
-5.  Delete the old `vendor` directory.
-
-Note: this flow will become more targeted after [vendor verification]() allows dep to identify and target the subset of projects currently in `vendor` that need to be changed.
-
-Known problems in this category include:
-
-* Insufficient space in the temporary directory will cause an error, triggering a rollback. However, because the rollback process cleans up files written so-far, the temporary partition won't actually be full after dep exits, which can be misleading.
-* Attempting to [re]move the original `vendor` directory can fail with permissions errors if any of the files therein are "open", in some editors/on some OSes (particularly Windows). [There's an issue for this]().
-
-## Logical failures
-
-Logical failures encompass everything that can happen within dep's logical problem-solving domain - after
-
-Some of these failures can be as straightforward as typos, and are just as easily resolved. Others, unfortunately, may necessitate forking and modifying an upstream project - although such cases are very rare.
-
-### Deduction failures
-
-Import path deduction, as detailed in the [deduction reference](deduction.md), has both static and dynamic phases. When neither of these phases is able to determine the source root for a given import path, it is considered to be a deduction failure. Deduction failures all contain this key error text:
-
-```bash
-...unable to deduce repository and source type for "<bad path>"...
-```
-
-_Note: there are [more varied error messages for the small subset of cases](#malformed-import-paths) where an import path appears to be deducible, but is somehow malformed._
-
-When a deduction failure occurs on a given import path, the proximal cause will have been one of following five scenarios (arranged from most to least likely):
-
-* The import path was never deducible.
-* **Dynamic deduction failures:**
-  * The import path was, at one time, dynamically deducible, and the metadata service for it is up, but it is unreachable by dep.
-  * The import path was, at one time, dynamically deducible, but the metadata service for it is down.
-* **Static rule changes:**
-  * The import path cannot be statically deduced by the running version of dep, but a newer version of dep has added rules that can statically deduce it.
-  * The import path was once statically deducible, but the running version of dep has discontinued support for it.
-
-In all of these cases, your last recourse will be to add a [`source`](Gopkg.toml.md#source) directive to fix the problem. However, these directives are brittle, and should only be used when other options have been exhausted; also, until [this problem is solved](https://github.com/golang/dep/issues/860), even `source` may not be able to help.
-
-#### Undeducible paths
-
-> **Remediation tl;dr:** You made a typo; fix it. If not, you may need a `source`, but be sparing with those.
-
-The most likely cause of deduction failure is minor user error. Specifically, the user is the _current_ user (you), and the error is there is a mistyped import path somewhere in the current (your) project. The problem may be in your `Gopkg.toml`, or one of your imports, but the error message should point you directly at the problem, and the solution is usually obvious - e.g., "gihtub".
-
-Validation of the inputs from the current project are made fast and up front in dep, so these errors will tend to present themselves immediately. Between this fast validation, and the fact that projects are typically uncompilable, or at least not `go get`-able, with these kinds of errors, they tend to be caught early. This is why truly undeducible paths pop up primarily as temporary accidents while hacking on your own projects - you have to fix them to move on.
-
-That undeducibility is an immediate and hard blocker, however, has led to this being a sticking point for migration to dep. In particular, there are two issues:
-
-* Several other Go dependency management tools do allow specifying arbitrary VCS/source URLs, and [but support for that via `source` in dep is still pending](https://github.com/golang/dep/issues/860).
-* GitHub Enterprise only implements `go-get` HTTP metadata correctly for the root package of a repository. In practice, this makes all import paths pointing to GHE undeducible, and `source` can't help either without the aforementioned improvement.
-
-If the problem import path is in your current project, but the problem isn't an obvious typo, then you're likely experiencing a dynamic failure, or may need to check the [deduction reference](deduction.md) to understand what what a deducible import path looks like.
-
-#### Dynamic deduction failures
-
-Most dynamic deduction failures are either ephemeral network or service availability issues, and will go away by re-running the previous command. Always try that first.
-
-If the issue persists, and you're certain the import path should be deducible, network issues are the first culprit to check. The typical causes (VPN, firewalls) and remediation for when a metadata service is unreachable are the same as [when a source itself is unreachable](#persistent-network-failures).
-
-The next possibility is a metadata service that's permanently gone away. Whereas network errors are still reasonably common, it is rare to encounter an import path pointing to a defunct public metadata service. Consider: that one import path can render the entire project unfetchable and/or uncompilable, and neither of those are states that popular projects can afford to be in for long. So, being that most (public Go ecosystem) dependencies are on the more popular projects, as long as you're also depending on the more popular projects, you're unlikely to encounter this.
-
-Of course, defunct _private_ metadata services may be much more common, as they are subject to entirely different incentives.
-
-If you think you've encountered a defunct metadata service, try probing the domain portion of the import path directly to see if there is an HTTP(S) server there at all. If not, you can only force with `source` - assuming you know what source URL you should use. If not, you may need to refactor your code (if the problem is in your project), pick a different version of the problem dependency, or drop the problem dependency entirely; sometimes, you just have to get rid of dead code.
-
-#### Static rule changes
-
-> **Remediation tl;dr:** make sure you have the latest released version of dep.
-
-Static rule changes are very unlikely to be the cause of your deduction failures.
-
-It is plausible that dep will add new static deduction rules in the future. And it is possible that, if you have an older version of dep, and you collaborate with or pull in code from someone using a newer version of dep, then their code may take advantage of new import path patterns that your dep doesn't know about yet. But very, very few static rules additions are likely to ever be made to dep over its lifetime - and getting access to them is just a question of updating once.
-
-The final scenario - dep discontinuing support for a static deduction pattern - is included for clarity and completeness, but simply should never happen. Even if a hosting service covered by static rules today were to shut down, dep would retain the existing static rules; if hosted code had been migrated elsewhere, then dep would attempt to perform a remapping automatically. If no such remapping were possible, then dep would still recognize the basic host pattern, but may fall back on using malformed import path errors - the next topic - to informatively reject new imports from the host.
-
-#### Malformed import paths
-
-For the most part, static ("is it one of the handful of hosts we know?") and dynamic ("just do whatever the metadata service tells us to do") deduction are single-pass checks. However, both cases can perform some minor additional validation:
-
-* In static deduction, the rules are necessarily specific to each host, but most enforce allowable characters and schemes in URLs that are known to be required by the underlying host.
-* In dynamic deduction, responses from the metadata service are minimally validated to ensure that the source type and scheme are all supported, and that the URL contains valid characters.
-
-### Solving failures
-
-When `dep ensure` or `dep init` exit with an error message looking something like this:
-
-```bash
-$ dep init
-init failed: unable to solve the dependency graph: Solving failure: No versions of github.com/foo/bar met constraints:
-	v1.0.1: Could not introduce github.com/foo/bar@v1.13.1, as its subpackage github.com/foo/bar/foo is missing. (Package is required by (root).)
-	v1.0.0: Could not introduce github.com/foo/bar@v1.13.0, as...
-	v0.1.0: (another error)
-	master: (another error)
-```
-
-_Note: all three of the other hard failure types can sometimes be reported as the errors for individual versions in a list like this. This primarily happens because dep is in need of a [thorough refactor of its error handling](https://github.com/golang/dep/issues/288)._
-
-It means that the solver was unable to find a combination of versions for all dependencies that satisfy all the rules enforced by the solver. It is crucial to note that, just because dep provides a big list of reasons why each version failed _doesn't mean_ you have to address each one! That's just dep telling you why it ultimately couldn't use each of those versions in a solution.
-
-These rules, and specific remediations for failing to meet them, are described in detail in the section on [solver invariants](the-solver.md#solving-invariants). This section is about the steps to take when solving failures occur in general. But, to set context, here's a summary:
-
-* **`[[constraint]]` conflicts:** when projects in the dependency graph disagree on what [versions](Gopkg.toml.md#version-rules) are acceptable for a project, or where to [source](Gopkg.toml.md#source) it from.
-  * Remediation will usually be either changing a `[[constraint]]` or adding an `[[override]]`, but genuine conflicts may require forking and hacking code.
-* **Package validity failure:** when an imported package is quite obviously not capable of being built.
-  * There usually isn't much remediation here beyond "stop importing that," as it indicates something broken at a particular version.
-* **Import comment failure:** when the import path used to address a package differs from the [import comment](https://golang.org/cmd/go/#hdr-Import_path_checking) the package uses to specify how it should be imported.
-  * Remediation is to use the specified import path, instead of whichever one you used.
-* **Case-only import variation failure:** when two equal-except-for-case imports exist in the same build.
-  * Remediation is to pick one case variation to use throughout your project, then manually update all projects in your depgraph to use the new casing.
-
-Let's break down the process of addressing a solving failure into a series of steps:
-
-1.  First, look through the failed versions list for a version of the dependency that works for you (or a failure that seems fixable), then try to work that one out. Often enough, you'll see a single failure repeated across the entire version list, which makes it pretty clear what problem you need to solve.
-2.  Take the remediation steps specific to that failure.
-3.  Re-run the same command you ran that produced the failure. There are three possible outcomes:
-    1.  Success!
-    2.  Your fix was ineffective - the same failure re-occurs. Either re-examine your fix (step 2), or look for a new failure to fix (step 1).
-    3.  Your fix was effective, but some new failure arose. Return to step 1 with the new failure list.
diff --git a/vendor/github.com/golang/dep/docs/glossary.md b/vendor/github.com/golang/dep/docs/glossary.md
deleted file mode 100644
index 25f218ba3efa0a3a80d87e69de1f29d64c196ad3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/glossary.md
+++ /dev/null
@@ -1,153 +0,0 @@
----
-id: glossary
-title: Glossary
----
-
-dep uses some specialized terminology. Learn about it here!
-
-* [Atom](#atom)
-* [Cache lock](#cache-lock)
-* [Constraint](#constraint)
-* [Current Project](#current-project)
-* [Deducible](#deducible)
-* [Deduction](#deduction)
-* [Direct Dependency](#direct-dependency)
-* [External Import](#external-import)
-* [GPS](#gps)
-* [Local cache](#local-cache)
-* [Lock](#lock)
-* [Manifest](#manifest)
-* [Metadata Service](#metadata-service)
-* [Override](#override)
-* [Project](#project)
-* [Project Root](#project-root)
-* [Solver](#solver)
-* [Source](#source)
-* [Source Root](#source-root)
-* [Sync](#sync)
-* [Transitive Dependency](#transitive-dependency)
-* [Vendor Verification](#vendor-verification)
-
----
-
-### Atom
-
-Atoms are a source at a particular version. In practice, this means a two-tuple of [project root](#project-root) and version, e.g. `github.com/foo/bar@master`. Atoms are primarily internal to the [solver](#solver), and the term is rarely used elsewhere.
-
-### Cache lock
-
-Also "cache lock file." A file, named `sm.lock`, used to ensure only a single dep process operates on the [local cache](#local-cache) at a time, as it is unsafe in dep's current design for multiple processes to access the local cache.
-
-### Constraint
-
-Constraints have both a narrow and a looser meaning. The narrow sense refers to a [`[[constraint]]`](Gopkg.toml.md#constraint) stanza in `Gopkg.toml`. However, in some contexts, the word may be used more loosely to refer to the idea of applying rules and requirements to dependency management in general.
-
-### Current Project
-
-The project on which dep is operating - writing its `Gopkg.lock` and populating its `vendor` directory.
-
-Also called the "root project."
-
-### Deducible
-
-A shorthand way of referring to whether or not import path [deduction](#deduction) will return successfully for a given import path. "Undeducible" is also often used, to refer to an import path for which deduction fails.
-
-### Deduction
-
-Deduction is the process of determining the subset of an import path that corresponds to a source root. Some patterns are known a priori (static); others must be discovered via network requests (dynamic). See the reference on [import path deduction](deduction.md) for specifics.
-
-### Direct Dependency
-
-A project's direct dependencies are those that it _imports_ from one or more of its packages, or includes in its [`required`](Gopkg.toml.md#required) list in `Gopkg.toml`.
-
-If each letter in `A -> B -> C -> D` represents a distinct project containing only a single package, and `->` indicates an import statement, then `B` is `A`'s direct dependency, whereas `C` and `D` are [transitive dependencies](#transitive-dependency) of `A`.
-
-Dep only incorporates the `required` rules from the [current project's](#current-project) `Gopkg.toml`. Therefore, if `=>` represents `required` rather than a standard import, and `A -> B => C`, then `C` is a direct dependency of `B` _only_ when `B` is the current project. Because the `B`-to-`C` link does not exist when `A` is the current project, then `C` won't actually be in the graph at all.
-
-### External Import
-
-An `import` statement that points to a package in a project other than the one in which it originates. For example, an `import` in package `github.com/foo/bar` will be considered an external import if it points to anything _other_ than stdlib or `github.com/foo/bar/*`.
-
-### GPS
-
-Acronym for "Go packaging solver", it is [a subtree of library-style packages within dep](https://godoc.org/github.com/golang/dep/gps), and is the engine around which dep is built. Most commonly referred to as "gps."
-
-### Local cache
-
-dep maintains its own, pristine set of upstream sources (so, generally, git repository clones). This is kept separate from `$GOPATH/src` so that there is no obligation to maintain disk state within `$GOPATH`, as dep frequently needs to change disk state in order to do its work.
-
-By default, the local cache lives at `$GOPATH/pkg/dep`. If you have multiple `$GOPATH` entries, dep will use whichever is the logical parent of the process' working directory. Alternatively, the location can be forced via the [`DEPCACHEDIR` environment variable](env-vars.md#depcachedir).
-
-### Lock
-
-A generic term, used across many language package managers, for the kind of information dep keeps in a `Gopkg.lock` file.
-
-### Manifest
-
-A generic term, used across many language package managers, for the kind of information dep keeps in a `Gopkg.toml` file.
-
-### Metadata Service
-
-An HTTP service that, when it receives an HTTP request containing a `go-get=1` in the query string, treats interprets the path portion of the request as an import path, and responds by embedding data in HTML `<meta>` tags that indicate the type and URL of of the underlying source root. This is the server-side component of dynamic [deduction](#deduction).
-
-The behavior of metadata services is defined in the [Go documentation on remote import paths](https://golang.org/cmd/go/#hdr-Remote_import_paths).
-
-Variously referenced as "HTTP metadata service", "`go-get` HTTP metadata service", "`go-get` service", etc.
-
-### Override
-
-An override is a [`[[override]]`](Gopkg.toml.md#override) stanza in `Gopkg.toml`.
-
-### Project
-
-A project is a tree of Go packages. Projects cannot be nested. See [Project Root](#project-root) for more information about how the root of the tree is determined.
-
-### Project Root
-
-The root import path for a project. A project root is defined as:
-
-* For the current project, the location of the `Gopkg.toml` file defines the project root
-* For dependencies, the root of the network [source](#source) (VCS repository) is treated as the project root
-
-These are generally one and the same, though not always. When using dep inside a monorepo, multiple `Gopkg.toml` files may exist at subpaths for discrete projects, designating each of those import paths as Project Roots. This works fine when working directly on those projects. If, however, any project not in the repository seeks to import the monorepo, dep will treat the monorepo as one big Project, with the root directory being the Project Root; it will disregard any and all `Gopkg.toml` files in subdirectories.
-
-This may also be referred to as the "import root" or "root import path."
-
-### Solver
-
-"The solver" is a reference to the domain-specific SAT solver contained in [gps](#gps). More detail can be found on its [reference page](the-solver.md).
-
-### Source
-
-The remote entities that hold versioned code. Sources are specifically the entity containing the code, not any particular version of the code itself.
-
-"Source" is used in lieu of "VCS" because Go package management tools will soon learn to use more than just VCS systems.
-
-### Source Root
-
-The portion of an import path that corresponds to the network location of a source. This is similar to [Project Root](#project-root), but refers strictly to the second, network-oriented definition.
-
-### Sync
-
-Dep is designed around a well-defined relationship between four states:
-
-1. `import` statements in `.go` files
-2. `Gopkg.toml`
-3. `Gopkg.lock`
-4. The `vendor` directory
-
-If any aspect of the relationship is unfulfilled (e.g., there is an `import` not reflected in `Gopkg.lock`, or a project that's missing from `vendor`), then dep considers the project to be "out of sync."
-
-This concept is explored in detail in [ensure mechanics](ensure-mechanics.md#staying-in-sync).
-
-### Transitive Dependency
-
-A project's transitive dependencies are those dependencies that it does not import itself, but are imported by one of its dependencies.
-
-If each letter in `A -> B -> C -> D` represents a distinct project containing only a single package, and `->` indicates an import statement, then `C` and `D` are `A`'s transitive dependencies, whereas `B` is a [direct dependency](#transitive-dependency) of `A`.
-
-### Vendor Verification
-
-Dep guarantees that `vendor/` contains exactly the expected code by hashing the contents of each project and storing the resulting [digest in Gopkg.lock](Gopkg.lock.md#digest). This digest is computed _after_ pruning rules are applied.
-
-The digest is used to determine if the contents of `vendor/` need to be regenerated during a `dep ensure` run, and `dep check` uses it to determine whether `Gopkg.lock` and `vendor/` are in [sync](#sync). The [`noverify`](Gopkg.toml.md#noverify) list in `Gopkg.toml` can be used to bypass most of these verification behaviors.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/docs/installation.md b/vendor/github.com/golang/dep/docs/installation.md
deleted file mode 100644
index ac5de5d6e1e53d67c1a66df380601d4697ffec41..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/installation.md
+++ /dev/null
@@ -1,62 +0,0 @@
----
-title: Installation
----
-
-It is strongly recommended that you use a released version of dep. While tip is never purposefully broken, its stability is not guaranteed.
-
-## Binary Installation
-
-Pre-compiled binaries are available on the [releases](https://github.com/golang/dep/releases) page. You can use the `install.sh` script to automatically install one for your local platform:
-
-```sh
-$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
-```
-
-## MacOS
-
-Install or upgrade to the latest released version with Homebrew:
-
-```sh
-$ brew install dep
-$ brew upgrade dep
-```
-
-## Arch Linux
-
-Install the `dep` package:
-
-```sh
-pacman -S dep
-```
-
-## Install From Source
-
-The snippet below installs the latest release of dep from source and sets the
-version in the binary so that `dep version` works as expected.
-
-Note that this approach is not recommended for general use. We don't try to
-break tip, but we also don't guarantee its stability. At the same time, we love
-our users who are willing to be experimental and provide us with fast feedback!
-
-```sh
-go get -d -u github.com/golang/dep
-cd $(go env GOPATH)/src/github.com/golang/dep
-DEP_LATEST=$(git describe --abbrev=0 --tags)
-git checkout $DEP_LATEST
-go install -ldflags="-X main.version=$DEP_LATEST" ./cmd/dep
-git checkout master
-```
-
-## Development
-
-If you want to hack on dep, you can install via `go get`:
-
-```sh
-go get -u github.com/golang/dep/cmd/dep
-```
-
-Note that dep requires a functioning Go workspace and GOPATH. If you're unfamiliar with Go workspaces and GOPATH, have a look at [the language documentation](https://golang.org/doc/code.html#Organization) and get your local workspace set up. Dep's model could lead to being able to work without GOPATH, but we're not there yet.
-
-## Uninstalling
-
-Looking for a way to uninstall `dep`? There's a separate [doc page](uninstalling.md) for that!
diff --git a/vendor/github.com/golang/dep/docs/introduction.md b/vendor/github.com/golang/dep/docs/introduction.md
deleted file mode 100644
index 326de20ff1063182dee86f02b79aad20451319cb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/introduction.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-id: introduction
-title: Getting Started
----
-
-Welcome! This is documentation for dep, the "official experiment" dependency management tool for the Go language. Dep is a tool intended primarily for use by developers, to support the work of actually writing and shipping code. It is _not_ intended for end users who are installing Go software - that's what `go get` does.
-
-This site has both guides and reference documents. The guides are practical explanations of how to actually do things with dep, whereas the reference material provides deeper dives on specific topics. Of particular note is the [glossary](glossary.md) - if you're unfamiliar with terminology used in this documentation, make sure to check there!
-
-After [installing dep](installation.md), if you're using it for the first time, check out [Creating a New Project](new-project.md). Or, if you have an existing Go project that you want to convert to dep, [Migrating to Dep](migrating.md) is probably the place to start.
diff --git a/vendor/github.com/golang/dep/docs/migrating.md b/vendor/github.com/golang/dep/docs/migrating.md
deleted file mode 100644
index b78ac29df19b62a27ad484a621b41d4627c60e36..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/migrating.md
+++ /dev/null
@@ -1,103 +0,0 @@
----
-title: Migrating to Dep
----
-
-Ideally, migrating an existing Go project to dep is straightforward:
-
-```bash
-$ cd $GOPATH/src/path/to/project/root
-$ dep init
-```
-
-For many projects, this will just work. `dep init` will make educated guesses about what versions to use for your dependencies, generate sane `Gopkg.toml`, `Gopkg.lock`, and `vendor/`, and if your tests pass and builds work, then you're probably done. (If so, congratulations! You should check out [Daily Dep](daily-dep.md) next.)
-
-The migration process is still difficult for some projects. If you're trying dep for the first time, this can be particularly frustrating, as you're trying to simultaneously learn how to use dep, and how your project _should_ be managed in dep. The good news is, `dep init` is usually the big difficulty hump; once you're over it, things get much easier.
-
-The goal of this guide is to provide enough information for you to reason about what's happening during `dep init`, so that you can at least understand what class of problems you're encountering, and what steps you might take to address them. To that end, we'll start with an overview of what `dep init` is doing.
-
-> Note: the first run of `dep init` can take quite a long time, as dep is creating fresh clones of all your dependencies into a special location, `$GOPATH/pkg/dep/sources/`. This is necessary for dep's normal operations, and is largely a one-time cost.
-
-## `dep init` mechanics
-
-When migrating existing projects, the primary goal of `dep init` is to automate as much of the work of creating a `Gopkg.toml` as possible. This is necessarily a heuristic goal, as dep may not have a 1:1 correspondence for everything you may have done before. As such, it's important to only expect that `dep init`'s automated migrations are operating on a best-effort basis.
-
-The behavior of `dep init` varies depending on what's in your existing codebase, and the flags that are passed to it. However, it always proceeds in two phases:
-
-1.  _Inference phase:_ Infer, from various sources, rules and hints about which versions of dependencies to use.
-2.  _Solving phase:_ Work out a solution that is acceptable under dep's model, while incorporating the above inferences as much as possible.
-
-### The Inference Phase
-
-The inference phase is where `dep init`'s behavior varies. By default, `dep init` will look in your codebase for metadata files from [other Go package management tools that it understands](https://github.com/golang/dep/tree/master/internal/importers), and attempt to automatically migrate the data in these files into concepts that make sense in a dep. Depending on the tool and the particular values dep finds, metadata from the tool may be treated as either:
-
-* A hint: information that dep will try to honor in the solving phase, but will discard if it cannot find a solution that respects the hint.
-* A rule: information that must obeyed in the solving phase, and will ultimately appear in `Gopkg.toml` as a `[[constraint]]`. If the solving phase cannot find a solution that satisfies the rules, it will fail with an informative message.
-
-There are three circumstances that can lead dep not to make any tool-based inferences:
-
-* Your project doesn't use a package management tool
-* dep doesn't yet support the tool you use yet
-* You tell it not to, by running `dep init -skip-tools`
-
-After tool-based inference is complete, dep will normally proceed to the solving phase. However, if the user passes the `-gopath` flag, dep will first try to fill in any holes in the inferences drawn from tool metadata by checking the current project's containing GOPATH. Only hints are gleaned from GOPATH, and they will never supersede inferences from tool metadata. If you want to put GOPATH fully in charge, pass both flags: `dep init -skip-tools -gopath`.
-
-Once dep has compiled its set of inferences, it proceeds to solving.
-
-### The Solving Phase
-
-Once the inference phase is completed, the set of rules and hints dep has assembled will be passed to its [solver](the-solver.md) to work out a transitively complete depgraph, which will ultimately be recorded as the `Gopkg.lock`. This is the same solving process used by `dep ensure`, and completing it successfully means that dep has found a combination of dependency versions that respects all inferred rules, and as many inferred hints as possible. If solving succeeds, then the hard work is done; most of what remains is writing out `Gopkg.toml`, `Gopkg.lock`, and `vendor/`.
-
-The solver returns a solution, which itself is just [a representation](https://godoc.org/github.com/golang/dep/gps#Solution) of [the data stored in a `Gopkg.lock`](https://godoc.org/github.com/golang/dep#Lock): a transitively-complete, reproducible snapshot of the entire dependency graph. Writing out the `Gopkg.lock` from a solution is little more than a copy-and-encode operation, and writing `vendor/` is a matter of placing each project listed in the solution into its appropriate place, at the designated revision. This is exactly the same as `dep ensure`'s behavior.
-
-`Gopkg.toml` is a little different. There's no guarantee that rules were inferred for all (or even any) of your project's dependencies, but we still want to populate `Gopkg.toml` with sane values. So, for any dependency for which a rule was not inferred, dep inspects the solution to see what version was ultimately selected, and creates a constraint based on that:
-
-* If a branch, like `master`, was picked in the solution, then `branch: "master"` will appear in `Gopkg.toml`.
-* If a semantic version-compliant version was selected, like `v1.2.0`, then that will be specified as a minimum version: `version: "v1.2.0"`.
-* If only a raw revision was selected, nothing will be put in `Gopkg.toml`. While dep does allow `revision: "…"` constraints in `Gopkg.toml`, use of them is considered an antipattern, so dep does not create them automatically in order to avoid implicitly encouraging their use.
-
-## Dealing with failures
-
-First and foremost, make sure that you're running `dep init` with the `-v` flag. That will provide a lot more information.
-
-`dep init`, like dep in general, has both hard and soft failure modes. Hard failures result in the process hanging or aborting entirely, without anything being written to disk. Soft failures may or may not include warnings, but do ultimately write out a `Gopkg.toml`, `Gopkg.lock`, and `vendor/` - just, not the ones you wanted. Before we dig into those, though, let's set some context.
-
-While dep contributors have invested enormous effort into creating automated migration paths into dep, these paths will always best-effort and imprecise. It's simply not always possible to convert from other tools or GOPATH with full fidelity. dep is an opinionated tool, with a correspondingly opinionated model, and that model does sometimes fundamentally differ from that of other tools. Sometimes these model mismatches result in hard failures, sometimes soft, and sometimes there's no harm at all.
-
-Because these are deep assumptions, their symptoms can be varied and surprising. Keeping these assumptions in mind could save you some hair-pulling later on.
-
-* dep does not allow nested `vendor/` directories; it flattens all dependencies to the topmost `vendor/` directory, at the root of your project. This is foundational to dep's model, and cannot be disabled.
-* dep wholly controls `vendor`, and will blow away any manual changes or additions made to it that deviate from the version of an upstream source dep selects.
-* dep requires that all packages from a given project/repository be at the same version.
-* dep generally does not care about what's on your GOPATH; it deals exclusively with projects sourced from remote network locations. (Hint inference is the only exception to this; once solving begins, GOPATH - and any custom changes you've made to code therein - is ignored.)
-* dep generally prefers semantic versioning-tagged releases to branches (when not given any additional rules). This is a significant shift from the "default branch" model of `go get` and some other tools. It can result in dep making surprising choices for dependencies for which it could not infer a rule.
-* dep assumes that all generated code exists, and has been committed to the source.
-
-A small number of projects that have reported being unable, thus far, to find a reasonable way of adapting to these requirements. If you can't figure out how to make your project fit, please file an issue - while dep necessarily cannot accommodate every single existing approach, it is dep's goal is define rules to which all Go projects can reasonably adapt.
-
-### Hard failures
-
-All of the hard failure modes are covered extensively in the reference on [failure modes](failure-modes.md).
-
-Because the solver, and all its possible failures, are the same for `dep init` as for `dep ensure`, there's a separate section for understanding and dealing with them: [dealing with solving failures](failure-modes.md#solving-failures). It can be trickier with `dep init`, however, as many remediations require tweaking `Gopkg.toml`.
-
-Unfortunately, `dep init` does not write out a partial `Gopkg.toml` when it fails. This is a known, critical problem, and [we have an open issue (help wanted!)](https://github.com/golang/dep/issues/909).
-
-In the meantime, if the particular errors you are encountering do entail `Gopkg.toml` tweaks, you unfortunately may have to do without the automation of `dep init`: create an empty [`Gopkg.toml`](Gopkg.toml.md), and populate it with rules by hand. Before resorting to that, make sure you've run `dep init` with various combinations of the inferencing flags (`-skip-tools` and `-gopath`) to see if they can at least give you something to start from.
-
-### Soft failures
-
-Soft failures are cases where `dep init` appears to exit cleanly, but a subsequent `go build` or `go test` fails. Dep's soft failures are usually more drastically than subtly wrong - e.g., an explosion of type errors when you try to build, because a wildly incorrect version for some dependency got selected.
-
-If you do encounter problems like this, `dep status` is your first diagnostic step; it will report what versions were selected for all your dependencies. It may be clear which dependencies are a problem simply from your building or testing error messages. If not, compare the `dep status` list against the versions recorded by your previous tool to find the differences.
-
-Once you've identified the problematic dependenc(ies), the next step is exerting appropriate controls over them via `Gopkg.toml`.
-
-For each of the following items, assume that you should run `dep ensure` after making the suggested change. If that fails, consult [dealing with solving failures]().
-
-* If the wrong `[[constraint]]` was inferred for one of your direct dependencies, change it. Then, file an issue against dep (please!) - while `dep init` may choose to omit a constraint, converting one incorrectly is considered a bug.
-* If one of your transitive dependencies is at the wrong version, define an `[[override]]` on it to force it to the version you need.
-  * If the version you need is a specific git commit, it's preferable to instead manually change the `revision` to the desired hash in `Gopkg.lock` for that project, then drop the `version` or `branch` fields (if any).
-* If one of your direct dependencies is at the wrong version and there's no `[[constraint]]` on it in `Gopkg.toml` already, then define an appropriate one.
-  * As with the transitive dependencies, if the version you need is a specific git commit, prefer doing that manually in `Gopkg.lock`.
-
-Hopefully this information is enough to get you through your project's migration to dep. If not, please feel free to file an issue, or join us in [#vendor on the Gopher's slack](https://gophers.slack.com/messages/C0M5YP9LN) for help!
diff --git a/vendor/github.com/golang/dep/docs/new-project.md b/vendor/github.com/golang/dep/docs/new-project.md
deleted file mode 100644
index e04438715af818d467ae327f1a2a4a076b2f4c93..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/new-project.md
+++ /dev/null
@@ -1,37 +0,0 @@
----
-title: Creating a New Project
----
-
-Once you have [dep installed](installation.md), we need to pick a root directory for our project. This is primarily about picking the right root import path, and corresponding directory beneath `$GOPATH/src`, at which to situate your project. There are four basic possibilities:
-
-1.  A project that is now or eventually may be shared with or imported by other projects/people. In this case, pick the import path corresponding to the VCS root of its intended network location, e.g., `$GOPATH/src/github.com/golang/dep`.
-2.  An entirely local project - one that you have no intention of pushing to a central server (like GitHub). In this case, any subdirectory beneath `$GOPATH/src` will do.
-3.  A project that needs to live within a large repository, such as a company monorepo. This may be possible, but gets more complicated. (Unfortunately, no docs on this yet - coming soon!)
-4.  Treat the entire GOPATH as a single project, where `$GOPATH/src` is the root. Dep [does not currently support this](https://github.com/golang/dep/issues/417) - it needs a non-empty import path to treat as the root of your project's import namespace.
-
-We'll assume the first case, as it's the most common. Create and move into the directory:
-
-```bash
-$ mkdir -p $GOPATH/src/github.com/me/example
-$ cd $GOPATH/src/github.com/me/example
-```
-
-Now, we'll initialize the project:
-
-```bash
-$ dep init
-$ ls
-Gopkg.toml Gopkg.lock vendor/
-```
-
-In a new project like this one, both files and the `vendor` directory will be effectively empty.
-
-This would also be a good time to set up a version control, such as [git](https://git-scm.com/). While dep in no way requires version control for your project, it can make inspecting the changes made by normal dep operations easier. Plus, it's basically best practice #1 of modern software development!
-
-At this point, our project is initialized, and we're ready to start writing code. You can open up a `.go` file in an editor and start hacking away. Or, **after creating your first `.go` file**, you can go ahead and pre-populate your `vendor` directory with some projects that you already know that you'll need:
-
-```bash
-$ dep ensure -add github.com/foo/bar github.com/baz/quux
-```
-
-Now you're ready to move on to [Daily Dep](daily-dep.md)!
diff --git a/vendor/github.com/golang/dep/docs/the-solver.md b/vendor/github.com/golang/dep/docs/the-solver.md
deleted file mode 100644
index 287e22cfae971a72b8de9e5206fa5447e1647ca6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/the-solver.md
+++ /dev/null
@@ -1,84 +0,0 @@
----
-title: The Solver
----
-
-At the heart of dep is a constraint solving engine - a [CDCL](https://en.wikipedia.org/wiki/Conflict-Driven_Clause_Learning)-style solver (albeit light on the "CL" part), tailored specifically to the domain of Go package management. It lives in the `github.com/golang/dep/gps` package, and is where the work of determining a valid, transitively complete dependency graph (aka, the contents of `Gopkg.lock`) is performed.
-
-This page will eventually detail the solver's mechanics, but in the meantime, there are [docs for an older version of the solver](https://github.com/sdboyer/gps/wiki/gps-for-Contributors) that are still accurate enough to provide a rough picture of its behavior.
-
-## Solving invariants
-
-The solver guarantees certain invariants in every complete solution it returns. Each invariant is explored in detail later, but they can be summarized as follows:
-
-* All rules specified in activated `[[constraint]]` stanzas in both the current project and dependency projects will be satisfied, unless superseded by a `[[override]]` stanza in the current project.
-* For all import paths pointing into a given project, the version of the project selected will contain "valid" Go packages in the corresponding directory.
-* If an [import comment](https://golang.org/cmd/go/#hdr-Import_path_checking) is specified by a package, any import paths addressing that package will be of the form specified in the comment.
-* For any given import path, all instances of that import path will use the exact same casing.
-
-The solver is an iterative algorithm, working its way project-by-project through possible dependency graphs. In order to select a project, it must first prove that, to the best of its current knowledge, all of the above conditions are met. When the solver cannot find a solution, failure is defined in terms of a project's version's inability to meet one of the above criteria.
-
-### `[[constraint]]` rules
-
-As described in the `Gopkg.toml` docs, each [`[[constraint]]`](Gopkg.toml.md#constraint) stanza is associated with a single project, and each stanza can contain both [a version rule](Gopkg.toml.md#version-rules) and a [source rule](Gopkg.toml.md#source). For any given project `P`, all dependers on `P` whose constraint rules are "activated" must express mutually compatible rules. That means:
-
-* For version rules, all activated constraints on `P` must [intersect](<https://en.wikipedia.org/wiki/Intersection_(set_theory)>), and and there must be at least one published version must exist in the intersecting space. Intersection varies depending on version rule type:
-  * For `revision` and `branch`, it must be a string-literal match.
-  * For `version`, if the string is not a valid semantic version, then it must be a string-literal match.
-  * For `version` that are valid semantic version ranges, intersection is standard set-theoretic intersection of the possible values in each range range. Semantic versions without ranges are treated as a single element set (e.g., `version = "=v1.0.0"`) for intersection purposes.
-* For `source` rules, all projects with a particular dependency must either express a string-equal `source` value, or have no `source` value at all. This allows one dependency to specify an alternate `source`, and other dependencies to play along if they have no opinion. (NB: this play-along behavior may be removed in a future version.)
-
-If the current project's `Gopkg.toml` has an [`[[override]]`](Gopkg.toml.md#override) on `P`, then all `[[constraint]]` declarations (including any in the current project) are ignored, obviating the possibility of conflict.
-
-#### Activated constraints
-
-Just because a `[[constraint]]` on `P` appears in `D`'s `Gopkg.toml` doesn't necessarily mean the constraint on `P` is considered active. A package in `P` must be imported by a package in `D` - and, if `D` is not the current project, then one of its packages importing `P` must also be imported.
-
-Given the following dependency graph, where `C` is the current project:
-
-```
-C -> D
-C -> P
-D/subpkg -> P
-```
-
-Even though `C` imports `D`, because `D/subpkg` is not reachable through `C`'s imports, any `[[constraint]]` declared in `D`'s `Gopkg.toml`' on `P` will not be active.
-
-The reasoning behind this behavior is explained further [in this gist](https://gist.github.com/sdboyer/b0813bf2b9dba58a335a85092085472f).
-
-### Package validity
-
-dep does only superficial validation of code in packages, but it does do some. For a package to be considered valid, three things must be true:
-
-* There must be at least one `.go` file.
-* No errors are reported from [`parser.ParseFile()`](https://golang.org/pkg/go/parser/#ParseFile) when called with [`parser.ImportsOnly|parser.ParseComments`](https://golang.org/pkg/go/parser/#Mode) on any file in the package directory.
-
-- The package must not contain any [local imports](https://golang.org/pkg/go/build/#IsLocalImport). Note: this disallows something the standard toolchain compiler does allow, which is normally means dep must support it. However, local imports are already strongly discouraged in the toolchain, and skipping them allows dep to avoid [dot-dot hell](https://9p.io/sys/doc/lexnames.html).
-
-If any of the above are untrue, the code in a package is considered malformed, and cannot be used in a solution.
-
-It is not immediately disqualifying for a project to merely contain some invalid packages; they must be imported for the invariant to be broken. So, if `P/invalid` is a subpackage with invalid code in it, then it is still acceptable if `C -> P`. However, internal imports within `P` are also considered, so this import chain:
-
-```
-C -> P
-P -> invalid
-```
-
-will result in an error, as `C` imports a package that will necessarily result in the import of an invalid package.
-
-### Import comments
-
-Go 1.4 introduced [import comments](https://golang.org/cmd/go/#hdr-Import_path_checking), which allow a package to specify the import path that must be used when addressing it. For example, `import "github.com/golang/net/dict"` would point to a valid package, but because [it uses an import comment](https://github.com/golang/net/blob/42fe2e1c20de1054d3d30f82cc9fb5b41e2e3767/dict/dict.go#L7) to enforce that it must be imported as `golang.org/x/net/dict`, dep would reject any project attempting to import it directly through its github address.
-
-Because most projects are consistent about their import comment use over time, this issue typically only occurs when adding a new dependency or attempting to revive an older project.
-
-> Note: dep does not currently enforce this rule, but [it needs to](https://github.com/golang/dep/issues/902).
-
-**Remediation:** change the code by fixing the offending import paths. If the offending import paths are not in the current project and you don't directly control the dependency, you'll have to fork and fix it yourself, then use `source` to point to your fork.
-
-### Import path casing
-
-The standard Go toolchain compiler [does not](https://github.com/golang/go/issues/4773) [allow](https://github.com/golang/go/issues/20264) import paths that vary only in case to exist in the same build. For example, either of `github.com/sirupsen/logrus` or `github.com/Sirupsen/logrus` are fine (GitHub treats usernames as case-insensitive) individually, but they cannot exist in the same project.
-
-The solver keeps track of the accepted case variant for each import path it's processed. Any subsequent projects it sees that introduces a case-only variation for a known import path will be rejected.
-
-**Remediation:** Pick a casing variation (all lowercase is usually the right answer), and enforce it universally across the depgraph. As it has to be respected in all dependencies, as well, this may necessitate pull requests and possibly forking of dependencies, if you don't control them directly.
diff --git a/vendor/github.com/golang/dep/docs/uninstalling.md b/vendor/github.com/golang/dep/docs/uninstalling.md
deleted file mode 100644
index 44be0f56d4c7af2f1de9aba4a53f1584b8df0128..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/docs/uninstalling.md
+++ /dev/null
@@ -1,35 +0,0 @@
----
-title: Uninstalling Dep
----
-
-## Uninstalling
-
-To uninstall `dep` itself, follow these instructions, depending on how you installed `dep` originally.
-
-### If you installed `dep` by executing the `install.sh` script via curl
-
-If you installed `dep` using the `install.sh` script, it is safe to simply delete the installed binary file.
-
-On Linux and MacOS, the `install.sh` script installs a pre-compiled binary to `$GOPATH/bin/dep`. It is safe to simply `rm` the installed `$GOPATH/bin/dep` file:
-
-```sh
-$ rm $GOPATH/bin/dep
-```
-
-On Windows, the `install.sh` script installs a pre-compiled binary to `$GOPATH/bin/dep.exe`. It is safe to simply delete this file to uninstall `dep`.
-
-### If you installed `dep` using Homebrew on MacOS
-
-If you installed `dep` using Homebrew on MacOS, uninstall `dep` also using Homebrew:
-
-```sh
-$ brew uninstall dep
-```
-
-### If you installed `dep` using `pacman` on Arch Linux
-
-If you installed `dep` using `pacman` on Arch Linux, uninstall `dep` like so:
-
-```sh
-$ pacman -R dep
-```
diff --git a/vendor/github.com/golang/dep/gps/_testdata/badrepo/README.md b/vendor/github.com/golang/dep/gps/_testdata/badrepo/README.md
deleted file mode 100644
index 14232159c3a1a379b141fda061e7602f8d2fe7cc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/badrepo/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-### Test Data
-
-This directory contains artifacts that represent malformed repo archives. Its purpose is to ensure `dep` can recover from such corrupted repositories in specific test scenarios.
-
-- `corrupt_dot_git_directory.tar`: is a repo with a corrupt `.git` directory. Dep can put a directory in such malformed state when a user hits `Ctrl+C` in the middle of a `dep init` process or others. `TestNewCtxRepoRecovery` uses this file to ensure recovery.
diff --git a/vendor/github.com/golang/dep/gps/_testdata/badrepo/corrupt_dot_git_directory.tar b/vendor/github.com/golang/dep/gps/_testdata/badrepo/corrupt_dot_git_directory.tar
deleted file mode 100644
index 7a847318395c721a0bee0e7f189c00792e05caef..0000000000000000000000000000000000000000
Binary files a/vendor/github.com/golang/dep/gps/_testdata/badrepo/corrupt_dot_git_directory.tar and /dev/null differ
diff --git a/vendor/github.com/golang/dep/gps/_testdata/cmd/echosleep/echosleep.go b/vendor/github.com/golang/dep/gps/_testdata/cmd/echosleep/echosleep.go
deleted file mode 100644
index 70de0e5032222696cdee34023595fc5a8bcf0a8b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/cmd/echosleep/echosleep.go
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"flag"
-	"fmt"
-	"time"
-)
-
-func main() {
-	n := flag.Int("n", 1, "number of iterations before stopping")
-	flag.Parse()
-
-	for i := 0; i < *n; i++ {
-		fmt.Println("foo")
-		time.Sleep(time.Duration(i) * 250 * time.Millisecond)
-	}
-}
diff --git a/vendor/github.com/golang/dep/gps/_testdata/cmd/stdout_stderr/stdout_stderr.go b/vendor/github.com/golang/dep/gps/_testdata/cmd/stdout_stderr/stdout_stderr.go
deleted file mode 100644
index 806d18912b47a8793ed63824001eb1dab67903de..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/cmd/stdout_stderr/stdout_stderr.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"os"
-)
-
-func main() {
-	os.Stdout.WriteString("stdout")
-	os.Stderr.WriteString("stderr")
-}
diff --git a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/alice/match/match.go b/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/alice/match/match.go
deleted file mode 100644
index ab5f875285c32186c4c990d844299c2ac886b8e5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/alice/match/match.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package match
diff --git a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/alice/mismatch/mismatch.go b/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/alice/mismatch/mismatch.go
deleted file mode 100644
index 1ace4e76833ec9e0c4eee713a76ad6256d58fcf0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/alice/mismatch/mismatch.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package mismatch
diff --git a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/alice/notInLock/notInLock.go b/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/alice/notInLock/notInLock.go
deleted file mode 100644
index 5b2914de73539575d73b1b754b2a519ad9b84dd5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/alice/notInLock/notInLock.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package notInLock
diff --git a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/bob/emptyDigest/emptyDigest.go b/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/bob/emptyDigest/emptyDigest.go
deleted file mode 100644
index 2d6067bc8eb6a2ba16c89c35e46384d39071124b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/bob/emptyDigest/emptyDigest.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package emptyDigest
diff --git a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/bob/match/match.go b/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/bob/match/match.go
deleted file mode 100644
index ab5f875285c32186c4c990d844299c2ac886b8e5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/digest/github.com/bob/match/match.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package match
diff --git a/vendor/github.com/golang/dep/gps/_testdata/digest/launchpad.net/match/match.go b/vendor/github.com/golang/dep/gps/_testdata/digest/launchpad.net/match/match.go
deleted file mode 100644
index ab5f875285c32186c4c990d844299c2ac886b8e5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/digest/launchpad.net/match/match.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package match
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/bad/bad.go b/vendor/github.com/golang/dep/gps/_testdata/src/bad/bad.go
deleted file mode 100644
index dfc89bee0863403ea5651815b696a00b972e5042..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/bad/bad.go
+++ /dev/null
@@ -1,6 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// This ill-formed Go source file is here to ensure the tool is robust
-// against bad packages in the workspace.
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/buildtag/invalid.go b/vendor/github.com/golang/dep/gps/_testdata/src/buildtag/invalid.go
deleted file mode 100644
index 20c43146f0f62139c73296922ab0066eab80f4cb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/buildtag/invalid.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Hello
-// Not a valid +build ignore
-// No Really
-
-package buildtag
-
-import (
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/canon_confl/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/canon_confl/a.go
deleted file mode 100644
index 98153451184fd032f614ad41ec6b02c772aafd70..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/canon_confl/a.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package canonical // import "vanity1"
-
-var (
-	A = "A"
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/canon_confl/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/canon_confl/b.go
deleted file mode 100644
index b8b706bbd493f975dd8e893c21e9035c37d38c6f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/canon_confl/b.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package canonical // import "vanity2"
-
-var (
-	B = "B"
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/canonical/main.go b/vendor/github.com/golang/dep/gps/_testdata/src/canonical/main.go
deleted file mode 100644
index 4fe31ce3d5620b36bc9cf8116b668e987c8c83d7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/canonical/main.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package pkg // import "canonical"
-
-var (
-	A = "A"
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/canonical/sub/sub.go b/vendor/github.com/golang/dep/gps/_testdata/src/canonical/sub/sub.go
deleted file mode 100644
index 783186dfc2b28091e696d6092fc9a80edfa4bb19..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/canonical/sub/sub.go
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package sub // import "canonical/subpackage"
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/cycle/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/cycle/a.go
deleted file mode 100644
index 443db7798518ff8f6cbb147288a7492fd9cd584b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/cycle/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package cycle
-
-import (
-	"cycle/one"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	A = gps.Solve
-	B = one.A
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/cycle/one/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/cycle/one/a.go
deleted file mode 100644
index 055d98db2d450029f3c445b404699239e5e6f319..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/cycle/one/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package one
-
-import (
-	"cycle/two"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	A = gps.Solve
-	B = two.A
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/cycle/two/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/cycle/two/a.go
deleted file mode 100644
index a44003adf531149bef0ee7aeb92041a6b52311ed..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/cycle/two/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package two
-
-import (
-	"cycle"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	A = gps.Solve
-	B = cycle.A
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/disallow/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/disallow/a.go
deleted file mode 100644
index 99dd6f3512fc7f5491b7e1397cb98809bca87380..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/disallow/a.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package disallow
-
-import (
-	"disallow/testdata"
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-	_ = testdata.H
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/disallow/testdata/another.go b/vendor/github.com/golang/dep/gps/_testdata/src/disallow/testdata/another.go
deleted file mode 100644
index f2d60b88f991740dc6de9fbdc88e2c6d7c62eae0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/disallow/testdata/another.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package testdata
-
-import "hash"
-
-var (
-	H = hash.Hash
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.go/.gitkeep b/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.go/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.go/dot.go b/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.go/dot.go
deleted file mode 100644
index bb51d69f9ad19bdf6988f01c222ae17f65b73ee2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.go/dot.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dot
-
-// nothing to see here
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.m1p/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.m1p/a.go
deleted file mode 100644
index 6a88c12022b21f47518b4bdbd8ddf7adab8e7bd6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.m1p/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	S = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.m1p/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.m1p/b.go
deleted file mode 100644
index de4eb0b563df3406c097acc6e397df696b75c4ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/.m1p/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/foo.go/.gitkeep b/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/foo.go/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/foo.go/foo.go b/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/foo.go/foo.go
deleted file mode 100644
index 1de8b0ab15b069c4fa56c6593ce31c9964ac28d9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/dotgodir/foo.go/foo.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package foo
-
-import "sort"
-
-var _ = sort.Strings
-
-// yes, this is dumb, don't use ".go" in your directory names
-// See https://github.com/golang/dep/issues/550 for more information
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/a.go
deleted file mode 100644
index fca9b43a330f03790be3a7af0e4ea23e65a7ae15..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package base
-
-import (
-	"go/parser"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = parser.ParseFile
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/namemismatch/m1p/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/namemismatch/m1p/a.go
deleted file mode 100644
index 78f859bb867cb8001f91630bd01c477ef487c419..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/namemismatch/m1p/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/namemismatch/m1p/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/namemismatch/m1p/b.go
deleted file mode 100644
index de4eb0b563df3406c097acc6e397df696b75c4ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/namemismatch/m1p/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/namemismatch/nm.go b/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/namemismatch/nm.go
deleted file mode 100644
index 6c4a42fcc3d2c8f573cd927b6e08bd7a728c5258..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/doublenest/namemismatch/nm.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package nm
-
-import (
-	"os"
-
-	"github.com/Masterminds/semver"
-)
-
-var (
-	V = os.FileInfo
-	_ = semver.Constraint
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/empty/.gitkeep b/vendor/github.com/golang/dep/gps/_testdata/src/empty/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/locals.go b/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/locals.go
deleted file mode 100644
index 38dbe7aaab36cf46c12e2783e80ccb86558408a7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/locals.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"github.com/example/varied/namemismatch"
-	"github.com/example/varied/otherpath"
-	"github.com/example/varied/simple"
-)
-
-var (
-	_ = simple.S
-	_ = nm.V
-	_ = otherpath.O
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/m1p/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/m1p/a.go
deleted file mode 100644
index 9fae843c5df2756d9a0d50567fb2ac888ffad1e7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/m1p/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	M = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/m1p/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/m1p/b.go
deleted file mode 100644
index de4eb0b563df3406c097acc6e397df696b75c4ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/m1p/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/main.go b/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/main.go
deleted file mode 100644
index 0812e3ca60d2258975796bca23cd088807689208..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"net/http"
-)
-
-var (
-	_ = http.Client
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/namemismatch/nm.go b/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/namemismatch/nm.go
deleted file mode 100644
index 6c4a42fcc3d2c8f573cd927b6e08bd7a728c5258..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/namemismatch/nm.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package nm
-
-import (
-	"os"
-
-	"github.com/Masterminds/semver"
-)
-
-var (
-	V = os.FileInfo
-	_ = semver.Constraint
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/another/another.go b/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/another/another.go
deleted file mode 100644
index c453a8ea1b845355c4bebc380b9aca8d8e30734c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/another/another.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package another
-
-import "hash"
-
-var (
-	H = hash.Hash
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/another/locals.go b/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/another/locals.go
deleted file mode 100644
index 6995b92543d567ce9ef895991680dee644a7218b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/another/locals.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package another
-
-import "github.com/example/varied/m1p"
-
-var _ = m1p.M
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/locals.go b/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/locals.go
deleted file mode 100644
index c5a0ae3a6c11122a58dbd96438e1a40077c47f6e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/locals.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import "github.com/example/varied/simple/another"
-
-var (
-	_ = another.H
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/simple.go b/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/simple.go
deleted file mode 100644
index 6dfd049488e5ee3e91075c8cc87ca29326a01b8b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/github.com/example/varied/simple/simple.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"go/parser"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = parser.ParseFile
-	S = gps.Prepare
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/igmain/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/igmain/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/igmain/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/igmain/igmain.go b/vendor/github.com/golang/dep/gps/_testdata/src/igmain/igmain.go
deleted file mode 100644
index eaab15bd2297c1259b97dde550f5dd69d4f814a8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/igmain/igmain.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build ignore
-
-package main
-
-import "unicode"
-
-var _ = unicode.In
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/igmainfirst/igmain.go b/vendor/github.com/golang/dep/gps/_testdata/src/igmainfirst/igmain.go
deleted file mode 100644
index eaab15bd2297c1259b97dde550f5dd69d4f814a8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/igmainfirst/igmain.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build ignore
-
-package main
-
-import "unicode"
-
-var _ = unicode.In
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/igmainfirst/z.go b/vendor/github.com/golang/dep/gps/_testdata/src/igmainfirst/z.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/igmainfirst/z.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/igmainlong/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/igmainlong/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/igmainlong/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/igmainlong/igmain.go b/vendor/github.com/golang/dep/gps/_testdata/src/igmainlong/igmain.go
deleted file mode 100644
index 849ceab43d670d76825845ccd73364a2f6160d4b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/igmainlong/igmain.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Another comment, which the parser should ignore and still see builds tags
-
-// +build ignore
-
-package main
-
-import "unicode"
-
-var _ = unicode.In
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/igmaint/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/igmaint/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/igmaint/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/igmaint/igmain.go b/vendor/github.com/golang/dep/gps/_testdata/src/igmaint/igmain.go
deleted file mode 100644
index eaab15bd2297c1259b97dde550f5dd69d4f814a8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/igmaint/igmain.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build ignore
-
-package main
-
-import "unicode"
-
-var _ = unicode.In
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/m1p/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/m1p/a.go
deleted file mode 100644
index 78f859bb867cb8001f91630bd01c477ef487c419..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/m1p/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/m1p/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/m1p/b.go
deleted file mode 100644
index de4eb0b563df3406c097acc6e397df696b75c4ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/m1p/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/missing/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/missing/a.go
deleted file mode 100644
index 619b1bc5ca692330a80da01ba4390d193532fbeb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/missing/a.go
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"missing/missing"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-	_ = missing.Foo
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/missing/m1p/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/missing/m1p/a.go
deleted file mode 100644
index 78f859bb867cb8001f91630bd01c477ef487c419..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/missing/m1p/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/missing/m1p/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/missing/m1p/b.go
deleted file mode 100644
index de4eb0b563df3406c097acc6e397df696b75c4ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/missing/m1p/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/nest/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/nest/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/nest/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/nest/m1p/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/nest/m1p/a.go
deleted file mode 100644
index 78f859bb867cb8001f91630bd01c477ef487c419..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/nest/m1p/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/nest/m1p/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/nest/m1p/b.go
deleted file mode 100644
index de4eb0b563df3406c097acc6e397df696b75c4ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/nest/m1p/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/relimport/a.go
deleted file mode 100644
index ccfa73a945de67169d85332af405501f735b82a7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/a.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package relimport
-
-import (
-	"sort"
-)
-
-var (
-	A = sort.Strings
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dot/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dot/a.go
deleted file mode 100644
index a1dd285380d0cbbe32b331dfea2354b2fe340b84..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dot/a.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dot
-
-import (
-	"."
-	"sort"
-)
-
-var (
-	A = sort.Strings
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dotdot/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dotdot/a.go
deleted file mode 100644
index 6cfc99f288e5483eef629381107ffae8a00e3044..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dotdot/a.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dotdot
-
-import (
-	relimport ".."
-)
-
-var (
-	A = relimport.A
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dotdotslash/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dotdotslash/a.go
deleted file mode 100644
index b4caf2fab2a66431683e70096701965f3216d8d7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dotdotslash/a.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dotslash
-
-import (
-	"../github.com/golang/dep/gps"
-)
-
-var (
-	A = gps.Solver
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dotslash/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dotslash/a.go
deleted file mode 100644
index b904565dd76be6d5078f75160ba53635c458f76e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/relimport/dotslash/a.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dotslash
-
-import (
-	"./simple"
-)
-
-var (
-	A = simple.A
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/ren/m1p/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/ren/m1p/a.go
deleted file mode 100644
index 78f859bb867cb8001f91630bd01c477ef487c419..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/ren/m1p/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/ren/m1p/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/ren/m1p/b.go
deleted file mode 100644
index de4eb0b563df3406c097acc6e397df696b75c4ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/ren/m1p/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/ren/simple/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/ren/simple/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/ren/simple/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/simple/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/simple/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/simple/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/simpleallt/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/simpleallt/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/simpleallt/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/simplet/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/simplet/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/simplet/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/simplext/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/simplext/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/simplext/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/skip_/_a.go b/vendor/github.com/golang/dep/gps/_testdata/src/skip_/_a.go
deleted file mode 100644
index b53a03b55ab1ca5399b972f29d54586a3686d16c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/skip_/_a.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package skip
-
-import (
-	"bytes"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = bytes.Buffer
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/skip_/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/skip_/a.go
deleted file mode 100644
index fc99a11da5b4dc4765c8e355ae5a9a36db8eaceb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/skip_/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package skip
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/twopkgs/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/twopkgs/a.go
deleted file mode 100644
index f772b57e72e02332d590f7c6e16869029ac0697e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/twopkgs/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/twopkgs/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/twopkgs/b.go
deleted file mode 100644
index de4eb0b563df3406c097acc6e397df696b75c4ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/twopkgs/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied/locals.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied/locals.go
deleted file mode 100644
index d9dcdec11a86f67b4316d35a53da897271d327d4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied/locals.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"varied/namemismatch"
-	"varied/otherpath"
-	"varied/simple"
-)
-
-var (
-	_ = simple.S
-	_ = nm.V
-	_ = otherpath.O
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied/m1p/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied/m1p/a.go
deleted file mode 100644
index 9fae843c5df2756d9a0d50567fb2ac888ffad1e7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied/m1p/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	M = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied/m1p/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied/m1p/b.go
deleted file mode 100644
index de4eb0b563df3406c097acc6e397df696b75c4ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied/m1p/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package m1p
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied/main.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied/main.go
deleted file mode 100644
index 0812e3ca60d2258975796bca23cd088807689208..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"net/http"
-)
-
-var (
-	_ = http.Client
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied/namemismatch/nm.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied/namemismatch/nm.go
deleted file mode 100644
index 6c4a42fcc3d2c8f573cd927b6e08bd7a728c5258..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied/namemismatch/nm.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package nm
-
-import (
-	"os"
-
-	"github.com/Masterminds/semver"
-)
-
-var (
-	V = os.FileInfo
-	_ = semver.Constraint
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/another/another.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/another/another.go
deleted file mode 100644
index c453a8ea1b845355c4bebc380b9aca8d8e30734c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/another/another.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package another
-
-import "hash"
-
-var (
-	H = hash.Hash
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/another/locals.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/another/locals.go
deleted file mode 100644
index befa5c683af64fa0307f7e8f6ab51c93f094e39b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/another/locals.go
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package another
-
-import "varied/m1p"
-
-var _ = m1p.M
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/locals.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/locals.go
deleted file mode 100644
index 3f592af781c4e302a2251c880ca570cd881487fe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/locals.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import "varied/simple/another"
-
-var (
-	_ = another.H
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/simple.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/simple.go
deleted file mode 100644
index 6dfd049488e5ee3e91075c8cc87ca29326a01b8b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied/simple/simple.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"go/parser"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = parser.ParseFile
-	S = gps.Prepare
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/.onlyfromtests/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/.onlyfromtests/a.go
deleted file mode 100644
index 676dbae1ad9aab0a1908f8503b4130e821aaecea..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/.onlyfromtests/a.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package onlyfromtests
-
-import (
-	"sort"
-
-	_ "varied/_secondorder"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	M = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/.onlyfromtests/b.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/.onlyfromtests/b.go
deleted file mode 100644
index fa353864bf572d26af3db2e6e05926483919ae14..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/.onlyfromtests/b.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package onlyfromtests
-
-import (
-	"os"
-	"sort"
-)
-
-var (
-	_ = sort.Strings
-	_ = os.PathSeparator
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/_frommain/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/_frommain/a.go
deleted file mode 100644
index 67634a859845fd2a943d9e0b999c97e6125755c4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/_frommain/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package frommain
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	M = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/_never/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/_never/a.go
deleted file mode 100644
index f2bdd5b007000542738ca3eff322b63b1a0457a8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/_never/a.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package never
-
-import (
-	"sort"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	M = sort.Strings
-	_ = gps.Solve
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/_secondorder/secondorder.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/_secondorder/secondorder.go
deleted file mode 100644
index 4224b81e1e67ec3b4b286f8194201c3ddccaa861..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/_secondorder/secondorder.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package secondorder
-
-import "hash"
-
-var (
-	H = hash.Hash
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/dotdotslash/a.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/dotdotslash/a.go
deleted file mode 100644
index b4caf2fab2a66431683e70096701965f3216d8d7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/dotdotslash/a.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dotslash
-
-import (
-	"../github.com/golang/dep/gps"
-)
-
-var (
-	A = gps.Solver
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/locals.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/locals.go
deleted file mode 100644
index 4afaa8bfd3963675b21aab93c64f2310db19bfec..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/locals.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	_ "varied/_frommain"
-	"varied/simple"
-)
-
-var (
-	_ = simple.S
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/main.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/main.go
deleted file mode 100644
index 0812e3ca60d2258975796bca23cd088807689208..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/main.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
-	"net/http"
-)
-
-var (
-	_ = http.Client
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/simple/locals.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/simple/locals.go
deleted file mode 100644
index 7d682c4e753582cf59dd97ac57a12e9a7a945f8b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/simple/locals.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import "varied/simple/testdata"
-
-var (
-	_ = testdata.H
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/simple/simple.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/simple/simple.go
deleted file mode 100644
index 6dfd049488e5ee3e91075c8cc87ca29326a01b8b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/simple/simple.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package simple
-
-import (
-	"go/parser"
-
-	"github.com/golang/dep/gps"
-)
-
-var (
-	_ = parser.ParseFile
-	S = gps.Prepare
-)
diff --git a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/simple/testdata/another.go b/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/simple/testdata/another.go
deleted file mode 100644
index 02eab2a200c9e2d2bcbcaea07e951d40f502bbf5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/_testdata/src/varied_hidden/simple/testdata/another.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package testdata
-
-import _ "varied/dotdotslash"
diff --git a/vendor/github.com/golang/dep/gps/bridge.go b/vendor/github.com/golang/dep/gps/bridge.go
deleted file mode 100644
index 6f5c38a5408ec816b34b9579cbdf98fd3063d7ac..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/bridge.go
+++ /dev/null
@@ -1,215 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"fmt"
-	"os"
-	"path/filepath"
-	"sync/atomic"
-
-	"github.com/golang/dep/gps/pkgtree"
-)
-
-// sourceBridge is an adapter to SourceManagers that tailor operations for a
-// single solve run.
-type sourceBridge interface {
-	// sourceBridge includes many methods from the SourceManager interface.
-	SourceExists(ProjectIdentifier) (bool, error)
-	SyncSourceFor(ProjectIdentifier) error
-	RevisionPresentIn(ProjectIdentifier, Revision) (bool, error)
-	ListPackages(ProjectIdentifier, Version) (pkgtree.PackageTree, error)
-	GetManifestAndLock(ProjectIdentifier, Version, ProjectAnalyzer) (Manifest, Lock, error)
-	ExportProject(ProjectIdentifier, Version, string) error
-	DeduceProjectRoot(ip string) (ProjectRoot, error)
-
-	listVersions(ProjectIdentifier) ([]Version, error)
-	verifyRootDir(path string) error
-	vendorCodeExists(ProjectIdentifier) (bool, error)
-	breakLock()
-}
-
-// bridge is an adapter around a proper SourceManager. It provides localized
-// caching that's tailored to the requirements of a particular solve run.
-//
-// Finally, it provides authoritative version/constraint operations, ensuring
-// that any possible approach to a match - even those not literally encoded in
-// the inputs - is achieved.
-type bridge struct {
-	// The underlying, adapted-to SourceManager
-	sm SourceManager
-
-	// The solver which we're assisting.
-	//
-	// The link between solver and bridge is circular, which is typically a bit
-	// awkward, but the bridge needs access to so many of the input arguments
-	// held by the solver that it ends up being easier and saner to do this.
-	s *solver
-
-	// Map of project root name to their available version list. This cache is
-	// layered on top of the proper SourceManager's cache; the only difference
-	// is that this keeps the versions sorted in the direction required by the
-	// current solve run.
-	vlists map[ProjectIdentifier][]Version
-
-	// Indicates whether lock breaking has already been run
-	lockbroken int32
-
-	// Whether to sort version lists for downgrade.
-	down bool
-
-	// The cancellation context provided to the solver. Threading it through the
-	// various solver methods is needlessly verbose so long as we maintain the
-	// lifetime guarantees that a solver can only be run once.
-	// TODO(sdboyer) uncomment this and thread it through SourceManager methods
-	//ctx context.Context
-}
-
-// mkBridge creates a bridge
-func mkBridge(s *solver, sm SourceManager, down bool) *bridge {
-	return &bridge{
-		sm:     sm,
-		s:      s,
-		down:   down,
-		vlists: make(map[ProjectIdentifier][]Version),
-	}
-}
-
-func (b *bridge) GetManifestAndLock(id ProjectIdentifier, v Version, an ProjectAnalyzer) (Manifest, Lock, error) {
-	if b.s.rd.isRoot(id.ProjectRoot) {
-		return b.s.rd.rm, b.s.rd.rl, nil
-	}
-
-	b.s.mtr.push("b-gmal")
-	m, l, e := b.sm.GetManifestAndLock(id, v, an)
-	b.s.mtr.pop()
-	return m, l, e
-}
-
-func (b *bridge) listVersions(id ProjectIdentifier) ([]Version, error) {
-	if vl, exists := b.vlists[id]; exists {
-		return vl, nil
-	}
-
-	b.s.mtr.push("b-list-versions")
-	pvl, err := b.sm.ListVersions(id)
-	if err != nil {
-		b.s.mtr.pop()
-		return nil, err
-	}
-
-	vl := hidePair(pvl)
-	if b.down {
-		SortForDowngrade(vl)
-	} else {
-		SortForUpgrade(vl)
-	}
-
-	b.vlists[id] = vl
-	b.s.mtr.pop()
-	return vl, nil
-}
-
-func (b *bridge) RevisionPresentIn(id ProjectIdentifier, r Revision) (bool, error) {
-	b.s.mtr.push("b-rev-present-in")
-	i, e := b.sm.RevisionPresentIn(id, r)
-	b.s.mtr.pop()
-	return i, e
-}
-
-func (b *bridge) SourceExists(id ProjectIdentifier) (bool, error) {
-	b.s.mtr.push("b-source-exists")
-	i, e := b.sm.SourceExists(id)
-	b.s.mtr.pop()
-	return i, e
-}
-
-func (b *bridge) vendorCodeExists(id ProjectIdentifier) (bool, error) {
-	fi, err := os.Stat(filepath.Join(b.s.rd.dir, "vendor", string(id.ProjectRoot)))
-	if err != nil {
-		return false, err
-	} else if fi.IsDir() {
-		return true, nil
-	}
-
-	return false, nil
-}
-
-// listPackages lists all the packages contained within the given project at a
-// particular version.
-//
-// The root project is handled separately, as the source manager isn't
-// responsible for that code.
-func (b *bridge) ListPackages(id ProjectIdentifier, v Version) (pkgtree.PackageTree, error) {
-	if b.s.rd.isRoot(id.ProjectRoot) {
-		return b.s.rd.rpt, nil
-	}
-
-	b.s.mtr.push("b-list-pkgs")
-	pt, err := b.sm.ListPackages(id, v)
-	b.s.mtr.pop()
-	return pt, err
-}
-
-func (b *bridge) ExportProject(id ProjectIdentifier, v Version, path string) error {
-	panic("bridge should never be used to ExportProject")
-}
-
-// verifyRoot ensures that the provided path to the project root is in good
-// working condition. This check is made only once, at the beginning of a solve
-// run.
-func (b *bridge) verifyRootDir(path string) error {
-	if fi, err := os.Stat(path); err != nil {
-		return badOptsFailure(fmt.Sprintf("could not read project root (%s): %s", path, err))
-	} else if !fi.IsDir() {
-		return badOptsFailure(fmt.Sprintf("project root (%s) is a file, not a directory", path))
-	}
-
-	return nil
-}
-
-func (b *bridge) DeduceProjectRoot(ip string) (ProjectRoot, error) {
-	b.s.mtr.push("b-deduce-proj-root")
-	pr, e := b.sm.DeduceProjectRoot(ip)
-	b.s.mtr.pop()
-	return pr, e
-}
-
-// breakLock is called when the solver has to break a version recorded in the
-// lock file. It prefetches all the projects in the solver's lock, so that the
-// information is already on hand if/when the solver needs it.
-//
-// Projects that have already been selected are skipped, as it's generally unlikely that the
-// solver will have to backtrack through and fully populate their version queues.
-func (b *bridge) breakLock() {
-	// No real conceivable circumstance in which multiple calls are made to
-	// this, but being that this is the entrance point to a bunch of async work,
-	// protect it with an atomic CAS in case things change in the future.
-	//
-	// We avoid using a sync.Once here, as there's no reason for other callers
-	// to block until completion.
-	if !atomic.CompareAndSwapInt32(&b.lockbroken, 0, 1) {
-		return
-	}
-
-	for _, lp := range b.s.rd.rl.Projects() {
-		if _, is := b.s.sel.selected(lp.Ident()); !is {
-			pi, v := lp.Ident(), lp.Version()
-			go func() {
-				// Sync first
-				b.sm.SyncSourceFor(pi)
-				// Preload the package info for the locked version, too, as
-				// we're more likely to need that
-				b.sm.ListPackages(pi, v)
-			}()
-		}
-	}
-}
-
-func (b *bridge) SyncSourceFor(id ProjectIdentifier) error {
-	// we don't track metrics here b/c this is often called in its own goroutine
-	// by the solver, and the metrics design is for wall time on a single thread
-	return b.sm.SyncSourceFor(id)
-}
diff --git a/vendor/github.com/golang/dep/gps/cmd.go b/vendor/github.com/golang/dep/gps/cmd.go
deleted file mode 100644
index f7bfb810eb30a53cca9350e6e7d1f83720f3b12b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/cmd.go
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"os"
-)
-
-func (c cmd) Args() []string {
-	return c.Cmd.Args
-}
-
-func (c cmd) SetDir(dir string) {
-	c.Cmd.Dir = dir
-}
-
-func (c cmd) SetEnv(env []string) {
-	c.Cmd.Env = env
-}
-
-func init() {
-	// For our git repositories, we very much assume a "regular" topology.
-	// Therefore, no value for the following variables can be relevant to
-	// us. Unsetting globally properly propagates to libraries like
-	// github.com/Masterminds/vcs, which cannot make the same assumption in
-	// general.
-	parasiteGitVars := []string{"GIT_DIR", "GIT_INDEX_FILE", "GIT_OBJECT_DIRECTORY", "GIT_WORK_TREE"}
-	for _, e := range parasiteGitVars {
-		os.Unsetenv(e)
-	}
-}
diff --git a/vendor/github.com/golang/dep/gps/cmd_unix.go b/vendor/github.com/golang/dep/gps/cmd_unix.go
deleted file mode 100644
index 413f6b3980db9b5a0ab2627ddd71e13a7649ae67..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/cmd_unix.go
+++ /dev/null
@@ -1,82 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build !windows
-
-package gps
-
-import (
-	"bytes"
-	"context"
-	"os"
-	"os/exec"
-	"syscall"
-	"time"
-
-	"github.com/pkg/errors"
-)
-
-type cmd struct {
-	// ctx is provided by the caller; SIGINT is sent when it is cancelled.
-	ctx context.Context
-	Cmd *exec.Cmd
-}
-
-func commandContext(ctx context.Context, name string, arg ...string) cmd {
-	c := exec.Command(name, arg...)
-
-	// Force subprocesses into their own process group, rather than being in the
-	// same process group as the dep process. Because Ctrl-C sent from a
-	// terminal will send the signal to the entire currently running process
-	// group, this allows us to directly manage the issuance of signals to
-	// subprocesses.
-	c.SysProcAttr = &syscall.SysProcAttr{
-		Setpgid: true,
-		Pgid:    0,
-	}
-
-	return cmd{ctx: ctx, Cmd: c}
-}
-
-// CombinedOutput is like (*os/exec.Cmd).CombinedOutput except that it
-// terminates subprocesses gently (via os.Interrupt), but resorts to Kill if
-// the subprocess fails to exit after 1 minute.
-func (c cmd) CombinedOutput() ([]byte, error) {
-	// Adapted from (*os/exec.Cmd).CombinedOutput
-	if c.Cmd.Stdout != nil {
-		return nil, errors.New("exec: Stdout already set")
-	}
-	if c.Cmd.Stderr != nil {
-		return nil, errors.New("exec: Stderr already set")
-	}
-	var b bytes.Buffer
-	c.Cmd.Stdout = &b
-	c.Cmd.Stderr = &b
-	if err := c.Cmd.Start(); err != nil {
-		return nil, err
-	}
-
-	// Adapted from (*os/exec.Cmd).Start
-	waitDone := make(chan struct{})
-	defer close(waitDone)
-	go func() {
-		select {
-		case <-c.ctx.Done():
-			if err := c.Cmd.Process.Signal(os.Interrupt); err != nil {
-				// If an error comes back from attempting to signal, proceed
-				// immediately to hard kill.
-				_ = c.Cmd.Process.Kill()
-			} else {
-				defer time.AfterFunc(time.Minute, func() {
-					_ = c.Cmd.Process.Kill()
-				}).Stop()
-				<-waitDone
-			}
-		case <-waitDone:
-		}
-	}()
-
-	err := c.Cmd.Wait()
-	return b.Bytes(), err
-}
diff --git a/vendor/github.com/golang/dep/gps/cmd_windows.go b/vendor/github.com/golang/dep/gps/cmd_windows.go
deleted file mode 100644
index ce1a0347ddf7f73519c11d84f29ae4003b316e3f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/cmd_windows.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"context"
-	"os/exec"
-)
-
-type cmd struct {
-	*exec.Cmd
-}
-
-func commandContext(ctx context.Context, name string, arg ...string) cmd {
-	return cmd{Cmd: exec.CommandContext(ctx, name, arg...)}
-}
diff --git a/vendor/github.com/golang/dep/gps/constraint.go b/vendor/github.com/golang/dep/gps/constraint.go
deleted file mode 100644
index f7c600316ef85ffccf0819059af77ec288f3e3e2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/constraint.go
+++ /dev/null
@@ -1,420 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"fmt"
-	"sort"
-
-	"github.com/Masterminds/semver"
-	"github.com/golang/dep/gps/internal/pb"
-)
-
-var (
-	none = noneConstraint{}
-	any  = anyConstraint{}
-)
-
-// A Constraint provides structured limitations on the versions that are
-// admissible for a given project.
-//
-// As with Version, it has a private method because the gps's internal
-// implementation of the problem is complete, and the system relies on type
-// magic to operate.
-type Constraint interface {
-	fmt.Stringer
-
-	// ImpliedCaretString converts the Constraint to a string in the same manner
-	// as String(), but treats the empty operator as equivalent to ^, rather
-	// than =.
-	//
-	// In the same way that String() is the inverse of NewConstraint(), this
-	// method is the inverse of NewSemverConstraintIC().
-	ImpliedCaretString() string
-
-	// Matches indicates if the provided Version is allowed by the Constraint.
-	Matches(Version) bool
-
-	// MatchesAny indicates if the intersection of the Constraint with the
-	// provided Constraint would yield a Constraint that could allow *any*
-	// Version.
-	MatchesAny(Constraint) bool
-
-	// Intersect computes the intersection of the Constraint with the provided
-	// Constraint.
-	Intersect(Constraint) Constraint
-
-	// typedString emits the normal stringified representation of the provided
-	// constraint, prefixed with a string that uniquely identifies the type of
-	// the constraint.
-	//
-	// It also forces Constraint to be a private/sealed interface, which is a
-	// design goal of the system.
-	typedString() string
-
-	// copyTo copies fields into a serializable representation which can be
-	// converted back into an identical Constraint with constraintFromCache.
-	copyTo(*pb.Constraint)
-
-	// identical returns true if the constraints are identical.
-	//
-	// Identical Constraints behave identically for all methods defined by the
-	// interface. A Constraint is always identical to itself.
-	//
-	// Constraints serialized for caching are de-serialized into identical instances.
-	identical(Constraint) bool
-}
-
-// constraintFromCache returns a Constraint identical to the one which produced m.
-func constraintFromCache(m *pb.Constraint) (Constraint, error) {
-	switch m.Type {
-	case pb.Constraint_Revision:
-		return Revision(m.Value), nil
-	case pb.Constraint_Branch:
-		return NewBranch(m.Value), nil
-	case pb.Constraint_DefaultBranch:
-		return newDefaultBranch(m.Value), nil
-	case pb.Constraint_Version:
-		return plainVersion(m.Value), nil
-	case pb.Constraint_Semver:
-		return NewSemverConstraint(m.Value)
-
-	default:
-		return nil, fmt.Errorf("unrecognized Constraint type: %#v", m)
-	}
-}
-
-// unpairedVersionFromCache returns an UnpairedVersion identical to the one which produced m.
-func unpairedVersionFromCache(m *pb.Constraint) (UnpairedVersion, error) {
-	switch m.Type {
-	case pb.Constraint_Branch:
-		return NewBranch(m.Value), nil
-	case pb.Constraint_DefaultBranch:
-		return newDefaultBranch(m.Value), nil
-	case pb.Constraint_Version:
-		return plainVersion(m.Value), nil
-	case pb.Constraint_Semver:
-		sv, err := semver.NewVersion(m.Value)
-		if err != nil {
-			return nil, err
-		}
-		return semVersion{sv: sv}, nil
-
-	default:
-		return nil, fmt.Errorf("unrecognized UnpairedVersion type: %#v", m)
-	}
-}
-
-// NewSemverConstraint attempts to construct a semver Constraint object from the
-// input string.
-//
-// If the input string cannot be made into a valid semver Constraint, an error
-// is returned.
-func NewSemverConstraint(body string) (Constraint, error) {
-	c, err := semver.NewConstraint(body)
-	if err != nil {
-		return nil, err
-	}
-	// If we got a simple semver.Version, simplify by returning our
-	// corresponding type
-	if sv, ok := c.(semver.Version); ok {
-		return semVersion{sv: sv}, nil
-	}
-	return semverConstraint{c: c}, nil
-}
-
-// NewSemverConstraintIC attempts to construct a semver Constraint object from the
-// input string, defaulting to a caret, ^, when no operator is specified. Put
-// differently, ^ is the default operator for NewSemverConstraintIC, while =
-// is the default operator for NewSemverConstraint.
-//
-// If the input string cannot be made into a valid semver Constraint, an error
-// is returned.
-func NewSemverConstraintIC(body string) (Constraint, error) {
-	c, err := semver.NewConstraintIC(body)
-	if err != nil {
-		return nil, err
-	}
-	// If we got a simple semver.Version, simplify by returning our
-	// corresponding type
-	if sv, ok := c.(semver.Version); ok {
-		return semVersion{sv: sv}, nil
-	}
-	return semverConstraint{c: c}, nil
-}
-
-type semverConstraint struct {
-	c semver.Constraint
-}
-
-func (c semverConstraint) String() string {
-	return c.c.String()
-}
-
-// ImpliedCaretString converts the Constraint to a string in the same manner
-// as String(), but treats the empty operator as equivalent to ^, rather
-// than =.
-//
-// In the same way that String() is the inverse of NewConstraint(), this
-// method is the inverse of NewSemverConstraintIC().
-func (c semverConstraint) ImpliedCaretString() string {
-	return c.c.ImpliedCaretString()
-}
-
-func (c semverConstraint) typedString() string {
-	return fmt.Sprintf("svc-%s", c.c.String())
-}
-
-func (c semverConstraint) Matches(v Version) bool {
-	switch tv := v.(type) {
-	case semVersion:
-		return c.c.Matches(tv.sv) == nil
-	case versionPair:
-		if tv2, ok := tv.v.(semVersion); ok {
-			return c.c.Matches(tv2.sv) == nil
-		}
-	}
-
-	return false
-}
-
-func (c semverConstraint) MatchesAny(c2 Constraint) bool {
-	return c.Intersect(c2) != none
-}
-
-func (c semverConstraint) Intersect(c2 Constraint) Constraint {
-	switch tc := c2.(type) {
-	case anyConstraint:
-		return c
-	case semverConstraint:
-		rc := c.c.Intersect(tc.c)
-		if !semver.IsNone(rc) {
-			return semverConstraint{c: rc}
-		}
-	case semVersion:
-		rc := c.c.Intersect(tc.sv)
-		if !semver.IsNone(rc) {
-			// If single version intersected with constraint, we know the result
-			// must be the single version, so just return it back out
-			return c2
-		}
-	case versionPair:
-		if tc2, ok := tc.v.(semVersion); ok {
-			rc := c.c.Intersect(tc2.sv)
-			if !semver.IsNone(rc) {
-				// same reasoning as previous case
-				return c2
-			}
-		}
-	}
-
-	return none
-}
-
-func (c semverConstraint) identical(c2 Constraint) bool {
-	sc2, ok := c2.(semverConstraint)
-	if !ok {
-		return false
-	}
-	return c.c.String() == sc2.c.String()
-}
-
-func (c semverConstraint) copyTo(msg *pb.Constraint) {
-	msg.Type = pb.Constraint_Semver
-	msg.Value = c.String()
-}
-
-// IsAny indicates if the provided constraint is the wildcard "Any" constraint.
-func IsAny(c Constraint) bool {
-	_, ok := c.(anyConstraint)
-	return ok
-}
-
-// Any returns a constraint that will match anything.
-func Any() Constraint {
-	return anyConstraint{}
-}
-
-// anyConstraint is an unbounded constraint - it matches all other types of
-// constraints. It mirrors the behavior of the semver package's any type.
-type anyConstraint struct{}
-
-func (anyConstraint) String() string {
-	return "*"
-}
-
-func (anyConstraint) ImpliedCaretString() string {
-	return "*"
-}
-
-func (anyConstraint) typedString() string {
-	return "any-*"
-}
-
-func (anyConstraint) Matches(Version) bool {
-	return true
-}
-
-func (anyConstraint) MatchesAny(Constraint) bool {
-	return true
-}
-
-func (anyConstraint) Intersect(c Constraint) Constraint {
-	return c
-}
-
-func (anyConstraint) identical(c Constraint) bool {
-	return IsAny(c)
-}
-
-func (anyConstraint) copyTo(*pb.Constraint) {
-	panic("anyConstraint should never be serialized; it is solver internal-only")
-}
-
-// noneConstraint is the empty set - it matches no versions. It mirrors the
-// behavior of the semver package's none type.
-type noneConstraint struct{}
-
-func (noneConstraint) String() string {
-	return ""
-}
-
-func (noneConstraint) ImpliedCaretString() string {
-	return ""
-}
-
-func (noneConstraint) typedString() string {
-	return "none-"
-}
-
-func (noneConstraint) Matches(Version) bool {
-	return false
-}
-
-func (noneConstraint) MatchesAny(Constraint) bool {
-	return false
-}
-
-func (noneConstraint) Intersect(Constraint) Constraint {
-	return none
-}
-
-func (noneConstraint) identical(c Constraint) bool {
-	_, ok := c.(noneConstraint)
-	return ok
-}
-
-func (noneConstraint) copyTo(*pb.Constraint) {
-	panic("noneConstraint should never be serialized; it is solver internal-only")
-}
-
-// A ProjectConstraint combines a ProjectIdentifier with a Constraint. It
-// indicates that, if packages contained in the ProjectIdentifier enter the
-// depgraph, they must do so at a version that is allowed by the Constraint.
-type ProjectConstraint struct {
-	Ident      ProjectIdentifier
-	Constraint Constraint
-}
-
-// ProjectConstraints is a map of projects, as identified by their import path
-// roots (ProjectRoots) to the corresponding ProjectProperties.
-//
-// They are the standard form in which Manifests declare their required
-// dependency properties - constraints and network locations - as well as the
-// form in which RootManifests declare their overrides.
-type ProjectConstraints map[ProjectRoot]ProjectProperties
-
-type workingConstraint struct {
-	Ident                     ProjectIdentifier
-	Constraint                Constraint
-	overrNet, overrConstraint bool
-}
-
-func pcSliceToMap(l []ProjectConstraint, r ...[]ProjectConstraint) ProjectConstraints {
-	final := make(ProjectConstraints)
-
-	for _, pc := range l {
-		final[pc.Ident.ProjectRoot] = ProjectProperties{
-			Source:     pc.Ident.Source,
-			Constraint: pc.Constraint,
-		}
-	}
-
-	for _, pcs := range r {
-		for _, pc := range pcs {
-			if pp, exists := final[pc.Ident.ProjectRoot]; exists {
-				// Technically this should be done through a bridge for
-				// cross-version-type matching...but this is a one off for root and
-				// that's just ridiculous for this.
-				pp.Constraint = pp.Constraint.Intersect(pc.Constraint)
-				final[pc.Ident.ProjectRoot] = pp
-			} else {
-				final[pc.Ident.ProjectRoot] = ProjectProperties{
-					Source:     pc.Ident.Source,
-					Constraint: pc.Constraint,
-				}
-			}
-		}
-	}
-
-	return final
-}
-
-// overrideAll treats the receiver ProjectConstraints map as a set of override
-// instructions, and applies overridden values to the ProjectConstraints.
-//
-// A slice of workingConstraint is returned, allowing differentiation between
-// values that were or were not overridden.
-func (m ProjectConstraints) overrideAll(pcm ProjectConstraints) (out []workingConstraint) {
-	out = make([]workingConstraint, len(pcm))
-	k := 0
-	for pr, pp := range pcm {
-		out[k] = m.override(pr, pp)
-		k++
-	}
-
-	sort.SliceStable(out, func(i, j int) bool {
-		return out[i].Ident.Less(out[j].Ident)
-	})
-	return
-}
-
-// override replaces a single ProjectConstraint with a workingConstraint,
-// overriding its values if a corresponding entry exists in the
-// ProjectConstraints map.
-func (m ProjectConstraints) override(pr ProjectRoot, pp ProjectProperties) workingConstraint {
-	wc := workingConstraint{
-		Ident: ProjectIdentifier{
-			ProjectRoot: pr,
-			Source:      pp.Source,
-		},
-		Constraint: pp.Constraint,
-	}
-
-	if opp, has := m[pr]; has {
-		// The rule for overrides is that *any* non-zero value for the prop
-		// should be considered an override, even if it's equal to what's
-		// already there.
-		if opp.Constraint != nil {
-			wc.Constraint = opp.Constraint
-			wc.overrConstraint = true
-		}
-
-		// This may appear incorrect, because the solver encodes meaning into
-		// the empty string for NetworkName (it means that it would use the
-		// import path by default, but could be coerced into using an alternate
-		// URL). However, that 'coercion' can only happen if there's a
-		// disagreement between projects on where a dependency should be sourced
-		// from. Such disagreement is exactly what overrides preclude, so
-		// there's no need to preserve the meaning of "" here - thus, we can
-		// treat it as a zero value and ignore it, rather than applying it.
-		if opp.Source != "" {
-			wc.Ident.Source = opp.Source
-			wc.overrNet = true
-		}
-	}
-
-	return wc
-}
diff --git a/vendor/github.com/golang/dep/gps/deduce.go b/vendor/github.com/golang/dep/gps/deduce.go
deleted file mode 100644
index 796681738fd6e4e5a8767cb3a3f67fe30ce804c3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/deduce.go
+++ /dev/null
@@ -1,892 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"context"
-	"fmt"
-	"io"
-	"net/http"
-	"net/url"
-	"path"
-	"regexp"
-	"strconv"
-	"strings"
-	"sync"
-
-	"github.com/armon/go-radix"
-	"github.com/pkg/errors"
-)
-
-var (
-	gitSchemes     = []string{"https", "ssh", "git", "http"}
-	bzrSchemes     = []string{"https", "bzr+ssh", "bzr", "http"}
-	hgSchemes      = []string{"https", "ssh", "http"}
-	svnSchemes     = []string{"https", "http", "svn", "svn+ssh"}
-	gopkginSchemes = []string{"https", "http"}
-)
-
-const gopkgUnstableSuffix = "-unstable"
-
-func validateVCSScheme(scheme, typ string) bool {
-	// everything allows plain ssh
-	if scheme == "ssh" {
-		return true
-	}
-
-	var schemes []string
-	switch typ {
-	case "git":
-		schemes = gitSchemes
-	case "bzr":
-		schemes = bzrSchemes
-	case "hg":
-		schemes = hgSchemes
-	case "svn":
-		schemes = svnSchemes
-	default:
-		panic(fmt.Sprint("unsupported vcs type", scheme))
-	}
-
-	for _, valid := range schemes {
-		if scheme == valid {
-			return true
-		}
-	}
-	return false
-}
-
-// Regexes for the different known import path flavors
-var (
-	// This regex allows some usernames that github currently disallows. They
-	// have allowed them in the past.
-	ghRegex      = regexp.MustCompile(`^(?P<root>github\.com(/[A-Za-z0-9][-A-Za-z0-9]*/[A-Za-z0-9_.\-]+))((?:/[A-Za-z0-9_.\-]+)*)$`)
-	gpinNewRegex = regexp.MustCompile(`^(?P<root>gopkg\.in(?:(/[a-zA-Z0-9][-a-zA-Z0-9]+)?)(/[a-zA-Z][-.a-zA-Z0-9]*)\.((?:v0|v[1-9][0-9]*)(?:\.0|\.[1-9][0-9]*){0,2}(?:-unstable)?)(?:\.git)?)((?:/[a-zA-Z0-9][-.a-zA-Z0-9]*)*)$`)
-	//gpinOldRegex = regexp.MustCompile(`^(?P<root>gopkg\.in/(?:([a-z0-9][-a-z0-9]+)/)?((?:v0|v[1-9][0-9]*)(?:\.0|\.[1-9][0-9]*){0,2}(-unstable)?)/([a-zA-Z][-a-zA-Z0-9]*)(?:\.git)?)((?:/[a-zA-Z][-a-zA-Z0-9]*)*)$`)
-	bbRegex = regexp.MustCompile(`^(?P<root>bitbucket\.org(?P<bitname>/[A-Za-z0-9_.\-]+/[A-Za-z0-9_.\-]+))((?:/[A-Za-z0-9_.\-]+)*)$`)
-	//lpRegex = regexp.MustCompile(`^(?P<root>launchpad\.net/([A-Za-z0-9-._]+)(/[A-Za-z0-9-._]+)?)(/.+)?`)
-	lpRegex = regexp.MustCompile(`^(?P<root>launchpad\.net(/[A-Za-z0-9-._]+))((?:/[A-Za-z0-9_.\-]+)*)?$`)
-	//glpRegex = regexp.MustCompile(`^(?P<root>git\.launchpad\.net/([A-Za-z0-9_.\-]+)|~[A-Za-z0-9_.\-]+/(\+git|[A-Za-z0-9_.\-]+)/[A-Za-z0-9_.\-]+)$`)
-	glpRegex = regexp.MustCompile(`^(?P<root>git\.launchpad\.net(/[A-Za-z0-9_.\-]+))((?:/[A-Za-z0-9_.\-]+)*)$`)
-	//gcRegex      = regexp.MustCompile(`^(?P<root>code\.google\.com/[pr]/(?P<project>[a-z0-9\-]+)(\.(?P<subrepo>[a-z0-9\-]+))?)(/[A-Za-z0-9_.\-]+)*$`)
-	jazzRegex         = regexp.MustCompile(`^(?P<root>hub\.jazz\.net(/git/[a-z0-9]+/[A-Za-z0-9_.\-]+))((?:/[A-Za-z0-9_.\-]+)*)$`)
-	apacheRegex       = regexp.MustCompile(`^(?P<root>git\.apache\.org(/[a-z0-9_.\-]+\.git))((?:/[A-Za-z0-9_.\-]+)*)$`)
-	vcsExtensionRegex = regexp.MustCompile(`^(?P<root>([a-z0-9.\-]+\.)+[a-z0-9.\-]+(:[0-9]+)?/[A-Za-z0-9_.\-/~]*?\.(?P<vcs>bzr|git|hg|svn))((?:/[A-Za-z0-9_.\-]+)*)$`)
-)
-
-// Other helper regexes
-var (
-	scpSyntaxRe = regexp.MustCompile(`^([a-zA-Z0-9_]+)@([a-zA-Z0-9._-]+):(.*)$`)
-	pathvld     = regexp.MustCompile(`^([A-Za-z0-9-]+)(\.[A-Za-z0-9-]+)+(/[A-Za-z0-9-_.~]+)*$`)
-)
-
-func pathDeducerTrie() *deducerTrie {
-	dxt := newDeducerTrie()
-
-	dxt.Insert("github.com/", githubDeducer{regexp: ghRegex})
-	dxt.Insert("gopkg.in/", gopkginDeducer{regexp: gpinNewRegex})
-	dxt.Insert("bitbucket.org/", bitbucketDeducer{regexp: bbRegex})
-	dxt.Insert("launchpad.net/", launchpadDeducer{regexp: lpRegex})
-	dxt.Insert("git.launchpad.net/", launchpadGitDeducer{regexp: glpRegex})
-	dxt.Insert("hub.jazz.net/", jazzDeducer{regexp: jazzRegex})
-	dxt.Insert("git.apache.org/", apacheDeducer{regexp: apacheRegex})
-
-	return dxt
-}
-
-type pathDeducer interface {
-	// deduceRoot takes an import path such as
-	// "github.com/some-user/some-package/some-subpackage"
-	// and returns the root folder to where the version control
-	// system exists. For example, the root folder where .git exists.
-	// So the return of the above string would be
-	// "github.com/some-user/some-package"
-	deduceRoot(string) (string, error)
-	deduceSource(string, *url.URL) (maybeSources, error)
-}
-
-type githubDeducer struct {
-	regexp *regexp.Regexp
-}
-
-func (m githubDeducer) deduceRoot(path string) (string, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return "", fmt.Errorf("%s is not a valid path for a source on github.com", path)
-	}
-
-	return "github.com" + v[2], nil
-}
-
-func (m githubDeducer) deduceSource(path string, u *url.URL) (maybeSources, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return nil, fmt.Errorf("%s is not a valid path for a source on github.com", path)
-	}
-
-	u.Host = "github.com"
-	u.Path = v[2]
-
-	if u.Scheme == "ssh" && u.User != nil && u.User.Username() != "git" {
-		return nil, fmt.Errorf("github ssh must be accessed via the 'git' user; %s was provided", u.User.Username())
-	} else if u.Scheme != "" {
-		if !validateVCSScheme(u.Scheme, "git") {
-			return nil, fmt.Errorf("%s is not a valid scheme for accessing a git repository", u.Scheme)
-		}
-		if u.Scheme == "ssh" {
-			u.User = url.User("git")
-		}
-		return maybeSources{maybeGitSource{url: u}}, nil
-	}
-
-	mb := make(maybeSources, len(gitSchemes))
-	for k, scheme := range gitSchemes {
-		u2 := *u
-		if scheme == "ssh" {
-			u2.User = url.User("git")
-		}
-		u2.Scheme = scheme
-		mb[k] = maybeGitSource{url: &u2}
-	}
-
-	return mb, nil
-}
-
-type bitbucketDeducer struct {
-	regexp *regexp.Regexp
-}
-
-func (m bitbucketDeducer) deduceRoot(path string) (string, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return "", fmt.Errorf("%s is not a valid path for a source on bitbucket.org", path)
-	}
-
-	return "bitbucket.org" + v[2], nil
-}
-
-func (m bitbucketDeducer) deduceSource(path string, u *url.URL) (maybeSources, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return nil, fmt.Errorf("%s is not a valid path for a source on bitbucket.org", path)
-	}
-
-	u.Host = "bitbucket.org"
-	u.Path = v[2]
-
-	// This isn't definitive, but it'll probably catch most
-	isgit := strings.HasSuffix(u.Path, ".git") || (u.User != nil && u.User.Username() == "git")
-	ishg := strings.HasSuffix(u.Path, ".hg") || (u.User != nil && u.User.Username() == "hg")
-
-	// TODO(sdboyer) resolve scm ambiguity if needed by querying bitbucket's REST API
-	if u.Scheme != "" {
-		validgit, validhg := validateVCSScheme(u.Scheme, "git"), validateVCSScheme(u.Scheme, "hg")
-		if isgit {
-			if !validgit {
-				// This is unreachable for now, as the git schemes are a
-				// superset of the hg schemes
-				return nil, fmt.Errorf("%s is not a valid scheme for accessing a git repository", u.Scheme)
-			}
-			return maybeSources{maybeGitSource{url: u}}, nil
-		} else if ishg {
-			if !validhg {
-				return nil, fmt.Errorf("%s is not a valid scheme for accessing an hg repository", u.Scheme)
-			}
-			return maybeSources{maybeHgSource{url: u}}, nil
-		} else if !validgit && !validhg {
-			return nil, fmt.Errorf("%s is not a valid scheme for accessing either a git or hg repository", u.Scheme)
-		}
-
-		// No other choice, make an option for both git and hg
-		return maybeSources{
-			maybeHgSource{url: u},
-			maybeGitSource{url: u},
-		}, nil
-	}
-
-	mb := make(maybeSources, 0)
-	// git is probably more common, even on bitbucket. however, bitbucket
-	// appears to fail _extremely_ slowly on git pings (ls-remote) when the
-	// underlying repository is actually an hg repository, so it's better
-	// to try hg first.
-	if !isgit {
-		for _, scheme := range hgSchemes {
-			u2 := *u
-			if scheme == "ssh" {
-				u2.User = url.User("hg")
-			}
-			u2.Scheme = scheme
-			mb = append(mb, maybeHgSource{url: &u2})
-		}
-	}
-
-	if !ishg {
-		for _, scheme := range gitSchemes {
-			u2 := *u
-			if scheme == "ssh" {
-				u2.User = url.User("git")
-			}
-			u2.Scheme = scheme
-			mb = append(mb, maybeGitSource{url: &u2})
-		}
-	}
-
-	return mb, nil
-}
-
-type gopkginDeducer struct {
-	regexp *regexp.Regexp
-}
-
-func (m gopkginDeducer) deduceRoot(p string) (string, error) {
-	v, err := m.parseAndValidatePath(p)
-	if err != nil {
-		return "", err
-	}
-
-	return v[1], nil
-}
-
-func (m gopkginDeducer) parseAndValidatePath(p string) ([]string, error) {
-	v := m.regexp.FindStringSubmatch(p)
-	if v == nil {
-		return nil, fmt.Errorf("%s is not a valid path for a source on gopkg.in", p)
-	}
-
-	// We duplicate some logic from the gopkg.in server in order to validate the
-	// import path string without having to make a network request
-	if strings.Contains(v[4], ".") {
-		return nil, fmt.Errorf("%s is not a valid import path; gopkg.in only allows major versions (%q instead of %q)",
-			p, v[4][:strings.Index(v[4], ".")], v[4])
-	}
-
-	return v, nil
-}
-
-func (m gopkginDeducer) deduceSource(p string, u *url.URL) (maybeSources, error) {
-	// Reuse root detection logic for initial validation
-	v, err := m.parseAndValidatePath(p)
-	if err != nil {
-		return nil, err
-	}
-
-	// Putting a scheme on gopkg.in would be really weird, disallow it
-	if u.Scheme != "" {
-		return nil, fmt.Errorf("specifying alternate schemes on gopkg.in imports is not permitted")
-	}
-
-	// gopkg.in is always backed by github
-	u.Host = "github.com"
-	if v[2] == "" {
-		elem := v[3][1:]
-		u.Path = path.Join("/go-"+elem, elem)
-	} else {
-		u.Path = path.Join(v[2], v[3])
-	}
-
-	unstable := false
-	majorStr := v[4]
-
-	if strings.HasSuffix(majorStr, gopkgUnstableSuffix) {
-		unstable = true
-		majorStr = strings.TrimSuffix(majorStr, gopkgUnstableSuffix)
-	}
-	major, err := strconv.ParseUint(majorStr[1:], 10, 64)
-	if err != nil {
-		// this should only be reachable if there's an error in the regex
-		return nil, fmt.Errorf("could not parse %q as a gopkg.in major version", majorStr[1:])
-	}
-
-	mb := make(maybeSources, len(gopkginSchemes))
-	for k, scheme := range gopkginSchemes {
-		u2 := *u
-		u2.Scheme = scheme
-		mb[k] = maybeGopkginSource{
-			opath:    v[1],
-			url:      &u2,
-			major:    major,
-			unstable: unstable,
-		}
-	}
-
-	return mb, nil
-}
-
-type launchpadDeducer struct {
-	regexp *regexp.Regexp
-}
-
-func (m launchpadDeducer) deduceRoot(path string) (string, error) {
-	// TODO(sdboyer) lp handling is nasty - there's ambiguities which can only really
-	// be resolved with a metadata request. See https://github.com/golang/go/issues/11436
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return "", fmt.Errorf("%s is not a valid path for a source on launchpad.net", path)
-	}
-
-	return "launchpad.net" + v[2], nil
-}
-
-func (m launchpadDeducer) deduceSource(path string, u *url.URL) (maybeSources, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return nil, fmt.Errorf("%s is not a valid path for a source on launchpad.net", path)
-	}
-
-	u.Host = "launchpad.net"
-	u.Path = v[2]
-
-	if u.Scheme != "" {
-		if !validateVCSScheme(u.Scheme, "bzr") {
-			return nil, fmt.Errorf("%s is not a valid scheme for accessing a bzr repository", u.Scheme)
-		}
-		return maybeSources{maybeBzrSource{url: u}}, nil
-	}
-
-	mb := make(maybeSources, len(bzrSchemes))
-	for k, scheme := range bzrSchemes {
-		u2 := *u
-		u2.Scheme = scheme
-		mb[k] = maybeBzrSource{url: &u2}
-	}
-
-	return mb, nil
-}
-
-type launchpadGitDeducer struct {
-	regexp *regexp.Regexp
-}
-
-func (m launchpadGitDeducer) deduceRoot(path string) (string, error) {
-	// TODO(sdboyer) same ambiguity issues as with normal bzr lp
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return "", fmt.Errorf("%s is not a valid path for a source on git.launchpad.net", path)
-	}
-
-	return "git.launchpad.net" + v[2], nil
-}
-
-func (m launchpadGitDeducer) deduceSource(path string, u *url.URL) (maybeSources, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return nil, fmt.Errorf("%s is not a valid path for a source on git.launchpad.net", path)
-	}
-
-	u.Host = "git.launchpad.net"
-	u.Path = v[2]
-
-	if u.Scheme != "" {
-		if !validateVCSScheme(u.Scheme, "git") {
-			return nil, fmt.Errorf("%s is not a valid scheme for accessing a git repository", u.Scheme)
-		}
-		return maybeSources{maybeGitSource{url: u}}, nil
-	}
-
-	mb := make(maybeSources, len(gitSchemes))
-	for k, scheme := range gitSchemes {
-		u2 := *u
-		u2.Scheme = scheme
-		mb[k] = maybeGitSource{url: &u2}
-	}
-
-	return mb, nil
-}
-
-type jazzDeducer struct {
-	regexp *regexp.Regexp
-}
-
-func (m jazzDeducer) deduceRoot(path string) (string, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return "", fmt.Errorf("%s is not a valid path for a source on hub.jazz.net", path)
-	}
-
-	return "hub.jazz.net" + v[2], nil
-}
-
-func (m jazzDeducer) deduceSource(path string, u *url.URL) (maybeSources, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return nil, fmt.Errorf("%s is not a valid path for a source on hub.jazz.net", path)
-	}
-
-	u.Host = "hub.jazz.net"
-	u.Path = v[2]
-
-	switch u.Scheme {
-	case "":
-		u.Scheme = "https"
-		fallthrough
-	case "https":
-		return maybeSources{maybeGitSource{url: u}}, nil
-	default:
-		return nil, fmt.Errorf("IBM's jazz hub only supports https, %s is not allowed", u.String())
-	}
-}
-
-type apacheDeducer struct {
-	regexp *regexp.Regexp
-}
-
-func (m apacheDeducer) deduceRoot(path string) (string, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return "", fmt.Errorf("%s is not a valid path for a source on git.apache.org", path)
-	}
-
-	return "git.apache.org" + v[2], nil
-}
-
-func (m apacheDeducer) deduceSource(path string, u *url.URL) (maybeSources, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return nil, fmt.Errorf("%s is not a valid path for a source on git.apache.org", path)
-	}
-
-	u.Host = "git.apache.org"
-	u.Path = v[2]
-
-	if u.Scheme != "" {
-		if !validateVCSScheme(u.Scheme, "git") {
-			return nil, fmt.Errorf("%s is not a valid scheme for accessing a git repository", u.Scheme)
-		}
-		return maybeSources{maybeGitSource{url: u}}, nil
-	}
-
-	mb := make(maybeSources, len(gitSchemes))
-	for k, scheme := range gitSchemes {
-		u2 := *u
-		u2.Scheme = scheme
-		mb[k] = maybeGitSource{url: &u2}
-	}
-
-	return mb, nil
-}
-
-type vcsExtensionDeducer struct {
-	regexp *regexp.Regexp
-}
-
-func (m vcsExtensionDeducer) deduceRoot(path string) (string, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return "", fmt.Errorf("%s contains no vcs extension hints for matching", path)
-	}
-
-	return v[1], nil
-}
-
-func (m vcsExtensionDeducer) deduceSource(path string, u *url.URL) (maybeSources, error) {
-	v := m.regexp.FindStringSubmatch(path)
-	if v == nil {
-		return nil, fmt.Errorf("%s contains no vcs extension hints for matching", path)
-	}
-
-	switch v[4] {
-	case "git", "hg", "bzr":
-		x := strings.SplitN(v[1], "/", 2)
-		// TODO(sdboyer) is this actually correct for bzr?
-		u.Host = x[0]
-		u.Path = "/" + x[1]
-
-		if u.Scheme != "" {
-			if !validateVCSScheme(u.Scheme, v[4]) {
-				return nil, fmt.Errorf("%s is not a valid scheme for accessing %s repositories (path %s)", u.Scheme, v[4], path)
-			}
-
-			switch v[4] {
-			case "git":
-				return maybeSources{maybeGitSource{url: u}}, nil
-			case "bzr":
-				return maybeSources{maybeBzrSource{url: u}}, nil
-			case "hg":
-				return maybeSources{maybeHgSource{url: u}}, nil
-			}
-		}
-
-		var schemes []string
-		var mb maybeSources
-		var f func(k int, u *url.URL)
-
-		switch v[4] {
-		case "git":
-			schemes = gitSchemes
-			f = func(k int, u *url.URL) {
-				mb[k] = maybeGitSource{url: u}
-			}
-		case "bzr":
-			schemes = bzrSchemes
-			f = func(k int, u *url.URL) {
-				mb[k] = maybeBzrSource{url: u}
-			}
-		case "hg":
-			schemes = hgSchemes
-			f = func(k int, u *url.URL) {
-				mb[k] = maybeHgSource{url: u}
-			}
-		}
-
-		mb = make(maybeSources, len(schemes))
-		for k, scheme := range schemes {
-			u2 := *u
-			u2.Scheme = scheme
-			f(k, &u2)
-		}
-
-		return mb, nil
-	default:
-		return nil, fmt.Errorf("unknown repository type: %q", v[4])
-	}
-}
-
-// A deducer takes an import path and inspects it to determine where the
-// corresponding project root should be. It applies a number of matching
-// techniques, eventually falling back to an HTTP request for go-get metadata if
-// none of the explicit rules succeed.
-//
-// The only real implementation is deductionCoordinator. The interface is
-// primarily intended for testing purposes.
-type deducer interface {
-	deduceRootPath(ctx context.Context, path string) (pathDeduction, error)
-}
-
-type deductionCoordinator struct {
-	suprvsr  *supervisor
-	mut      sync.RWMutex
-	rootxt   *radix.Tree
-	deducext *deducerTrie
-}
-
-func newDeductionCoordinator(superv *supervisor) *deductionCoordinator {
-	dc := &deductionCoordinator{
-		suprvsr:  superv,
-		rootxt:   radix.New(),
-		deducext: pathDeducerTrie(),
-	}
-
-	return dc
-}
-
-// deduceRootPath takes an import path and attempts to deduce various
-// metadata about it - what type of source should handle it, and where its
-// "root" is (for vcs repositories, the repository root).
-//
-// If no errors are encountered, the returned pathDeduction will contain both
-// the root path and a list of maybeSources, which can be subsequently used to
-// create a handler that will manage the particular source.
-func (dc *deductionCoordinator) deduceRootPath(ctx context.Context, path string) (pathDeduction, error) {
-	if err := dc.suprvsr.ctx.Err(); err != nil {
-		return pathDeduction{}, err
-	}
-
-	// First, check the rootxt to see if there's a prefix match - if so, we
-	// can return that and move on.
-	dc.mut.RLock()
-	prefix, data, has := dc.rootxt.LongestPrefix(path)
-	dc.mut.RUnlock()
-	if has && isPathPrefixOrEqual(prefix, path) {
-		switch d := data.(type) {
-		case maybeSources:
-			return pathDeduction{root: prefix, mb: d}, nil
-		case *httpMetadataDeducer:
-			// Multiple calls have come in for a similar path shape during
-			// the window in which the HTTP request to retrieve go get
-			// metadata is in flight. Fold this request in with the existing
-			// one(s) by calling the deduction method, which will avoid
-			// duplication of work through a sync.Once.
-			return d.deduce(ctx, path)
-		}
-
-		panic(fmt.Sprintf("unexpected %T in deductionCoordinator.rootxt: %v", data, data))
-	}
-
-	// No match. Try known path deduction first.
-	pd, err := dc.deduceKnownPaths(path)
-	if err == nil {
-		// Deduction worked; store it in the rootxt, send on retchan and
-		// terminate.
-		// FIXME(sdboyer) deal with changing path vs. root. Probably needs
-		// to be predeclared and reused in the hmd returnFunc
-		dc.mut.Lock()
-		dc.rootxt.Insert(pd.root, pd.mb)
-		dc.mut.Unlock()
-		return pd, nil
-	}
-
-	if err != errNoKnownPathMatch {
-		return pathDeduction{}, err
-	}
-
-	// The err indicates no known path matched. It's still possible that
-	// retrieving go get metadata might do the trick.
-	hmd := &httpMetadataDeducer{
-		basePath: path,
-		suprvsr:  dc.suprvsr,
-		// The vanity deducer will call this func with a completed
-		// pathDeduction if it succeeds in finding one. We process it
-		// back through the action channel to ensure serialized
-		// access to the rootxt map.
-		returnFunc: func(pd pathDeduction) {
-			dc.mut.Lock()
-			dc.rootxt.Insert(pd.root, pd.mb)
-			dc.mut.Unlock()
-		},
-	}
-
-	// Save the hmd in the rootxt so that calls checking on similar
-	// paths made while the request is in flight can be folded together.
-	dc.mut.Lock()
-	dc.rootxt.Insert(path, hmd)
-	dc.mut.Unlock()
-
-	// Trigger the HTTP-backed deduction process for this requestor.
-	return hmd.deduce(ctx, path)
-}
-
-// pathDeduction represents the results of a successful import path deduction -
-// a root path, plus a maybeSource that can be used to attempt to connect to
-// the source.
-type pathDeduction struct {
-	root string
-	mb   maybeSources
-}
-
-var errNoKnownPathMatch = errors.New("no known path match")
-
-func (dc *deductionCoordinator) deduceKnownPaths(path string) (pathDeduction, error) {
-	u, path, err := normalizeURI(path)
-	if err != nil {
-		return pathDeduction{}, err
-	}
-
-	// First, try the root path-based matches
-	if _, mtch, has := dc.deducext.LongestPrefix(path); has {
-		root, err := mtch.deduceRoot(path)
-		if err != nil {
-			return pathDeduction{}, err
-		}
-		mb, err := mtch.deduceSource(path, u)
-		if err != nil {
-			return pathDeduction{}, err
-		}
-
-		return pathDeduction{
-			root: root,
-			mb:   mb,
-		}, nil
-	}
-
-	// Next, try the vcs extension-based (infix) matcher
-	exm := vcsExtensionDeducer{regexp: vcsExtensionRegex}
-	if root, err := exm.deduceRoot(path); err == nil {
-		mb, err := exm.deduceSource(path, u)
-		if err != nil {
-			return pathDeduction{}, err
-		}
-
-		return pathDeduction{
-			root: root,
-			mb:   mb,
-		}, nil
-	}
-
-	return pathDeduction{}, errNoKnownPathMatch
-}
-
-type httpMetadataDeducer struct {
-	once       sync.Once
-	deduced    pathDeduction
-	deduceErr  error
-	basePath   string
-	returnFunc func(pathDeduction)
-	suprvsr    *supervisor
-}
-
-func (hmd *httpMetadataDeducer) deduce(ctx context.Context, path string) (pathDeduction, error) {
-	hmd.once.Do(func() {
-		opath := path
-		u, path, err := normalizeURI(path)
-		if err != nil {
-			err = errors.Wrapf(err, "unable to normalize URI")
-			hmd.deduceErr = err
-			return
-		}
-
-		pd := pathDeduction{}
-
-		// Make the HTTP call to attempt to retrieve go-get metadata
-		var root, vcs, reporoot string
-		err = hmd.suprvsr.do(ctx, path, ctHTTPMetadata, func(ctx context.Context) error {
-			root, vcs, reporoot, err = getMetadata(ctx, path, u.Scheme)
-			if err != nil {
-				err = errors.Wrapf(err, "unable to read metadata")
-			}
-			return err
-		})
-		if err != nil {
-			err = errors.Wrapf(err, "unable to deduce repository and source type for %q", opath)
-			hmd.deduceErr = err
-			return
-		}
-		pd.root = root
-
-		// If we got something back at all, then it supersedes the actual input for
-		// the real URL to hit
-		repoURL, err := url.Parse(reporoot)
-		if err != nil {
-			err = errors.Wrapf(err, "server returned bad URL in go-get metadata, reporoot=%q", reporoot)
-			hmd.deduceErr = err
-			return
-		}
-
-		// If the input path specified a scheme, then try to honor it.
-		if u.Scheme != "" && repoURL.Scheme != u.Scheme {
-			// If the input scheme was http, but the go-get metadata
-			// nevertheless indicated https should be used for the repo, then
-			// trust the metadata and use https.
-			//
-			// To err on the secure side, do NOT allow the same in the other
-			// direction (https -> http).
-			if u.Scheme != "http" || repoURL.Scheme != "https" {
-				hmd.deduceErr = errors.Errorf("scheme mismatch for %q: input asked for %q, but go-get metadata specified %q", path, u.Scheme, repoURL.Scheme)
-				return
-			}
-		}
-
-		switch vcs {
-		case "git":
-			pd.mb = maybeSources{maybeGitSource{url: repoURL}}
-		case "bzr":
-			pd.mb = maybeSources{maybeBzrSource{url: repoURL}}
-		case "hg":
-			pd.mb = maybeSources{maybeHgSource{url: repoURL}}
-		default:
-			hmd.deduceErr = errors.Errorf("unsupported vcs type %s in go-get metadata from %s", vcs, path)
-			return
-		}
-
-		hmd.deduced = pd
-		// All data is assigned for other goroutines that may be waiting. Now,
-		// send the pathDeduction back to the deductionCoordinator by calling
-		// the returnFunc. This will also remove the reference to this hmd in
-		// the coordinator's trie.
-		//
-		// When this call finishes, it is guaranteed the coordinator will have
-		// at least begun running the action to insert the path deduction, which
-		// means no other deduction request will be able to interleave and
-		// request the same path before the pathDeduction can be processed, but
-		// after this hmd has been dereferenced from the trie.
-		hmd.returnFunc(pd)
-	})
-
-	return hmd.deduced, hmd.deduceErr
-}
-
-// normalizeURI takes a path string - which can be a plain import path, or a
-// proper URI, or something SCP-shaped - performs basic validity checks, and
-// returns both a full URL and just the path portion.
-func normalizeURI(p string) (*url.URL, string, error) {
-	var u *url.URL
-	var newpath string
-	if m := scpSyntaxRe.FindStringSubmatch(p); m != nil {
-		// Match SCP-like syntax and convert it to a URL.
-		// Eg, "git@github.com:user/repo" becomes
-		// "ssh://git@github.com/user/repo".
-		u = &url.URL{
-			Scheme: "ssh",
-			User:   url.User(m[1]),
-			Host:   m[2],
-			Path:   "/" + m[3],
-			// TODO(sdboyer) This is what stdlib sets; grok why better
-			//RawPath: m[3],
-		}
-	} else {
-		var err error
-		u, err = url.Parse(p)
-		if err != nil {
-			return nil, "", errors.Errorf("%q is not a valid URI", p)
-		}
-	}
-
-	// If no scheme was passed, then the entire path will have been put into
-	// u.Path. Either way, construct the normalized path correctly.
-	if u.Host == "" {
-		newpath = p
-	} else {
-		newpath = path.Join(u.Host, u.Path)
-	}
-
-	return u, newpath, nil
-}
-
-// fetchMetadata fetches the remote metadata for path.
-func fetchMetadata(ctx context.Context, path, scheme string) (rc io.ReadCloser, err error) {
-	if scheme == "http" {
-		rc, err = doFetchMetadata(ctx, "http", path)
-		return
-	}
-
-	rc, err = doFetchMetadata(ctx, "https", path)
-	if err == nil {
-		return
-	}
-
-	rc, err = doFetchMetadata(ctx, "http", path)
-	return
-}
-
-func doFetchMetadata(ctx context.Context, scheme, path string) (io.ReadCloser, error) {
-	url := fmt.Sprintf("%s://%s?go-get=1", scheme, path)
-	switch scheme {
-	case "https", "http":
-		req, err := http.NewRequest("GET", url, nil)
-		if err != nil {
-			return nil, errors.Wrapf(err, "unable to build HTTP request for URL %q", url)
-		}
-
-		resp, err := http.DefaultClient.Do(req.WithContext(ctx))
-		if err != nil {
-			return nil, errors.Wrapf(err, "failed HTTP request to URL %q", url)
-		}
-
-		return resp.Body, nil
-	default:
-		return nil, errors.Errorf("unknown remote protocol scheme: %q", scheme)
-	}
-}
-
-// getMetadata fetches and decodes remote metadata for path.
-//
-// scheme is optional. If it's http, only http will be attempted for fetching.
-// Any other scheme (including none) will first try https, then fall back to
-// http.
-func getMetadata(ctx context.Context, path, scheme string) (string, string, string, error) {
-	rc, err := fetchMetadata(ctx, path, scheme)
-	if err != nil {
-		return "", "", "", errors.Wrapf(err, "unable to fetch raw metadata")
-	}
-	defer rc.Close()
-
-	imports, err := parseMetaGoImports(rc)
-	if err != nil {
-		return "", "", "", errors.Wrapf(err, "unable to parse go-import metadata")
-	}
-	match := -1
-	for i, im := range imports {
-		if !strings.HasPrefix(path, im.Prefix) {
-			continue
-		}
-		if match != -1 {
-			return "", "", "", errors.Errorf("multiple meta tags match import path %q", path)
-		}
-		match = i
-	}
-	if match == -1 {
-		return "", "", "", errors.Errorf("go-import metadata not found")
-	}
-	return imports[match].Prefix, imports[match].VCS, imports[match].RepoRoot, nil
-}
diff --git a/vendor/github.com/golang/dep/gps/discovery.go b/vendor/github.com/golang/dep/gps/discovery.go
deleted file mode 100644
index 8da4a66d4b53bdc82f2acabeb0a7420eeec2e6ba..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/discovery.go
+++ /dev/null
@@ -1,83 +0,0 @@
-// Copyright 2012 The Go Authors.  All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-// This code is taken from cmd/go/discovery.go; it is the logic go get itself
-// uses to interpret meta imports information.
-
-import (
-	"encoding/xml"
-	"fmt"
-	"io"
-	"strings"
-)
-
-// charsetReader returns a reader for the given charset. Currently
-// it only supports UTF-8 and ASCII. Otherwise, it returns a meaningful
-// error which is printed by go get, so the user can find why the package
-// wasn't downloaded if the encoding is not supported. Note that, in
-// order to reduce potential errors, ASCII is treated as UTF-8 (i.e. characters
-// greater than 0x7f are not rejected).
-func charsetReader(charset string, input io.Reader) (io.Reader, error) {
-	switch strings.ToLower(charset) {
-	case "ascii":
-		return input, nil
-	default:
-		return nil, fmt.Errorf("can't decode XML document using charset %q", charset)
-	}
-}
-
-type metaImport struct {
-	Prefix, VCS, RepoRoot string
-}
-
-// parseMetaGoImports returns meta imports from the HTML in r.
-// Parsing ends at the end of the <head> section or the beginning of the <body>.
-func parseMetaGoImports(r io.Reader) (imports []metaImport, err error) {
-	d := xml.NewDecoder(r)
-	d.CharsetReader = charsetReader
-	d.Strict = false
-	var t xml.Token
-	for {
-		t, err = d.RawToken()
-		if err != nil {
-			if err == io.EOF || len(imports) > 0 {
-				err = nil
-			}
-			return
-		}
-		if e, ok := t.(xml.StartElement); ok && strings.EqualFold(e.Name.Local, "body") {
-			return
-		}
-		if e, ok := t.(xml.EndElement); ok && strings.EqualFold(e.Name.Local, "head") {
-			return
-		}
-		e, ok := t.(xml.StartElement)
-		if !ok || !strings.EqualFold(e.Name.Local, "meta") {
-			continue
-		}
-		if attrValue(e.Attr, "name") != "go-import" {
-			continue
-		}
-		if f := strings.Fields(attrValue(e.Attr, "content")); len(f) == 3 {
-			imports = append(imports, metaImport{
-				Prefix:   f[0],
-				VCS:      f[1],
-				RepoRoot: f[2],
-			})
-		}
-	}
-}
-
-// attrValue returns the attribute value for the case-insensitive key
-// `name', or the empty string if nothing is found.
-func attrValue(attrs []xml.Attr, name string) string {
-	for _, a := range attrs {
-		if strings.EqualFold(a.Name.Local, name) {
-			return a.Value
-		}
-	}
-	return ""
-}
diff --git a/vendor/github.com/golang/dep/gps/doc.go b/vendor/github.com/golang/dep/gps/doc.go
deleted file mode 100644
index 32940f35ef188a7472e216ed902b6e5bc1c396bd..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/doc.go
+++ /dev/null
@@ -1,6 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Package gps is a Go packaging solver library.
-package gps
diff --git a/vendor/github.com/golang/dep/gps/error.go b/vendor/github.com/golang/dep/gps/error.go
deleted file mode 100644
index ea15957b8a04df277fb6b677a1a21cd370eeb6bd..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/error.go
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"bytes"
-	"fmt"
-)
-
-type errorSlice []error
-
-func (errs errorSlice) Error() string {
-	var buf bytes.Buffer
-	fmt.Fprintln(&buf)
-	for i, err := range errs {
-		fmt.Fprintf(&buf, "\t(%d) %s\n", i+1, err)
-	}
-	return buf.String()
-}
-
-func (errs errorSlice) Format(f fmt.State, c rune) {
-	fmt.Fprintln(f)
-	for i, err := range errs {
-		if ferr, ok := err.(fmt.Formatter); ok {
-			fmt.Fprintf(f, "\t(%d) ", i+1)
-			ferr.Format(f, c)
-			fmt.Fprint(f, "\n")
-		} else {
-			fmt.Fprintf(f, "\t(%d) %s\n", i+1, err)
-		}
-	}
-}
diff --git a/vendor/github.com/golang/dep/gps/example.go b/vendor/github.com/golang/dep/gps/example.go
deleted file mode 100644
index 33c2521372f84a800e9186968ff85519d7b37444..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/example.go
+++ /dev/null
@@ -1,82 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build ignore
-
-package main
-
-import (
-	"go/build"
-	"io/ioutil"
-	"log"
-	"os"
-	"path/filepath"
-	"strings"
-
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/pkgtree"
-)
-
-// This is probably the simplest possible implementation of gps. It does the
-// substantive work that `go get` does, except:
-//  1. It drops the resulting tree into vendor instead of GOPATH
-//  2. It prefers semver tags (if available) over branches
-//  3. It removes any vendor directories nested within dependencies
-//
-//  This will compile and work...and then blow away any vendor directory present
-//  in the cwd. Be careful!
-func main() {
-	// Assume the current directory is correctly placed on a GOPATH, and that it's the
-	// root of the project.
-	root, _ := os.Getwd()
-	srcprefix := filepath.Join(build.Default.GOPATH, "src") + string(filepath.Separator)
-	importroot := filepath.ToSlash(strings.TrimPrefix(root, srcprefix))
-
-	// Set up params, including tracing
-	params := gps.SolveParameters{
-		RootDir:         root,
-		TraceLogger:     log.New(os.Stdout, "", 0),
-		ProjectAnalyzer: NaiveAnalyzer{},
-	}
-	// Perform static analysis on the current project to find all of its imports.
-	params.RootPackageTree, _ = pkgtree.ListPackages(root, importroot)
-
-	// Set up a SourceManager. This manages interaction with sources (repositories).
-	tempdir, _ := ioutil.TempDir("", "gps-repocache")
-	sourcemgr, _ := gps.NewSourceManager(gps.SourceManagerConfig{Cachedir: filepath.Join(tempdir)})
-	defer sourcemgr.Release()
-
-	// Prep and run the solver
-	solver, _ := gps.Prepare(params, sourcemgr)
-	solution, err := solver.Solve()
-	if err == nil {
-		// If no failure, blow away the vendor dir and write a new one out,
-		// stripping nested vendor directories as we go.
-		os.RemoveAll(filepath.Join(root, "vendor"))
-		pruneOpts := gps.CascadingPruneOptions{
-			DefaultOptions: gps.PruneNestedVendorDirs | gps.PruneUnusedPackages | gps.PruneGoTestFiles,
-		}
-		gps.WriteDepTree(filepath.Join(root, "vendor"), solution, sourcemgr, pruneOpts, nil)
-	}
-}
-
-// NaiveAnalyzer is a project analyzer that implements gps.ProjectAnalyzer interface.
-type NaiveAnalyzer struct{}
-
-// DeriveManifestAndLock is called when the solver needs manifest/lock data
-// for a particular dependency project (identified by the gps.ProjectRoot
-// parameter) at a particular version. That version will be checked out in a
-// directory rooted at path.
-func (a NaiveAnalyzer) DeriveManifestAndLock(path string, n gps.ProjectRoot) (gps.Manifest, gps.Lock, error) {
-	return nil, nil, nil
-}
-
-// Info reports the name and version of the analyzer. This is used internally as part
-// of gps' hashing memoization scheme.
-func (a NaiveAnalyzer) Info() gps.ProjectAnalyzerInfo {
-	return gps.ProjectAnalyzerInfo{
-		Name:    "example-analyzer",
-		Version: 1,
-	}
-}
diff --git a/vendor/github.com/golang/dep/gps/filesystem.go b/vendor/github.com/golang/dep/gps/filesystem.go
deleted file mode 100644
index d599866e801b3778f7a7057f039af27440714953..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/filesystem.go
+++ /dev/null
@@ -1,136 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"os"
-	"path/filepath"
-	"strings"
-
-	"github.com/pkg/errors"
-)
-
-// fsLink represents a symbolic link.
-type fsLink struct {
-	path string
-	to   string
-
-	// circular denotes if evaluating the symlink fails with "too many links" error.
-	// This error means that it's very likely that the symlink has a circular reference.
-	circular bool
-
-	// broken denotes that attempting to resolve the link fails, most likely because
-	// the destaination doesn't exist.
-	broken bool
-}
-
-// filesystemState represents the state of a file system.
-type filesystemState struct {
-	root  string
-	dirs  []string
-	files []string
-	links []fsLink
-}
-
-func (s filesystemState) setup() error {
-	for _, dir := range s.dirs {
-		p := filepath.Join(s.root, dir)
-
-		if err := os.MkdirAll(p, 0777); err != nil {
-			return errors.Errorf("os.MkdirAll(%q, 0777) err=%q", p, err)
-		}
-	}
-
-	for _, file := range s.files {
-		p := filepath.Join(s.root, file)
-
-		f, err := os.Create(p)
-		if err != nil {
-			return errors.Errorf("os.Create(%q) err=%q", p, err)
-		}
-
-		if err := f.Close(); err != nil {
-			return errors.Errorf("file %q Close() err=%q", p, err)
-		}
-	}
-
-	for _, link := range s.links {
-		p := filepath.Join(s.root, link.path)
-
-		// On Windows, relative symlinks confuse filepath.Walk. So, we'll just sigh
-		// and do absolute links, assuming they are relative to the directory of
-		// link.path.
-		//
-		// Reference: https://github.com/golang/go/issues/17540
-		//
-		// TODO(ibrasho): This was fixed in Go 1.9. Remove this when support for
-		// 1.8 is dropped.
-		dir := filepath.Dir(p)
-		to := ""
-		if link.to != "" {
-			to = filepath.Join(dir, link.to)
-		}
-
-		if err := os.Symlink(to, p); err != nil {
-			return errors.Errorf("os.Symlink(%q, %q) err=%q", to, p, err)
-		}
-	}
-
-	return nil
-}
-
-// deriveFilesystemState returns a filesystemState based on the state of
-// the filesystem on root.
-func deriveFilesystemState(root string) (filesystemState, error) {
-	fs := filesystemState{root: root}
-
-	err := filepath.Walk(fs.root, func(path string, info os.FileInfo, err error) error {
-		if err != nil {
-			return err
-		}
-
-		if path == fs.root {
-			return nil
-		}
-
-		relPath, err := filepath.Rel(fs.root, path)
-		if err != nil {
-			return err
-		}
-
-		if (info.Mode() & os.ModeSymlink) != 0 {
-			l := fsLink{path: relPath}
-
-			l.to, err = filepath.EvalSymlinks(path)
-			if err != nil && strings.HasSuffix(err.Error(), "too many links") {
-				l.circular = true
-			} else if err != nil && os.IsNotExist(err) {
-				l.broken = true
-			} else if err != nil {
-				return err
-			}
-
-			fs.links = append(fs.links, l)
-
-			return nil
-		}
-
-		if info.IsDir() {
-			fs.dirs = append(fs.dirs, relPath)
-
-			return nil
-		}
-
-		fs.files = append(fs.files, relPath)
-
-		return nil
-	})
-
-	if err != nil {
-		return filesystemState{}, err
-	}
-
-	return fs, nil
-}
diff --git a/vendor/github.com/golang/dep/gps/identifier.go b/vendor/github.com/golang/dep/gps/identifier.go
deleted file mode 100644
index cf3ca235137ef6b6a7ca2124267d35f05dc80242..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/identifier.go
+++ /dev/null
@@ -1,226 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"fmt"
-	"math/rand"
-	"strconv"
-)
-
-// ProjectRoot is the topmost import path in a tree of other import paths - the
-// root of the tree. In gps' current design, ProjectRoots have to correspond to
-// a repository root (mostly), but their real purpose is to identify the root
-// import path of a "project", logically encompassing all child packages.
-//
-// Projects are a crucial unit of operation in gps. Constraints are declared by
-// a project's manifest, and apply to all packages in a ProjectRoot's tree.
-// Solving itself mostly proceeds on a project-by-project basis.
-//
-// Aliasing string types is usually a bit of an anti-pattern. gps does it here
-// as a means of clarifying API intent. This is important because Go's package
-// management domain has lots of different path-ish strings floating around:
-//
-//  actual directories:
-//	/home/sdboyer/go/src/github.com/sdboyer/gps/example
-//  URLs:
-//	https://github.com/sdboyer/gps
-//  import paths:
-//	github.com/sdboyer/gps/example
-//  portions of import paths that refer to a package:
-//	example
-//  portions that could not possibly refer to anything sane:
-//	github.com/sdboyer
-//  portions that correspond to a repository root:
-//	github.com/sdboyer/gps
-//
-// While not a panacea, having ProjectRoot allows gps to clearly indicate via
-// the type system when a path-ish string must have particular semantics.
-type ProjectRoot string
-
-// A ProjectIdentifier provides the name and source location of a dependency. It
-// is related to, but differs in two key ways from, a plain import path.
-//
-// First, ProjectIdentifiers do not identify a single package. Rather, they
-// encompass the whole tree of packages, including tree's root - the
-// ProjectRoot. In gps' current design, this ProjectRoot almost always
-// corresponds to the root of a repository.
-//
-// Second, ProjectIdentifiers can optionally carry a Source, which
-// identifies where the underlying source code can be located on the network.
-// These can be either a full URL, including protocol, or plain import paths.
-// So, these are all valid data for Source:
-//
-//  github.com/sdboyer/gps
-//  github.com/fork/gps
-//  git@github.com:sdboyer/gps
-//  https://github.com/sdboyer/gps
-//
-// With plain import paths, network addresses are derived purely through an
-// algorithm. By having an explicit network name, it becomes possible to, for
-// example, transparently substitute a fork for the original upstream source
-// repository.
-//
-// Note that gps makes no guarantees about the actual import paths contained in
-// a repository aligning with ImportRoot. If tools, or their users, specify an
-// alternate Source that contains a repository with incompatible internal
-// import paths, gps' solving operations will error. (gps does no import
-// rewriting.)
-//
-// Also note that if different projects' manifests report a different
-// Source for a given ImportRoot, it is a solve failure. Everyone has to
-// agree on where a given import path should be sourced from.
-//
-// If Source is not explicitly set, gps will derive the network address from
-// the ImportRoot using a similar algorithm to that utilized by `go get`.
-type ProjectIdentifier struct {
-	ProjectRoot ProjectRoot
-	Source      string
-}
-
-// Less compares by ProjectRoot then normalized Source.
-func (i ProjectIdentifier) Less(j ProjectIdentifier) bool {
-	if i.ProjectRoot < j.ProjectRoot {
-		return true
-	}
-	if j.ProjectRoot < i.ProjectRoot {
-		return false
-	}
-	return i.normalizedSource() < j.normalizedSource()
-}
-
-func (i ProjectIdentifier) eq(j ProjectIdentifier) bool {
-	if i.ProjectRoot != j.ProjectRoot {
-		return false
-	}
-	if i.Source == j.Source {
-		return true
-	}
-
-	if (i.Source == "" && j.Source == string(j.ProjectRoot)) ||
-		(j.Source == "" && i.Source == string(i.ProjectRoot)) {
-		return true
-	}
-
-	return false
-}
-
-// equiv will check if the two identifiers are "equivalent," under special
-// rules.
-//
-// Given that the ProjectRoots are equal (==), equivalency occurs if:
-//
-// 1. The Sources are equal (==), OR
-// 2. The LEFT (the receiver) Source is non-empty, and the right
-// Source is empty.
-//
-// *This is asymmetry in this binary relation is intentional.* It facilitates
-// the case where we allow for a ProjectIdentifier with an explicit Source
-// to match one without.
-func (i ProjectIdentifier) equiv(j ProjectIdentifier) bool {
-	if i.ProjectRoot != j.ProjectRoot {
-		return false
-	}
-	if i.Source == j.Source {
-		return true
-	}
-
-	if i.Source != "" && j.Source == "" {
-		return true
-	}
-
-	return false
-}
-
-func (i ProjectIdentifier) normalizedSource() string {
-	if i.Source == "" {
-		return string(i.ProjectRoot)
-	}
-	return i.Source
-}
-
-func (i ProjectIdentifier) String() string {
-	if i.Source == "" || i.Source == string(i.ProjectRoot) {
-		return string(i.ProjectRoot)
-	}
-	return fmt.Sprintf("%s (from %s)", i.ProjectRoot, i.Source)
-}
-
-func (i ProjectIdentifier) normalize() ProjectIdentifier {
-	if i.Source == "" {
-		i.Source = string(i.ProjectRoot)
-	}
-
-	return i
-}
-
-// ProjectProperties comprise the properties that can be attached to a
-// ProjectRoot.
-//
-// In general, these are declared in the context of a map of ProjectRoot to its
-// ProjectProperties; they make little sense without their corresponding
-// ProjectRoot.
-type ProjectProperties struct {
-	Source     string
-	Constraint Constraint
-}
-
-// bimodalIdentifiers are used to track work to be done in the unselected queue.
-type bimodalIdentifier struct {
-	id ProjectIdentifier
-	// List of packages required within/under the ProjectIdentifier
-	pl []string
-	// prefv is used to indicate a 'preferred' version. This is expected to be
-	// derived from a dep's lock data, or else is empty.
-	prefv Version
-	// Indicates that the bmi came from the root project originally
-	fromRoot bool
-}
-
-type atom struct {
-	id ProjectIdentifier
-	v  Version
-}
-
-// With a random revision and no name, collisions are...unlikely
-var nilpa = atom{
-	v: Revision(strconv.FormatInt(rand.Int63(), 36)),
-}
-
-type atomWithPackages struct {
-	a  atom
-	pl []string
-}
-
-// bmi converts an atomWithPackages into a bimodalIdentifier.
-//
-// This is mostly intended for (read-only) trace use, so the package list slice
-// is not copied. It is the callers responsibility to not modify the pl slice,
-// lest that backpropagate and cause inconsistencies.
-func (awp atomWithPackages) bmi() bimodalIdentifier {
-	return bimodalIdentifier{
-		id: awp.a.id,
-		pl: awp.pl,
-	}
-}
-
-// completeDep (name hopefully to change) provides the whole picture of a
-// dependency - the root (repo and project, since currently we assume the two
-// are the same) name, a constraint, and the actual packages needed that are
-// under that root.
-type completeDep struct {
-	// The base workingConstraint
-	workingConstraint
-	// The specific packages required from the ProjectDep
-	pl []string
-}
-
-// dependency represents an incomplete edge in the depgraph. It has a
-// fully-realized atom as the depender (the tail/source of the edge), and a set
-// of requirements that any atom to be attached at the head/target must satisfy.
-type dependency struct {
-	depender atom
-	dep      completeDep
-}
diff --git a/vendor/github.com/golang/dep/gps/internal/pb/pb.go b/vendor/github.com/golang/dep/gps/internal/pb/pb.go
deleted file mode 100644
index f622f388e7b5877529d8977600d25ba796ffa6b1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/internal/pb/pb.go
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Package pb provides generated Protocol Buffers for cache serialization.
-package pb
-
-//go:generate protoc --go_out=. source_cache.proto
diff --git a/vendor/github.com/golang/dep/gps/internal/pb/source_cache.pb.go b/vendor/github.com/golang/dep/gps/internal/pb/source_cache.pb.go
deleted file mode 100644
index 8f9436c9b103393ad5f42ab4dcc47d7865753d97..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/internal/pb/source_cache.pb.go
+++ /dev/null
@@ -1,199 +0,0 @@
-// Code generated by protoc-gen-go. DO NOT EDIT.
-// source: source_cache.proto
-
-/*
-Package pb is a generated protocol buffer package.
-
-It is generated from these files:
-	source_cache.proto
-
-It has these top-level messages:
-	Constraint
-	ProjectProperties
-	LockedProject
-*/
-package pb
-
-import proto "github.com/golang/protobuf/proto"
-import fmt "fmt"
-import math "math"
-
-// Reference imports to suppress errors if they are not otherwise used.
-var _ = proto.Marshal
-var _ = fmt.Errorf
-var _ = math.Inf
-
-// This is a compile-time assertion to ensure that this generated file
-// is compatible with the proto package it is being compiled against.
-// A compilation error at this line likely means your copy of the
-// proto package needs to be updated.
-const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
-
-type Constraint_Type int32
-
-const (
-	Constraint_Revision      Constraint_Type = 0
-	Constraint_Branch        Constraint_Type = 1
-	Constraint_DefaultBranch Constraint_Type = 2
-	Constraint_Version       Constraint_Type = 3
-	Constraint_Semver        Constraint_Type = 4
-)
-
-var Constraint_Type_name = map[int32]string{
-	0: "Revision",
-	1: "Branch",
-	2: "DefaultBranch",
-	3: "Version",
-	4: "Semver",
-}
-var Constraint_Type_value = map[string]int32{
-	"Revision":      0,
-	"Branch":        1,
-	"DefaultBranch": 2,
-	"Version":       3,
-	"Semver":        4,
-}
-
-func (x Constraint_Type) String() string {
-	return proto.EnumName(Constraint_Type_name, int32(x))
-}
-func (Constraint_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} }
-
-// Constraint is a serializable representation of a gps.Constraint or gps.UnpairedVersion.
-type Constraint struct {
-	Type  Constraint_Type `protobuf:"varint,1,opt,name=type,enum=pb.Constraint_Type" json:"type,omitempty"`
-	Value string          `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
-}
-
-func (m *Constraint) Reset()                    { *m = Constraint{} }
-func (m *Constraint) String() string            { return proto.CompactTextString(m) }
-func (*Constraint) ProtoMessage()               {}
-func (*Constraint) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
-
-func (m *Constraint) GetType() Constraint_Type {
-	if m != nil {
-		return m.Type
-	}
-	return Constraint_Revision
-}
-
-func (m *Constraint) GetValue() string {
-	if m != nil {
-		return m.Value
-	}
-	return ""
-}
-
-// ProjectProperties is a serializable representation of gps.ProjectRoot and gps.ProjectProperties.
-type ProjectProperties struct {
-	Root       string      `protobuf:"bytes,1,opt,name=root" json:"root,omitempty"`
-	Source     string      `protobuf:"bytes,2,opt,name=source" json:"source,omitempty"`
-	Constraint *Constraint `protobuf:"bytes,3,opt,name=constraint" json:"constraint,omitempty"`
-}
-
-func (m *ProjectProperties) Reset()                    { *m = ProjectProperties{} }
-func (m *ProjectProperties) String() string            { return proto.CompactTextString(m) }
-func (*ProjectProperties) ProtoMessage()               {}
-func (*ProjectProperties) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
-
-func (m *ProjectProperties) GetRoot() string {
-	if m != nil {
-		return m.Root
-	}
-	return ""
-}
-
-func (m *ProjectProperties) GetSource() string {
-	if m != nil {
-		return m.Source
-	}
-	return ""
-}
-
-func (m *ProjectProperties) GetConstraint() *Constraint {
-	if m != nil {
-		return m.Constraint
-	}
-	return nil
-}
-
-// LockedProject is a serializable representation of gps.LockedProject.
-type LockedProject struct {
-	Root            string      `protobuf:"bytes,1,opt,name=root" json:"root,omitempty"`
-	Source          string      `protobuf:"bytes,2,opt,name=source" json:"source,omitempty"`
-	UnpairedVersion *Constraint `protobuf:"bytes,3,opt,name=unpairedVersion" json:"unpairedVersion,omitempty"`
-	Revision        string      `protobuf:"bytes,4,opt,name=revision" json:"revision,omitempty"`
-	Packages        []string    `protobuf:"bytes,5,rep,name=packages" json:"packages,omitempty"`
-}
-
-func (m *LockedProject) Reset()                    { *m = LockedProject{} }
-func (m *LockedProject) String() string            { return proto.CompactTextString(m) }
-func (*LockedProject) ProtoMessage()               {}
-func (*LockedProject) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
-
-func (m *LockedProject) GetRoot() string {
-	if m != nil {
-		return m.Root
-	}
-	return ""
-}
-
-func (m *LockedProject) GetSource() string {
-	if m != nil {
-		return m.Source
-	}
-	return ""
-}
-
-func (m *LockedProject) GetUnpairedVersion() *Constraint {
-	if m != nil {
-		return m.UnpairedVersion
-	}
-	return nil
-}
-
-func (m *LockedProject) GetRevision() string {
-	if m != nil {
-		return m.Revision
-	}
-	return ""
-}
-
-func (m *LockedProject) GetPackages() []string {
-	if m != nil {
-		return m.Packages
-	}
-	return nil
-}
-
-func init() {
-	proto.RegisterType((*Constraint)(nil), "pb.Constraint")
-	proto.RegisterType((*ProjectProperties)(nil), "pb.ProjectProperties")
-	proto.RegisterType((*LockedProject)(nil), "pb.LockedProject")
-	proto.RegisterEnum("pb.Constraint_Type", Constraint_Type_name, Constraint_Type_value)
-}
-
-func init() { proto.RegisterFile("source_cache.proto", fileDescriptor0) }
-
-var fileDescriptor0 = []byte{
-	// 294 bytes of a gzipped FileDescriptorProto
-	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x91, 0x4f, 0x4f, 0xc2, 0x40,
-	0x14, 0xc4, 0x5d, 0x28, 0x08, 0x0f, 0x41, 0x78, 0x1a, 0xd3, 0x78, 0x6a, 0x7a, 0x91, 0x53, 0x0f,
-	0x78, 0xf1, 0xac, 0x1e, 0x39, 0x90, 0x6a, 0xbc, 0x9a, 0xed, 0xf2, 0x94, 0x0a, 0x76, 0x37, 0xaf,
-	0xdb, 0x26, 0x7c, 0x14, 0x3f, 0x84, 0xdf, 0xd1, 0x74, 0x59, 0xf1, 0x4f, 0xe2, 0xc1, 0x5b, 0xa7,
-	0xf3, 0xcb, 0xce, 0xcc, 0x2e, 0x60, 0xa9, 0x2b, 0x56, 0xf4, 0xa8, 0xa4, 0x5a, 0x51, 0x62, 0x58,
-	0x5b, 0x8d, 0x2d, 0x93, 0xc5, 0x6f, 0x02, 0xe0, 0x46, 0x17, 0xa5, 0x65, 0x99, 0x17, 0x16, 0x2f,
-	0x20, 0xb0, 0x5b, 0x43, 0xa1, 0x88, 0xc4, 0x74, 0x34, 0x3b, 0x49, 0x4c, 0x96, 0x7c, 0xb9, 0xc9,
-	0xfd, 0xd6, 0x50, 0xea, 0x00, 0x3c, 0x85, 0x4e, 0x2d, 0x37, 0x15, 0x85, 0xad, 0x48, 0x4c, 0xfb,
-	0xe9, 0x4e, 0xc4, 0x73, 0x08, 0x1a, 0x06, 0x8f, 0xa0, 0x97, 0x52, 0x9d, 0x97, 0xb9, 0x2e, 0xc6,
-	0x07, 0x08, 0xd0, 0xbd, 0x66, 0x59, 0xa8, 0xd5, 0x58, 0xe0, 0x04, 0x86, 0xb7, 0xf4, 0x24, 0xab,
-	0x8d, 0xf5, 0xbf, 0x5a, 0x38, 0x80, 0xc3, 0x07, 0x62, 0xc7, 0xb6, 0x1b, 0xf6, 0x8e, 0x5e, 0x6b,
-	0xe2, 0x71, 0x10, 0x6b, 0x98, 0x2c, 0x58, 0xbf, 0x90, 0xb2, 0x0b, 0xd6, 0x86, 0xd8, 0xe6, 0x54,
-	0x22, 0x42, 0xc0, 0x5a, 0x5b, 0xd7, 0xb0, 0x9f, 0xba, 0x6f, 0x3c, 0x83, 0xee, 0x6e, 0x9e, 0x6f,
-	0xe3, 0x15, 0x26, 0x00, 0x6a, 0xdf, 0x3e, 0x6c, 0x47, 0x62, 0x3a, 0x98, 0x8d, 0x7e, 0x6e, 0x4a,
-	0xbf, 0x11, 0xf1, 0xbb, 0x80, 0xe1, 0x5c, 0xab, 0x35, 0x2d, 0x7d, 0xee, 0xbf, 0xd2, 0xae, 0xe0,
-	0xb8, 0x2a, 0x8c, 0xcc, 0x99, 0x96, 0x7e, 0xcf, 0x1f, 0x91, 0xbf, 0x31, 0x3c, 0x87, 0x1e, 0xfb,
-	0xeb, 0x0a, 0x03, 0x77, 0xe6, 0x5e, 0x37, 0x9e, 0x91, 0x6a, 0x2d, 0x9f, 0xa9, 0x0c, 0x3b, 0x51,
-	0xbb, 0xf1, 0x3e, 0x75, 0xd6, 0x75, 0xef, 0x78, 0xf9, 0x11, 0x00, 0x00, 0xff, 0xff, 0xbd, 0x52,
-	0x77, 0xb3, 0xdd, 0x01, 0x00, 0x00,
-}
diff --git a/vendor/github.com/golang/dep/gps/internal/pb/source_cache.proto b/vendor/github.com/golang/dep/gps/internal/pb/source_cache.proto
deleted file mode 100644
index 7245318e607652eba1388f2cd77e61b7a8fbff7d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/internal/pb/source_cache.proto
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-syntax = "proto3";
-package pb;
-
-// Constraint is a serializable representation of a gps.Constraint or gps.UnpairedVersion.
-message Constraint {
-	enum Type {
-		Revision = 0;
-		Branch = 1;
-		DefaultBranch = 2;
-		Version = 3;
-		Semver = 4;
-	}
-	Type type = 1;
-	string value = 2;
-	//TODO strongly typed Semver field
-}
-
-// ProjectProperties is a serializable representation of gps.ProjectRoot and gps.ProjectProperties.
-message ProjectProperties {
-	string root = 1;
-	string source = 2;
-	Constraint constraint = 3;
-}
-
-// LockedProject is a serializable representation of gps.LockedProject.
-message LockedProject {
-	string root = 1;
-	string source = 2;
-	Constraint unpairedVersion = 3;
-	string revision = 4;
-	repeated string packages = 5;
-}
diff --git a/vendor/github.com/golang/dep/gps/lock.go b/vendor/github.com/golang/dep/gps/lock.go
deleted file mode 100644
index 1fb909ecf84e2dcc60996f4ebfc621c74c77e55e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/lock.go
+++ /dev/null
@@ -1,237 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"fmt"
-	"sort"
-)
-
-// Lock represents data from a lock file (or however the implementing tool
-// chooses to store it) at a particular version that is relevant to the
-// satisfiability solving process.
-//
-// In general, the information produced by gps on finding a successful
-// solution is all that would be necessary to constitute a lock file, though
-// tools can include whatever other information they want in their storage.
-type Lock interface {
-	// Projects returns the list of LockedProjects contained in the lock data.
-	Projects() []LockedProject
-
-	// The set of imports (and required statements) that were the inputs that
-	// generated this Lock. It is acceptable to return a nil slice from this
-	// method if the information cannot reasonably be made available.
-	InputImports() []string
-}
-
-// sortLockedProjects returns a sorted copy of lps, or itself if already sorted.
-func sortLockedProjects(lps []LockedProject) []LockedProject {
-	if len(lps) <= 1 || sort.SliceIsSorted(lps, func(i, j int) bool {
-		return lps[i].Ident().Less(lps[j].Ident())
-	}) {
-		return lps
-	}
-	cp := make([]LockedProject, len(lps))
-	copy(cp, lps)
-	sort.Slice(cp, func(i, j int) bool {
-		return cp[i].Ident().Less(cp[j].Ident())
-	})
-	return cp
-}
-
-// LockedProject is a single project entry from a lock file. It expresses the
-// project's name, one or both of version and underlying revision, the network
-// URI for accessing it, the path at which it should be placed within a vendor
-// directory, and the packages that are used in it.
-type LockedProject interface {
-	Ident() ProjectIdentifier
-	Version() Version
-	Packages() []string
-	Eq(LockedProject) bool
-	String() string
-}
-
-// lockedProject is the default implementation of LockedProject.
-type lockedProject struct {
-	pi   ProjectIdentifier
-	v    UnpairedVersion
-	r    Revision
-	pkgs []string
-}
-
-// SimpleLock is a helper for tools to easily describe lock data when they know
-// that input imports are unavailable.
-type SimpleLock []LockedProject
-
-var _ Lock = SimpleLock{}
-
-// Projects returns the entire contents of the SimpleLock.
-func (l SimpleLock) Projects() []LockedProject {
-	return l
-}
-
-// InputImports returns a nil string slice, as SimpleLock does not provide a way
-// of capturing string slices.
-func (l SimpleLock) InputImports() []string {
-	return nil
-}
-
-// NewLockedProject creates a new LockedProject struct with a given
-// ProjectIdentifier (name and optional upstream source URL), version. and list
-// of packages required from the project.
-//
-// Note that passing a nil version will cause a panic. This is a correctness
-// measure to ensure that the solver is never exposed to a version-less lock
-// entry. Such a case would be meaningless - the solver would have no choice but
-// to simply dismiss that project. By creating a hard failure case via panic
-// instead, we are trying to avoid inflicting the resulting pain on the user by
-// instead forcing a decision on the Analyzer implementation.
-func NewLockedProject(id ProjectIdentifier, v Version, pkgs []string) LockedProject {
-	if v == nil {
-		panic("must provide a non-nil version to create a LockedProject")
-	}
-
-	lp := lockedProject{
-		pi:   id,
-		pkgs: pkgs,
-	}
-
-	switch tv := v.(type) {
-	case Revision:
-		lp.r = tv
-	case branchVersion:
-		lp.v = tv
-	case semVersion:
-		lp.v = tv
-	case plainVersion:
-		lp.v = tv
-	case versionPair:
-		lp.r = tv.r
-		lp.v = tv.v
-	}
-
-	return lp
-}
-
-// Ident returns the identifier describing the project. This includes both the
-// local name (the root name by which the project is referenced in import paths)
-// and the network name, where the upstream source lives.
-func (lp lockedProject) Ident() ProjectIdentifier {
-	return lp.pi
-}
-
-// Version assembles together whatever version and/or revision data is
-// available into a single Version.
-func (lp lockedProject) Version() Version {
-	if lp.r == "" {
-		return lp.v
-	}
-
-	if lp.v == nil {
-		return lp.r
-	}
-
-	return lp.v.Pair(lp.r)
-}
-
-// Eq checks if two LockedProject instances are equal. The implementation
-// assumes both Packages lists are already sorted lexicographically.
-func (lp lockedProject) Eq(lp2 LockedProject) bool {
-	if lp.pi != lp2.Ident() {
-		return false
-	}
-
-	var uv UnpairedVersion
-	switch tv := lp2.Version().(type) {
-	case Revision:
-		if lp.r != tv {
-			return false
-		}
-	case versionPair:
-		if lp.r != tv.r {
-			return false
-		}
-		uv = tv.v
-	case branchVersion, semVersion, plainVersion:
-		// For now, we're going to say that revisions must be present in order
-		// to indicate equality. We may need to change this later, as it may be
-		// more appropriate to enforce elsewhere.
-		return false
-	}
-
-	v1n := lp.v == nil
-	v2n := uv == nil
-
-	if v1n != v2n {
-		return false
-	}
-
-	if !v1n && !lp.v.Matches(uv) {
-		return false
-	}
-
-	opkgs := lp2.Packages()
-	if len(lp.pkgs) != len(opkgs) {
-		return false
-	}
-
-	for k, v := range lp.pkgs {
-		if opkgs[k] != v {
-			return false
-		}
-	}
-
-	return true
-}
-
-// Packages returns the list of packages from within the LockedProject that are
-// actually used in the import graph. Some caveats:
-//
-//  * The names given are relative to the root import path for the project. If
-//    the root package itself is imported, it's represented as ".".
-//  * Just because a package path isn't included in this list doesn't mean it's
-//    safe to remove - it could contain C files, or other assets, that can't be
-//    safely removed.
-//  * The slice is not a copy. If you need to modify it, copy it first.
-func (lp lockedProject) Packages() []string {
-	return lp.pkgs
-}
-
-func (lp lockedProject) String() string {
-	return fmt.Sprintf("%s@%s with packages: %v",
-		lp.Ident(), lp.Version(), lp.pkgs)
-}
-
-type safeLock struct {
-	p []LockedProject
-	i []string
-}
-
-func (sl safeLock) InputImports() []string {
-	return sl.i
-}
-
-func (sl safeLock) Projects() []LockedProject {
-	return sl.p
-}
-
-// prepLock ensures a lock is prepared and safe for use by the solver. This is
-// mostly about defensively ensuring that no outside routine can modify the lock
-// while the solver is in-flight.
-//
-// This is achieved by copying the lock's data into a new safeLock.
-func prepLock(l Lock) safeLock {
-	pl := l.Projects()
-
-	rl := safeLock{
-		p: make([]LockedProject, len(pl)),
-	}
-	copy(rl.p, pl)
-
-	rl.i = make([]string, len(l.InputImports()))
-	copy(rl.i, l.InputImports())
-
-	return rl
-}
diff --git a/vendor/github.com/golang/dep/gps/manifest.go b/vendor/github.com/golang/dep/gps/manifest.go
deleted file mode 100644
index 3974c95997a65355979cf938a478f7810d0da29e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/manifest.go
+++ /dev/null
@@ -1,133 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import "github.com/golang/dep/gps/pkgtree"
-
-// Manifest represents manifest-type data for a project at a particular version.
-// The constraints expressed in a manifest determine the set of versions that
-// are acceptable to try for a given project.
-//
-// Expressing a constraint in a manifest does not guarantee that a particular
-// dependency will be present. It only guarantees that if packages in the
-// project specified by the dependency are discovered through static analysis of
-// the (transitive) import graph, then they will conform to the constraint.
-//
-// This does entail that manifests can express constraints on projects they do
-// not themselves import. This is by design, but its implications are complex.
-// See the gps docs for more information: https://github.com/sdboyer/gps/wiki
-type Manifest interface {
-	// Returns a list of project-level constraints.
-	DependencyConstraints() ProjectConstraints
-}
-
-// RootManifest extends Manifest to add special controls over solving that are
-// only afforded to the root project.
-type RootManifest interface {
-	Manifest
-
-	// Overrides returns a list of ProjectConstraints that will unconditionally
-	// supersede any ProjectConstraint declarations made in either the root
-	// manifest, or in any dependency's manifest.
-	//
-	// Overrides are a special control afforded only to root manifests. Tool
-	// users should be encouraged to use them only as a last resort; they do not
-	// "play well with others" (that is their express goal), and overreliance on
-	// them can harm the ecosystem as a whole.
-	Overrides() ProjectConstraints
-
-	// IgnoredPackages returns a pkgtree.IgnoredRuleset, which comprises a set
-	// of import paths, or import path patterns, that are to be ignored during
-	// solving. These ignored import paths can be within the root project, or
-	// part of other projects. Ignoring a package means that both it and its
-	// (unique) imports will be disregarded by all relevant solver operations.
-	//
-	// It is an error to include a package in both the ignored and required
-	// sets.
-	IgnoredPackages() *pkgtree.IgnoredRuleset
-
-	// RequiredPackages returns a set of import paths to require. These packages
-	// are required to be present in any solution. The list can include main
-	// packages.
-	//
-	// It is meaningless to specify packages that are within the
-	// PackageTree of the ProjectRoot (though not an error, because the
-	// RootManifest itself does not report a ProjectRoot).
-	//
-	// It is an error to include a package in both the ignored and required
-	// sets.
-	RequiredPackages() map[string]bool
-}
-
-// SimpleManifest is a helper for tools to enumerate manifest data. It's
-// generally intended for ephemeral manifests, such as those Analyzers create on
-// the fly for projects with no manifest metadata, or metadata through a foreign
-// tool's idioms.
-type SimpleManifest struct {
-	Deps ProjectConstraints
-}
-
-var _ Manifest = SimpleManifest{}
-
-// DependencyConstraints returns the project's dependencies.
-func (m SimpleManifest) DependencyConstraints() ProjectConstraints {
-	return m.Deps
-}
-
-// simpleRootManifest exists so that we have a safe value to swap into solver
-// params when a nil Manifest is provided.
-type simpleRootManifest struct {
-	c, ovr ProjectConstraints
-	ig     *pkgtree.IgnoredRuleset
-	req    map[string]bool
-}
-
-func (m simpleRootManifest) DependencyConstraints() ProjectConstraints {
-	return m.c
-}
-func (m simpleRootManifest) Overrides() ProjectConstraints {
-	return m.ovr
-}
-func (m simpleRootManifest) IgnoredPackages() *pkgtree.IgnoredRuleset {
-	return m.ig
-}
-func (m simpleRootManifest) RequiredPackages() map[string]bool {
-	return m.req
-}
-
-// prepManifest ensures a manifest is prepared and safe for use by the solver.
-// This is mostly about ensuring that no outside routine can modify the manifest
-// while the solver is in-flight, but it also filters out any empty
-// ProjectProperties.
-//
-// This is achieved by copying the manifest's data into a new SimpleManifest.
-func prepManifest(m Manifest) SimpleManifest {
-	if m == nil {
-		return SimpleManifest{}
-	}
-
-	deps := m.DependencyConstraints()
-
-	rm := SimpleManifest{
-		Deps: make(ProjectConstraints, len(deps)),
-	}
-
-	for k, d := range deps {
-		// A zero-value ProjectProperties is equivalent to one with an
-		// anyConstraint{} in terms of how the solver will treat it. However, we
-		// normalize between these two by omitting such instances entirely, as
-		// it negates some possibility for false mismatches in input hashing.
-		if d.Constraint == nil {
-			if d.Source == "" {
-				continue
-			}
-			d.Constraint = anyConstraint{}
-		}
-
-		rm.Deps[k] = d
-	}
-
-	return rm
-}
diff --git a/vendor/github.com/golang/dep/gps/maybe_source.go b/vendor/github.com/golang/dep/gps/maybe_source.go
deleted file mode 100644
index ea4b79d59d5ff8c30d4418e8b3364a6b1886d1ff..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/maybe_source.go
+++ /dev/null
@@ -1,208 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"context"
-	"fmt"
-	"net/url"
-	"os"
-	"path/filepath"
-
-	"github.com/Masterminds/vcs"
-)
-
-// A maybeSource represents a set of information that, given some
-// typically-expensive network effort, could be transformed into a proper source.
-//
-// Wrapping these up as their own type achieves two goals:
-//
-// * Allows control over when deduction logic triggers network activity
-// * Makes it easy to attempt multiple URLs for a given import path
-type maybeSource interface {
-	// try tries to set up a source.
-	try(ctx context.Context, cachedir string) (source, error)
-	URL() *url.URL
-	fmt.Stringer
-}
-
-type maybeSources []maybeSource
-
-func (mbs maybeSources) possibleURLs() []*url.URL {
-	urlslice := make([]*url.URL, len(mbs))
-	for i, mb := range mbs {
-		urlslice[i] = mb.URL()
-	}
-	return urlslice
-}
-
-// sourceCachePath returns a url-sanitized source cache dir path.
-func sourceCachePath(cacheDir, sourceURL string) string {
-	return filepath.Join(cacheDir, "sources", sanitizer.Replace(sourceURL))
-}
-
-type maybeGitSource struct {
-	url *url.URL
-}
-
-func (m maybeGitSource) try(ctx context.Context, cachedir string) (source, error) {
-	ustr := m.url.String()
-	path := sourceCachePath(cachedir, ustr)
-
-	r, err := vcs.NewGitRepo(ustr, path)
-	if err != nil {
-		os.RemoveAll(path)
-		r, err = vcs.NewGitRepo(ustr, path)
-		if err != nil {
-			return nil, unwrapVcsErr(err)
-		}
-	}
-
-	return &gitSource{
-		baseVCSSource: baseVCSSource{
-			repo: &gitRepo{r},
-		},
-	}, nil
-}
-
-func (m maybeGitSource) URL() *url.URL {
-	return m.url
-}
-
-func (m maybeGitSource) String() string {
-	return fmt.Sprintf("%T: %s", m, ufmt(m.url))
-}
-
-type maybeGopkginSource struct {
-	// the original gopkg.in import path. this is used to create the on-disk
-	// location to avoid duplicate resource management - e.g., if instances of
-	// a gopkg.in project are accessed via different schemes, or if the
-	// underlying github repository is accessed directly.
-	opath string
-	// the actual upstream URL - always github
-	url *url.URL
-	// the major version to apply for filtering
-	major uint64
-	// whether or not the source package is "unstable"
-	unstable bool
-}
-
-func (m maybeGopkginSource) try(ctx context.Context, cachedir string) (source, error) {
-	// We don't actually need a fully consistent transform into the on-disk path
-	// - just something that's unique to the particular gopkg.in domain context.
-	// So, it's OK to just dumb-join the scheme with the path.
-	aliasURL := m.url.Scheme + "://" + m.opath
-	path := sourceCachePath(cachedir, aliasURL)
-	ustr := m.url.String()
-
-	r, err := vcs.NewGitRepo(ustr, path)
-	if err != nil {
-		os.RemoveAll(path)
-		r, err = vcs.NewGitRepo(ustr, path)
-		if err != nil {
-			return nil, unwrapVcsErr(err)
-		}
-	}
-
-	return &gopkginSource{
-		gitSource: gitSource{
-			baseVCSSource: baseVCSSource{
-				repo: &gitRepo{r},
-			},
-		},
-		major:    m.major,
-		unstable: m.unstable,
-		aliasURL: aliasURL,
-	}, nil
-}
-
-func (m maybeGopkginSource) URL() *url.URL {
-	return &url.URL{
-		Scheme: m.url.Scheme,
-		Path:   m.opath,
-	}
-}
-
-func (m maybeGopkginSource) String() string {
-	return fmt.Sprintf("%T: %s (v%v) %s ", m, m.opath, m.major, ufmt(m.url))
-}
-
-type maybeBzrSource struct {
-	url *url.URL
-}
-
-func (m maybeBzrSource) try(ctx context.Context, cachedir string) (source, error) {
-	ustr := m.url.String()
-	path := sourceCachePath(cachedir, ustr)
-
-	r, err := vcs.NewBzrRepo(ustr, path)
-	if err != nil {
-		os.RemoveAll(path)
-		r, err = vcs.NewBzrRepo(ustr, path)
-		if err != nil {
-			return nil, unwrapVcsErr(err)
-		}
-	}
-
-	return &bzrSource{
-		baseVCSSource: baseVCSSource{
-			repo: &bzrRepo{r},
-		},
-	}, nil
-}
-
-func (m maybeBzrSource) URL() *url.URL {
-	return m.url
-}
-
-func (m maybeBzrSource) String() string {
-	return fmt.Sprintf("%T: %s", m, ufmt(m.url))
-}
-
-type maybeHgSource struct {
-	url *url.URL
-}
-
-func (m maybeHgSource) try(ctx context.Context, cachedir string) (source, error) {
-	ustr := m.url.String()
-	path := sourceCachePath(cachedir, ustr)
-
-	r, err := vcs.NewHgRepo(ustr, path)
-	if err != nil {
-		os.RemoveAll(path)
-		r, err = vcs.NewHgRepo(ustr, path)
-		if err != nil {
-			return nil, unwrapVcsErr(err)
-		}
-	}
-
-	return &hgSource{
-		baseVCSSource: baseVCSSource{
-			repo: &hgRepo{r},
-		},
-	}, nil
-}
-
-func (m maybeHgSource) URL() *url.URL {
-	return m.url
-}
-
-func (m maybeHgSource) String() string {
-	return fmt.Sprintf("%T: %s", m, ufmt(m.url))
-}
-
-// borrow from stdlib
-// more useful string for debugging than fmt's struct printer
-func ufmt(u *url.URL) string {
-	var user, pass interface{}
-	if u.User != nil {
-		user = u.User.Username()
-		if p, ok := u.User.Password(); ok {
-			pass = p
-		}
-	}
-	return fmt.Sprintf("host=%q, path=%q, opaque=%q, scheme=%q, user=%#v, pass=%#v, rawpath=%q, rawq=%q, frag=%q",
-		u.Host, u.Path, u.Opaque, u.Scheme, user, pass, u.RawPath, u.RawQuery, u.Fragment)
-}
diff --git a/vendor/github.com/golang/dep/gps/metrics.go b/vendor/github.com/golang/dep/gps/metrics.go
deleted file mode 100644
index 5462f4bf3fbc7a326c51bbe06464e0f69dc5179e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/metrics.go
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"bytes"
-	"fmt"
-	"log"
-	"sort"
-	"text/tabwriter"
-	"time"
-)
-
-type metrics struct {
-	stack []string
-	times map[string]time.Duration
-	last  time.Time
-}
-
-func newMetrics() *metrics {
-	return &metrics{
-		stack: []string{"other"},
-		times: map[string]time.Duration{
-			"other": 0,
-		},
-		last: time.Now(),
-	}
-}
-
-func (m *metrics) push(name string) {
-	cn := m.stack[len(m.stack)-1]
-	m.times[cn] = m.times[cn] + time.Since(m.last)
-
-	m.stack = append(m.stack, name)
-	m.last = time.Now()
-}
-
-func (m *metrics) pop() {
-	on := m.stack[len(m.stack)-1]
-	m.times[on] = m.times[on] + time.Since(m.last)
-
-	m.stack = m.stack[:len(m.stack)-1]
-	m.last = time.Now()
-}
-
-func (m *metrics) dump(l *log.Logger) {
-	s := make(ndpairs, len(m.times))
-	k := 0
-	for n, d := range m.times {
-		s[k] = ndpair{
-			n: n,
-			d: d,
-		}
-		k++
-	}
-
-	sort.Sort(sort.Reverse(s))
-
-	var tot time.Duration
-	var buf bytes.Buffer
-	w := tabwriter.NewWriter(&buf, 0, 0, 1, ' ', tabwriter.AlignRight)
-	for _, nd := range s {
-		tot += nd.d
-		fmt.Fprintf(w, "\t%s:\t%v\t\n", nd.n, nd.d)
-	}
-	fmt.Fprintf(w, "\n\tTOTAL:\t%v\t\n", tot)
-	w.Flush()
-
-	l.Println("\nSolver wall times by segment:")
-	l.Println((&buf).String())
-}
-
-type ndpair struct {
-	n string
-	d time.Duration
-}
-
-type ndpairs []ndpair
-
-func (s ndpairs) Less(i, j int) bool { return s[i].d < s[j].d }
-func (s ndpairs) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
-func (s ndpairs) Len() int           { return len(s) }
diff --git a/vendor/github.com/golang/dep/gps/paths/paths.go b/vendor/github.com/golang/dep/gps/paths/paths.go
deleted file mode 100644
index af930494e0e718327858310ab779675d8e741ce4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/paths/paths.go
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package paths
-
-import "strings"
-
-// IsStandardImportPath reports whether $GOROOT/src/path should be considered
-// part of the standard distribution. For historical reasons we allow people to add
-// their own code to $GOROOT instead of using $GOPATH, but we assume that
-// code will start with a domain name (dot in the first element).
-// This was lovingly taken from src/cmd/go/pkg.go in Go's code (isStandardImportPath).
-func IsStandardImportPath(path string) bool {
-	i := strings.Index(path, "/")
-	if i < 0 {
-		i = len(path)
-	}
-
-	return !strings.Contains(path[:i], ".")
-}
diff --git a/vendor/github.com/golang/dep/gps/pkgtree/ignored_ruleset.go b/vendor/github.com/golang/dep/gps/pkgtree/ignored_ruleset.go
deleted file mode 100644
index 30b92bd8e97cdc6ffe26c9b12f79f8e62c69328d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/pkgtree/ignored_ruleset.go
+++ /dev/null
@@ -1,111 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package pkgtree
-
-import (
-	"sort"
-	"strings"
-
-	"github.com/armon/go-radix"
-)
-
-// IgnoredRuleset comprises a set of rules for ignoring import paths. It can
-// manage both literal and prefix-wildcard matches.
-type IgnoredRuleset struct {
-	t *radix.Tree
-}
-
-// NewIgnoredRuleset processes a set of strings into an IgnoredRuleset. Strings
-// that end in "*" are treated as wildcards, where any import path with a
-// matching prefix will be ignored. IgnoredRulesets are immutable once created.
-//
-// Duplicate and redundant (i.e. a literal path that has a prefix of a wildcard
-// path) declarations are discarded. Consequently, it is possible that the
-// returned IgnoredRuleset may have a smaller Len() than the input slice.
-func NewIgnoredRuleset(ig []string) *IgnoredRuleset {
-	if len(ig) == 0 {
-		return &IgnoredRuleset{}
-	}
-
-	ir := &IgnoredRuleset{
-		t: radix.New(),
-	}
-
-	// Sort the list of all the ignores in order to ensure that wildcard
-	// precedence is recorded correctly in the trie.
-	sort.Strings(ig)
-	for _, i := range ig {
-		// Skip global ignore and empty string.
-		if i == "*" || i == "" {
-			continue
-		}
-
-		_, wildi, has := ir.t.LongestPrefix(i)
-		// We may not always have a value here, but if we do, then it's a bool.
-		wild, _ := wildi.(bool)
-		// Check if it's a wildcard ignore.
-		if strings.HasSuffix(i, "*") {
-			// Check if it is ineffectual.
-			if has && wild {
-				// Skip ineffectual wildcard ignore.
-				continue
-			}
-			// Create the ignore prefix and insert in the radix tree.
-			ir.t.Insert(i[:len(i)-1], true)
-		} else if !has || !wild {
-			ir.t.Insert(i, false)
-		}
-	}
-
-	if ir.t.Len() == 0 {
-		ir.t = nil
-	}
-
-	return ir
-}
-
-// IsIgnored indicates whether the provided path should be ignored, according to
-// the ruleset.
-func (ir *IgnoredRuleset) IsIgnored(path string) bool {
-	if path == "" || ir == nil || ir.t == nil {
-		return false
-	}
-
-	prefix, wildi, has := ir.t.LongestPrefix(path)
-	return has && (wildi.(bool) || path == prefix)
-}
-
-// Len indicates the number of rules in the ruleset.
-func (ir *IgnoredRuleset) Len() int {
-	if ir == nil || ir.t == nil {
-		return 0
-	}
-
-	return ir.t.Len()
-}
-
-// ToSlice converts the contents of the IgnoredRuleset to a string slice.
-//
-// This operation is symmetrically dual to NewIgnoredRuleset.
-func (ir *IgnoredRuleset) ToSlice() []string {
-	irlen := ir.Len()
-	if irlen == 0 {
-		return nil
-	}
-
-	items := make([]string, 0, irlen)
-	ir.t.Walk(func(s string, v interface{}) bool {
-		if s != "" {
-			if v.(bool) {
-				items = append(items, s+"*")
-			} else {
-				items = append(items, s)
-			}
-		}
-		return false
-	})
-
-	return items
-}
diff --git a/vendor/github.com/golang/dep/gps/pkgtree/pkgtree.go b/vendor/github.com/golang/dep/gps/pkgtree/pkgtree.go
deleted file mode 100644
index 55f2af46ff9e8c98021d74c2963c7bdf0756236b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/pkgtree/pkgtree.go
+++ /dev/null
@@ -1,1099 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package pkgtree
-
-import (
-	"bytes"
-	"fmt"
-	"go/ast"
-	"go/build"
-	"go/parser"
-	gscan "go/scanner"
-	"go/token"
-	"os"
-	"path/filepath"
-	"sort"
-	"strconv"
-	"strings"
-	"unicode"
-)
-
-// Package represents a Go package. It contains a subset of the information
-// go/build.Package does.
-type Package struct {
-	Name        string   // Package name, as declared in the package statement
-	ImportPath  string   // Full import path, including the prefix provided to ListPackages()
-	CommentPath string   // Import path given in the comment on the package statement
-	Imports     []string // Imports from all go and cgo files
-	TestImports []string // Imports from all go test files (in go/build parlance: both TestImports and XTestImports)
-}
-
-// vcsRoots is a set of directories we should not descend into in ListPackages when
-// searching for Go packages
-var vcsRoots = map[string]struct{}{
-	".git": {},
-	".bzr": {},
-	".svn": {},
-	".hg":  {},
-}
-
-// ListPackages reports Go package information about all directories in the tree
-// at or below the provided fileRoot.
-//
-// The importRoot parameter is prepended to the relative path when determining
-// the import path for each package. The obvious case is for something typical,
-// like:
-//
-//  fileRoot = "/home/user/go/src/github.com/foo/bar"
-//  importRoot = "github.com/foo/bar"
-//
-// where the fileRoot and importRoot align. However, if you provide:
-//
-//  fileRoot = "/home/user/workspace/path/to/repo"
-//  importRoot = "github.com/foo/bar"
-//
-// then the root package at path/to/repo will be ascribed import path
-// "github.com/foo/bar", and the package at
-// "/home/user/workspace/path/to/repo/baz" will be "github.com/foo/bar/baz".
-//
-// A PackageTree is returned, which contains the ImportRoot and map of import path
-// to PackageOrErr - each path under the root that exists will have either a
-// Package, or an error describing why the directory is not a valid package.
-func ListPackages(fileRoot, importRoot string) (PackageTree, error) {
-	ptree := PackageTree{
-		ImportRoot: importRoot,
-		Packages:   make(map[string]PackageOrErr),
-	}
-
-	var err error
-	fileRoot, err = filepath.Abs(fileRoot)
-	if err != nil {
-		return PackageTree{}, err
-	}
-
-	err = filepath.Walk(fileRoot, func(wp string, fi os.FileInfo, err error) error {
-		if err != nil && err != filepath.SkipDir {
-			if os.IsPermission(err) {
-				return filepath.SkipDir
-			}
-			return err
-		}
-		if !fi.IsDir() {
-			return nil
-		}
-
-		// Skip dirs that are known to hold non-local/dependency code.
-		//
-		// We don't skip _*, or testdata dirs because, while it may be poor
-		// form, importing them is not a compilation error.
-		switch fi.Name() {
-		case "vendor":
-			return filepath.SkipDir
-		}
-
-		// Skip dirs that are known to be VCS roots.
-		//
-		// Note that there are some pathological edge cases this doesn't cover,
-		// such as a user using Git for version control, but having a package
-		// named "svn" in a directory named ".svn".
-		if _, ok := vcsRoots[fi.Name()]; ok {
-			return filepath.SkipDir
-		}
-
-		{
-			// For Go 1.9 and earlier:
-			//
-			// The entry error is nil when visiting a directory that itself is
-			// untraversable, as it's still governed by the parent directory's
-			// perms. We have to check readability of the dir here, because
-			// otherwise we'll have an empty package entry when we fail to read any
-			// of the dir's contents.
-			//
-			// If we didn't check here, then the next time this closure is called it
-			// would have an err with the same path as is called this time, as only
-			// then will filepath.Walk have attempted to descend into the directory
-			// and encountered an error.
-			var f *os.File
-			f, err = os.Open(wp)
-			if err != nil {
-				if os.IsPermission(err) {
-					return filepath.SkipDir
-				}
-				return err
-			}
-			f.Close()
-		}
-
-		// Compute the import path. Run the result through ToSlash(), so that
-		// windows file paths are normalized to slashes, as is expected of
-		// import paths.
-		ip := filepath.ToSlash(filepath.Join(importRoot, strings.TrimPrefix(wp, fileRoot)))
-
-		// Find all the imports, across all os/arch combos
-		p := &build.Package{
-			Dir:        wp,
-			ImportPath: ip,
-		}
-		err = fillPackage(p)
-
-		if err != nil {
-			switch err.(type) {
-			case gscan.ErrorList, *gscan.Error, *build.NoGoError, *ConflictingImportComments:
-				// Assorted cases in which we've encounter malformed or
-				// nonexistent Go source code.
-				ptree.Packages[ip] = PackageOrErr{
-					Err: err,
-				}
-				return nil
-			default:
-				return err
-			}
-		}
-
-		pkg := Package{
-			ImportPath:  ip,
-			CommentPath: p.ImportComment,
-			Name:        p.Name,
-			Imports:     p.Imports,
-			TestImports: dedupeStrings(p.TestImports, p.XTestImports),
-		}
-
-		if pkg.CommentPath != "" && !strings.HasPrefix(pkg.CommentPath, importRoot) {
-			ptree.Packages[ip] = PackageOrErr{
-				Err: &NonCanonicalImportRoot{
-					ImportRoot: importRoot,
-					Canonical:  pkg.CommentPath,
-				},
-			}
-			return nil
-		}
-
-		// This area has some...fuzzy rules, but check all the imports for
-		// local/relative/dot-ness, and record an error for the package if we
-		// see any.
-		var lim []string
-		for _, imp := range append(pkg.Imports, pkg.TestImports...) {
-			if build.IsLocalImport(imp) {
-				// Do allow the single-dot, at least for now
-				if imp == "." {
-					continue
-				}
-				lim = append(lim, imp)
-			}
-		}
-
-		if len(lim) > 0 {
-			ptree.Packages[ip] = PackageOrErr{
-				Err: &LocalImportsError{
-					Dir:          wp,
-					ImportPath:   ip,
-					LocalImports: lim,
-				},
-			}
-		} else {
-			ptree.Packages[ip] = PackageOrErr{
-				P: pkg,
-			}
-		}
-
-		return nil
-	})
-
-	if err != nil {
-		return PackageTree{}, err
-	}
-
-	return ptree, nil
-}
-
-// fillPackage full of info. Assumes p.Dir is set at a minimum
-func fillPackage(p *build.Package) error {
-	var buildPrefix = "// +build "
-	var buildFieldSplit = func(r rune) bool {
-		return unicode.IsSpace(r) || r == ','
-	}
-
-	gofiles, err := filepath.Glob(filepath.Join(p.Dir, "*.go"))
-	if err != nil {
-		return err
-	}
-
-	if len(gofiles) == 0 {
-		return &build.NoGoError{Dir: p.Dir}
-	}
-
-	var testImports []string
-	var imports []string
-	var importComments []string
-	for _, file := range gofiles {
-		// Skip underscore-led or dot-led files, in keeping with the rest of the toolchain.
-		bPrefix := filepath.Base(file)[0]
-		if bPrefix == '_' || bPrefix == '.' {
-			continue
-		}
-
-		// Skip any directories that happened to get caught by glob
-		if stat, err := os.Stat(file); err == nil && stat.IsDir() {
-			continue
-		}
-
-		pf, err := parser.ParseFile(token.NewFileSet(), file, nil, parser.ImportsOnly|parser.ParseComments)
-		if err != nil {
-			if os.IsPermission(err) {
-				continue
-			}
-			return err
-		}
-		testFile := strings.HasSuffix(file, "_test.go")
-		fname := filepath.Base(file)
-
-		var ignored bool
-		for _, c := range pf.Comments {
-			ic := findImportComment(pf.Name, c)
-			if ic != "" {
-				importComments = append(importComments, ic)
-			}
-			if c.Pos() > pf.Package { // +build comment must come before package
-				continue
-			}
-
-			var ct string
-			for _, cl := range c.List {
-				if strings.HasPrefix(cl.Text, buildPrefix) {
-					ct = cl.Text
-					break
-				}
-			}
-			if ct == "" {
-				continue
-			}
-
-			for _, t := range strings.FieldsFunc(ct[len(buildPrefix):], buildFieldSplit) {
-				// hardcoded (for now) handling for the "ignore" build tag
-				// We "soft" ignore the files tagged with ignore so that we pull in their imports.
-				if t == "ignore" {
-					ignored = true
-				}
-			}
-		}
-
-		if testFile {
-			p.TestGoFiles = append(p.TestGoFiles, fname)
-			if p.Name == "" && !ignored {
-				p.Name = strings.TrimSuffix(pf.Name.Name, "_test")
-			}
-		} else {
-			if p.Name == "" && !ignored {
-				p.Name = pf.Name.Name
-			}
-			p.GoFiles = append(p.GoFiles, fname)
-		}
-
-		for _, is := range pf.Imports {
-			name, err := strconv.Unquote(is.Path.Value)
-			if err != nil {
-				return err // can't happen?
-			}
-			if testFile {
-				testImports = append(testImports, name)
-			} else {
-				imports = append(imports, name)
-			}
-		}
-	}
-	importComments = uniq(importComments)
-	if len(importComments) > 1 {
-		return &ConflictingImportComments{
-			ImportPath:                p.ImportPath,
-			ConflictingImportComments: importComments,
-		}
-	}
-	if len(importComments) > 0 {
-		p.ImportComment = importComments[0]
-	}
-	imports = uniq(imports)
-	testImports = uniq(testImports)
-	p.Imports = imports
-	p.TestImports = testImports
-	return nil
-}
-
-var (
-	slashSlash = []byte("//")
-	slashStar  = []byte("/*")
-	starSlash  = []byte("*/")
-	importKwd  = []byte("import ")
-)
-
-func findImportComment(pkgName *ast.Ident, c *ast.CommentGroup) string {
-	afterPkg := pkgName.NamePos + token.Pos(len(pkgName.Name)) + 1
-	commentSlash := c.List[0].Slash
-	if afterPkg != commentSlash {
-		return ""
-	}
-	text := []byte(c.List[0].Text)
-	switch {
-	case bytes.HasPrefix(text, slashSlash):
-		eol := bytes.IndexByte(text, '\n')
-		if eol < 0 {
-			eol = len(text)
-		}
-		text = text[2:eol]
-	case bytes.HasPrefix(text, slashStar):
-		text = text[2:]
-		end := bytes.Index(text, starSlash)
-		if end < 0 {
-			// malformed comment
-			return ""
-		}
-		text = text[:end]
-		if bytes.IndexByte(text, '\n') >= 0 {
-			// multiline comment, can't be an import comment
-			return ""
-		}
-	}
-	text = bytes.TrimSpace(text)
-	if !bytes.HasPrefix(text, importKwd) {
-		return ""
-	}
-	quotedPath := bytes.TrimSpace(text[len(importKwd):])
-	return string(bytes.Trim(quotedPath, `"`))
-}
-
-// ConflictingImportComments indicates that the package declares more than one
-// different canonical path.
-type ConflictingImportComments struct {
-	ImportPath                string   // An import path referring to this package
-	ConflictingImportComments []string // All distinct "canonical" paths encountered in the package files
-}
-
-func (e *ConflictingImportComments) Error() string {
-	return fmt.Sprintf("import path %s had conflicting import comments: %s",
-		e.ImportPath, quotedPaths(e.ConflictingImportComments))
-}
-
-// NonCanonicalImportRoot reports the situation when the dependee imports a
-// package via something other than the package's declared canonical path.
-type NonCanonicalImportRoot struct {
-	ImportRoot string // A root path that is being used to import a package
-	Canonical  string // A canonical path declared by the package being imported
-}
-
-func (e *NonCanonicalImportRoot) Error() string {
-	return fmt.Sprintf("import root %q is not a prefix for the package's declared canonical path %q",
-		e.ImportRoot, e.Canonical)
-}
-
-func quotedPaths(ps []string) string {
-	quoted := make([]string, 0, len(ps))
-	for _, p := range ps {
-		quoted = append(quoted, fmt.Sprintf("%q", p))
-	}
-	return strings.Join(quoted, ", ")
-}
-
-// LocalImportsError indicates that a package contains at least one relative
-// import that will prevent it from compiling.
-//
-// TODO(sdboyer) add a Files property once we're doing our own per-file parsing
-type LocalImportsError struct {
-	ImportPath   string
-	Dir          string
-	LocalImports []string
-}
-
-func (e *LocalImportsError) Error() string {
-	switch len(e.LocalImports) {
-	case 0:
-		// shouldn't be possible, but just cover the case
-		return fmt.Sprintf("import path %s had bad local imports", e.ImportPath)
-	case 1:
-		return fmt.Sprintf("import path %s had a local import: %q", e.ImportPath, e.LocalImports[0])
-	default:
-		return fmt.Sprintf("import path %s had local imports: %s", e.ImportPath, quotedPaths(e.LocalImports))
-	}
-}
-
-type wm struct {
-	err error
-	ex  map[string]bool
-	in  map[string]bool
-}
-
-// PackageOrErr stores the results of attempting to parse a single directory for
-// Go source code.
-type PackageOrErr struct {
-	P   Package
-	Err error
-}
-
-// ProblemImportError describes the reason that a particular import path is
-// not safely importable.
-type ProblemImportError struct {
-	// The import path of the package with some problem rendering it
-	// unimportable.
-	ImportPath string
-	// The path to the internal package the problem package imports that is the
-	// original cause of this issue. If empty, the package itself is the
-	// problem.
-	Cause []string
-	// The actual error from ListPackages that is undermining importability for
-	// this package.
-	Err error
-}
-
-// Error formats the ProblemImportError as a string, reflecting whether the
-// error represents a direct or transitive problem.
-func (e *ProblemImportError) Error() string {
-	switch len(e.Cause) {
-	case 0:
-		return fmt.Sprintf("%q contains malformed code: %s", e.ImportPath, e.Err.Error())
-	case 1:
-		return fmt.Sprintf("%q imports %q, which contains malformed code: %s", e.ImportPath, e.Cause[0], e.Err.Error())
-	default:
-		return fmt.Sprintf("%q transitively (through %v packages) imports %q, which contains malformed code: %s", e.ImportPath, len(e.Cause)-1, e.Cause[len(e.Cause)-1], e.Err.Error())
-	}
-}
-
-// Helper func to create an error when a package is missing.
-func missingPkgErr(pkg string) error {
-	return fmt.Errorf("no package exists at %q", pkg)
-}
-
-// A PackageTree represents the results of recursively parsing a tree of
-// packages, starting at the ImportRoot. The results of parsing the files in the
-// directory identified by each import path - a Package or an error - are stored
-// in the Packages map, keyed by that import path.
-type PackageTree struct {
-	ImportRoot string
-	Packages   map[string]PackageOrErr
-}
-
-// ToReachMap looks through a PackageTree and computes the list of external
-// import statements (that is, import statements pointing to packages that are
-// not logical children of PackageTree.ImportRoot) that are transitively
-// imported by the internal packages in the tree.
-//
-// main indicates whether (true) or not (false) to include main packages in the
-// analysis. When utilized by gps' solver, main packages are generally excluded
-// from analyzing anything other than the root project, as they necessarily can't
-// be imported.
-//
-// tests indicates whether (true) or not (false) to include imports from test
-// files in packages when computing the reach map.
-//
-// backprop indicates whether errors (an actual PackageOrErr.Err, or an import
-// to a nonexistent internal package) should be backpropagated, transitively
-// "poisoning" all corresponding importers to all importers.
-//
-// ignore is a map of import paths that, if encountered, should be excluded from
-// analysis. This exclusion applies to both internal and external packages. If
-// an external import path is ignored, it is simply omitted from the results.
-//
-// If an internal path is ignored, then it not only does not appear in the final
-// map, but it is also excluded from the transitive calculations of other
-// internal packages.  That is, if you ignore A/foo, then the external package
-// list for all internal packages that import A/foo will not include external
-// packages that are only reachable through A/foo.
-//
-// Visually, this means that, given a PackageTree with root A and packages at A,
-// A/foo, and A/bar, and the following import chain:
-//
-//  A -> A/foo -> A/bar -> B/baz
-//
-// In this configuration, all of A's packages transitively import B/baz, so the
-// returned map would be:
-//
-//  map[string][]string{
-// 	"A": []string{"B/baz"},
-// 	"A/foo": []string{"B/baz"}
-// 	"A/bar": []string{"B/baz"},
-//  }
-//
-// However, if you ignore A/foo, then A's path to B/baz is broken, and A/foo is
-// omitted entirely. Thus, the returned map would be:
-//
-//  map[string][]string{
-// 	"A": []string{},
-// 	"A/bar": []string{"B/baz"},
-//  }
-//
-// If there are no packages to ignore, it is safe to pass a nil map.
-//
-// Finally, if an internal PackageOrErr contains an error, it is always omitted
-// from the result set. If backprop is true, then the error from that internal
-// package will be transitively propagated back to any other internal
-// PackageOrErrs that import it, causing them to also be omitted. So, with the
-// same import chain:
-//
-//  A -> A/foo -> A/bar -> B/baz
-//
-// If A/foo has an error, then it would backpropagate to A, causing both to be
-// omitted, and the returned map to contain only A/bar:
-//
-//  map[string][]string{
-// 	"A/bar": []string{"B/baz"},
-//  }
-//
-// If backprop is false, then errors will not backpropagate to internal
-// importers. So, with an error in A/foo, this would be the result map:
-//
-//  map[string][]string{
-// 	"A": []string{},
-// 	"A/bar": []string{"B/baz"},
-//  }
-func (t PackageTree) ToReachMap(main, tests, backprop bool, ignore *IgnoredRuleset) (ReachMap, map[string]*ProblemImportError) {
-	// world's simplest adjacency list
-	workmap := make(map[string]wm)
-
-	var imps []string
-	for ip, perr := range t.Packages {
-		if perr.Err != nil {
-			workmap[ip] = wm{
-				err: perr.Err,
-			}
-			continue
-		}
-		p := perr.P
-
-		// Skip main packages, unless param says otherwise
-		if p.Name == "main" && !main {
-			continue
-		}
-		// Skip ignored packages
-		if ignore.IsIgnored(ip) {
-			continue
-		}
-
-		// TODO (kris-nova) Disable to get staticcheck passing
-		//imps = imps[:0]
-
-		if tests {
-			imps = dedupeStrings(p.Imports, p.TestImports)
-		} else {
-			imps = p.Imports
-		}
-
-		w := wm{
-			ex: make(map[string]bool),
-			in: make(map[string]bool),
-		}
-
-		// For each import, decide whether it should be ignored, or if it
-		// belongs in the external or internal imports list.
-		for _, imp := range imps {
-			if ignore.IsIgnored(imp) || imp == "." {
-				continue
-			}
-
-			if !eqOrSlashedPrefix(imp, t.ImportRoot) {
-				w.ex[imp] = true
-			} else {
-				w.in[imp] = true
-			}
-		}
-
-		workmap[ip] = w
-	}
-
-	return wmToReach(workmap, backprop)
-}
-
-// Copy copies the PackageTree.
-//
-// This is really only useful as a defensive measure to prevent external state
-// mutations.
-func (t PackageTree) Copy() PackageTree {
-	return PackageTree{
-		ImportRoot: t.ImportRoot,
-		Packages:   CopyPackages(t.Packages, nil),
-	}
-}
-
-// CopyPackages returns a deep copy of p, optionally modifying the entries with fn.
-func CopyPackages(p map[string]PackageOrErr, fn func(string, PackageOrErr) (string, PackageOrErr)) map[string]PackageOrErr {
-	p2 := make(map[string]PackageOrErr, len(p))
-	// Walk through and count up the total number of string slice elements we'll
-	// need, then allocate them all at once.
-	strcount := 0
-	for _, poe := range p {
-		strcount = strcount + len(poe.P.Imports) + len(poe.P.TestImports)
-	}
-	pool := make([]string, strcount)
-
-	for path, poe := range p {
-		var poe2 PackageOrErr
-
-		if poe.Err != nil {
-			poe2.Err = poe.Err
-		} else {
-			poe2.P = poe.P
-			il, til := len(poe.P.Imports), len(poe.P.TestImports)
-			if il > 0 {
-				poe2.P.Imports, pool = pool[:il], pool[il:]
-				copy(poe2.P.Imports, poe.P.Imports)
-			}
-			if til > 0 {
-				poe2.P.TestImports, pool = pool[:til], pool[til:]
-				copy(poe2.P.TestImports, poe.P.TestImports)
-			}
-		}
-		if fn != nil {
-			path, poe2 = fn(path, poe2)
-		}
-		p2[path] = poe2
-	}
-
-	return p2
-}
-
-// TrimHiddenPackages returns a new PackageTree where packages that are ignored,
-// or both hidden and unreachable, have been removed.
-//
-// The package list is partitioned into two sets: visible, and hidden, where
-// packages are considered hidden if they are within or beneath directories
-// with:
-//
-//  * leading dots
-//  * leading underscores
-//  * the exact name "testdata"
-//
-// Packages in the hidden set are dropped from the returned PackageTree, unless
-// they are transitively reachable from imports in the visible set.
-//
-// The "main", "tests" and "ignored" parameters have the same behavior as with
-// PackageTree.ToReachMap(): the first two determine, respectively, whether
-// imports from main packages, and imports from tests, should be considered for
-// reachability checks. Setting 'main' to true will additionally result in main
-// packages being trimmed.
-//
-// "ignored" designates import paths, or patterns of import paths, where the
-// corresponding packages should be excluded from reachability checks, if
-// encountered. Ignored packages are also removed from the final set.
-//
-// Note that it is not recommended to call this method if the goal is to obtain
-// a set of tree-external imports; calling ToReachMap and FlattenFn will achieve
-// the same effect.
-func (t PackageTree) TrimHiddenPackages(main, tests bool, ignore *IgnoredRuleset) PackageTree {
-	rm, pie := t.ToReachMap(main, tests, false, ignore)
-	t2 := t.Copy()
-	preserve := make(map[string]bool)
-
-	for pkg, ie := range rm {
-		if pkgFilter(pkg) && !ignore.IsIgnored(pkg) {
-			preserve[pkg] = true
-			for _, in := range ie.Internal {
-				preserve[in] = true
-			}
-		}
-	}
-
-	// Also process the problem map, as packages in the visible set with errors
-	// need to be included in the return values.
-	for pkg := range pie {
-		if pkgFilter(pkg) && !ignore.IsIgnored(pkg) {
-			preserve[pkg] = true
-		}
-	}
-
-	for ip := range t.Packages {
-		if !preserve[ip] {
-			delete(t2.Packages, ip)
-		}
-	}
-
-	return t2
-}
-
-// wmToReach takes an internal "workmap" constructed by
-// PackageTree.ExternalReach(), transitively walks (via depth-first traversal)
-// all internal imports until they reach an external path or terminate, then
-// translates the results into a slice of external imports for each internal
-// pkg.
-//
-// It drops any packages with errors, and - if backprop is true - backpropagates
-// those errors, causing internal packages that (transitively) import other
-// internal packages having errors to also be dropped.
-func wmToReach(workmap map[string]wm, backprop bool) (ReachMap, map[string]*ProblemImportError) {
-	// Uses depth-first exploration to compute reachability into external
-	// packages, dropping any internal packages on "poisoned paths" - a path
-	// containing a package with an error, or with a dep on an internal package
-	// that's missing.
-
-	const (
-		white uint8 = iota
-		grey
-		black
-	)
-
-	colors := make(map[string]uint8)
-	exrsets := make(map[string]map[string]struct{})
-	inrsets := make(map[string]map[string]struct{})
-	errmap := make(map[string]*ProblemImportError)
-
-	// poison is a helper func to eliminate specific reachsets from exrsets and
-	// inrsets, and populate error information along the way.
-	poison := func(path []string, err *ProblemImportError) {
-		for k, ppkg := range path {
-			delete(exrsets, ppkg)
-			delete(inrsets, ppkg)
-
-			// Duplicate the err for this package
-			kerr := &ProblemImportError{
-				ImportPath: ppkg,
-				Err:        err.Err,
-			}
-
-			// Shift the slice bounds on the incoming err.Cause.
-			//
-			// This check will only be false on the final path element when
-			// entering via poisonWhite, where the last pkg is the underlying
-			// cause of the problem, and is thus expected to have an empty Cause
-			// slice.
-			if k+1 < len(err.Cause) {
-				// reuse the slice
-				kerr.Cause = err.Cause[k+1:]
-			}
-
-			// Both black and white cases can have the final element be a
-			// package that doesn't exist. If that's the case, don't write it
-			// directly to the errmap, as presence in the errmap indicates the
-			// package was present in the input PackageTree.
-			if k == len(path)-1 {
-				if _, exists := workmap[path[len(path)-1]]; !exists {
-					continue
-				}
-			}
-
-			// Direct writing to the errmap means that if multiple errors affect
-			// a given package, only the last error visited will be reported.
-			// But that should be sufficient; presumably, the user can
-			// iteratively resolve the errors.
-			errmap[ppkg] = kerr
-		}
-	}
-
-	// poisonWhite wraps poison for error recording in the white-poisoning case,
-	// where we're constructing a new poison path.
-	poisonWhite := func(path []string) {
-		err := &ProblemImportError{
-			Cause: make([]string, len(path)),
-		}
-		copy(err.Cause, path)
-
-		// find the tail err
-		tail := path[len(path)-1]
-		if w, exists := workmap[tail]; exists {
-			// If we make it to here, the dfe guarantees that the workmap
-			// will contain an error for this pkg.
-			err.Err = w.err
-		} else {
-			err.Err = missingPkgErr(tail)
-		}
-
-		poison(path, err)
-	}
-	// poisonBlack wraps poison for error recording in the black-poisoning case,
-	// where we're connecting to an existing poison path.
-	poisonBlack := func(path []string, from string) {
-		// Because the outer dfe loop ensures we never directly re-visit a pkg
-		// that was already completed (black), we don't have to defend against
-		// an empty path here.
-
-		fromErr, exists := errmap[from]
-		// FIXME: It should not be possible for fromErr to not exist,
-		// See issue https://github.com/golang/dep/issues/351
-		// This is a temporary solution to avoid a panic.
-		if !exists {
-			fromErr = &ProblemImportError{
-				Err: fmt.Errorf("unknown error for %q, if you get this error see https://github.com/golang/dep/issues/351", from),
-			}
-		}
-		err := &ProblemImportError{
-			Err:   fromErr.Err,
-			Cause: make([]string, 0, len(path)+len(fromErr.Cause)+1),
-		}
-		err.Cause = append(err.Cause, path...)
-		err.Cause = append(err.Cause, from)
-		err.Cause = append(err.Cause, fromErr.Cause...)
-
-		poison(path, err)
-	}
-
-	var dfe func(string, []string) bool
-
-	// dfe is the depth-first-explorer that computes a safe, error-free external
-	// reach map.
-	//
-	// pkg is the import path of the pkg currently being visited; path is the
-	// stack of parent packages we've visited to get to pkg. The return value
-	// indicates whether the level completed successfully (true) or if it was
-	// poisoned (false).
-	dfe = func(pkg string, path []string) bool {
-		// white is the zero value of uint8, which is what we want if the pkg
-		// isn't in the colors map, so this works fine
-		switch colors[pkg] {
-		case white:
-			// first visit to this pkg; mark it as in-process (grey)
-			colors[pkg] = grey
-
-			// make sure it's present and w/out errs
-			w, exists := workmap[pkg]
-
-			// Push current visitee onto the path slice. Passing path through
-			// recursion levels as a value has the effect of auto-popping the
-			// slice, while also giving us safe memory reuse.
-			path = append(path, pkg)
-
-			if !exists || w.err != nil {
-				if backprop {
-					// Does not exist or has an err; poison self and all parents
-					poisonWhite(path)
-				} else if exists {
-					// Only record something in the errmap if there's actually a
-					// package there, per the semantics of the errmap
-					errmap[pkg] = &ProblemImportError{
-						ImportPath: pkg,
-						Err:        w.err,
-					}
-				}
-
-				// we know we're done here, so mark it black
-				colors[pkg] = black
-				return false
-			}
-			// pkg exists with no errs; start internal and external reachsets for it.
-			rs := make(map[string]struct{})
-			irs := make(map[string]struct{})
-
-			// Dump this package's external pkgs into its own reachset. Separate
-			// loop from the parent dump to avoid nested map loop lookups.
-			for ex := range w.ex {
-				rs[ex] = struct{}{}
-			}
-			exrsets[pkg] = rs
-			// Same deal for internal imports
-			for in := range w.in {
-				irs[in] = struct{}{}
-			}
-			inrsets[pkg] = irs
-
-			// Push this pkg's imports into all parent reachsets. Not all
-			// parents will necessarily have a reachset; none, some, or all
-			// could have been poisoned by a different path than what we're on
-			// right now.
-			for _, ppkg := range path {
-				if prs, exists := exrsets[ppkg]; exists {
-					for ex := range w.ex {
-						prs[ex] = struct{}{}
-					}
-				}
-
-				if prs, exists := inrsets[ppkg]; exists {
-					for in := range w.in {
-						prs[in] = struct{}{}
-					}
-				}
-			}
-
-			// Now, recurse until done, or a false bubbles up, indicating the
-			// path is poisoned.
-			for in := range w.in {
-				// It's possible, albeit weird, for a package to import itself.
-				// If we try to visit self, though, then it erroneously poisons
-				// the path, as it would be interpreted as grey. In practice,
-				// self-imports are a no-op, so we can just skip it.
-				if in == pkg {
-					continue
-				}
-
-				clean := dfe(in, path)
-				if !clean && backprop {
-					// Path is poisoned. If we're backpropagating errors, then
-					// the  reachmap for the visitee was already deleted by the
-					// path we're returning from; mark the visitee black, then
-					// return false to bubble up the poison. This is OK to do
-					// early, before exploring all internal imports, because the
-					// outer loop visits all internal packages anyway.
-					//
-					// In fact, stopping early is preferable - white subpackages
-					// won't have to iterate pointlessly through a parent path
-					// with no reachset.
-					colors[pkg] = black
-					return false
-				}
-			}
-
-			// Fully done with this pkg; no transitive problems.
-			colors[pkg] = black
-			return true
-
-		case grey:
-			// Import cycles can arise in healthy situations through xtests, so
-			// allow them for now.
-			//
-			// FIXME(sdboyer) we need an improved model that allows us to
-			// accurately reject real import cycles.
-			return true
-			// grey means an import cycle; guaranteed badness right here. You'd
-			// hope we never encounter it in a dependency (really? you published
-			// that code?), but we have to defend against it.
-			//colors[pkg] = black
-			//poison(append(path, pkg)) // poison self and parents
-
-		case black:
-			// black means we're revisiting a package that was already
-			// completely explored. If it has an entry in exrsets, it completed
-			// successfully. If not, it was poisoned, and we need to bubble the
-			// poison back up.
-			rs, exists := exrsets[pkg]
-			if !exists {
-				if backprop {
-					// just poison parents; self was necessarily already poisoned
-					poisonBlack(path, pkg)
-				}
-				return false
-			}
-			// If external reachset existed, internal must (even if empty)
-			irs := inrsets[pkg]
-
-			// It's good; pull over the imports from its reachset into all
-			// non-poisoned parent reachsets
-			for _, ppkg := range path {
-				if prs, exists := exrsets[ppkg]; exists {
-					for ex := range rs {
-						prs[ex] = struct{}{}
-					}
-				}
-
-				if prs, exists := inrsets[ppkg]; exists {
-					for in := range irs {
-						prs[in] = struct{}{}
-					}
-				}
-			}
-			return true
-
-		default:
-			panic(fmt.Sprintf("invalid color marker %v for %s", colors[pkg], pkg))
-		}
-	}
-
-	// Run the depth-first exploration.
-	//
-	// Don't bother computing graph sources, this straightforward loop works
-	// comparably well, and fits nicely with an escape hatch in the dfe.
-	var path []string
-	for pkg := range workmap {
-		// However, at least check that the package isn't already fully visited;
-		// this saves a bit of time and implementation complexity inside the
-		// closures.
-		if colors[pkg] != black {
-			dfe(pkg, path)
-		}
-	}
-
-	type ie struct {
-		Internal, External []string
-	}
-
-	// Flatten exrsets into reachmap
-	rm := make(ReachMap)
-	for pkg, rs := range exrsets {
-		rlen := len(rs)
-		if rlen == 0 {
-			rm[pkg] = ie{}
-			continue
-		}
-
-		edeps := make([]string, 0, rlen)
-		for opkg := range rs {
-			edeps = append(edeps, opkg)
-		}
-
-		sort.Strings(edeps)
-
-		sets := rm[pkg]
-		sets.External = edeps
-		rm[pkg] = sets
-	}
-
-	// Flatten inrsets into reachmap
-	for pkg, rs := range inrsets {
-		rlen := len(rs)
-		if rlen == 0 {
-			continue
-		}
-
-		ideps := make([]string, 0, rlen)
-		for opkg := range rs {
-			ideps = append(ideps, opkg)
-		}
-
-		sort.Strings(ideps)
-
-		sets := rm[pkg]
-		sets.Internal = ideps
-		rm[pkg] = sets
-	}
-
-	return rm, errmap
-}
-
-// eqOrSlashedPrefix checks to see if the prefix is either equal to the string,
-// or that it is a prefix and the next char in the string is "/".
-func eqOrSlashedPrefix(s, prefix string) bool {
-	if !strings.HasPrefix(s, prefix) {
-		return false
-	}
-
-	prflen, pathlen := len(prefix), len(s)
-	return prflen == pathlen || strings.Index(s[prflen:], "/") == 0
-}
-
-// helper func to merge, dedupe, and sort strings
-func dedupeStrings(s1, s2 []string) (r []string) {
-	dedupe := make(map[string]bool)
-
-	if len(s1) > 0 && len(s2) > 0 {
-		for _, i := range s1 {
-			dedupe[i] = true
-		}
-		for _, i := range s2 {
-			dedupe[i] = true
-		}
-
-		for i := range dedupe {
-			r = append(r, i)
-		}
-		// And then re-sort them
-		sort.Strings(r)
-	} else if len(s1) > 0 {
-		r = s1
-	} else if len(s2) > 0 {
-		r = s2
-	}
-
-	return
-}
-
-func uniq(a []string) []string {
-	if a == nil {
-		return make([]string, 0)
-	}
-	var s string
-	var i int
-	if !sort.StringsAreSorted(a) {
-		sort.Strings(a)
-	}
-	for _, t := range a {
-		if t != s {
-			a[i] = t
-			i++
-			s = t
-		}
-	}
-	return a[:i]
-}
diff --git a/vendor/github.com/golang/dep/gps/pkgtree/reachmap.go b/vendor/github.com/golang/dep/gps/pkgtree/reachmap.go
deleted file mode 100644
index 27af5e90ba069b8745bfa616852bca408cc8874c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/pkgtree/reachmap.go
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package pkgtree
-
-import (
-	"sort"
-	"strings"
-)
-
-// ReachMap maps a set of import paths (keys) to the sets of transitively
-// reachable tree-internal packages, and all the tree-external packages
-// reachable through those internal packages.
-//
-// See PackageTree.ToReachMap() for more information.
-type ReachMap map[string]struct {
-	Internal, External []string
-}
-
-// Eliminate import paths with any elements having leading dots, leading
-// underscores, or testdata. If these are internally reachable (which is
-// a no-no, but possible), any external imports will have already been
-// pulled up through ExternalReach. The key here is that we don't want
-// to treat such packages as themselves being sources.
-func pkgFilter(pkg string) bool {
-	for _, elem := range strings.Split(pkg, "/") {
-		if strings.HasPrefix(elem, ".") || strings.HasPrefix(elem, "_") || elem == "testdata" {
-			return false
-		}
-	}
-	return true
-}
-
-// FlattenFn flattens a reachmap into a sorted, deduplicated list of all the
-// external imports named by its contained packages, but excludes imports coming
-// from packages with disallowed patterns in their names: any path element with
-// a leading dot, a leading underscore, with the name "testdata".
-//
-// Imports for which exclude returns true will be left out.
-func (rm ReachMap) FlattenFn(exclude func(string) bool) []string {
-	exm := make(map[string]struct{})
-	for pkg, ie := range rm {
-		if pkgFilter(pkg) {
-			for _, ex := range ie.External {
-				if exclude != nil && exclude(ex) {
-					continue
-				}
-				exm[ex] = struct{}{}
-			}
-		}
-	}
-
-	if len(exm) == 0 {
-		return []string{}
-	}
-
-	ex := make([]string, 0, len(exm))
-	for p := range exm {
-		ex = append(ex, p)
-	}
-
-	sort.Strings(ex)
-	return ex
-}
diff --git a/vendor/github.com/golang/dep/gps/prune.go b/vendor/github.com/golang/dep/gps/prune.go
deleted file mode 100644
index a0a68fadf3c894236df3bfc8b15b3cc7c0025387..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/prune.go
+++ /dev/null
@@ -1,436 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"bytes"
-	"fmt"
-	"os"
-	"path/filepath"
-	"sort"
-	"strings"
-
-	"github.com/golang/dep/internal/fs"
-	"github.com/pkg/errors"
-)
-
-// PruneOptions represents the pruning options used to write the dependecy tree.
-type PruneOptions uint8
-
-const (
-	// PruneNestedVendorDirs indicates if nested vendor directories should be pruned.
-	PruneNestedVendorDirs PruneOptions = 1 << iota
-	// PruneUnusedPackages indicates if unused Go packages should be pruned.
-	PruneUnusedPackages
-	// PruneNonGoFiles indicates if non-Go files should be pruned.
-	// Files matching licenseFilePrefixes and legalFileSubstrings are kept in
-	// an attempt to comply with legal requirements.
-	PruneNonGoFiles
-	// PruneGoTestFiles indicates if Go test files should be pruned.
-	PruneGoTestFiles
-)
-
-// PruneOptionSet represents trinary distinctions for each of the types of
-// prune rules (as expressed via PruneOptions): nested vendor directories,
-// unused packages, non-go files, and go test files.
-//
-// The three-way distinction is between "none", "true", and "false", represented
-// by uint8 values of 0, 1, and 2, respectively.
-//
-// This trinary distinction is necessary in order to record, with full fidelity,
-// a cascading tree of pruning values, as expressed in CascadingPruneOptions; a
-// simple boolean cannot delineate between "false" and "none".
-type PruneOptionSet struct {
-	NestedVendor   uint8
-	UnusedPackages uint8
-	NonGoFiles     uint8
-	GoTests        uint8
-}
-
-// CascadingPruneOptions is a set of rules for pruning a dependency tree.
-//
-// The DefaultOptions are the global default pruning rules, expressed as a
-// single PruneOptions bitfield. These global rules will cascade down to
-// individual project rules, unless superseded.
-type CascadingPruneOptions struct {
-	DefaultOptions    PruneOptions
-	PerProjectOptions map[ProjectRoot]PruneOptionSet
-}
-
-// ParsePruneOptions extracts PruneOptions from a string using the standard
-// encoding.
-func ParsePruneOptions(input string) (PruneOptions, error) {
-	var po PruneOptions
-	for _, char := range input {
-		switch char {
-		case 'T':
-			po |= PruneGoTestFiles
-		case 'U':
-			po |= PruneUnusedPackages
-		case 'N':
-			po |= PruneNonGoFiles
-		case 'V':
-			po |= PruneNestedVendorDirs
-		default:
-			return 0, errors.Errorf("unknown pruning code %q", char)
-		}
-	}
-
-	return po, nil
-}
-
-func (po PruneOptions) String() string {
-	var buf bytes.Buffer
-
-	if po&PruneNonGoFiles != 0 {
-		fmt.Fprintf(&buf, "N")
-	}
-	if po&PruneUnusedPackages != 0 {
-		fmt.Fprintf(&buf, "U")
-	}
-	if po&PruneGoTestFiles != 0 {
-		fmt.Fprintf(&buf, "T")
-	}
-	if po&PruneNestedVendorDirs != 0 {
-		fmt.Fprintf(&buf, "V")
-	}
-
-	return buf.String()
-}
-
-// PruneOptionsFor returns the PruneOptions bits for the given project,
-// indicating which pruning rules should be applied to the project's code.
-//
-// It computes the cascade from default to project-specific options (if any) on
-// the fly.
-func (o CascadingPruneOptions) PruneOptionsFor(pr ProjectRoot) PruneOptions {
-	po, has := o.PerProjectOptions[pr]
-	if !has {
-		return o.DefaultOptions
-	}
-
-	ops := o.DefaultOptions
-	if po.NestedVendor != 0 {
-		if po.NestedVendor == 1 {
-			ops |= PruneNestedVendorDirs
-		} else {
-			ops &^= PruneNestedVendorDirs
-		}
-	}
-
-	if po.UnusedPackages != 0 {
-		if po.UnusedPackages == 1 {
-			ops |= PruneUnusedPackages
-		} else {
-			ops &^= PruneUnusedPackages
-		}
-	}
-
-	if po.NonGoFiles != 0 {
-		if po.NonGoFiles == 1 {
-			ops |= PruneNonGoFiles
-		} else {
-			ops &^= PruneNonGoFiles
-		}
-	}
-
-	if po.GoTests != 0 {
-		if po.GoTests == 1 {
-			ops |= PruneGoTestFiles
-		} else {
-			ops &^= PruneGoTestFiles
-		}
-	}
-
-	return ops
-}
-
-func defaultCascadingPruneOptions() CascadingPruneOptions {
-	return CascadingPruneOptions{
-		DefaultOptions:    PruneNestedVendorDirs,
-		PerProjectOptions: map[ProjectRoot]PruneOptionSet{},
-	}
-}
-
-var (
-	// licenseFilePrefixes is a list of name prefixes for license files.
-	licenseFilePrefixes = []string{
-		"license",
-		"licence",
-		"copying",
-		"unlicense",
-		"copyright",
-		"copyleft",
-	}
-	// legalFileSubstrings contains substrings that are likey part of a legal
-	// declaration file.
-	legalFileSubstrings = []string{
-		"authors",
-		"contributors",
-		"legal",
-		"notice",
-		"disclaimer",
-		"patent",
-		"third-party",
-		"thirdparty",
-	}
-)
-
-// PruneProject remove excess files according to the options passed, from
-// the lp directory in baseDir.
-func PruneProject(baseDir string, lp LockedProject, options PruneOptions) error {
-	fsState, err := deriveFilesystemState(baseDir)
-
-	if err != nil {
-		return errors.Wrap(err, "could not derive filesystem state")
-	}
-
-	if (options & PruneNestedVendorDirs) != 0 {
-		if err := pruneVendorDirs(fsState); err != nil {
-			return errors.Wrapf(err, "failed to prune nested vendor directories")
-		}
-	}
-
-	if (options & PruneUnusedPackages) != 0 {
-		if _, err := pruneUnusedPackages(lp, fsState); err != nil {
-			return errors.Wrap(err, "failed to prune unused packages")
-		}
-	}
-
-	if (options & PruneNonGoFiles) != 0 {
-		if err := pruneNonGoFiles(fsState); err != nil {
-			return errors.Wrap(err, "failed to prune non-Go files")
-		}
-	}
-
-	if (options & PruneGoTestFiles) != 0 {
-		if err := pruneGoTestFiles(fsState); err != nil {
-			return errors.Wrap(err, "failed to prune Go test files")
-		}
-	}
-
-	if err := deleteEmptyDirs(fsState); err != nil {
-		return errors.Wrap(err, "could not delete empty dirs")
-	}
-
-	return nil
-}
-
-// pruneVendorDirs deletes all nested vendor directories within baseDir.
-func pruneVendorDirs(fsState filesystemState) error {
-	for _, dir := range fsState.dirs {
-		if filepath.Base(dir) == "vendor" {
-			err := os.RemoveAll(filepath.Join(fsState.root, dir))
-			if err != nil && !os.IsNotExist(err) {
-				return err
-			}
-		}
-	}
-
-	for _, link := range fsState.links {
-		if filepath.Base(link.path) == "vendor" {
-			err := os.Remove(filepath.Join(fsState.root, link.path))
-			if err != nil && !os.IsNotExist(err) {
-				return err
-			}
-		}
-	}
-
-	return nil
-}
-
-// pruneUnusedPackages deletes unimported packages found in fsState.
-// Determining whether packages are imported or not is based on the passed LockedProject.
-func pruneUnusedPackages(lp LockedProject, fsState filesystemState) (map[string]interface{}, error) {
-	unusedPackages := calculateUnusedPackages(lp, fsState)
-	toDelete := collectUnusedPackagesFiles(fsState, unusedPackages)
-
-	for _, path := range toDelete {
-		if err := os.Remove(path); err != nil && !os.IsNotExist(err) {
-			return nil, err
-		}
-	}
-
-	return unusedPackages, nil
-}
-
-// calculateUnusedPackages generates a list of unused packages in lp.
-func calculateUnusedPackages(lp LockedProject, fsState filesystemState) map[string]interface{} {
-	unused := make(map[string]interface{})
-	imported := make(map[string]interface{})
-
-	for _, pkg := range lp.Packages() {
-		imported[pkg] = nil
-	}
-
-	// Add the root package if it's not imported.
-	if _, ok := imported["."]; !ok {
-		unused["."] = nil
-	}
-
-	for _, dirPath := range fsState.dirs {
-		pkg := filepath.ToSlash(dirPath)
-
-		if _, ok := imported[pkg]; !ok {
-			unused[pkg] = nil
-		}
-	}
-
-	return unused
-}
-
-// collectUnusedPackagesFiles returns a slice of all files in the unused
-// packages based on fsState.
-func collectUnusedPackagesFiles(fsState filesystemState, unusedPackages map[string]interface{}) []string {
-	// TODO(ibrasho): is this useful?
-	files := make([]string, 0, len(unusedPackages))
-
-	for _, path := range fsState.files {
-		// Keep preserved files.
-		if isPreservedFile(filepath.Base(path)) {
-			continue
-		}
-
-		pkg := filepath.ToSlash(filepath.Dir(path))
-
-		if _, ok := unusedPackages[pkg]; ok {
-			files = append(files, filepath.Join(fsState.root, path))
-		}
-	}
-
-	return files
-}
-
-func isSourceFile(path string) bool {
-	ext := fileExt(path)
-
-	// Refer to: https://github.com/golang/go/blob/release-branch.go1.9/src/go/build/build.go#L750
-	switch ext {
-	case ".go":
-		return true
-	case ".c":
-		return true
-	case ".cc", ".cpp", ".cxx":
-		return true
-	case ".m":
-		return true
-	case ".h", ".hh", ".hpp", ".hxx":
-		return true
-	case ".f", ".F", ".for", ".f90":
-		return true
-	case ".s":
-		return true
-	case ".S":
-		return true
-	case ".swig":
-		return true
-	case ".swigcxx":
-		return true
-	case ".syso":
-		return true
-	}
-	return false
-}
-
-// pruneNonGoFiles delete all non-Go files existing in fsState.
-//
-// Files matching licenseFilePrefixes and legalFileSubstrings are not pruned.
-func pruneNonGoFiles(fsState filesystemState) error {
-	toDelete := make([]string, 0, len(fsState.files)/4)
-
-	for _, path := range fsState.files {
-		if isSourceFile(path) {
-			continue
-		}
-
-		// Ignore preserved files.
-		if isPreservedFile(filepath.Base(path)) {
-			continue
-		}
-
-		toDelete = append(toDelete, filepath.Join(fsState.root, path))
-	}
-
-	for _, path := range toDelete {
-		if err := os.Remove(path); err != nil && !os.IsNotExist(err) {
-			return err
-		}
-	}
-
-	return nil
-}
-
-// isPreservedFile checks if the file name indicates that the file should be
-// preserved based on licenseFilePrefixes or legalFileSubstrings.
-// This applies only to non-source files.
-func isPreservedFile(name string) bool {
-	if isSourceFile(name) {
-		return false
-	}
-
-	name = strings.ToLower(name)
-
-	for _, prefix := range licenseFilePrefixes {
-		if strings.HasPrefix(name, prefix) {
-			return true
-		}
-	}
-
-	for _, substring := range legalFileSubstrings {
-		if strings.Contains(name, substring) {
-			return true
-		}
-	}
-
-	return false
-}
-
-// pruneGoTestFiles deletes all Go test files (*_test.go) in fsState.
-func pruneGoTestFiles(fsState filesystemState) error {
-	toDelete := make([]string, 0, len(fsState.files)/2)
-
-	for _, path := range fsState.files {
-		if strings.HasSuffix(path, "_test.go") {
-			toDelete = append(toDelete, filepath.Join(fsState.root, path))
-		}
-	}
-
-	for _, path := range toDelete {
-		if err := os.Remove(path); err != nil && !os.IsNotExist(err) {
-			return err
-		}
-	}
-
-	return nil
-}
-
-func deleteEmptyDirs(fsState filesystemState) error {
-	sort.Sort(sort.Reverse(sort.StringSlice(fsState.dirs)))
-
-	for _, dir := range fsState.dirs {
-		path := filepath.Join(fsState.root, dir)
-
-		notEmpty, err := fs.IsNonEmptyDir(path)
-		if err != nil {
-			return err
-		}
-
-		if !notEmpty {
-			if err := os.Remove(path); err != nil && !os.IsNotExist(err) {
-				return err
-			}
-		}
-	}
-
-	return nil
-}
-
-func fileExt(name string) string {
-	i := strings.LastIndex(name, ".")
-	if i < 0 {
-		return ""
-	}
-	return name[i:]
-}
diff --git a/vendor/github.com/golang/dep/gps/rootdata.go b/vendor/github.com/golang/dep/gps/rootdata.go
deleted file mode 100644
index ee78bdf265c1adb0ef802094d3d37aa6cb185852..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/rootdata.go
+++ /dev/null
@@ -1,204 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"sort"
-
-	"github.com/armon/go-radix"
-	"github.com/golang/dep/gps/pkgtree"
-)
-
-// rootdata holds static data and constraining rules from the root project for
-// use in solving.
-type rootdata struct {
-	// Path to the root of the project on which gps is operating.
-	dir string
-
-	// Ruleset for ignored import paths.
-	ir *pkgtree.IgnoredRuleset
-
-	// Map of packages to require.
-	req map[string]bool
-
-	// A ProjectConstraints map containing the validated (guaranteed non-empty)
-	// overrides declared by the root manifest.
-	ovr ProjectConstraints
-
-	// A map of the ProjectRoot (local names) that should be allowed to change
-	chng map[ProjectRoot]struct{}
-
-	// Flag indicating all projects should be allowed to change, without regard
-	// for lock.
-	chngall bool
-
-	// A map of the project names listed in the root's lock.
-	rlm map[ProjectRoot]LockedProject
-
-	// A defensively copied instance of the root manifest.
-	rm SimpleManifest
-
-	// A defensively copied instance of the root lock.
-	rl safeLock
-
-	// A defensively copied instance of params.RootPackageTree
-	rpt pkgtree.PackageTree
-
-	// The ProjectAnalyzer to use for all GetManifestAndLock calls.
-	an ProjectAnalyzer
-}
-
-// externalImportList returns a list of the unique imports from the root data.
-// Ignores and requires are taken into consideration, stdlib is excluded, and
-// errors within the local set of package are not backpropagated.
-func (rd rootdata) externalImportList(stdLibFn func(string) bool) []string {
-	rm, _ := rd.rpt.ToReachMap(true, true, false, rd.ir)
-	reach := rm.FlattenFn(stdLibFn)
-
-	// If there are any requires, slide them into the reach list, as well.
-	if len(rd.req) > 0 {
-		// Make a map of imports that are both in the import path list and the
-		// required list to avoid duplication.
-		skip := make(map[string]bool, len(rd.req))
-		for _, r := range reach {
-			if rd.req[r] {
-				skip[r] = true
-			}
-		}
-
-		for r := range rd.req {
-			if !skip[r] {
-				reach = append(reach, r)
-			}
-		}
-	}
-
-	sort.Strings(reach)
-	return reach
-}
-
-func (rd rootdata) getApplicableConstraints(stdLibFn func(string) bool) []workingConstraint {
-	pc := rd.rm.DependencyConstraints()
-
-	// Ensure that overrides which aren't in the combined pc map already make it
-	// in. Doing so makes input hashes equal in more useful cases.
-	for pr, pp := range rd.ovr {
-		if _, has := pc[pr]; !has {
-			cpp := ProjectProperties{
-				Constraint: pp.Constraint,
-				Source:     pp.Source,
-			}
-			if cpp.Constraint == nil {
-				cpp.Constraint = anyConstraint{}
-			}
-
-			pc[pr] = cpp
-		}
-	}
-
-	// Now override them all to produce a consolidated workingConstraint slice
-	combined := rd.ovr.overrideAll(pc)
-
-	type wccount struct {
-		count int
-		wc    workingConstraint
-	}
-	xt := radix.New()
-	for _, wc := range combined {
-		xt.Insert(string(wc.Ident.ProjectRoot), wccount{wc: wc})
-	}
-
-	// Walk all dep import paths we have to consider and mark the corresponding
-	// wc entry in the trie, if any
-	for _, im := range rd.externalImportList(stdLibFn) {
-		if stdLibFn(im) {
-			continue
-		}
-
-		if pre, v, match := xt.LongestPrefix(im); match && isPathPrefixOrEqual(pre, im) {
-			wcc := v.(wccount)
-			wcc.count++
-			xt.Insert(pre, wcc)
-		}
-	}
-
-	var ret []workingConstraint
-
-	xt.Walk(func(s string, v interface{}) bool {
-		wcc := v.(wccount)
-		if wcc.count > 0 {
-			ret = append(ret, wcc.wc)
-		}
-		return false
-	})
-
-	return ret
-}
-
-func (rd rootdata) combineConstraints() []workingConstraint {
-	return rd.ovr.overrideAll(rd.rm.DependencyConstraints())
-}
-
-// needVersionListFor indicates whether we need a version list for a given
-// project root, based solely on general solver inputs (no constraint checking
-// required). Assuming the argument is not the root project itself, this will be
-// true if any of the following conditions hold:
-//
-//  - ChangeAll is on
-//  - The project is not in the lock
-//  - The project is in the lock, but is also in the list of projects to change
-func (rd rootdata) needVersionsFor(pr ProjectRoot) bool {
-	if rd.isRoot(pr) {
-		return false
-	}
-
-	if rd.chngall {
-		return true
-	}
-
-	if _, has := rd.rlm[pr]; !has {
-		// not in the lock
-		return true
-	}
-
-	if _, has := rd.chng[pr]; has {
-		// in the lock, but marked for change
-		return true
-	}
-	// in the lock, not marked for change
-	return false
-
-}
-
-func (rd rootdata) isRoot(pr ProjectRoot) bool {
-	return pr == ProjectRoot(rd.rpt.ImportRoot)
-}
-
-// rootAtom creates an atomWithPackages that represents the root project.
-func (rd rootdata) rootAtom() atomWithPackages {
-	a := atom{
-		id: ProjectIdentifier{
-			ProjectRoot: ProjectRoot(rd.rpt.ImportRoot),
-		},
-		// This is a hack so that the root project doesn't have a nil version.
-		// It's sort of OK because the root never makes it out into the results.
-		// We may need a more elegant solution if we discover other side
-		// effects, though.
-		v: rootRev,
-	}
-
-	list := make([]string, 0, len(rd.rpt.Packages))
-	for path, pkg := range rd.rpt.Packages {
-		if pkg.Err != nil && !rd.ir.IsIgnored(path) {
-			list = append(list, path)
-		}
-	}
-	sort.Strings(list)
-
-	return atomWithPackages{
-		a:  a,
-		pl: list,
-	}
-}
diff --git a/vendor/github.com/golang/dep/gps/satisfy.go b/vendor/github.com/golang/dep/gps/satisfy.go
deleted file mode 100644
index 29e4f57164b4ad6e634023730b5084ec1ffb9b2d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/satisfy.go
+++ /dev/null
@@ -1,337 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-// check performs constraint checks on the provided atom. The set of checks
-// differ slightly depending on whether the atom is pkgonly, or if it's the
-// entire project being added for the first time.
-//
-// The goal is to determine whether selecting the atom would result in a state
-// where all the solver requirements are still satisfied.
-func (s *solver) check(a atomWithPackages, pkgonly bool) error {
-	pa := a.a
-	if nilpa == pa {
-		// This shouldn't be able to happen, but if it does, it unequivocally
-		// indicates a logical bug somewhere, so blowing up is preferable
-		panic("canary - checking version of empty ProjectAtom")
-	}
-
-	s.mtr.push("satisfy")
-	var err error
-	defer func() {
-		if err != nil {
-			s.traceInfo(err)
-		}
-		s.mtr.pop()
-	}()
-
-	// If we're pkgonly, then base atom was already determined to be allowable,
-	// so we can skip the checkAtomAllowable step.
-	if !pkgonly {
-		if err = s.checkAtomAllowable(pa); err != nil {
-			return err
-		}
-	}
-
-	if err = s.checkRequiredPackagesExist(a); err != nil {
-		return err
-	}
-
-	var deps []completeDep
-	_, deps, err = s.getImportsAndConstraintsOf(a)
-	if err != nil {
-		// An err here would be from the package fetcher; pass it straight back
-		return err
-	}
-
-	// TODO(sdboyer) this deps list contains only packages not already selected
-	// from the target atom (assuming one is selected at all). It's fine for
-	// now, but won't be good enough when we get around to doing static
-	// analysis.
-	for _, dep := range deps {
-		if err = s.checkIdentMatches(a, dep); err != nil {
-			return err
-		}
-		if err = s.checkRootCaseConflicts(a, dep); err != nil {
-			return err
-		}
-		if err = s.checkDepsConstraintsAllowable(a, dep); err != nil {
-			return err
-		}
-		if err = s.checkDepsDisallowsSelected(a, dep); err != nil {
-			return err
-		}
-		if err = s.checkRevisionExists(a, dep); err != nil {
-			return err
-		}
-		if err = s.checkPackageImportsFromDepExist(a, dep); err != nil {
-			return err
-		}
-
-		// TODO(sdboyer) add check that fails if adding this atom would create a loop
-	}
-
-	return nil
-}
-
-// checkAtomAllowable ensures that an atom itself is acceptable with respect to
-// the constraints established by the current solution.
-func (s *solver) checkAtomAllowable(pa atom) error {
-	constraint := s.sel.getConstraint(pa.id)
-	if constraint.Matches(pa.v) {
-		return nil
-	}
-	// TODO(sdboyer) collect constraint failure reason (wait...aren't we, below?)
-
-	deps := s.sel.getDependenciesOn(pa.id)
-	var failparent []dependency
-	for _, dep := range deps {
-		if !dep.dep.Constraint.Matches(pa.v) {
-			s.fail(dep.depender.id)
-			failparent = append(failparent, dep)
-		}
-	}
-
-	err := &versionNotAllowedFailure{
-		goal:       pa,
-		failparent: failparent,
-		c:          constraint,
-	}
-
-	return err
-}
-
-// checkRequiredPackagesExist ensures that all required packages enumerated by
-// existing dependencies on this atom are actually present in the atom.
-func (s *solver) checkRequiredPackagesExist(a atomWithPackages) error {
-	ptree, err := s.b.ListPackages(a.a.id, a.a.v)
-	if err != nil {
-		// TODO(sdboyer) handle this more gracefully
-		return err
-	}
-
-	deps := s.sel.getDependenciesOn(a.a.id)
-	fp := make(map[string]errDeppers)
-	// We inspect these in a bit of a roundabout way, in order to incrementally
-	// build up the failure we'd return if there is, indeed, a missing package.
-	// TODO(sdboyer) rechecking all of these every time is wasteful. Is there a shortcut?
-	for _, dep := range deps {
-		for _, pkg := range dep.dep.pl {
-			if errdep, seen := fp[pkg]; seen {
-				errdep.deppers = append(errdep.deppers, dep.depender)
-				fp[pkg] = errdep
-			} else {
-				perr, has := ptree.Packages[pkg]
-				if !has || perr.Err != nil {
-					fp[pkg] = errDeppers{
-						err:     perr.Err,
-						deppers: []atom{dep.depender},
-					}
-				}
-			}
-		}
-	}
-
-	if len(fp) > 0 {
-		return &checkeeHasProblemPackagesFailure{
-			goal:    a.a,
-			failpkg: fp,
-		}
-	}
-	return nil
-}
-
-// checkDepsConstraintsAllowable checks that the constraints of an atom on a
-// given dep are valid with respect to existing constraints.
-func (s *solver) checkDepsConstraintsAllowable(a atomWithPackages, cdep completeDep) error {
-	dep := cdep.workingConstraint
-	constraint := s.sel.getConstraint(dep.Ident)
-	// Ensure the constraint expressed by the dep has at least some possible
-	// intersection with the intersection of existing constraints.
-	if constraint.MatchesAny(dep.Constraint) {
-		return nil
-	}
-
-	siblings := s.sel.getDependenciesOn(dep.Ident)
-	// No admissible versions - visit all siblings and identify the disagreement(s)
-	var failsib []dependency
-	var nofailsib []dependency
-	for _, sibling := range siblings {
-		if !sibling.dep.Constraint.MatchesAny(dep.Constraint) {
-			s.fail(sibling.depender.id)
-			failsib = append(failsib, sibling)
-		} else {
-			nofailsib = append(nofailsib, sibling)
-		}
-	}
-
-	return &disjointConstraintFailure{
-		goal:      dependency{depender: a.a, dep: cdep},
-		failsib:   failsib,
-		nofailsib: nofailsib,
-		c:         constraint,
-	}
-}
-
-// checkDepsDisallowsSelected ensures that an atom's constraints on a particular
-// dep are not incompatible with the version of that dep that's already been
-// selected.
-func (s *solver) checkDepsDisallowsSelected(a atomWithPackages, cdep completeDep) error {
-	dep := cdep.workingConstraint
-	selected, exists := s.sel.selected(dep.Ident)
-	if exists && !dep.Constraint.Matches(selected.a.v) {
-		s.fail(dep.Ident)
-
-		return &constraintNotAllowedFailure{
-			goal: dependency{depender: a.a, dep: cdep},
-			v:    selected.a.v,
-		}
-	}
-	return nil
-}
-
-// checkIdentMatches ensures that the LocalName of a dep introduced by an atom,
-// has the same Source as what's already been selected (assuming anything's been
-// selected).
-//
-// In other words, this ensures that the solver never simultaneously selects two
-// identifiers with the same local name, but that disagree about where their
-// network source is.
-func (s *solver) checkIdentMatches(a atomWithPackages, cdep completeDep) error {
-	dep := cdep.workingConstraint
-	if curid, has := s.sel.getIdentFor(dep.Ident.ProjectRoot); has && !curid.equiv(dep.Ident) {
-		deps := s.sel.getDependenciesOn(a.a.id)
-		// Fail all the other deps, as there's no way atom can ever be
-		// compatible with them
-		for _, d := range deps {
-			s.fail(d.depender.id)
-		}
-
-		return &sourceMismatchFailure{
-			shared:   dep.Ident.ProjectRoot,
-			sel:      deps,
-			current:  curid.normalizedSource(),
-			mismatch: dep.Ident.normalizedSource(),
-			prob:     a.a,
-		}
-	}
-
-	return nil
-}
-
-// checkRootCaseConflicts ensures that the ProjectRoot specified in the completeDep
-// does not have case conflicts with any existing dependencies.
-//
-// We only need to check the ProjectRoot, rather than any packages therein, as
-// the later check for package existence is case-sensitive.
-func (s *solver) checkRootCaseConflicts(a atomWithPackages, cdep completeDep) error {
-	pr := cdep.workingConstraint.Ident.ProjectRoot
-	hasConflict, current := s.sel.findCaseConflicts(pr)
-	if !hasConflict {
-		return nil
-	}
-
-	curid, _ := s.sel.getIdentFor(current)
-	deps := s.sel.getDependenciesOn(curid)
-	for _, d := range deps {
-		s.fail(d.depender.id)
-	}
-
-	// If a project has multiple packages that import each other, we treat that
-	// as establishing a canonical case variant for the ProjectRoot. It's possible,
-	// however, that that canonical variant is not the same one that others
-	// imported it under. If that's the situation, then we'll have arrived here
-	// when visiting the project, not its dependers, having misclassified its
-	// internal imports as external. That means the atomWithPackages will
-	// be the wrong case variant induced by the importers, and the cdep will be
-	// a link pointing back at the canonical case variant.
-	//
-	// If this is the case, use a special failure, wrongCaseFailure, that
-	// makes a stronger statement as to the correctness of case variants.
-	//
-	// TODO(sdboyer) This approach to marking failure is less than great, as
-	// this will mark the current atom as failed, as well, causing the
-	// backtracker to work through it. While that could prove fruitful, it's
-	// quite likely just to be wasted effort. Addressing this - if that's a good
-	// idea - would entail creating another path back out of checking to enable
-	// backjumping directly to the incorrect importers.
-	if current == a.a.id.ProjectRoot {
-		return &wrongCaseFailure{
-			correct: pr,
-			goal:    dependency{depender: a.a, dep: cdep},
-			badcase: deps,
-		}
-	}
-
-	return &caseMismatchFailure{
-		goal:    dependency{depender: a.a, dep: cdep},
-		current: current,
-		failsib: deps,
-	}
-}
-
-// checkPackageImportsFromDepExist ensures that, if the dep is already selected,
-// the newly-required set of packages being placed on it exist and are valid.
-func (s *solver) checkPackageImportsFromDepExist(a atomWithPackages, cdep completeDep) error {
-	sel, is := s.sel.selected(cdep.workingConstraint.Ident)
-	if !is {
-		// dep is not already selected; nothing to do
-		return nil
-	}
-
-	ptree, err := s.b.ListPackages(sel.a.id, sel.a.v)
-	if err != nil {
-		// TODO(sdboyer) handle this more gracefully
-		return err
-	}
-
-	e := &depHasProblemPackagesFailure{
-		goal: dependency{
-			depender: a.a,
-			dep:      cdep,
-		},
-		v:    sel.a.v,
-		prob: make(map[string]error),
-	}
-
-	for _, pkg := range cdep.pl {
-		perr, has := ptree.Packages[pkg]
-		if !has || perr.Err != nil {
-			if has {
-				e.prob[pkg] = perr.Err
-			} else {
-				e.prob[pkg] = nil
-			}
-		}
-	}
-
-	if len(e.prob) > 0 {
-		return e
-	}
-	return nil
-}
-
-// checkRevisionExists ensures that if a dependency is constrained by a
-// revision, that that revision actually exists.
-func (s *solver) checkRevisionExists(a atomWithPackages, cdep completeDep) error {
-	r, isrev := cdep.Constraint.(Revision)
-	if !isrev {
-		// Constraint is not a revision; nothing to do
-		return nil
-	}
-
-	present, _ := s.b.RevisionPresentIn(cdep.Ident, r)
-	if present {
-		return nil
-	}
-
-	return &nonexistentRevisionFailure{
-		goal: dependency{
-			depender: a.a,
-			dep:      cdep,
-		},
-		r: r,
-	}
-}
diff --git a/vendor/github.com/golang/dep/gps/selection.go b/vendor/github.com/golang/dep/gps/selection.go
deleted file mode 100644
index c8d41a9c47336c8c0c271ae211346a95773fb22d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/selection.go
+++ /dev/null
@@ -1,264 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-type selection struct {
-	// projects is a stack of the atoms that have currently been selected by the
-	// solver. It can also be thought of as the vertex set of the current
-	// selection graph.
-	projects []selected
-	// deps records the set of dependers on a given ProjectRoot. It is
-	// essentially an adjacency list of *inbound* edges.
-	deps map[ProjectRoot][]dependency
-	// foldRoots records a mapping from a canonical, case-folded form of
-	// ProjectRoots to the particular case variant that has currently been
-	// selected.
-	foldRoots map[string]ProjectRoot
-}
-
-type selected struct {
-	a     atomWithPackages
-	first bool
-}
-
-func (s *selection) getDependenciesOn(id ProjectIdentifier) []dependency {
-	if deps, exists := s.deps[id.ProjectRoot]; exists {
-		return deps
-	}
-
-	return nil
-}
-
-// getIdentFor returns the ProjectIdentifier (so, the network name) currently in
-// use for the provided ProjectRoot.
-//
-// If no dependencies are present yet that designate a network name for
-// the provided root, this will return an empty ProjectIdentifier and false.
-func (s *selection) getIdentFor(pr ProjectRoot) (ProjectIdentifier, bool) {
-	deps := s.getDependenciesOn(ProjectIdentifier{ProjectRoot: pr})
-	if len(deps) == 0 {
-		return ProjectIdentifier{}, false
-	}
-
-	// For now, at least, the solver maintains (assumes?) the invariant that
-	// whatever is first in the deps list decides the net name to be used.
-	return deps[0].dep.Ident, true
-}
-
-// pushSelection pushes a new atomWithPackages onto the selection stack, along
-// with an indicator as to whether this selection indicates a new project *and*
-// packages, or merely some new packages on a project that was already selected.
-func (s *selection) pushSelection(a atomWithPackages, pkgonly bool) {
-	s.projects = append(s.projects, selected{
-		a:     a,
-		first: !pkgonly,
-	})
-}
-
-// popSelection removes and returns the last atomWithPackages from the selection
-// stack, along with an indication of whether that element was the first from
-// that project - that is, if it represented an addition of both a project and
-// one or more packages to the overall selection.
-func (s *selection) popSelection() (atomWithPackages, bool) {
-	var sel selected
-	sel, s.projects = s.projects[len(s.projects)-1], s.projects[:len(s.projects)-1]
-	return sel.a, sel.first
-}
-
-// findCaseConflicts checks to see if the given ProjectRoot has a
-// case-insensitive overlap with another, different ProjectRoot that's already
-// been picked.
-func (s *selection) findCaseConflicts(pr ProjectRoot) (bool, ProjectRoot) {
-	if current, has := s.foldRoots[toFold(string(pr))]; has && pr != current {
-		return true, current
-	}
-
-	return false, ""
-}
-
-func (s *selection) pushDep(dep dependency) {
-	pr := dep.dep.Ident.ProjectRoot
-	deps := s.deps[pr]
-	if len(deps) == 0 {
-		s.foldRoots[toFold(string(pr))] = pr
-	}
-
-	s.deps[pr] = append(deps, dep)
-}
-
-func (s *selection) popDep(id ProjectIdentifier) (dep dependency) {
-	deps := s.deps[id.ProjectRoot]
-	dlen := len(deps)
-	if dlen == 1 {
-		delete(s.foldRoots, toFold(string(id.ProjectRoot)))
-	}
-
-	dep, s.deps[id.ProjectRoot] = deps[dlen-1], deps[:dlen-1]
-	return dep
-}
-
-func (s *selection) depperCount(id ProjectIdentifier) int {
-	return len(s.deps[id.ProjectRoot])
-}
-
-// Compute a list of the unique packages within the given ProjectIdentifier that
-// have dependers, and the number of dependers they have.
-func (s *selection) getRequiredPackagesIn(id ProjectIdentifier) map[string]int {
-	// TODO(sdboyer) this is horribly inefficient to do on the fly; we need a method to
-	// precompute it on pushing a new dep, and preferably with an immut
-	// structure so that we can pop with zero cost.
-	uniq := make(map[string]int)
-	for _, dep := range s.deps[id.ProjectRoot] {
-		for _, pkg := range dep.dep.pl {
-			uniq[pkg] = uniq[pkg] + 1
-		}
-	}
-
-	return uniq
-}
-
-// Suppress unused linting warning.
-var _ = (*selection)(nil).getSelectedPackagesIn
-var _ = (*selection)(nil).getProjectImportMap
-
-// Compute a list of the unique packages within the given ProjectIdentifier that
-// are currently selected, and the number of times each package has been
-// independently selected.
-func (s *selection) getSelectedPackagesIn(id ProjectIdentifier) map[string]int {
-	// TODO(sdboyer) this is horribly inefficient to do on the fly; we need a method to
-	// precompute it on pushing a new dep, and preferably with an immut
-	// structure so that we can pop with zero cost.
-	uniq := make(map[string]int)
-	for _, p := range s.projects {
-		if p.a.a.id.eq(id) {
-			for _, pkg := range p.a.pl {
-				uniq[pkg] = uniq[pkg] + 1
-			}
-		}
-	}
-
-	return uniq
-}
-
-// getProjectImportMap extracts the set of package imports from the used
-// packages in each selected project.
-func (s *selection) getProjectImportMap() map[ProjectRoot]map[string]struct{} {
-	importMap := make(map[ProjectRoot]map[string]struct{})
-	for _, edges := range s.deps {
-		for _, edge := range edges {
-			var curmap map[string]struct{}
-			if imap, has := importMap[edge.depender.id.ProjectRoot]; !has {
-				curmap = make(map[string]struct{})
-			} else {
-				curmap = imap
-			}
-
-			for _, pl := range edge.dep.pl {
-				curmap[pl] = struct{}{}
-			}
-			importMap[edge.depender.id.ProjectRoot] = curmap
-		}
-	}
-
-	return importMap
-}
-
-func (s *selection) getConstraint(id ProjectIdentifier) Constraint {
-	deps, exists := s.deps[id.ProjectRoot]
-	if !exists || len(deps) == 0 {
-		return any
-	}
-
-	// TODO(sdboyer) recomputing this sucks and is quite wasteful. Precompute/cache it
-	// on changes to the constraint set, instead.
-
-	// The solver itself is expected to maintain the invariant that all the
-	// constraints kept here collectively admit a non-empty set of versions. We
-	// assume this is the case here while assembling a composite constraint.
-
-	// Start with the open set
-	var ret Constraint = any
-	for _, dep := range deps {
-		ret = ret.Intersect(dep.dep.Constraint)
-	}
-
-	return ret
-}
-
-// selected checks to see if the given ProjectIdentifier has been selected, and
-// if so, returns the corresponding atomWithPackages.
-//
-// It walks the projects selection list from front to back and returns the first
-// match it finds, which means it will always and only return the base selection
-// of the project, without any additional package selections that may or may not
-// have happened later.
-func (s *selection) selected(id ProjectIdentifier) (atomWithPackages, bool) {
-	for _, p := range s.projects {
-		if p.a.a.id.ProjectRoot == id.ProjectRoot {
-			return p.a, true
-		}
-	}
-
-	return atomWithPackages{a: nilpa}, false
-}
-
-type unselected struct {
-	sl  []bimodalIdentifier
-	cmp func(i, j int) bool
-}
-
-func (u unselected) Len() int {
-	return len(u.sl)
-}
-
-func (u unselected) Less(i, j int) bool {
-	return u.cmp(i, j)
-}
-
-func (u unselected) Swap(i, j int) {
-	u.sl[i], u.sl[j] = u.sl[j], u.sl[i]
-}
-
-func (u *unselected) Push(x interface{}) {
-	u.sl = append(u.sl, x.(bimodalIdentifier))
-}
-
-func (u *unselected) Pop() (v interface{}) {
-	v, u.sl = u.sl[len(u.sl)-1], u.sl[:len(u.sl)-1]
-	return v
-}
-
-// remove takes a bimodalIdentifier out of the priority queue, if present. Only
-// the first matching bmi will be removed.
-//
-// There are two events that cause this to be called: bmi selection, when the
-// bmi at the front of the queue is removed, and backtracking, when a bmi
-// becomes unnecessary because the dependency that induced it was backtracked
-// and popped off.
-//
-// The worst case for both of these is O(n), but in practice the first case is
-// O(1), as we iterate the queue from front to back.
-func (u *unselected) remove(bmi bimodalIdentifier) {
-	plen := len(bmi.pl)
-outer:
-	for i, pi := range u.sl {
-		if pi.id.eq(bmi.id) && len(pi.pl) == plen {
-			// Simple slice comparison - assume they're both sorted the same
-			for i2, pkg := range pi.pl {
-				if bmi.pl[i2] != pkg {
-					continue outer
-				}
-			}
-
-			if i == len(u.sl)-1 {
-				// if we're on the last element, just pop, no splice
-				u.sl = u.sl[:len(u.sl)-1]
-			} else {
-				u.sl = append(u.sl[:i], u.sl[i+1:]...)
-			}
-			break
-		}
-	}
-}
diff --git a/vendor/github.com/golang/dep/gps/solution.go b/vendor/github.com/golang/dep/gps/solution.go
deleted file mode 100644
index 3612a1305f66819a53ebfc45ba015cc7cc956166..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/solution.go
+++ /dev/null
@@ -1,178 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"context"
-	"fmt"
-	"os"
-	"path/filepath"
-	"sync"
-
-	"github.com/pkg/errors"
-	"golang.org/x/sync/errgroup"
-)
-
-// A Solution is returned by a solver run. It is mostly just a Lock, with some
-// additional methods that report information about the solve run.
-type Solution interface {
-	Lock
-	// The name of the ProjectAnalyzer used in generating this solution.
-	AnalyzerName() string
-	// The version of the ProjectAnalyzer used in generating this solution.
-	AnalyzerVersion() int
-	// The name of the Solver used in generating this solution.
-	SolverName() string
-	// The version of the Solver used in generating this solution.
-	SolverVersion() int
-	Attempts() int
-}
-
-type solution struct {
-	// The projects selected by the solver.
-	p []LockedProject
-
-	// The import inputs that created this solution (including requires).
-	i []string
-
-	// The number of solutions that were attempted
-	att int
-
-	// The analyzer info
-	analyzerInfo ProjectAnalyzerInfo
-
-	// The solver used in producing this solution
-	solv Solver
-}
-
-// WriteProgress informs about the progress of WriteDepTree.
-type WriteProgress struct {
-	Count   int
-	Total   int
-	LP      LockedProject
-	Failure bool
-}
-
-func (p WriteProgress) String() string {
-	msg := "Wrote"
-	if p.Failure {
-		msg = "Failed to write"
-	}
-	return fmt.Sprintf("(%d/%d) %s %s@%s", p.Count, p.Total, msg, p.LP.Ident(), p.LP.Version())
-}
-
-const concurrentWriters = 16
-
-// WriteDepTree takes a basedir, a Lock and a RootPruneOptions and exports all
-// the projects listed in the lock to the appropriate target location within basedir.
-//
-// If the goal is to populate a vendor directory, basedir should be the absolute
-// path to that vendor directory, not its parent (a project root, typically).
-//
-// It requires a SourceManager to do the work. Prune options are read from the
-// passed manifest.
-//
-// If onWrite is not nil, it will be called after each project write. Calls are ordered and atomic.
-func WriteDepTree(basedir string, l Lock, sm SourceManager, co CascadingPruneOptions, onWrite func(WriteProgress)) error {
-	if l == nil {
-		return fmt.Errorf("must provide non-nil Lock to WriteDepTree")
-	}
-
-	if err := os.MkdirAll(basedir, 0777); err != nil {
-		return err
-	}
-
-	g, ctx := errgroup.WithContext(context.TODO())
-	lps := l.Projects()
-	sem := make(chan struct{}, concurrentWriters)
-	var cnt struct {
-		sync.Mutex
-		i int
-	}
-
-	for i := range lps {
-		p := lps[i] // per-iteration copy
-
-		g.Go(func() error {
-			err := func() error {
-				select {
-				case sem <- struct{}{}:
-					defer func() { <-sem }()
-				case <-ctx.Done():
-					return ctx.Err()
-				}
-
-				ident := p.Ident()
-				projectRoot := string(ident.ProjectRoot)
-				to := filepath.FromSlash(filepath.Join(basedir, projectRoot))
-
-				if err := sm.ExportProject(ctx, ident, p.Version(), to); err != nil {
-					return errors.Wrapf(err, "failed to export %s", projectRoot)
-				}
-
-				err := PruneProject(to, p, co.PruneOptionsFor(ident.ProjectRoot))
-				if err != nil {
-					return errors.Wrapf(err, "failed to prune %s", projectRoot)
-				}
-
-				return ctx.Err()
-			}()
-
-			switch err {
-			case context.Canceled, context.DeadlineExceeded:
-				// Don't report "secondary" errors.
-			default:
-				if onWrite != nil {
-					// Increment and call atomically to prevent re-ordering.
-					cnt.Lock()
-					cnt.i++
-					onWrite(WriteProgress{
-						Count:   cnt.i,
-						Total:   len(lps),
-						LP:      p,
-						Failure: err != nil,
-					})
-					cnt.Unlock()
-				}
-			}
-
-			return err
-		})
-	}
-
-	err := g.Wait()
-	if err != nil {
-		os.RemoveAll(basedir)
-	}
-	return errors.Wrap(err, "failed to write dep tree")
-}
-
-func (r solution) Projects() []LockedProject {
-	return r.p
-}
-
-func (r solution) InputImports() []string {
-	return r.i
-}
-
-func (r solution) Attempts() int {
-	return r.att
-}
-
-func (r solution) AnalyzerName() string {
-	return r.analyzerInfo.Name
-}
-
-func (r solution) AnalyzerVersion() int {
-	return r.analyzerInfo.Version
-}
-
-func (r solution) SolverName() string {
-	return r.solv.Name()
-}
-
-func (r solution) SolverVersion() int {
-	return r.solv.Version()
-}
diff --git a/vendor/github.com/golang/dep/gps/solve_failures.go b/vendor/github.com/golang/dep/gps/solve_failures.go
deleted file mode 100644
index 05daedd707997f2ae80b4ab661c8f4265767a79d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/solve_failures.go
+++ /dev/null
@@ -1,572 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"bytes"
-	"fmt"
-	"sort"
-	"strings"
-)
-
-func a2vs(a atom) string {
-	if a.v == rootRev || a.v == nil {
-		return "(root)"
-	}
-
-	return fmt.Sprintf("%s@%s", a.id, a.v)
-}
-
-type traceError interface {
-	traceString() string
-}
-
-type noVersionError struct {
-	pn    ProjectIdentifier
-	fails []failedVersion
-}
-
-func (e *noVersionError) Error() string {
-	if len(e.fails) == 0 {
-		return fmt.Sprintf("No versions found for project %q.", e.pn.ProjectRoot)
-	}
-
-	var buf bytes.Buffer
-	fmt.Fprintf(&buf, "No versions of %s met constraints:", e.pn.ProjectRoot)
-	for _, f := range e.fails {
-		fmt.Fprintf(&buf, "\n\t%s: %s", f.v, f.f.Error())
-	}
-
-	return buf.String()
-}
-
-func (e *noVersionError) traceString() string {
-	if len(e.fails) == 0 {
-		return fmt.Sprintf("No versions found")
-	}
-
-	var buf bytes.Buffer
-	fmt.Fprintf(&buf, "No versions of %s met constraints:", e.pn.ProjectRoot)
-	for _, f := range e.fails {
-		if te, ok := f.f.(traceError); ok {
-			fmt.Fprintf(&buf, "\n  %s: %s", f.v, te.traceString())
-		} else {
-			fmt.Fprintf(&buf, "\n  %s: %s", f.v, f.f.Error())
-		}
-	}
-
-	return buf.String()
-}
-
-// caseMismatchFailure occurs when there are import paths that differ only by
-// case. The compiler disallows this case.
-type caseMismatchFailure struct {
-	// goal is the depender atom that tried to introduce the case-varying name,
-	// along with the case-varying name.
-	goal dependency
-	// current is the specific casing of a ProjectRoot that is presently
-	// selected for all possible case variations of its contained unicode code
-	// points.
-	current ProjectRoot
-	// failsib is the list of active dependencies that have determined the
-	// specific casing for the target project.
-	failsib []dependency
-}
-
-func (e *caseMismatchFailure) Error() string {
-	if len(e.failsib) == 1 {
-		str := "Could not introduce %s due to a case-only variation: it depends on %q, but %q was already established as the case variant for that project root by depender %s"
-		return fmt.Sprintf(str, a2vs(e.goal.depender), e.goal.dep.Ident.ProjectRoot, e.current, a2vs(e.failsib[0].depender))
-	}
-
-	var buf bytes.Buffer
-
-	str := "Could not introduce %s due to a case-only variation: it depends on %q, but %q was already established as the case variant for that project root by the following other dependers:\n"
-	fmt.Fprintf(&buf, str, a2vs(e.goal.depender), e.goal.dep.Ident.ProjectRoot, e.current)
-
-	for _, c := range e.failsib {
-		fmt.Fprintf(&buf, "\t%s\n", a2vs(c.depender))
-	}
-
-	return buf.String()
-}
-
-func (e *caseMismatchFailure) traceString() string {
-	var buf bytes.Buffer
-	fmt.Fprintf(&buf, "case-only variation in dependency on %q; %q already established by:\n", e.goal.dep.Ident.ProjectRoot, e.current)
-	for _, f := range e.failsib {
-		fmt.Fprintf(&buf, "%s\n", a2vs(f.depender))
-	}
-
-	return buf.String()
-}
-
-// wrongCaseFailure occurs when one or more projects - A, B, ... - depend on
-// another project - Z - with an incorrect case variant, as indicated by the
-// case variant used internally by Z to reference its own packages.
-//
-// For example, github.com/sirupsen/logrus/hooks/syslog references itself via
-// github.com/sirupsen/logrus, establishing that as the canonical case variant.
-type wrongCaseFailure struct {
-	// correct is the canonical representation of the ProjectRoot
-	correct ProjectRoot
-	// goal is the incorrectly-referenced target project
-	goal dependency
-	// badcase is the list of active dependencies that have specified an
-	// incorrect ProjectRoot casing for the project in question.
-	badcase []dependency
-}
-
-func (e *wrongCaseFailure) Error() string {
-	if len(e.badcase) == 1 {
-		str := "Could not introduce %s; imports amongst its packages establish %q as the canonical casing for root, but %s tried to import it as %q"
-		return fmt.Sprintf(str, a2vs(e.goal.depender), e.correct, a2vs(e.badcase[0].depender), e.badcase[0].dep.Ident.ProjectRoot)
-	}
-
-	var buf bytes.Buffer
-
-	str := "Could not introduce %s; imports amongst its packages establish %q as the canonical casing for root, but the following projects tried to import it as %q"
-	fmt.Fprintf(&buf, str, a2vs(e.goal.depender), e.correct, e.badcase[0].dep.Ident.ProjectRoot)
-
-	for _, c := range e.badcase {
-		fmt.Fprintf(&buf, "\t%s\n", a2vs(c.depender))
-	}
-
-	return buf.String()
-}
-
-func (e *wrongCaseFailure) traceString() string {
-	var buf bytes.Buffer
-	fmt.Fprintf(&buf, "internal imports establish %q as correct casing; %q was used by:\n", e.correct, e.goal.dep.Ident.ProjectRoot)
-	for _, f := range e.badcase {
-		fmt.Fprintf(&buf, "%s\n", a2vs(f.depender))
-	}
-
-	return buf.String()
-}
-
-// disjointConstraintFailure occurs when attempting to introduce an atom that
-// itself has an acceptable version, but one of its dependency constraints is
-// disjoint with one or more dependency constraints already active for that
-// identifier.
-type disjointConstraintFailure struct {
-	// goal is the dependency with the problematic constraint, forcing us to
-	// reject the atom that introduces it.
-	goal dependency
-	// failsib is the list of active dependencies that are disjoint with the
-	// goal dependency. This will be at least one, but may not be all of the
-	// active dependencies.
-	failsib []dependency
-	// nofailsib is the list of active dependencies that are NOT disjoint with
-	// the goal dependency. The total of nofailsib and failsib will always be
-	// the total number of active dependencies on target identifier.
-	nofailsib []dependency
-	// c is the current constraint on the target identifier. It is intersection
-	// of all the active dependencies' constraints.
-	c Constraint
-}
-
-func (e *disjointConstraintFailure) Error() string {
-	if len(e.failsib) == 1 {
-		str := "Could not introduce %s, as it has a dependency on %s with constraint %s, which has no overlap with existing constraint %s from %s"
-		return fmt.Sprintf(str, a2vs(e.goal.depender), e.goal.dep.Ident, e.goal.dep.Constraint.String(), e.failsib[0].dep.Constraint.String(), a2vs(e.failsib[0].depender))
-	}
-
-	var buf bytes.Buffer
-
-	var sibs []dependency
-	if len(e.failsib) > 1 {
-		sibs = e.failsib
-
-		str := "Could not introduce %s, as it has a dependency on %s with constraint %s, which has no overlap with the following existing constraints:\n"
-		fmt.Fprintf(&buf, str, a2vs(e.goal.depender), e.goal.dep.Ident, e.goal.dep.Constraint.String())
-	} else {
-		sibs = e.nofailsib
-
-		str := "Could not introduce %s, as it has a dependency on %s with constraint %s, which does not overlap with the intersection of existing constraints from other currently selected packages:\n"
-		fmt.Fprintf(&buf, str, a2vs(e.goal.depender), e.goal.dep.Ident, e.goal.dep.Constraint.String())
-	}
-
-	for _, c := range sibs {
-		fmt.Fprintf(&buf, "\t%s from %s\n", c.dep.Constraint.String(), a2vs(c.depender))
-	}
-
-	return buf.String()
-}
-
-func (e *disjointConstraintFailure) traceString() string {
-	var buf bytes.Buffer
-	fmt.Fprintf(&buf, "constraint %s on %s disjoint with other dependers:\n", e.goal.dep.Constraint.String(), e.goal.dep.Ident)
-	for _, f := range e.failsib {
-		fmt.Fprintf(
-			&buf,
-			"%s from %s (no overlap)\n",
-			f.dep.Constraint.String(),
-			a2vs(f.depender),
-		)
-	}
-	for _, f := range e.nofailsib {
-		fmt.Fprintf(
-			&buf,
-			"%s from %s (some overlap)\n",
-			f.dep.Constraint.String(),
-			a2vs(f.depender),
-		)
-	}
-
-	return buf.String()
-}
-
-// Indicates that an atom could not be introduced because one of its dep
-// constraints does not admit the currently-selected version of the target
-// project.
-type constraintNotAllowedFailure struct {
-	// The dependency with the problematic constraint that could not be
-	// introduced.
-	goal dependency
-	// The (currently selected) version of the target project that was not
-	// admissible by the goal dependency.
-	v Version
-}
-
-func (e *constraintNotAllowedFailure) Error() string {
-	return fmt.Sprintf(
-		"Could not introduce %s, as it has a dependency on %s with constraint %s, which does not allow the currently selected version of %s",
-		a2vs(e.goal.depender),
-		e.goal.dep.Ident,
-		e.goal.dep.Constraint,
-		e.v,
-	)
-}
-
-func (e *constraintNotAllowedFailure) traceString() string {
-	return fmt.Sprintf(
-		"%s depends on %s with %s, but that's already selected at %s",
-		a2vs(e.goal.depender),
-		e.goal.dep.Ident.ProjectRoot,
-		e.goal.dep.Constraint,
-		e.v,
-	)
-}
-
-// versionNotAllowedFailure describes a failure where an atom is rejected
-// because its version is not allowed by current constraints.
-//
-// (This is one of the more straightforward types of failures)
-type versionNotAllowedFailure struct {
-	// goal is the atom that was rejected by current constraints.
-	goal atom
-	// failparent is the list of active dependencies that caused the atom to be
-	// rejected. Note that this only includes dependencies that actually
-	// rejected the atom, which will be at least one, but may not be all the
-	// active dependencies on the atom's identifier.
-	failparent []dependency
-	// c is the current constraint on the atom's identifier. This is the intersection
-	// of all active dependencies' constraints.
-	c Constraint
-}
-
-func (e *versionNotAllowedFailure) Error() string {
-	if len(e.failparent) == 1 {
-		return fmt.Sprintf(
-			"Could not introduce %s, as it is not allowed by constraint %s from project %s.",
-			a2vs(e.goal),
-			e.failparent[0].dep.Constraint.String(),
-			e.failparent[0].depender.id,
-		)
-	}
-
-	var buf bytes.Buffer
-
-	fmt.Fprintf(&buf, "Could not introduce %s, as it is not allowed by constraints from the following projects:\n", a2vs(e.goal))
-
-	for _, f := range e.failparent {
-		fmt.Fprintf(&buf, "\t%s from %s\n", f.dep.Constraint.String(), a2vs(f.depender))
-	}
-
-	return buf.String()
-}
-
-func (e *versionNotAllowedFailure) traceString() string {
-	var buf bytes.Buffer
-
-	fmt.Fprintf(&buf, "%s not allowed by constraint %s:\n", a2vs(e.goal), e.c.String())
-	for _, f := range e.failparent {
-		fmt.Fprintf(&buf, "  %s from %s\n", f.dep.Constraint.String(), a2vs(f.depender))
-	}
-
-	return buf.String()
-}
-
-type missingSourceFailure struct {
-	goal ProjectIdentifier
-	prob string
-}
-
-func (e *missingSourceFailure) Error() string {
-	return fmt.Sprintf(e.prob, e.goal)
-}
-
-type badOptsFailure string
-
-func (e badOptsFailure) Error() string {
-	return string(e)
-}
-
-type sourceMismatchFailure struct {
-	// The ProjectRoot over which there is disagreement about where it should be
-	// sourced from
-	shared ProjectRoot
-	// The current value for the network source
-	current string
-	// The mismatched value for the network source
-	mismatch string
-	// The currently selected dependencies which have agreed upon/established
-	// the given network source
-	sel []dependency
-	// The atom with the constraint that has the new, incompatible network source
-	prob atom
-}
-
-func (e *sourceMismatchFailure) Error() string {
-	var cur []string
-	for _, c := range e.sel {
-		cur = append(cur, string(c.depender.id.ProjectRoot))
-	}
-
-	str := "Could not introduce %s, as it depends on %s from %s, but %s is already marked as coming from %s by %s"
-	return fmt.Sprintf(str, a2vs(e.prob), e.shared, e.mismatch, e.shared, e.current, strings.Join(cur, ", "))
-}
-
-func (e *sourceMismatchFailure) traceString() string {
-	var buf bytes.Buffer
-	fmt.Fprintf(&buf, "disagreement on network addr for %s:\n", e.shared)
-
-	fmt.Fprintf(&buf, "  %s from %s\n", e.mismatch, e.prob.id)
-	for _, dep := range e.sel {
-		fmt.Fprintf(&buf, "  %s from %s\n", e.current, dep.depender.id)
-	}
-
-	return buf.String()
-}
-
-type errDeppers struct {
-	err     error
-	deppers []atom
-}
-
-// checkeeHasProblemPackagesFailure indicates that the goal atom was rejected
-// because one or more of the packages required by its deppers had errors.
-//
-// "errors" includes package nonexistence, which is indicated by a nil err in
-// the corresponding errDeppers failpkg map value.
-//
-// checkeeHasProblemPackagesFailure complements depHasProblemPackagesFailure;
-// one or the other could appear to describe the same fundamental issue,
-// depending on the order in which dependencies were visited.
-type checkeeHasProblemPackagesFailure struct {
-	// goal is the atom that was rejected due to problematic packages.
-	goal atom
-	// failpkg is a map of package names to the error describing the problem
-	// with them, plus a list of the selected atoms that require that package.
-	failpkg map[string]errDeppers
-}
-
-func (e *checkeeHasProblemPackagesFailure) Error() string {
-	var buf bytes.Buffer
-	indent := ""
-
-	if len(e.failpkg) > 1 {
-		indent = "\t"
-		fmt.Fprintf(
-			&buf, "Could not introduce %s due to multiple problematic subpackages:\n",
-			a2vs(e.goal),
-		)
-	}
-
-	for pkg, errdep := range e.failpkg {
-		var cause string
-		if errdep.err == nil {
-			cause = "is missing"
-		} else {
-			cause = fmt.Sprintf("does not contain usable Go code (%T).", errdep.err)
-		}
-
-		if len(e.failpkg) == 1 {
-			fmt.Fprintf(
-				&buf, "Could not introduce %s, as its subpackage %s %s.",
-				a2vs(e.goal),
-				pkg,
-				cause,
-			)
-		} else {
-			fmt.Fprintf(&buf, "\tSubpackage %s %s.", pkg, cause)
-		}
-
-		if len(errdep.deppers) == 1 {
-			fmt.Fprintf(
-				&buf, " (Package is required by %s.)",
-				a2vs(errdep.deppers[0]),
-			)
-		} else {
-			fmt.Fprintf(&buf, " Package is required by:")
-			for _, pa := range errdep.deppers {
-				fmt.Fprintf(&buf, "\n%s\t%s", indent, a2vs(pa))
-			}
-		}
-	}
-
-	return buf.String()
-}
-
-func (e *checkeeHasProblemPackagesFailure) traceString() string {
-	var buf bytes.Buffer
-
-	fmt.Fprintf(&buf, "%s at %s has problem subpkg(s):\n", e.goal.id.ProjectRoot, e.goal.v)
-	for pkg, errdep := range e.failpkg {
-		if errdep.err == nil {
-			fmt.Fprintf(&buf, "\t%s is missing; ", pkg)
-		} else {
-			fmt.Fprintf(&buf, "\t%s has err (%T); ", pkg, errdep.err)
-		}
-
-		if len(errdep.deppers) == 1 {
-			fmt.Fprintf(&buf, "required by %s.", a2vs(errdep.deppers[0]))
-		} else {
-			fmt.Fprintf(&buf, " required by:")
-			for _, pa := range errdep.deppers {
-				fmt.Fprintf(&buf, "\n\t\t%s at %s", pa.id, pa.v)
-			}
-		}
-	}
-
-	return buf.String()
-}
-
-// depHasProblemPackagesFailure indicates that the goal dependency was rejected
-// because there were problems with one or more of the packages the dependency
-// requires in the atom currently selected for that dependency. (This failure
-// can only occur if the target dependency is already selected.)
-//
-// "errors" includes package nonexistence, which is indicated by a nil err as
-// the corresponding prob map value.
-//
-// depHasProblemPackagesFailure complements checkeeHasProblemPackagesFailure;
-// one or the other could appear to describe the same fundamental issue,
-// depending on the order in which dependencies were visited.
-type depHasProblemPackagesFailure struct {
-	// goal is the dependency that was rejected due to the atom currently
-	// selected for the dependency's target id having errors (including, and
-	// probably most commonly,
-	// nonexistence) in one or more packages named by the dependency.
-	goal dependency
-	// v is the version of the currently selected atom targeted by the goal
-	// dependency.
-	v Version
-	// prob is a map of problem packages to their specific error. It does not
-	// include missing packages.
-	prob map[string]error
-}
-
-func (e *depHasProblemPackagesFailure) Error() string {
-	fcause := func(pkg string) string {
-		if err := e.prob[pkg]; err != nil {
-			return fmt.Sprintf("does not contain usable Go code (%T).", err)
-		}
-		return "is missing."
-	}
-
-	if len(e.prob) == 1 {
-		var pkg string
-		for pkg = range e.prob {
-		}
-
-		return fmt.Sprintf(
-			"Could not introduce %s, as it requires package %s from %s, but in version %s that package %s",
-			a2vs(e.goal.depender),
-			pkg,
-			e.goal.dep.Ident,
-			e.v,
-			fcause(pkg),
-		)
-	}
-
-	var buf bytes.Buffer
-	fmt.Fprintf(
-		&buf, "Could not introduce %s, as it requires problematic packages from %s (current version %s):",
-		a2vs(e.goal.depender),
-		e.goal.dep.Ident,
-		e.v,
-	)
-
-	pkgs := make([]string, len(e.prob))
-	k := 0
-	for pkg := range e.prob {
-		pkgs[k] = pkg
-		k++
-	}
-	sort.Strings(pkgs)
-	for _, pkg := range pkgs {
-		fmt.Fprintf(&buf, "\t%s %s", pkg, fcause(pkg))
-	}
-
-	return buf.String()
-}
-
-func (e *depHasProblemPackagesFailure) traceString() string {
-	var buf bytes.Buffer
-	fcause := func(pkg string) string {
-		if err := e.prob[pkg]; err != nil {
-			return fmt.Sprintf("has parsing err (%T).", err)
-		}
-		return "is missing"
-	}
-
-	fmt.Fprintf(
-		&buf, "%s depping on %s at %s has problem subpkg(s):",
-		a2vs(e.goal.depender),
-		e.goal.dep.Ident,
-		e.v,
-	)
-
-	pkgs := make([]string, len(e.prob))
-	k := 0
-	for pkg := range e.prob {
-		pkgs[k] = pkg
-		k++
-	}
-	sort.Strings(pkgs)
-	for _, pkg := range pkgs {
-		fmt.Fprintf(&buf, "\t%s %s", pkg, fcause(pkg))
-	}
-
-	return buf.String()
-}
-
-// nonexistentRevisionFailure indicates that a revision constraint was specified
-// for a given project, but that that revision does not exist in the source
-// repository.
-type nonexistentRevisionFailure struct {
-	goal dependency
-	r    Revision
-}
-
-func (e *nonexistentRevisionFailure) Error() string {
-	return fmt.Sprintf(
-		"Could not introduce %s, as it requires %s at revision %s, but that revision does not exist",
-		a2vs(e.goal.depender),
-		e.goal.dep.Ident,
-		e.r,
-	)
-}
-
-func (e *nonexistentRevisionFailure) traceString() string {
-	return fmt.Sprintf(
-		"%s wants missing rev %s of %s",
-		a2vs(e.goal.depender),
-		e.r,
-		e.goal.dep.Ident,
-	)
-}
diff --git a/vendor/github.com/golang/dep/gps/solver.go b/vendor/github.com/golang/dep/gps/solver.go
deleted file mode 100644
index c9b541d953f9393b1ec42d9d47631283ca089990..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/solver.go
+++ /dev/null
@@ -1,1381 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"container/heap"
-	"context"
-	"fmt"
-	"log"
-	"sort"
-	"strings"
-	"sync"
-	"sync/atomic"
-
-	"github.com/armon/go-radix"
-	"github.com/golang/dep/gps/paths"
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/pkg/errors"
-)
-
-var rootRev = Revision("")
-
-// SolveParameters hold all arguments to a solver run.
-//
-// Only RootDir and RootPackageTree are absolutely required. A nil Manifest is
-// allowed, though it usually makes little sense.
-//
-// Of these properties, only the Manifest and RootPackageTree are (directly)
-// incorporated in memoization hashing.
-type SolveParameters struct {
-	// The path to the root of the project on which the solver should operate.
-	// This should point to the directory that should contain the vendor/
-	// directory.
-	//
-	// In general, it is wise for this to be under an active GOPATH, though it
-	// is not (currently) required.
-	//
-	// A real path to a readable directory is required.
-	RootDir string
-
-	// The ProjectAnalyzer is responsible for extracting Manifest and
-	// (optionally) Lock information from dependencies. The solver passes it
-	// along to its SourceManager's GetManifestAndLock() method as needed.
-	//
-	// An analyzer is required.
-	ProjectAnalyzer ProjectAnalyzer
-
-	// The tree of packages that comprise the root project, as well as the
-	// import path that should identify the root of that tree.
-	//
-	// In most situations, tools should simply pass the result of ListPackages()
-	// directly through here.
-	//
-	// The ImportRoot property must be a non-empty string, and at least one
-	// element must be present in the Packages map.
-	RootPackageTree pkgtree.PackageTree
-
-	// The root manifest. This contains all the dependency constraints
-	// associated with normal Manifests, as well as the particular controls
-	// afforded only to the root project.
-	//
-	// May be nil, but for most cases, that would be unwise.
-	Manifest RootManifest
-
-	// The root lock. Optional. Generally, this lock is the output of a previous
-	// solve run.
-	//
-	// If provided, the solver will attempt to preserve the versions specified
-	// in the lock, unless ToChange or ChangeAll settings indicate otherwise.
-	Lock Lock
-
-	// ToChange is a list of project names that should be changed - that is, any
-	// versions specified for those projects in the root lock file should be
-	// ignored.
-	//
-	// Passing ChangeAll has subtly different behavior from enumerating all
-	// projects into ToChange. In general, ToChange should *only* be used if the
-	// user expressly requested an upgrade for a specific project.
-	ToChange []ProjectRoot
-
-	// ChangeAll indicates that all projects should be changed - that is, any
-	// versions specified in the root lock file should be ignored.
-	ChangeAll bool
-
-	// Downgrade indicates whether the solver will attempt to upgrade (false) or
-	// downgrade (true) projects that are not locked, or are marked for change.
-	//
-	// Upgrading is, by far, the most typical case. The field is named
-	// 'Downgrade' so that the bool's zero value corresponds to that most
-	// typical case.
-	Downgrade bool
-
-	// TraceLogger is the logger to use for generating trace output. If set, the
-	// solver will generate informative trace output as it moves through the
-	// solving process.
-	TraceLogger *log.Logger
-
-	// stdLibFn is the function to use to recognize standard library import paths.
-	// Only overridden for tests. Defaults to paths.IsStandardImportPath if nil.
-	stdLibFn func(string) bool
-
-	// mkBridgeFn is the function to use to create sourceBridges.
-	// Only overridden for tests (so we can run with virtual RootDir).
-	// Defaults to mkBridge if nil.
-	mkBridgeFn func(*solver, SourceManager, bool) sourceBridge
-}
-
-// solver is a CDCL-style constraint solver with satisfiability conditions
-// hardcoded to the needs of the Go package management problem space.
-type solver struct {
-	// The current number of attempts made over the course of this solve. This
-	// number increments each time the algorithm completes a backtrack and
-	// starts moving forward again.
-	attempts int
-
-	// Logger used exclusively for trace output, or nil to suppress.
-	tl *log.Logger
-
-	// The function to use to recognize standard library import paths.
-	stdLibFn func(string) bool
-
-	// A bridge to the standard SourceManager. The adapter does some local
-	// caching of pre-sorted version lists, as well as translation between the
-	// full-on ProjectIdentifiers that the solver deals with and the simplified
-	// names a SourceManager operates on.
-	b sourceBridge
-
-	// A stack containing projects and packages that are currently "selected" -
-	// that is, they have passed all satisfiability checks, and are part of the
-	// current solution.
-	//
-	// The *selection type is mostly just a dumb data container; the solver
-	// itself is responsible for maintaining that invariant.
-	sel *selection
-
-	// The current list of projects that we need to incorporate into the solution in
-	// order for the solution to be complete. This list is implemented as a
-	// priority queue that places projects least likely to induce errors at the
-	// front, in order to minimize the amount of backtracking required to find a
-	// solution.
-	//
-	// Entries are added to and removed from this list by the solver at the same
-	// time that the selected queue is updated, either with an addition or
-	// removal.
-	unsel *unselected
-
-	// A stack of all the currently active versionQueues in the solver. The set
-	// of projects represented here corresponds closely to what's in s.sel,
-	// although s.sel will always contain the root project, and s.vqs never
-	// will. Also, s.vqs is only added to (or popped from during backtracking)
-	// when a new project is selected; it is untouched when new packages are
-	// added to an existing project.
-	vqs []*versionQueue
-
-	// Contains data and constraining information from the root project
-	rd rootdata
-
-	// metrics for the current solve run.
-	mtr *metrics
-
-	// Indicates whether the solver has been run. It is invalid to run this type
-	// of solver more than once.
-	hasrun int32
-}
-
-func (params SolveParameters) toRootdata() (rootdata, error) {
-	if params.ProjectAnalyzer == nil {
-		return rootdata{}, badOptsFailure("must provide a ProjectAnalyzer")
-	}
-	if params.RootDir == "" {
-		return rootdata{}, badOptsFailure("params must specify a non-empty root directory")
-	}
-	if params.RootPackageTree.ImportRoot == "" {
-		return rootdata{}, badOptsFailure("params must include a non-empty import root")
-	}
-	if len(params.RootPackageTree.Packages) == 0 {
-		return rootdata{}, badOptsFailure("at least one package must be present in the PackageTree")
-	}
-	if params.Lock == nil && len(params.ToChange) != 0 {
-		return rootdata{}, badOptsFailure(fmt.Sprintf("update specifically requested for %s, but no lock was provided to upgrade from", params.ToChange))
-	}
-
-	if params.Manifest == nil {
-		params.Manifest = simpleRootManifest{}
-	}
-
-	rd := rootdata{
-		ir:      params.Manifest.IgnoredPackages(),
-		req:     params.Manifest.RequiredPackages(),
-		ovr:     params.Manifest.Overrides(),
-		rpt:     params.RootPackageTree.Copy(),
-		chng:    make(map[ProjectRoot]struct{}),
-		rlm:     make(map[ProjectRoot]LockedProject),
-		chngall: params.ChangeAll,
-		dir:     params.RootDir,
-		an:      params.ProjectAnalyzer,
-	}
-
-	// Ensure the required and overrides maps are at least initialized
-	if rd.req == nil {
-		rd.req = make(map[string]bool)
-	}
-	if rd.ovr == nil {
-		rd.ovr = make(ProjectConstraints)
-	}
-
-	if rd.ir.Len() > 0 {
-		var both []string
-		for pkg := range params.Manifest.RequiredPackages() {
-			if rd.ir.IsIgnored(pkg) {
-				both = append(both, pkg)
-			}
-		}
-		switch len(both) {
-		case 0:
-			break
-		case 1:
-			return rootdata{}, badOptsFailure(fmt.Sprintf("%q was given as both a required and ignored package", both[0]))
-		default:
-			return rootdata{}, badOptsFailure(fmt.Sprintf("multiple packages given as both required and ignored: %s", strings.Join(both, ", ")))
-		}
-	}
-
-	// Validate no empties in the overrides map
-	var eovr []string
-	for pr, pp := range rd.ovr {
-		if pp.Constraint == nil && pp.Source == "" {
-			eovr = append(eovr, string(pr))
-		}
-	}
-
-	if eovr != nil {
-		// Maybe it's a little nitpicky to do this (we COULD proceed; empty
-		// overrides have no effect), but this errs on the side of letting the
-		// tool/user know there's bad input. Purely as a principle, that seems
-		// preferable to silently allowing progress with icky input.
-		if len(eovr) > 1 {
-			return rootdata{}, badOptsFailure(fmt.Sprintf("Overrides lacked any non-zero properties for multiple project roots: %s", strings.Join(eovr, " ")))
-		}
-		return rootdata{}, badOptsFailure(fmt.Sprintf("An override was declared for %s, but without any non-zero properties", eovr[0]))
-	}
-
-	// Prep safe, normalized versions of root manifest and lock data
-	rd.rm = prepManifest(params.Manifest)
-
-	if params.Lock != nil {
-		for _, lp := range params.Lock.Projects() {
-			rd.rlm[lp.Ident().ProjectRoot] = lp
-		}
-
-		// Also keep a prepped one, mostly for the bridge. This is probably
-		// wasteful, but only minimally so, and yay symmetry
-		rd.rl = prepLock(params.Lock)
-	}
-
-	for _, p := range params.ToChange {
-		if _, exists := rd.rlm[p]; !exists {
-			return rootdata{}, badOptsFailure(fmt.Sprintf("cannot update %s as it is not in the lock", p))
-		}
-		rd.chng[p] = struct{}{}
-	}
-
-	return rd, nil
-}
-
-// Prepare readies a Solver for use.
-//
-// This function reads and validates the provided SolveParameters. If a problem
-// with the inputs is detected, an error is returned. Otherwise, a Solver is
-// returned, ready to hash and check inputs or perform a solving run.
-func Prepare(params SolveParameters, sm SourceManager) (Solver, error) {
-	if sm == nil {
-		return nil, badOptsFailure("must provide non-nil SourceManager")
-	}
-
-	rd, err := params.toRootdata()
-	if err != nil {
-		return nil, err
-	}
-
-	if params.stdLibFn == nil {
-		params.stdLibFn = paths.IsStandardImportPath
-	}
-
-	s := &solver{
-		tl:       params.TraceLogger,
-		stdLibFn: params.stdLibFn,
-		rd:       rd,
-	}
-
-	// Set up the bridge and ensure the root dir is in good, working order
-	// before doing anything else.
-	if params.mkBridgeFn == nil {
-		s.b = mkBridge(s, sm, params.Downgrade)
-	} else {
-		s.b = params.mkBridgeFn(s, sm, params.Downgrade)
-	}
-	err = s.b.verifyRootDir(params.RootDir)
-	if err != nil {
-		return nil, err
-	}
-
-	// Initialize stacks and queues
-	s.sel = &selection{
-		deps:      make(map[ProjectRoot][]dependency),
-		foldRoots: make(map[string]ProjectRoot),
-	}
-	s.unsel = &unselected{
-		sl:  make([]bimodalIdentifier, 0),
-		cmp: s.unselectedComparator,
-	}
-
-	return s, nil
-}
-
-// A Solver is the main workhorse of gps: given a set of project inputs, it
-// performs a constraint solving analysis to develop a complete Solution, or
-// else fail with an informative error.
-//
-// If a Solution is found, an implementing tool may persist it - typically into
-// a "lock file" - and/or use it to write out a directory tree of dependencies,
-// suitable to be a vendor directory, via CreateVendorTree.
-type Solver interface {
-	// Solve initiates a solving run. It will either abort due to a canceled
-	// Context, complete successfully with a Solution, or fail with an
-	// informative error.
-	//
-	// It is generally not allowed that this method be called twice for any
-	// given solver.
-	Solve(context.Context) (Solution, error)
-
-	// Name returns a string identifying the particular solver backend.
-	//
-	// Different solvers likely have different invariants, and likely will not
-	// have the same result sets for any particular inputs.
-	Name() string
-
-	// Version returns an int indicating the version of the solver of the given
-	// Name(). Implementations should change their reported version ONLY when
-	// the logic is changed in such a way that substantially changes the result
-	// set that is possible for a substantial subset of likely inputs.
-	//
-	// "Substantial" is an imprecise term, and it is used intentionally. There
-	// are no easy, general ways of subdividing constraint solving problems such
-	// that one can know, a priori, the full impact that subtle algorithmic
-	// changes will have on possible result sets. Consequently, we have to fall
-	// back on coarser, intuition-based reasoning as to whether a change is
-	// large enough that it is likely to be broadly user-visible.
-	//
-	// This is acceptable, because this value is not used programmatically by
-	// the solver in any way. Rather, it is intend for implementing tools to
-	// use as a coarse signal to users about compatibility between their tool's
-	// version and the current data, typically via persistence to a Lock.
-	// Changes to the version number reported should be weighed between
-	// confusing teams by having two members' tools continuously rolling back
-	// each others' chosen Solutions for no apparent reason, and annoying teams
-	// by changing the number for changes so remote that warnings about solver
-	// version mismatches become meaningless.
-	//
-	// Err on the side of caution.
-	//
-	// Chronology is the only implication of the ordering - that lower version
-	// numbers were published before higher numbers.
-	Version() int
-}
-
-func (s *solver) Name() string {
-	return "gps-cdcl"
-}
-
-func (s *solver) Version() int {
-	return 1
-}
-
-// DeductionErrs maps package import path to errors occurring during deduction.
-type DeductionErrs map[string]error
-
-func (e DeductionErrs) Error() string {
-	return "could not deduce external imports' project roots"
-}
-
-// ValidateParams validates the solver parameters to ensure solving can be completed.
-func ValidateParams(params SolveParameters, sm SourceManager) error {
-	// Ensure that all packages are deducible without issues.
-	var deducePkgsGroup sync.WaitGroup
-	deductionErrs := make(DeductionErrs)
-	var errsMut sync.Mutex
-
-	rd, err := params.toRootdata()
-	if err != nil {
-		return err
-	}
-
-	deducePkg := func(ip string, sm SourceManager) {
-		_, err := sm.DeduceProjectRoot(ip)
-		if err != nil {
-			errsMut.Lock()
-			deductionErrs[ip] = err
-			errsMut.Unlock()
-		}
-		deducePkgsGroup.Done()
-	}
-
-	for _, ip := range rd.externalImportList(paths.IsStandardImportPath) {
-		deducePkgsGroup.Add(1)
-		go deducePkg(ip, sm)
-	}
-
-	deducePkgsGroup.Wait()
-
-	if len(deductionErrs) > 0 {
-		return deductionErrs
-	}
-
-	return nil
-}
-
-// Solve attempts to find a dependency solution for the given project, as
-// represented by the SolveParameters with which this Solver was created.
-//
-// This is the entry point to the main gps workhorse.
-func (s *solver) Solve(ctx context.Context) (Solution, error) {
-	// Solving can only be run once per solver.
-	if !atomic.CompareAndSwapInt32(&s.hasrun, 0, 1) {
-		return nil, errors.New("solve method can only be run once per instance")
-	}
-	// Make sure the bridge has the context before we start.
-	//s.b.ctx = ctx
-
-	// Set up a metrics object
-	s.mtr = newMetrics()
-
-	// Prime the queues with the root project
-	if err := s.selectRoot(); err != nil {
-		return nil, err
-	}
-
-	all, err := s.solve(ctx)
-
-	s.mtr.pop()
-	var soln solution
-	if err == nil {
-		soln = solution{
-			att:  s.attempts,
-			solv: s,
-		}
-		soln.analyzerInfo = s.rd.an.Info()
-		soln.i = s.rd.externalImportList(s.stdLibFn)
-
-		// Convert ProjectAtoms into LockedProjects
-		soln.p = make([]LockedProject, 0, len(all))
-		for pa, pl := range all {
-			lp := pa2lp(pa, pl)
-			// Pass back the original inputlp directly if it Eqs what was
-			// selected.
-			if inputlp, has := s.rd.rlm[lp.Ident().ProjectRoot]; has && lp.Eq(inputlp) {
-				lp = inputlp
-			}
-
-			soln.p = append(soln.p, lp)
-		}
-	}
-
-	s.traceFinish(soln, err)
-	if s.tl != nil {
-		s.mtr.dump(s.tl)
-	}
-	return soln, err
-}
-
-// solve is the top-level loop for the solving process.
-func (s *solver) solve(ctx context.Context) (map[atom]map[string]struct{}, error) {
-	// Pull out the donechan once up front so that we're not potentially
-	// triggering mutex cycling and channel creation on each iteration.
-	donechan := ctx.Done()
-
-	// Main solving loop
-	for {
-		select {
-		case <-donechan:
-			return nil, ctx.Err()
-		default:
-		}
-
-		bmi, has := s.nextUnselected()
-
-		if !has {
-			// no more packages to select - we're done.
-			break
-		}
-
-		// This split is the heart of "bimodal solving": we follow different
-		// satisfiability and selection paths depending on whether we've already
-		// selected the base project/repo that came off the unselected queue.
-		//
-		// (If we've already selected the project, other parts of the algorithm
-		// guarantee the bmi will contain at least one package from this project
-		// that has yet to be selected.)
-		if awp, is := s.sel.selected(bmi.id); !is {
-			s.mtr.push("new-atom")
-			// Analysis path for when we haven't selected the project yet - need
-			// to create a version queue.
-			queue, err := s.createVersionQueue(bmi)
-			if err != nil {
-				s.mtr.pop()
-				// Err means a failure somewhere down the line; try backtracking.
-				s.traceStartBacktrack(bmi, err, false)
-				success, berr := s.backtrack(ctx)
-				if berr != nil {
-					err = berr
-				} else if success {
-					// backtracking succeeded, move to the next unselected id
-					continue
-				}
-				return nil, err
-			}
-
-			if queue.current() == nil {
-				panic("canary - queue is empty, but flow indicates success")
-			}
-
-			awp := atomWithPackages{
-				a: atom{
-					id: queue.id,
-					v:  queue.current(),
-				},
-				pl: bmi.pl,
-			}
-			err = s.selectAtom(awp, false)
-			s.mtr.pop()
-			if err != nil {
-				// Only a released SourceManager should be able to cause this.
-				return nil, err
-			}
-
-			s.vqs = append(s.vqs, queue)
-		} else {
-			s.mtr.push("add-atom")
-			// We're just trying to add packages to an already-selected project.
-			// That means it's not OK to burn through the version queue for that
-			// project as we do when first selecting a project, as doing so
-			// would upend the guarantees on which all previous selections of
-			// the project are based (both the initial one, and any package-only
-			// ones).
-
-			// Because we can only safely operate within the scope of the
-			// single, currently selected version, we can skip looking for the
-			// queue and just use the version given in what came back from
-			// s.sel.selected().
-			nawp := atomWithPackages{
-				a: atom{
-					id: bmi.id,
-					v:  awp.a.v,
-				},
-				pl: bmi.pl,
-			}
-
-			s.traceCheckPkgs(bmi)
-			err := s.check(nawp, true)
-			if err != nil {
-				s.mtr.pop()
-				// Err means a failure somewhere down the line; try backtracking.
-				s.traceStartBacktrack(bmi, err, true)
-				success, berr := s.backtrack(ctx)
-				if berr != nil {
-					err = berr
-				} else if success {
-					// backtracking succeeded, move to the next unselected id
-					continue
-				}
-				return nil, err
-			}
-			err = s.selectAtom(nawp, true)
-			s.mtr.pop()
-			if err != nil {
-				// Only a released SourceManager should be able to cause this.
-				return nil, err
-			}
-
-			// We don't add anything to the stack of version queues because the
-			// backtracker knows not to pop the vqstack if it backtracks
-			// across a pure-package addition.
-		}
-	}
-
-	// Getting this far means we successfully found a solution. Combine the
-	// selected projects and packages.
-	projs := make(map[atom]map[string]struct{})
-
-	// Skip the first project. It's always the root, and that shouldn't be
-	// included in results.
-	for _, sel := range s.sel.projects[1:] {
-		pm, exists := projs[sel.a.a]
-		if !exists {
-			pm = make(map[string]struct{})
-			projs[sel.a.a] = pm
-		}
-
-		for _, path := range sel.a.pl {
-			pm[path] = struct{}{}
-		}
-	}
-	return projs, nil
-}
-
-// selectRoot is a specialized selectAtom, used solely to initially
-// populate the queues at the beginning of a solve run.
-func (s *solver) selectRoot() error {
-	s.mtr.push("select-root")
-	// Push the root project onto the queue.
-	awp := s.rd.rootAtom()
-	s.sel.pushSelection(awp, false)
-
-	// If we're looking for root's deps, get it from opts and local root
-	// analysis, rather than having the sm do it.
-	deps, err := s.intersectConstraintsWithImports(s.rd.combineConstraints(), s.rd.externalImportList(s.stdLibFn))
-	if err != nil {
-		if contextCanceledOrSMReleased(err) {
-			return err
-		}
-		// TODO(sdboyer) this could well happen; handle it with a more graceful error
-		panic(fmt.Sprintf("canary - shouldn't be possible %s", err))
-	}
-
-	for _, dep := range deps {
-		// If we have no lock, or if this dep isn't in the lock, then prefetch
-		// it. See longer explanation in selectAtom() for how we benefit from
-		// parallelism here.
-		if s.rd.needVersionsFor(dep.Ident.ProjectRoot) {
-			go s.b.SyncSourceFor(dep.Ident)
-		}
-
-		s.sel.pushDep(dependency{depender: awp.a, dep: dep})
-		// Add all to unselected queue
-		heap.Push(s.unsel, bimodalIdentifier{id: dep.Ident, pl: dep.pl, fromRoot: true})
-	}
-
-	s.traceSelectRoot(s.rd.rpt, deps)
-	s.mtr.pop()
-	return nil
-}
-
-func (s *solver) getImportsAndConstraintsOf(a atomWithPackages) ([]string, []completeDep, error) {
-	var err error
-
-	if s.rd.isRoot(a.a.id.ProjectRoot) {
-		panic("Should never need to recheck imports/constraints from root during solve")
-	}
-
-	// Work through the source manager to get project info and static analysis
-	// information.
-	m, _, err := s.b.GetManifestAndLock(a.a.id, a.a.v, s.rd.an)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	ptree, err := s.b.ListPackages(a.a.id, a.a.v)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	rm, em := ptree.ToReachMap(true, false, true, s.rd.ir)
-	// Use maps to dedupe the unique internal and external packages.
-	exmap, inmap := make(map[string]struct{}), make(map[string]struct{})
-
-	for _, pkg := range a.pl {
-		inmap[pkg] = struct{}{}
-		for _, ipkg := range rm[pkg].Internal {
-			inmap[ipkg] = struct{}{}
-		}
-	}
-
-	var pl []string
-	// If lens are the same, then the map must have the same contents as the
-	// slice; no need to build a new one.
-	if len(inmap) == len(a.pl) {
-		pl = a.pl
-	} else {
-		pl = make([]string, 0, len(inmap))
-		for pkg := range inmap {
-			pl = append(pl, pkg)
-		}
-		sort.Strings(pl)
-	}
-
-	// Add to the list those packages that are reached by the packages
-	// explicitly listed in the atom
-	for _, pkg := range a.pl {
-		// Skip ignored packages
-		if s.rd.ir.IsIgnored(pkg) {
-			continue
-		}
-
-		ie, exists := rm[pkg]
-		if !exists {
-			// Missing package here *should* only happen if the target pkg was
-			// poisoned; check the errors map.
-			if importErr, eexists := em[pkg]; eexists {
-				return nil, nil, importErr
-			}
-
-			// Nope, it's actually full-on not there.
-			return nil, nil, fmt.Errorf("package %s does not exist within project %s", pkg, a.a.id)
-		}
-
-		for _, ex := range ie.External {
-			exmap[ex] = struct{}{}
-		}
-	}
-
-	reach := make([]string, 0, len(exmap))
-	for pkg := range exmap {
-		reach = append(reach, pkg)
-	}
-	sort.Strings(reach)
-
-	deps := s.rd.ovr.overrideAll(m.DependencyConstraints())
-	cd, err := s.intersectConstraintsWithImports(deps, reach)
-	return pl, cd, err
-}
-
-// intersectConstraintsWithImports takes a list of constraints and a list of
-// externally reached packages, and creates a []completeDep that is guaranteed
-// to include all packages named by import reach, using constraints where they
-// are available, or Any() where they are not.
-func (s *solver) intersectConstraintsWithImports(deps []workingConstraint, reach []string) ([]completeDep, error) {
-	// Create a radix tree with all the projects we know from the manifest
-	xt := radix.New()
-	for _, dep := range deps {
-		xt.Insert(string(dep.Ident.ProjectRoot), dep)
-	}
-
-	// Step through the reached packages; if they have prefix matches in
-	// the trie, assume (mostly) it's a correct correspondence.
-	dmap := make(map[ProjectRoot]completeDep)
-	for _, rp := range reach {
-		// If it's a stdlib-shaped package, skip it.
-		if s.stdLibFn(rp) {
-			continue
-		}
-
-		// Look for a prefix match; it'll be the root project/repo containing
-		// the reached package
-		if pre, idep, match := xt.LongestPrefix(rp); match && isPathPrefixOrEqual(pre, rp) {
-			// Match is valid; put it in the dmap, either creating a new
-			// completeDep or appending it to the existing one for this base
-			// project/prefix.
-			dep := idep.(workingConstraint)
-			if cdep, exists := dmap[dep.Ident.ProjectRoot]; exists {
-				cdep.pl = append(cdep.pl, rp)
-				dmap[dep.Ident.ProjectRoot] = cdep
-			} else {
-				dmap[dep.Ident.ProjectRoot] = completeDep{
-					workingConstraint: dep,
-					pl:                []string{rp},
-				}
-			}
-			continue
-		}
-
-		// No match. Let the SourceManager try to figure out the root
-		root, err := s.b.DeduceProjectRoot(rp)
-		if err != nil {
-			// Nothing we can do if we can't suss out a root
-			return nil, err
-		}
-
-		// Make a new completeDep with an open constraint, respecting overrides
-		pd := s.rd.ovr.override(root, ProjectProperties{Constraint: Any()})
-
-		// Insert the pd into the trie so that further deps from this
-		// project get caught by the prefix search
-		xt.Insert(string(root), pd)
-		// And also put the complete dep into the dmap
-		dmap[root] = completeDep{
-			workingConstraint: pd,
-			pl:                []string{rp},
-		}
-	}
-
-	// Dump all the deps from the map into the expected return slice
-	cdeps := make([]completeDep, 0, len(dmap))
-	for _, cdep := range dmap {
-		cdeps = append(cdeps, cdep)
-	}
-
-	return cdeps, nil
-}
-
-func (s *solver) createVersionQueue(bmi bimodalIdentifier) (*versionQueue, error) {
-	id := bmi.id
-	// If on the root package, there's no queue to make
-	if s.rd.isRoot(id.ProjectRoot) {
-		return newVersionQueue(id, nil, nil, s.b)
-	}
-
-	exists, err := s.b.SourceExists(id)
-	if err != nil {
-		return nil, err
-	}
-	if !exists {
-		exists, err = s.b.vendorCodeExists(id)
-		if err != nil {
-			return nil, err
-		}
-		if exists {
-			// Project exists only in vendor
-			// FIXME(sdboyer) this just totally doesn't work at all right now
-		} else {
-			return nil, fmt.Errorf("project '%s' could not be located", id)
-		}
-	}
-
-	var lockv Version
-	if len(s.rd.rlm) > 0 {
-		lockv, err = s.getLockVersionIfValid(id)
-		if err != nil {
-			// Can only get an error here if an upgrade was expressly requested on
-			// code that exists only in vendor
-			return nil, err
-		}
-	}
-
-	var prefv Version
-	if bmi.fromRoot {
-		// If this bmi came from the root, then we want to search through things
-		// with a dependency on it in order to see if any have a lock that might
-		// express a prefv
-		//
-		// TODO(sdboyer) nested loop; prime candidate for a cache somewhere
-		for _, dep := range s.sel.getDependenciesOn(bmi.id) {
-			// Skip the root, of course
-			if s.rd.isRoot(dep.depender.id.ProjectRoot) {
-				continue
-			}
-
-			_, l, err := s.b.GetManifestAndLock(dep.depender.id, dep.depender.v, s.rd.an)
-			if err != nil || l == nil {
-				// err being non-nil really shouldn't be possible, but the lock
-				// being nil is quite likely
-				continue
-			}
-
-			for _, lp := range l.Projects() {
-				if lp.Ident().eq(bmi.id) {
-					prefv = lp.Version()
-				}
-			}
-		}
-
-		// OTHER APPROACH - WRONG, BUT MAYBE USEFUL FOR REFERENCE?
-		// If this bmi came from the root, then we want to search the unselected
-		// queue to see if anything *else* wants this ident, in which case we
-		// pick up that prefv
-		//for _, bmi2 := range s.unsel.sl {
-		//// Take the first thing from the queue that's for the same ident,
-		//// and has a non-nil prefv
-		//if bmi.id.eq(bmi2.id) {
-		//if bmi2.prefv != nil {
-		//prefv = bmi2.prefv
-		//}
-		//}
-		//}
-
-	} else {
-		// Otherwise, just use the preferred version expressed in the bmi
-		prefv = bmi.prefv
-	}
-
-	q, err := newVersionQueue(id, lockv, prefv, s.b)
-	if err != nil {
-		// TODO(sdboyer) this particular err case needs to be improved to be ONLY for cases
-		// where there's absolutely nothing findable about a given project name
-		return nil, err
-	}
-
-	// Hack in support for revisions.
-	//
-	// By design, revs aren't returned from ListVersion(). Thus, if the dep in
-	// the bmi was has a rev constraint, it is (almost) guaranteed to fail, even
-	// if that rev does exist in the repo. So, detect a rev and push it into the
-	// vq here, instead.
-	//
-	// Happily, the solver maintains the invariant that constraints on a given
-	// ident cannot be incompatible, so we know that if we find one rev, then
-	// any other deps will have to also be on that rev (or Any).
-	//
-	// TODO(sdboyer) while this does work, it bypasses the interface-implied guarantees
-	// of the version queue, and is therefore not a great strategy for API
-	// coherency. Folding this in to a formal interface would be better.
-	if tc, ok := s.sel.getConstraint(bmi.id).(Revision); ok && q.pi[0] != tc {
-		// We know this is the only thing that could possibly match, so put it
-		// in at the front - if it isn't there already.
-		// TODO(sdboyer) existence of the revision is guaranteed by checkRevisionExists(); restore that call.
-		q.pi = append([]Version{tc}, q.pi...)
-	}
-
-	// Having assembled the queue, search it for a valid version.
-	s.traceCheckQueue(q, bmi, false, 1)
-	return q, s.findValidVersion(q, bmi.pl)
-}
-
-// findValidVersion walks through a versionQueue until it finds a version that
-// satisfies the constraints held in the current state of the solver.
-//
-// The satisfiability checks triggered from here are constrained to operate only
-// on those dependencies induced by the list of packages given in the second
-// parameter.
-func (s *solver) findValidVersion(q *versionQueue, pl []string) error {
-	if nil == q.current() {
-		// this case should not be reachable, but reflects improper solver state
-		// if it is, so panic immediately
-		panic("version queue is empty, should not happen")
-	}
-
-	faillen := len(q.fails)
-
-	for {
-		cur := q.current()
-		s.traceInfo("try %s@%s", q.id, cur)
-		err := s.check(atomWithPackages{
-			a: atom{
-				id: q.id,
-				v:  cur,
-			},
-			pl: pl,
-		}, false)
-		if err == nil {
-			// we have a good version, can return safely
-			return nil
-		}
-
-		if q.advance(err) != nil {
-			// Error on advance, have to bail out
-			break
-		}
-		if q.isExhausted() {
-			// Queue is empty, bail with error
-			break
-		}
-	}
-
-	s.fail(s.sel.getDependenciesOn(q.id)[0].depender.id)
-
-	// Return a compound error of all the new errors encountered during this
-	// attempt to find a new, valid version
-	return &noVersionError{
-		pn:    q.id,
-		fails: q.fails[faillen:],
-	}
-}
-
-// getLockVersionIfValid finds an atom for the given ProjectIdentifier from the
-// root lock, assuming:
-//
-// 1. A root lock was provided
-// 2. The general flag to change all projects was not passed
-// 3. A flag to change this particular ProjectIdentifier was not passed
-//
-// If any of these three conditions are true (or if the id cannot be found in
-// the root lock), then no atom will be returned.
-func (s *solver) getLockVersionIfValid(id ProjectIdentifier) (Version, error) {
-	// If the project is specifically marked for changes, then don't look for a
-	// locked version.
-	if _, explicit := s.rd.chng[id.ProjectRoot]; explicit || s.rd.chngall {
-		// For projects with an upstream or cache repository, it's safe to
-		// ignore what's in the lock, because there's presumably more versions
-		// to be found and attempted in the repository. If it's only in vendor,
-		// though, then we have to try to use what's in the lock, because that's
-		// the only version we'll be able to get.
-		if exist, _ := s.b.SourceExists(id); exist {
-			// Upgrades mean breaking the lock
-			s.b.breakLock()
-			return nil, nil
-		}
-
-		// However, if a change was *expressly* requested for something that
-		// exists only in vendor, then that guarantees we don't have enough
-		// information to complete a solution. In that case, error out.
-		if explicit {
-			return nil, &missingSourceFailure{
-				goal: id,
-				prob: "Cannot upgrade %s, as no source repository could be found.",
-			}
-		}
-	}
-
-	lp, exists := s.rd.rlm[id.ProjectRoot]
-	if !exists {
-		return nil, nil
-	}
-
-	constraint := s.sel.getConstraint(id)
-	v := lp.Version()
-	if !constraint.Matches(v) {
-		// No match found, which means we're going to be breaking the lock
-		// Still return the invalid version so that is included in the trace
-		s.b.breakLock()
-	}
-
-	return v, nil
-}
-
-// backtrack works backwards from the current failed solution to find the next
-// solution to try.
-func (s *solver) backtrack(ctx context.Context) (bool, error) {
-	if len(s.vqs) == 0 {
-		// nothing to backtrack to
-		return false, nil
-	}
-
-	donechan := ctx.Done()
-	s.mtr.push("backtrack")
-	defer s.mtr.pop()
-	for {
-		for {
-			select {
-			case <-donechan:
-				return false, ctx.Err()
-			default:
-			}
-
-			if len(s.vqs) == 0 {
-				// no more versions, nowhere further to backtrack
-				return false, nil
-			}
-			if s.vqs[len(s.vqs)-1].failed {
-				break
-			}
-
-			s.vqs, s.vqs[len(s.vqs)-1] = s.vqs[:len(s.vqs)-1], nil
-
-			// Pop selections off until we get to a project.
-			var proj bool
-			var awp atomWithPackages
-			for !proj {
-				var err error
-				awp, proj, err = s.unselectLast()
-				if err != nil {
-					if !contextCanceledOrSMReleased(err) {
-						panic(fmt.Sprintf("canary - should only have been able to get a context cancellation or SM release, got %T %s", err, err))
-					}
-					return false, err
-				}
-				s.traceBacktrack(awp.bmi(), !proj)
-			}
-		}
-
-		// Grab the last versionQueue off the list of queues
-		q := s.vqs[len(s.vqs)-1]
-
-		// Walk back to the next project. This may entail walking through some
-		// package-only selections.
-		var proj bool
-		var awp atomWithPackages
-		for !proj {
-			var err error
-			awp, proj, err = s.unselectLast()
-			if err != nil {
-				if !contextCanceledOrSMReleased(err) {
-					panic(fmt.Sprintf("canary - should only have been able to get a context cancellation or SM release, got %T %s", err, err))
-				}
-				return false, err
-			}
-			s.traceBacktrack(awp.bmi(), !proj)
-		}
-
-		if !q.id.eq(awp.a.id) {
-			panic("canary - version queue stack and selected project stack are misaligned")
-		}
-
-		// Advance the queue past the current version, which we know is bad
-		// TODO(sdboyer) is it feasible to make available the failure reason here?
-		if q.advance(nil) == nil && !q.isExhausted() {
-			// Search for another acceptable version of this failed dep in its queue
-			s.traceCheckQueue(q, awp.bmi(), true, 0)
-			if s.findValidVersion(q, awp.pl) == nil {
-				// Found one! Put it back on the selected queue and stop
-				// backtracking
-
-				// reusing the old awp is fine
-				awp.a.v = q.current()
-				err := s.selectAtom(awp, false)
-				if err != nil {
-					if !contextCanceledOrSMReleased(err) {
-						panic(fmt.Sprintf("canary - should only have been able to get a context cancellation or SM release, got %T %s", err, err))
-					}
-					return false, err
-				}
-				break
-			}
-		}
-
-		s.traceBacktrack(awp.bmi(), false)
-
-		// No solution found; continue backtracking after popping the queue
-		// we just inspected off the list
-		// GC-friendly pop pointer elem in slice
-		s.vqs, s.vqs[len(s.vqs)-1] = s.vqs[:len(s.vqs)-1], nil
-	}
-
-	// Backtracking was successful if loop ended before running out of versions
-	if len(s.vqs) == 0 {
-		return false, nil
-	}
-	s.attempts++
-	return true, nil
-}
-
-func (s *solver) nextUnselected() (bimodalIdentifier, bool) {
-	if len(s.unsel.sl) > 0 {
-		return s.unsel.sl[0], true
-	}
-
-	return bimodalIdentifier{}, false
-}
-
-func (s *solver) unselectedComparator(i, j int) bool {
-	ibmi, jbmi := s.unsel.sl[i], s.unsel.sl[j]
-	iname, jname := ibmi.id, jbmi.id
-
-	// Most important thing is pushing package additions ahead of project
-	// additions. Package additions can't walk their version queue, so all they
-	// do is narrow the possibility of success; better to find out early and
-	// fast if they're going to fail than wait until after we've done real work
-	// on a project and have to backtrack across it.
-
-	// FIXME the impl here is currently O(n) in the number of selections; it
-	// absolutely cannot stay in a hot sorting path like this
-	// FIXME while other solver invariants probably protect us from it, this
-	// call-out means that it's possible for external state change to invalidate
-	// heap invariants.
-	_, isel := s.sel.selected(iname)
-	_, jsel := s.sel.selected(jname)
-
-	if isel && !jsel {
-		return true
-	}
-	if !isel && jsel {
-		return false
-	}
-
-	if iname.eq(jname) {
-		return false
-	}
-
-	_, ilock := s.rd.rlm[iname.ProjectRoot]
-	_, jlock := s.rd.rlm[jname.ProjectRoot]
-
-	switch {
-	case ilock && !jlock:
-		return true
-	case !ilock && jlock:
-		return false
-	case ilock && jlock:
-		return iname.Less(jname)
-	}
-
-	// Now, sort by number of available versions. This will trigger network
-	// activity, but at this point we know that the project we're looking at
-	// isn't locked by the root. And, because being locked by root is the only
-	// way avoid that call when making a version queue, we know we're gonna have
-	// to pay that cost anyway.
-
-	// We can safely ignore an err from listVersions here because, if there is
-	// an actual problem, it'll be noted and handled somewhere else saner in the
-	// solving algorithm.
-	ivl, _ := s.b.listVersions(iname)
-	jvl, _ := s.b.listVersions(jname)
-	iv, jv := len(ivl), len(jvl)
-
-	// Packages with fewer versions to pick from are less likely to benefit from
-	// backtracking, so deal with them earlier in order to minimize the amount
-	// of superfluous backtracking through them we do.
-	switch {
-	case iv == 0 && jv != 0:
-		return true
-	case iv != 0 && jv == 0:
-		return false
-	case iv != jv:
-		return iv < jv
-	}
-
-	// Finally, if all else fails, fall back to comparing by name
-	return iname.Less(jname)
-}
-
-func (s *solver) fail(id ProjectIdentifier) {
-	// TODO(sdboyer) does this need updating, now that we have non-project package
-	// selection?
-
-	// skip if the root project
-	if !s.rd.isRoot(id.ProjectRoot) {
-		// just look for the first (oldest) one; the backtracker will necessarily
-		// traverse through and pop off any earlier ones
-		for _, vq := range s.vqs {
-			if vq.id.eq(id) {
-				vq.failed = true
-				return
-			}
-		}
-	}
-}
-
-// selectAtom pulls an atom into the selection stack, alongside some of
-// its contained packages. New resultant dependency requirements are added to
-// the unselected priority queue.
-//
-// Behavior is slightly diffferent if pkgonly is true.
-func (s *solver) selectAtom(a atomWithPackages, pkgonly bool) error {
-	s.mtr.push("select-atom")
-	s.unsel.remove(bimodalIdentifier{
-		id: a.a.id,
-		pl: a.pl,
-	})
-
-	pl, deps, err := s.getImportsAndConstraintsOf(a)
-	if err != nil {
-		if contextCanceledOrSMReleased(err) {
-			return err
-		}
-		// This shouldn't be possible; other checks should have ensured all
-		// packages and deps are present for any argument passed to this method.
-		panic(fmt.Sprintf("canary - shouldn't be possible %s", err))
-	}
-	// Assign the new internal package list into the atom, then push it onto the
-	// selection stack
-	a.pl = pl
-	s.sel.pushSelection(a, pkgonly)
-
-	// If this atom has a lock, pull it out so that we can potentially inject
-	// preferred versions into any bmis we enqueue
-	//
-	// TODO(sdboyer) making this call here could be the first thing to trigger
-	// network activity...maybe? if so, can we mitigate by deferring the work to
-	// queue consumption time?
-	_, l, _ := s.b.GetManifestAndLock(a.a.id, a.a.v, s.rd.an)
-	var lmap map[ProjectIdentifier]Version
-	if l != nil {
-		lmap = make(map[ProjectIdentifier]Version)
-		for _, lp := range l.Projects() {
-			lmap[lp.Ident()] = lp.Version()
-		}
-	}
-
-	for _, dep := range deps {
-		// Root can come back up here if there's a project-level cycle.
-		// Satisfiability checks have already ensured invariants are maintained,
-		// so we know we can just skip it here.
-		if s.rd.isRoot(dep.Ident.ProjectRoot) {
-			continue
-		}
-		// If this is dep isn't in the lock, do some prefetching. (If it is, we
-		// might be able to get away with zero network activity for it, so don't
-		// prefetch). This provides an opportunity for some parallelism wins, on
-		// two fronts:
-		//
-		// 1. Because this loop may have multiple deps in it, we could end up
-		// simultaneously fetching both in the background while solving proceeds
-		//
-		// 2. Even if only one dep gets prefetched here, the worst case is that
-		// that same dep comes out of the unselected queue next, and we gain a
-		// few microseconds before blocking later. Best case, the dep doesn't
-		// come up next, but some other dep comes up that wasn't prefetched, and
-		// both fetches proceed in parallel.
-		if s.rd.needVersionsFor(dep.Ident.ProjectRoot) {
-			go s.b.SyncSourceFor(dep.Ident)
-		}
-
-		s.sel.pushDep(dependency{depender: a.a, dep: dep})
-		// Go through all the packages introduced on this dep, selecting only
-		// the ones where the only depper on them is what the preceding line just
-		// pushed in. Then, put those into the unselected queue.
-		rpm := s.sel.getRequiredPackagesIn(dep.Ident)
-		var newp []string
-		for _, pkg := range dep.pl {
-			// Just one means that the dep we're visiting is the sole importer.
-			if rpm[pkg] == 1 {
-				newp = append(newp, pkg)
-			}
-		}
-
-		if len(newp) > 0 {
-			// If there was a previously-established alternate source for this
-			// dependency, but the current atom did not express one (and getting
-			// here means the atom passed the source hot-swapping check - see
-			// checkIdentMatches()), then we have to create the new bmi with the
-			// alternate source. Otherwise, we end up with two discrete project
-			// entries for the project root in the final output, one with the
-			// alternate source, and one without. See #969.
-			id, _ := s.sel.getIdentFor(dep.Ident.ProjectRoot)
-			bmi := bimodalIdentifier{
-				id: id,
-				pl: newp,
-				// This puts in a preferred version if one's in the map, else
-				// drops in the zero value (nil)
-				prefv: lmap[dep.Ident],
-			}
-			heap.Push(s.unsel, bmi)
-		}
-	}
-
-	s.traceSelect(a, pkgonly)
-	s.mtr.pop()
-
-	return nil
-}
-
-func (s *solver) unselectLast() (atomWithPackages, bool, error) {
-	s.mtr.push("unselect")
-	defer s.mtr.pop()
-	awp, first := s.sel.popSelection()
-	heap.Push(s.unsel, bimodalIdentifier{id: awp.a.id, pl: awp.pl})
-
-	_, deps, err := s.getImportsAndConstraintsOf(awp)
-	if err != nil {
-		if contextCanceledOrSMReleased(err) {
-			return atomWithPackages{}, false, err
-		}
-		// This shouldn't be possible; other checks should have ensured all
-		// packages and deps are present for any argument passed to this method.
-		panic(fmt.Sprintf("canary - shouldn't be possible %s", err))
-	}
-
-	for _, dep := range deps {
-		// Skip popping if the dep is the root project, which can occur if
-		// there's a project-level import cycle. (This occurs frequently with
-		// e.g. kubernetes and docker)
-		if s.rd.isRoot(dep.Ident.ProjectRoot) {
-			continue
-		}
-		s.sel.popDep(dep.Ident)
-
-		// if no parents/importers, remove from unselected queue
-		if s.sel.depperCount(dep.Ident) == 0 {
-			s.unsel.remove(bimodalIdentifier{id: dep.Ident, pl: dep.pl})
-		}
-	}
-
-	return awp, first, nil
-}
-
-// simple (temporary?) helper just to convert atoms into locked projects
-func pa2lp(pa atom, pkgs map[string]struct{}) LockedProject {
-	lp := lockedProject{
-		pi: pa.id,
-	}
-
-	switch v := pa.v.(type) {
-	case UnpairedVersion:
-		lp.v = v
-	case Revision:
-		lp.r = v
-	case versionPair:
-		lp.v = v.v
-		lp.r = v.r
-	default:
-		panic("unreachable")
-	}
-
-	lp.pkgs = make([]string, 0, len(pkgs))
-
-	pr := string(pa.id.ProjectRoot)
-	trim := pr + "/"
-	for pkg := range pkgs {
-		if pkg == string(pa.id.ProjectRoot) {
-			lp.pkgs = append(lp.pkgs, ".")
-		} else {
-			lp.pkgs = append(lp.pkgs, strings.TrimPrefix(pkg, trim))
-		}
-	}
-	sort.Strings(lp.pkgs)
-
-	return lp
-}
-
-func contextCanceledOrSMReleased(err error) bool {
-	return err == context.Canceled || err == context.DeadlineExceeded || err == ErrSourceManagerIsReleased
-}
diff --git a/vendor/github.com/golang/dep/gps/source.go b/vendor/github.com/golang/dep/gps/source.go
deleted file mode 100644
index 1a1a0456a0ed7d684c258876074b96470ff11e6b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/source.go
+++ /dev/null
@@ -1,710 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"bytes"
-	"context"
-	"fmt"
-	"log"
-	"sync"
-
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/pkg/errors"
-)
-
-// sourceState represent the states that a source can be in, depending on how
-// much search and discovery work ahs been done by a source's managing gateway.
-//
-// These are basically used to achieve a cheap approximation of a FSM.
-type sourceState int32
-
-const (
-	// sourceExistsUpstream means the chosen source was verified upstream, during this execution.
-	sourceExistsUpstream sourceState = 1 << iota
-	// sourceExistsLocally means the repo was retrieved in the past.
-	sourceExistsLocally
-	// sourceHasLatestVersionList means the version list was refreshed within the cache window.
-	sourceHasLatestVersionList
-	// sourceHasLatestLocally means the repo was pulled fresh during this execution.
-	sourceHasLatestLocally
-)
-
-func (state sourceState) String() string {
-	var b bytes.Buffer
-	for _, s := range []struct {
-		sourceState
-		string
-	}{
-		{sourceExistsUpstream, "sourceExistsUpstream"},
-		{sourceExistsLocally, "sourceExistsLocally"},
-		{sourceHasLatestVersionList, "sourceHasLatestVersionList"},
-		{sourceHasLatestLocally, "sourceHasLatestLocally"},
-	} {
-		if state&s.sourceState > 0 {
-			if b.Len() > 0 {
-				b.WriteString("|")
-			}
-			b.WriteString(s.string)
-		}
-	}
-	return b.String()
-}
-
-type srcReturn struct {
-	*sourceGateway
-	error
-}
-
-type sourceCoordinator struct {
-	supervisor *supervisor
-	deducer    deducer
-	srcmut     sync.RWMutex // guards srcs and srcIdx
-	srcs       map[string]*sourceGateway
-	nameToURL  map[string]string
-	psrcmut    sync.Mutex // guards protoSrcs map
-	protoSrcs  map[string][]chan srcReturn
-	cachedir   string
-	cache      sourceCache
-	logger     *log.Logger
-}
-
-// newSourceCoordinator returns a new sourceCoordinator.
-// Passing a nil sourceCache defaults to an in-memory cache.
-func newSourceCoordinator(superv *supervisor, deducer deducer, cachedir string, cache sourceCache, logger *log.Logger) *sourceCoordinator {
-	if cache == nil {
-		cache = memoryCache{}
-	}
-	return &sourceCoordinator{
-		supervisor: superv,
-		deducer:    deducer,
-		cachedir:   cachedir,
-		cache:      cache,
-		logger:     logger,
-		srcs:       make(map[string]*sourceGateway),
-		nameToURL:  make(map[string]string),
-		protoSrcs:  make(map[string][]chan srcReturn),
-	}
-}
-
-func (sc *sourceCoordinator) close() {
-	if err := sc.cache.close(); err != nil {
-		sc.logger.Println(errors.Wrap(err, "failed to close the source cache"))
-	}
-}
-
-func (sc *sourceCoordinator) getSourceGatewayFor(ctx context.Context, id ProjectIdentifier) (*sourceGateway, error) {
-	if err := sc.supervisor.ctx.Err(); err != nil {
-		return nil, err
-	}
-
-	normalizedName := id.normalizedSource()
-
-	sc.srcmut.RLock()
-	if url, has := sc.nameToURL[normalizedName]; has {
-		srcGate, has := sc.srcs[url]
-		sc.srcmut.RUnlock()
-		if has {
-			return srcGate, nil
-		}
-		panic(fmt.Sprintf("%q was URL for %q in nameToURL, but no corresponding srcGate in srcs map", url, normalizedName))
-	}
-
-	// Without a direct match, we must fold the input name to a generally
-	// stable, caseless variant and primarily work from that. This ensures that
-	// on case-insensitive filesystems, we do not end up with multiple
-	// sourceGateways for paths that vary only by case. We perform folding
-	// unconditionally, independent of whether the underlying fs is
-	// case-sensitive, in order to ensure uniform behavior.
-	//
-	// This has significant implications. It is effectively deciding that the
-	// ProjectRoot portion of import paths are case-insensitive, which is by no
-	// means an invariant maintained by all hosting systems. If this presents a
-	// problem in practice, then we can explore expanding the deduction system
-	// to include case-sensitivity-for-roots metadata and treat it on a
-	// host-by-host basis. Such cases would still be rejected by the Go
-	// toolchain's compiler, though, and case-sensitivity in root names is
-	// likely to be at least frowned on if not disallowed by most hosting
-	// systems. So we follow this path, which is both a vastly simpler solution
-	// and one that seems quite likely to work in practice.
-	foldedNormalName := toFold(normalizedName)
-	notFolded := foldedNormalName != normalizedName
-	if notFolded {
-		// If the folded name differs from the input name, then there may
-		// already be an entry for it in the nameToURL map, so check again.
-		if url, has := sc.nameToURL[foldedNormalName]; has {
-			srcGate, has := sc.srcs[url]
-			// There was a match on the canonical folded variant. Upgrade to a
-			// write lock, so that future calls on this name don't need to
-			// burn cycles on folding.
-			sc.srcmut.RUnlock()
-			sc.srcmut.Lock()
-			// It may be possible that another goroutine could interleave
-			// between the unlock and re-lock. Even if they do, though, they'll
-			// only have recorded the same url value as we have here. In other
-			// words, these operations commute, so we can safely write here
-			// without checking again.
-			sc.nameToURL[normalizedName] = url
-			sc.srcmut.Unlock()
-			if has {
-				return srcGate, nil
-			}
-			panic(fmt.Sprintf("%q was URL for %q in nameToURL, but no corresponding srcGate in srcs map", url, normalizedName))
-		}
-	}
-	sc.srcmut.RUnlock()
-
-	// No gateway exists for this path yet; set up a proto, being careful to fold
-	// together simultaneous attempts on the same case-folded path.
-	sc.psrcmut.Lock()
-	if chans, has := sc.protoSrcs[foldedNormalName]; has {
-		// Another goroutine is already working on this normalizedName. Fold
-		// in with that work by attaching our return channels to the list.
-		rc := make(chan srcReturn, 1)
-		sc.protoSrcs[foldedNormalName] = append(chans, rc)
-		sc.psrcmut.Unlock()
-		ret := <-rc
-		return ret.sourceGateway, ret.error
-	}
-
-	sc.protoSrcs[foldedNormalName] = []chan srcReturn{}
-	sc.psrcmut.Unlock()
-
-	doReturn := func(sg *sourceGateway, err error) {
-		ret := srcReturn{sourceGateway: sg, error: err}
-		sc.psrcmut.Lock()
-		for _, rc := range sc.protoSrcs[foldedNormalName] {
-			rc <- ret
-		}
-		delete(sc.protoSrcs, foldedNormalName)
-		sc.psrcmut.Unlock()
-	}
-
-	pd, err := sc.deducer.deduceRootPath(ctx, normalizedName)
-	if err != nil {
-		// As in the deducer, don't cache errors so that externally-driven retry
-		// strategies can be constructed.
-		doReturn(nil, err)
-		return nil, err
-	}
-
-	// It'd be quite the feat - but not impossible - for a gateway
-	// corresponding to this normalizedName to have slid into the main
-	// sources map after the initial unlock, but before this goroutine got
-	// scheduled. Guard against that by checking the main sources map again
-	// and bailing out if we find an entry.
-	sc.srcmut.RLock()
-	if url, has := sc.nameToURL[foldedNormalName]; has {
-		if srcGate, has := sc.srcs[url]; has {
-			sc.srcmut.RUnlock()
-			doReturn(srcGate, nil)
-			return srcGate, nil
-		}
-		panic(fmt.Sprintf("%q was URL for %q in nameToURL, but no corresponding srcGate in srcs map", url, normalizedName))
-	}
-	sc.srcmut.RUnlock()
-
-	sc.srcmut.Lock()
-	defer sc.srcmut.Unlock()
-
-	// Get or create a sourceGateway.
-	var srcGate *sourceGateway
-	var url, unfoldedURL string
-	var errs errorSlice
-	for _, m := range pd.mb {
-		url = m.URL().String()
-		if notFolded {
-			// If the normalizedName and foldedNormalName differ, then we're pretty well
-			// guaranteed that returned URL will also need folding into canonical form.
-			unfoldedURL = url
-			url = toFold(url)
-		}
-		if sg, has := sc.srcs[url]; has {
-			srcGate = sg
-			break
-		}
-		src, err := m.try(ctx, sc.cachedir)
-		if err == nil {
-			cache := sc.cache.newSingleSourceCache(id)
-			srcGate, err = newSourceGateway(ctx, src, sc.supervisor, sc.cachedir, cache)
-			if err == nil {
-				sc.srcs[url] = srcGate
-				break
-			}
-		}
-		errs = append(errs, err)
-	}
-	if srcGate == nil {
-		doReturn(nil, errs)
-		return nil, errs
-	}
-
-	// Record the name -> URL mapping, making sure that we also get the
-	// self-mapping.
-	sc.nameToURL[foldedNormalName] = url
-	if url != foldedNormalName {
-		sc.nameToURL[url] = url
-	}
-
-	// Make sure we have both the folded and unfolded names and URLs recorded in
-	// the map, if the input needed folding.
-	if notFolded {
-		sc.nameToURL[normalizedName] = url
-		sc.nameToURL[unfoldedURL] = url
-	}
-
-	doReturn(srcGate, nil)
-	return srcGate, nil
-}
-
-// sourceGateways manage all incoming calls for data from sources, serializing
-// and caching them as needed.
-type sourceGateway struct {
-	cachedir string
-	srcState sourceState
-	src      source
-	cache    singleSourceCache
-	mu       sync.Mutex // global lock, serializes all behaviors
-	suprvsr  *supervisor
-}
-
-// newSourceGateway returns a new gateway for src. If the source exists locally,
-// the local state may be cleaned, otherwise we ping upstream.
-func newSourceGateway(ctx context.Context, src source, superv *supervisor, cachedir string, cache singleSourceCache) (*sourceGateway, error) {
-	var state sourceState
-	local := src.existsLocally(ctx)
-	if local {
-		state |= sourceExistsLocally
-		if err := superv.do(ctx, src.upstreamURL(), ctValidateLocal, func(ctx context.Context) error {
-			return src.maybeClean(ctx)
-		}); err != nil {
-			return nil, err
-		}
-	}
-
-	sg := &sourceGateway{
-		srcState: state,
-		src:      src,
-		cachedir: cachedir,
-		cache:    cache,
-		suprvsr:  superv,
-	}
-
-	if !local {
-		if err := sg.require(ctx, sourceExistsUpstream); err != nil {
-			return nil, err
-		}
-	}
-
-	return sg, nil
-}
-
-func (sg *sourceGateway) syncLocal(ctx context.Context) error {
-	sg.mu.Lock()
-	err := sg.require(ctx, sourceExistsLocally|sourceHasLatestLocally)
-	sg.mu.Unlock()
-	return err
-}
-
-func (sg *sourceGateway) existsInCache(ctx context.Context) error {
-	sg.mu.Lock()
-	err := sg.require(ctx, sourceExistsLocally)
-	sg.mu.Unlock()
-	return err
-}
-
-func (sg *sourceGateway) existsUpstream(ctx context.Context) error {
-	sg.mu.Lock()
-	err := sg.require(ctx, sourceExistsUpstream)
-	sg.mu.Unlock()
-	return err
-}
-
-func (sg *sourceGateway) exportVersionTo(ctx context.Context, v Version, to string) error {
-	sg.mu.Lock()
-	defer sg.mu.Unlock()
-
-	err := sg.require(ctx, sourceExistsLocally)
-	if err != nil {
-		return err
-	}
-
-	r, err := sg.convertToRevision(ctx, v)
-	if err != nil {
-		return err
-	}
-
-	err = sg.suprvsr.do(ctx, sg.src.upstreamURL(), ctExportTree, func(ctx context.Context) error {
-		return sg.src.exportRevisionTo(ctx, r, to)
-	})
-
-	// It's possible (in git) that we may have tried this against a version that
-	// doesn't exist in the repository cache, even though we know it exists in
-	// the upstream. If it looks like that might be the case, update the local
-	// and retry.
-	// TODO(sdboyer) It'd be better if we could check the error to see if this
-	// actually was the cause of the problem.
-	if err != nil && sg.srcState&sourceHasLatestLocally == 0 {
-		if err = sg.require(ctx, sourceHasLatestLocally); err == nil {
-			err = sg.suprvsr.do(ctx, sg.src.upstreamURL(), ctExportTree, func(ctx context.Context) error {
-				return sg.src.exportRevisionTo(ctx, r, to)
-			})
-		}
-	}
-
-	return err
-}
-
-func (sg *sourceGateway) exportPrunedVersionTo(ctx context.Context, lp LockedProject, prune PruneOptions, to string) error {
-	sg.mu.Lock()
-	defer sg.mu.Unlock()
-
-	err := sg.require(ctx, sourceExistsLocally)
-	if err != nil {
-		return err
-	}
-
-	r, err := sg.convertToRevision(ctx, lp.Version())
-	if err != nil {
-		return err
-	}
-
-	if fastprune, ok := sg.src.(sourceFastPrune); ok {
-		return sg.suprvsr.do(ctx, sg.src.upstreamURL(), ctExportTree, func(ctx context.Context) error {
-			return fastprune.exportPrunedRevisionTo(ctx, r, lp.Packages(), prune, to)
-		})
-	}
-
-	if err = sg.suprvsr.do(ctx, sg.src.upstreamURL(), ctExportTree, func(ctx context.Context) error {
-		return sg.src.exportRevisionTo(ctx, r, to)
-	}); err != nil {
-		return err
-	}
-
-	return PruneProject(to, lp, prune)
-}
-
-func (sg *sourceGateway) getManifestAndLock(ctx context.Context, pr ProjectRoot, v Version, an ProjectAnalyzer) (Manifest, Lock, error) {
-	sg.mu.Lock()
-	defer sg.mu.Unlock()
-
-	r, err := sg.convertToRevision(ctx, v)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	m, l, has := sg.cache.getManifestAndLock(r, an.Info())
-	if has {
-		return m, l, nil
-	}
-
-	err = sg.require(ctx, sourceExistsLocally)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	label := fmt.Sprintf("%s:%s", sg.src.upstreamURL(), an.Info())
-	err = sg.suprvsr.do(ctx, label, ctGetManifestAndLock, func(ctx context.Context) error {
-		m, l, err = sg.src.getManifestAndLock(ctx, pr, r, an)
-		return err
-	})
-
-	// It's possible (in git) that we may have tried this against a version that
-	// doesn't exist in the repository cache, even though we know it exists in
-	// the upstream. If it looks like that might be the case, update the local
-	// and retry.
-	// TODO(sdboyer) It'd be better if we could check the error to see if this
-	// actually was the cause of the problem.
-	if err != nil && sg.srcState&sourceHasLatestLocally == 0 {
-		// TODO(sdboyer) we should warn/log/something in adaptive recovery
-		// situations like this
-		err = sg.require(ctx, sourceHasLatestLocally)
-		if err != nil {
-			return nil, nil, err
-		}
-
-		err = sg.suprvsr.do(ctx, label, ctGetManifestAndLock, func(ctx context.Context) error {
-			m, l, err = sg.src.getManifestAndLock(ctx, pr, r, an)
-			return err
-		})
-	}
-
-	if err != nil {
-		return nil, nil, err
-	}
-
-	sg.cache.setManifestAndLock(r, an.Info(), m, l)
-	return m, l, nil
-}
-
-func (sg *sourceGateway) listPackages(ctx context.Context, pr ProjectRoot, v Version) (pkgtree.PackageTree, error) {
-	sg.mu.Lock()
-	defer sg.mu.Unlock()
-
-	r, err := sg.convertToRevision(ctx, v)
-	if err != nil {
-		return pkgtree.PackageTree{}, err
-	}
-
-	ptree, has := sg.cache.getPackageTree(r, pr)
-	if has {
-		return ptree, nil
-	}
-
-	err = sg.require(ctx, sourceExistsLocally)
-	if err != nil {
-		return pkgtree.PackageTree{}, err
-	}
-
-	label := fmt.Sprintf("%s:%s", pr, sg.src.upstreamURL())
-	err = sg.suprvsr.do(ctx, label, ctListPackages, func(ctx context.Context) error {
-		ptree, err = sg.src.listPackages(ctx, pr, r)
-		return err
-	})
-
-	// It's possible (in git) that we may have tried this against a version that
-	// doesn't exist in the repository cache, even though we know it exists in
-	// the upstream. If it looks like that might be the case, update the local
-	// and retry.
-	// TODO(sdboyer) It'd be better if we could check the error to see if this
-	// actually was the cause of the problem.
-	if err != nil && sg.srcState&sourceHasLatestLocally == 0 {
-		// TODO(sdboyer) we should warn/log/something in adaptive recovery
-		// situations like this
-		err = sg.require(ctx, sourceHasLatestLocally)
-		if err != nil {
-			return pkgtree.PackageTree{}, err
-		}
-
-		err = sg.suprvsr.do(ctx, label, ctListPackages, func(ctx context.Context) error {
-			ptree, err = sg.src.listPackages(ctx, pr, r)
-			return err
-		})
-	}
-
-	if err != nil {
-		return pkgtree.PackageTree{}, err
-	}
-
-	sg.cache.setPackageTree(r, ptree)
-	return ptree, nil
-}
-
-// caller must hold sg.mu.
-func (sg *sourceGateway) convertToRevision(ctx context.Context, v Version) (Revision, error) {
-	// When looking up by Version, there are four states that may have
-	// differing opinions about version->revision mappings:
-	//
-	//   1. The upstream source/repo (canonical)
-	//   2. The local source/repo
-	//   3. The local cache
-	//   4. The input (params to this method)
-	//
-	// If the input differs from any of the above, it's likely because some lock
-	// got written somewhere with a version/rev pair that has since changed or
-	// been removed. But correct operation dictates that such a mis-mapping be
-	// respected; if the mis-mapping is to be corrected, it has to be done
-	// intentionally by the caller, not automatically here.
-	r, has := sg.cache.toRevision(v)
-	if has {
-		return r, nil
-	}
-
-	if sg.srcState&sourceHasLatestVersionList != 0 {
-		// We have the latest version list already and didn't get a match, so
-		// this is definitely a failure case.
-		return "", fmt.Errorf("version %q does not exist in source", v)
-	}
-
-	// The version list is out of date; it's possible this version might
-	// show up after loading it.
-	err := sg.require(ctx, sourceHasLatestVersionList)
-	if err != nil {
-		return "", err
-	}
-
-	r, has = sg.cache.toRevision(v)
-	if !has {
-		return "", fmt.Errorf("version %q does not exist in source", v)
-	}
-
-	return r, nil
-}
-
-func (sg *sourceGateway) listVersions(ctx context.Context) ([]PairedVersion, error) {
-	sg.mu.Lock()
-	defer sg.mu.Unlock()
-
-	if pvs, ok := sg.cache.getAllVersions(); ok {
-		return pvs, nil
-	}
-
-	err := sg.require(ctx, sourceHasLatestVersionList)
-	if err != nil {
-		return nil, err
-	}
-	if pvs, ok := sg.cache.getAllVersions(); ok {
-		return pvs, nil
-	}
-	return nil, nil
-}
-
-func (sg *sourceGateway) revisionPresentIn(ctx context.Context, r Revision) (bool, error) {
-	sg.mu.Lock()
-	defer sg.mu.Unlock()
-
-	err := sg.require(ctx, sourceExistsLocally)
-	if err != nil {
-		return false, err
-	}
-
-	if _, exists := sg.cache.getVersionsFor(r); exists {
-		return true, nil
-	}
-
-	present, err := sg.src.revisionPresentIn(r)
-	if err == nil && present {
-		sg.cache.markRevisionExists(r)
-	}
-	return present, err
-}
-
-func (sg *sourceGateway) disambiguateRevision(ctx context.Context, r Revision) (Revision, error) {
-	sg.mu.Lock()
-	defer sg.mu.Unlock()
-
-	err := sg.require(ctx, sourceExistsLocally)
-	if err != nil {
-		return "", err
-	}
-
-	return sg.src.disambiguateRevision(ctx, r)
-}
-
-// sourceExistsUpstream verifies that the source exists upstream and that the
-// upstreamURL has not changed and returns any additional sourceState, or an error.
-func (sg *sourceGateway) sourceExistsUpstream(ctx context.Context) (sourceState, error) {
-	if sg.src.existsCallsListVersions() {
-		return sg.loadLatestVersionList(ctx)
-	}
-	err := sg.suprvsr.do(ctx, sg.src.sourceType(), ctSourcePing, func(ctx context.Context) error {
-		if !sg.src.existsUpstream(ctx) {
-			return errors.Errorf("source does not exist upstream: %s: %s", sg.src.sourceType(), sg.src.upstreamURL())
-		}
-		return nil
-	})
-	return 0, err
-}
-
-// initLocal initializes the source locally and returns the resulting sourceState.
-func (sg *sourceGateway) initLocal(ctx context.Context) (sourceState, error) {
-	if err := sg.suprvsr.do(ctx, sg.src.sourceType(), ctSourceInit, func(ctx context.Context) error {
-		err := sg.src.initLocal(ctx)
-		return errors.Wrapf(err, "failed to fetch source for %s", sg.src.upstreamURL())
-	}); err != nil {
-		return 0, err
-	}
-	return sourceExistsUpstream | sourceExistsLocally | sourceHasLatestLocally, nil
-}
-
-// loadLatestVersionList loads the latest version list, possibly ensuring the source
-// exists locally first, and returns the resulting sourceState.
-func (sg *sourceGateway) loadLatestVersionList(ctx context.Context) (sourceState, error) {
-	var addlState sourceState
-	if sg.src.listVersionsRequiresLocal() && !sg.src.existsLocally(ctx) {
-		as, err := sg.initLocal(ctx)
-		if err != nil {
-			return 0, err
-		}
-		addlState |= as
-	}
-	var pvl []PairedVersion
-	if err := sg.suprvsr.do(ctx, sg.src.sourceType(), ctListVersions, func(ctx context.Context) error {
-		var err error
-		pvl, err = sg.src.listVersions(ctx)
-		return errors.Wrapf(err, "failed to list versions for %s", sg.src.upstreamURL())
-	}); err != nil {
-		return addlState, err
-	}
-	sg.cache.setVersionMap(pvl)
-	return addlState | sourceHasLatestVersionList, nil
-}
-
-// require ensures the sourceGateway has the wanted sourceState, fetching more
-// data if necessary. Returns an error if the state could not be reached.
-// caller must hold sg.mu
-func (sg *sourceGateway) require(ctx context.Context, wanted sourceState) (err error) {
-	todo := (^sg.srcState) & wanted
-	var flag sourceState = 1
-
-	for todo != 0 {
-		if todo&flag != 0 {
-			// Set up addlState so that individual ops can easily attach
-			// more states that were incidentally satisfied by the op.
-			var addlState sourceState
-
-			switch flag {
-			case sourceExistsUpstream:
-				addlState, err = sg.sourceExistsUpstream(ctx)
-			case sourceExistsLocally:
-				if !sg.src.existsLocally(ctx) {
-					addlState, err = sg.initLocal(ctx)
-				}
-			case sourceHasLatestVersionList:
-				if _, ok := sg.cache.getAllVersions(); !ok {
-					addlState, err = sg.loadLatestVersionList(ctx)
-				}
-			case sourceHasLatestLocally:
-				err = sg.suprvsr.do(ctx, sg.src.sourceType(), ctSourceFetch, func(ctx context.Context) error {
-					return sg.src.updateLocal(ctx)
-				})
-				addlState = sourceExistsUpstream | sourceExistsLocally
-			}
-
-			if err != nil {
-				return
-			}
-
-			checked := flag | addlState
-			sg.srcState |= checked
-			todo &= ^checked
-		}
-
-		flag <<= 1
-	}
-
-	return nil
-}
-
-// source is an abstraction around the different underlying types (git, bzr, hg,
-// svn, maybe raw on-disk code, and maybe eventually a registry) that can
-// provide versioned project source trees.
-type source interface {
-	existsLocally(context.Context) bool
-	existsUpstream(context.Context) bool
-	upstreamURL() string
-	initLocal(context.Context) error
-	updateLocal(context.Context) error
-	// maybeClean is a no-op when the underlying source does not support cleaning.
-	maybeClean(context.Context) error
-	listVersions(context.Context) ([]PairedVersion, error)
-	getManifestAndLock(context.Context, ProjectRoot, Revision, ProjectAnalyzer) (Manifest, Lock, error)
-	listPackages(context.Context, ProjectRoot, Revision) (pkgtree.PackageTree, error)
-	revisionPresentIn(Revision) (bool, error)
-	disambiguateRevision(context.Context, Revision) (Revision, error)
-	exportRevisionTo(context.Context, Revision, string) error
-	sourceType() string
-	// existsCallsListVersions returns true if calling existsUpstream actually lists
-	// versions underneath, meaning listVersions might as well be used instead.
-	existsCallsListVersions() bool
-	// listVersionsRequiresLocal returns true if calling listVersions first
-	// requires the source to exist locally.
-	listVersionsRequiresLocal() bool
-}
-
-type sourceFastPrune interface {
-	source
-	exportPrunedRevisionTo(context.Context, Revision, []string, PruneOptions, string) error
-}
diff --git a/vendor/github.com/golang/dep/gps/source_cache.go b/vendor/github.com/golang/dep/gps/source_cache.go
deleted file mode 100644
index 966008a38869905f5f75e8bb9c43a640df27c74f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/source_cache.go
+++ /dev/null
@@ -1,307 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"fmt"
-	"path"
-	"sort"
-	"strings"
-	"sync"
-
-	"github.com/golang/dep/gps/pkgtree"
-)
-
-// sourceCache is an interface for creating singleSourceCaches, and safely
-// releasing backing resources via close.
-type sourceCache interface {
-	// newSingleSourceCache creates a new singleSourceCache for id, which
-	// remains valid until close is called.
-	newSingleSourceCache(id ProjectIdentifier) singleSourceCache
-	// close releases background resources.
-	close() error
-}
-
-// singleSourceCache provides a method set for storing and retrieving data about
-// a single source.
-type singleSourceCache interface {
-	// Store the manifest and lock information for a given revision, as defined by
-	// a particular ProjectAnalyzer.
-	setManifestAndLock(Revision, ProjectAnalyzerInfo, Manifest, Lock)
-
-	// Get the manifest and lock information for a given revision, as defined by
-	// a particular ProjectAnalyzer.
-	getManifestAndLock(Revision, ProjectAnalyzerInfo) (Manifest, Lock, bool)
-
-	// Store a PackageTree for a given revision.
-	setPackageTree(Revision, pkgtree.PackageTree)
-
-	// Get the PackageTree for a given revision.
-	getPackageTree(Revision, ProjectRoot) (pkgtree.PackageTree, bool)
-
-	// Indicate to the cache that an individual revision is known to exist.
-	markRevisionExists(r Revision)
-
-	// Store the mappings between a set of PairedVersions' surface versions
-	// their corresponding revisions.
-	//
-	// The existing list of versions will be purged before writing. Revisions
-	// will have their pairings purged, but record of the revision existing will
-	// be kept, on the assumption that revisions are immutable and permanent.
-	setVersionMap(versionList []PairedVersion)
-
-	// Get the list of unpaired versions corresponding to the given revision.
-	getVersionsFor(Revision) ([]UnpairedVersion, bool)
-
-	// Gets all the version pairs currently known to the cache.
-	getAllVersions() ([]PairedVersion, bool)
-
-	// Get the revision corresponding to the given unpaired version.
-	getRevisionFor(UnpairedVersion) (Revision, bool)
-
-	// Attempt to convert the given Version to a Revision, given information
-	// currently present in the cache, and in the Version itself.
-	toRevision(v Version) (Revision, bool)
-
-	// Attempt to convert the given Version to an UnpairedVersion, given
-	// information currently present in the cache, or in the Version itself.
-	//
-	// If the input is a revision and multiple UnpairedVersions are associated
-	// with it, whatever happens to be the first is returned.
-	toUnpaired(v Version) (UnpairedVersion, bool)
-}
-
-// memoryCache is a sourceCache which creates singleSourceCacheMemory instances.
-type memoryCache struct{}
-
-func (memoryCache) newSingleSourceCache(ProjectIdentifier) singleSourceCache {
-	return newMemoryCache()
-}
-
-func (memoryCache) close() error { return nil }
-
-type singleSourceCacheMemory struct {
-	// Protects all fields.
-	mut   sync.RWMutex
-	infos map[ProjectAnalyzerInfo]map[Revision]projectInfo
-	// Replaced, never modified. Imports are *relative* (ImportRoot prefix trimmed).
-	ptrees map[Revision]map[string]pkgtree.PackageOrErr
-	// Replaced, never modified.
-	vList []PairedVersion
-	vMap  map[UnpairedVersion]Revision
-	rMap  map[Revision][]UnpairedVersion
-}
-
-func newMemoryCache() singleSourceCache {
-	return &singleSourceCacheMemory{
-		infos:  make(map[ProjectAnalyzerInfo]map[Revision]projectInfo),
-		ptrees: make(map[Revision]map[string]pkgtree.PackageOrErr),
-		vMap:   make(map[UnpairedVersion]Revision),
-		rMap:   make(map[Revision][]UnpairedVersion),
-	}
-}
-
-type projectInfo struct {
-	Manifest
-	Lock
-}
-
-func (c *singleSourceCacheMemory) setManifestAndLock(r Revision, pai ProjectAnalyzerInfo, m Manifest, l Lock) {
-	c.mut.Lock()
-	inner, has := c.infos[pai]
-	if !has {
-		inner = make(map[Revision]projectInfo)
-		c.infos[pai] = inner
-	}
-	inner[r] = projectInfo{Manifest: m, Lock: l}
-
-	// Ensure there's at least an entry in the rMap so that the rMap always has
-	// a complete picture of the revisions we know to exist
-	if _, has = c.rMap[r]; !has {
-		c.rMap[r] = nil
-	}
-	c.mut.Unlock()
-}
-
-func (c *singleSourceCacheMemory) getManifestAndLock(r Revision, pai ProjectAnalyzerInfo) (Manifest, Lock, bool) {
-	c.mut.Lock()
-	defer c.mut.Unlock()
-
-	inner, has := c.infos[pai]
-	if !has {
-		return nil, nil, false
-	}
-
-	pi, has := inner[r]
-	if has {
-		return pi.Manifest, pi.Lock, true
-	}
-	return nil, nil, false
-}
-
-func (c *singleSourceCacheMemory) setPackageTree(r Revision, ptree pkgtree.PackageTree) {
-	// Make a copy, with relative import paths.
-	pkgs := pkgtree.CopyPackages(ptree.Packages, func(ip string, poe pkgtree.PackageOrErr) (string, pkgtree.PackageOrErr) {
-		poe.P.ImportPath = "" // Don't store this
-		return strings.TrimPrefix(ip, ptree.ImportRoot), poe
-	})
-
-	c.mut.Lock()
-	c.ptrees[r] = pkgs
-
-	// Ensure there's at least an entry in the rMap so that the rMap always has
-	// a complete picture of the revisions we know to exist
-	if _, has := c.rMap[r]; !has {
-		c.rMap[r] = nil
-	}
-	c.mut.Unlock()
-}
-
-func (c *singleSourceCacheMemory) getPackageTree(r Revision, pr ProjectRoot) (pkgtree.PackageTree, bool) {
-	c.mut.Lock()
-	rptree, has := c.ptrees[r]
-	c.mut.Unlock()
-
-	if !has {
-		return pkgtree.PackageTree{}, false
-	}
-
-	// Return a copy, with full import paths.
-	pkgs := pkgtree.CopyPackages(rptree, func(rpath string, poe pkgtree.PackageOrErr) (string, pkgtree.PackageOrErr) {
-		ip := path.Join(string(pr), rpath)
-		if poe.Err == nil {
-			poe.P.ImportPath = ip
-		}
-		return ip, poe
-	})
-
-	return pkgtree.PackageTree{
-		ImportRoot: string(pr),
-		Packages:   pkgs,
-	}, true
-}
-
-func (c *singleSourceCacheMemory) setVersionMap(versionList []PairedVersion) {
-	c.mut.Lock()
-	c.vList = versionList
-	// TODO(sdboyer) how do we handle cache consistency here - revs that may
-	// be out of date vis-a-vis the ptrees or infos maps?
-	for r := range c.rMap {
-		c.rMap[r] = nil
-	}
-
-	c.vMap = make(map[UnpairedVersion]Revision, len(versionList))
-
-	for _, pv := range versionList {
-		u, r := pv.Unpair(), pv.Revision()
-		c.vMap[u] = r
-		c.rMap[r] = append(c.rMap[r], u)
-	}
-	c.mut.Unlock()
-}
-
-func (c *singleSourceCacheMemory) markRevisionExists(r Revision) {
-	c.mut.Lock()
-	if _, has := c.rMap[r]; !has {
-		c.rMap[r] = nil
-	}
-	c.mut.Unlock()
-}
-
-func (c *singleSourceCacheMemory) getVersionsFor(r Revision) ([]UnpairedVersion, bool) {
-	c.mut.Lock()
-	versionList, has := c.rMap[r]
-	c.mut.Unlock()
-	return versionList, has
-}
-
-func (c *singleSourceCacheMemory) getAllVersions() ([]PairedVersion, bool) {
-	c.mut.Lock()
-	vList := c.vList
-	c.mut.Unlock()
-
-	if vList == nil {
-		return nil, false
-	}
-	cp := make([]PairedVersion, len(vList))
-	copy(cp, vList)
-	return cp, true
-}
-
-func (c *singleSourceCacheMemory) getRevisionFor(uv UnpairedVersion) (Revision, bool) {
-	c.mut.Lock()
-	r, has := c.vMap[uv]
-	c.mut.Unlock()
-	return r, has
-}
-
-func (c *singleSourceCacheMemory) toRevision(v Version) (Revision, bool) {
-	switch t := v.(type) {
-	case Revision:
-		return t, true
-	case PairedVersion:
-		return t.Revision(), true
-	case UnpairedVersion:
-		c.mut.Lock()
-		r, has := c.vMap[t]
-		c.mut.Unlock()
-		return r, has
-	default:
-		panic(fmt.Sprintf("Unknown version type %T", v))
-	}
-}
-
-func (c *singleSourceCacheMemory) toUnpaired(v Version) (UnpairedVersion, bool) {
-	switch t := v.(type) {
-	case UnpairedVersion:
-		return t, true
-	case PairedVersion:
-		return t.Unpair(), true
-	case Revision:
-		c.mut.Lock()
-		upv, has := c.rMap[t]
-		c.mut.Unlock()
-
-		if has && len(upv) > 0 {
-			return upv[0], true
-		}
-		return nil, false
-	default:
-		panic(fmt.Sprintf("unknown version type %T", v))
-	}
-}
-
-// TODO(sdboyer) remove once source caching can be moved into separate package
-func locksAreEq(l1, l2 Lock) bool {
-	ii1, ii2 := l1.InputImports(), l2.InputImports()
-	if len(ii1) != len(ii2) {
-		return false
-	}
-
-	ilen := len(ii1)
-	if ilen > 0 {
-		sort.Strings(ii1)
-		sort.Strings(ii2)
-		for i := 0; i < ilen; i++ {
-			if ii1[i] != ii2[i] {
-				return false
-			}
-		}
-	}
-
-	p1, p2 := l1.Projects(), l2.Projects()
-	if len(p1) != len(p2) {
-		return false
-	}
-
-	p1, p2 = sortLockedProjects(p1), sortLockedProjects(p2)
-
-	for k, lp := range p1 {
-		if !lp.Eq(p2[k]) {
-			return false
-		}
-	}
-	return true
-}
diff --git a/vendor/github.com/golang/dep/gps/source_cache_bolt.go b/vendor/github.com/golang/dep/gps/source_cache_bolt.go
deleted file mode 100644
index 6174b1cace5f8e5a8a4a43d9d5769adfc1c69e88..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/source_cache_bolt.go
+++ /dev/null
@@ -1,531 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"fmt"
-	"log"
-	"os"
-	"path"
-	"path/filepath"
-	"strings"
-	"time"
-
-	"github.com/boltdb/bolt"
-	"github.com/golang/dep/gps/internal/pb"
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/golang/protobuf/proto"
-	"github.com/jmank88/nuts"
-	"github.com/pkg/errors"
-)
-
-// boltCacheFilename is a versioned filename for the bolt cache. The version
-// must be incremented whenever incompatible changes are made.
-const boltCacheFilename = "bolt-v1.db"
-
-// boltCache manages a bolt.DB cache and provides singleSourceCaches.
-type boltCache struct {
-	db     *bolt.DB
-	epoch  int64       // getters will not return values older than this unix timestamp
-	logger *log.Logger // info logging
-}
-
-// newBoltCache returns a new boltCache backed by a BoltDB file under the cache directory.
-func newBoltCache(cd string, epoch int64, logger *log.Logger) (*boltCache, error) {
-	path := filepath.Join(cd, boltCacheFilename)
-	dir := filepath.Dir(path)
-	if fi, err := os.Stat(dir); os.IsNotExist(err) {
-		if err := os.MkdirAll(dir, os.ModeDir|os.ModePerm); err != nil {
-			return nil, errors.Wrapf(err, "failed to create source cache directory: %s", dir)
-		}
-	} else if err != nil {
-		return nil, errors.Wrapf(err, "failed to check source cache directory: %s", dir)
-	} else if !fi.IsDir() {
-		return nil, errors.Wrapf(err, "source cache path is not directory: %s", dir)
-	}
-	db, err := bolt.Open(path, 0600, &bolt.Options{Timeout: 1 * time.Second})
-	if err != nil {
-		return nil, errors.Wrapf(err, "failed to open BoltDB cache file %q", path)
-	}
-	return &boltCache{
-		db:     db,
-		epoch:  epoch,
-		logger: logger,
-	}, nil
-}
-
-// newSingleSourceCache returns a new singleSourceCache for pi.
-func (c *boltCache) newSingleSourceCache(pi ProjectIdentifier) singleSourceCache {
-	return &singleSourceCacheBolt{
-		boltCache:  c,
-		sourceName: []byte(pi.normalizedSource()),
-	}
-}
-
-// close releases all cache resources.
-func (c *boltCache) close() error {
-	return errors.Wrapf(c.db.Close(), "error closing Bolt database %q", c.db.String())
-}
-
-// singleSourceCacheBolt implements a singleSourceCache backed by a persistent BoltDB file.
-// Version mappings are timestamped, and the `epoch` field limits the age of returned values.
-// Database access methods are safe for concurrent use.
-//
-// Implementation:
-//
-// Each source has a top-level bucket containing sub-buckets for (1) versions and (2) revisions.
-//
-// 1) Versions buckets hold version keys with revision values:
-//
-//	Bucket: "v<timestamp>"
-//	Keys: Unpaired Versions serialized via ConstraintMsg
-//	Values: "<revision>"
-//
-// 2) Revision buckets hold (a) manifest and lock data for various ProjectAnalyzers,
-// (b) package trees, and (c) version lists.
-//
-//	Bucket: "r<revision>"
-//
-// a) Manifest and Lock info are stored in buckets derived from ProjectAnalyzer.Info:
-//
-//	Sub-Bucket: "<name>.<version>m", "<name>.<version>l"
-//	Keys/Values: Manifest or Lock fields
-//
-// b) Package tree buckets contain package import path keys and package-or-error buckets:
-//
-//	Sub-Bucket: "p"
-//	Sub-Bucket: "<import_path>"
-//	Key/Values: PackageOrErr fields
-//
-// c) Revision-versions buckets contain lists of version values:
-//
-//	Sub-Bucket: "v<timestamp>"
-//	Keys: "<sequence_number>"
-//	Values: Unpaired Versions serialized via ConstraintMsg
-type singleSourceCacheBolt struct {
-	*boltCache
-	sourceName []byte
-}
-
-func (s *singleSourceCacheBolt) setManifestAndLock(rev Revision, ai ProjectAnalyzerInfo, m Manifest, l Lock) {
-	err := s.updateRevBucket(rev, func(b *bolt.Bucket) error {
-		info := ai.String()
-		name := make([]byte, len(info)+1)
-		copy(name, info)
-		name[len(info)] = 'm'
-
-		if b.Bucket(name) != nil {
-			if err := b.DeleteBucket(name); err != nil {
-				return err
-			}
-		}
-
-		// Manifest
-		mb, err := b.CreateBucket(name)
-		if err != nil {
-			return err
-		}
-		if err := cachePutManifest(mb, m); err != nil {
-			return errors.Wrap(err, "failed to put manifest")
-		}
-		if l == nil {
-			return nil
-		}
-
-		// Lock
-		name[len(info)] = 'l'
-		if b.Bucket(name) != nil {
-			if err := b.DeleteBucket(name); err != nil {
-				return err
-			}
-		}
-		lb, err := b.CreateBucket(name)
-		if err != nil {
-			return err
-		}
-		return errors.Wrap(cachePutLock(lb, l), "failed to put lock")
-	})
-	if err != nil {
-		s.logger.Println(errors.Wrapf(err, "failed to cache manifest/lock for revision %q, analyzer: %v", rev, ai))
-	}
-}
-
-func (s *singleSourceCacheBolt) getManifestAndLock(rev Revision, ai ProjectAnalyzerInfo) (m Manifest, l Lock, ok bool) {
-	err := s.viewRevBucket(rev, func(b *bolt.Bucket) error {
-		info := ai.String()
-		name := make([]byte, len(info)+1)
-		copy(name, info)
-		name[len(info)] = 'm'
-
-		// Manifest
-		mb := b.Bucket(name)
-		if mb == nil {
-			return nil
-		}
-		var err error
-		m, err = cacheGetManifest(mb)
-		if err != nil {
-			return errors.Wrap(err, "failed to get manifest")
-		}
-
-		// Lock
-		name[len(info)] = 'l'
-		lb := b.Bucket(name)
-		if lb == nil {
-			ok = true
-			return nil
-		}
-		l, err = cacheGetLock(lb)
-		if err != nil {
-			return errors.Wrap(err, "failed to get lock")
-		}
-
-		ok = true
-		return nil
-	})
-	if err != nil {
-		s.logger.Println(errors.Wrapf(err, "failed to get cached manifest/lock for revision %q, analyzer: %v", rev, ai))
-	}
-	return
-}
-
-func (s *singleSourceCacheBolt) setPackageTree(rev Revision, ptree pkgtree.PackageTree) {
-	err := s.updateRevBucket(rev, func(b *bolt.Bucket) error {
-		if b.Bucket(cacheKeyPTree) != nil {
-			if err := b.DeleteBucket(cacheKeyPTree); err != nil {
-				return err
-			}
-		}
-		ptrees, err := b.CreateBucket(cacheKeyPTree)
-		if err != nil {
-			return err
-		}
-
-		root := string(ptree.ImportRoot)
-		for ip, poe := range ptree.Packages {
-			// Stored by relative import path.
-			rip := strings.TrimPrefix(ip, root)
-			if rip == "" {
-				rip = "/"
-			}
-			pb, err := ptrees.CreateBucket([]byte(rip))
-			if err != nil {
-				return err
-			}
-
-			if err := cachePutPackageOrErr(pb, poe); err != nil {
-				return err
-			}
-		}
-		return nil
-	})
-	if err != nil {
-		s.logger.Println(errors.Wrapf(err, "failed to cache package tree for revision %q", rev))
-	}
-}
-
-func (s *singleSourceCacheBolt) getPackageTree(rev Revision, pr ProjectRoot) (ptree pkgtree.PackageTree, ok bool) {
-	err := s.viewRevBucket(rev, func(b *bolt.Bucket) error {
-		ptrees := b.Bucket(cacheKeyPTree)
-		if ptrees == nil {
-			return nil
-		}
-
-		pkgs := make(map[string]pkgtree.PackageOrErr)
-		err := ptrees.ForEach(func(rip, _ []byte) error {
-			poe, err := cacheGetPackageOrErr(ptrees.Bucket(rip))
-			if err != nil {
-				return err
-			}
-			srip := string(rip)
-			if srip == "/" {
-				srip = ""
-			}
-			// Return full import paths.
-			ip := path.Join(string(pr), srip)
-			if poe.Err == nil {
-				poe.P.ImportPath = ip
-			}
-			pkgs[ip] = poe
-			return nil
-		})
-		if err != nil {
-			return err
-		}
-		ptree.ImportRoot = string(pr)
-		ptree.Packages = pkgs
-		ok = true
-		return nil
-	})
-	if err != nil {
-		s.logger.Println(errors.Wrapf(err, "failed to get cached package tree for revision %q", rev))
-	}
-	return
-}
-
-func (s *singleSourceCacheBolt) markRevisionExists(rev Revision) {
-	err := s.updateRevBucket(rev, func(versions *bolt.Bucket) error {
-		return nil
-	})
-	if err != nil {
-		s.logger.Println(errors.Wrapf(err, "failed to mark revision %q in cache", rev))
-	}
-}
-
-func (s *singleSourceCacheBolt) setVersionMap(pvs []PairedVersion) {
-	err := s.updateSourceBucket(func(src *bolt.Bucket) error {
-		if err := cachePrefixDelete(src, cacheVersion); err != nil {
-			return err
-		}
-		vk := cacheTimestampedKey(cacheVersion, time.Now())
-		versions, err := src.CreateBucket(vk)
-		if err != nil {
-			return err
-		}
-
-		c := src.Cursor()
-		for k, _ := c.Seek(cacheKeyRevision); len(k) > 0 && k[0] == cacheRevision; k, _ = c.Next() {
-			rb := src.Bucket(k)
-			if err := cachePrefixDelete(rb, cacheVersion); err != nil {
-				return err
-			}
-		}
-
-		revVersions := make(map[Revision]*bolt.Bucket)
-		key := make(nuts.Key, nuts.KeyLen(uint64(len(pvs)-1)))
-		var msg pb.Constraint
-		for i, pv := range pvs {
-			uv, rev := pv.Unpair(), pv.Revision()
-			uv.copyTo(&msg)
-			uvB, err := proto.Marshal(&msg)
-			if err != nil {
-				return errors.Wrapf(err, "failed to serialize UnpairedVersion: %#v", uv)
-			}
-
-			if err := versions.Put(uvB, []byte(rev)); err != nil {
-				return errors.Wrap(err, "failed to put version->revision")
-			}
-
-			b, err := src.CreateBucketIfNotExists(cacheRevisionName(rev))
-			if err != nil {
-				return errors.Wrapf(err, "failed to create bucket for revision: %s", rev)
-			}
-
-			var versions *bolt.Bucket
-			if versions = revVersions[rev]; versions == nil {
-				err := cachePrefixDelete(b, cacheVersion)
-				if err != nil {
-					return err
-				}
-				versions, err = b.CreateBucket(vk)
-				if err != nil {
-					return errors.Wrapf(err, "failed to create bucket for revision versions: %s", rev)
-				}
-				revVersions[rev] = versions
-			}
-
-			key.Put(uint64(i))
-			if err := versions.Put(key, uvB); err != nil {
-				return errors.Wrap(err, "failed to put revision->version")
-			}
-		}
-		return nil
-	})
-	if err != nil {
-		s.logger.Println(errors.Wrap(err, "failed to cache version map"))
-	}
-}
-
-func (s *singleSourceCacheBolt) getVersionsFor(rev Revision) (uvs []UnpairedVersion, ok bool) {
-	err := s.viewRevBucket(rev, func(b *bolt.Bucket) error {
-		versions := cacheFindLatestValid(b, cacheVersion, s.epoch)
-		if versions == nil {
-			return nil
-		}
-
-		ok = true
-
-		var msg pb.Constraint
-		return versions.ForEach(func(_, v []byte) error {
-			if err := proto.Unmarshal(v, &msg); err != nil {
-				return err
-			}
-			uv, err := unpairedVersionFromCache(&msg)
-			if err != nil {
-				return err
-			}
-			uvs = append(uvs, uv)
-			return nil
-		})
-	})
-	if err != nil {
-		s.logger.Println(errors.Wrapf(err, "failed to get cached versions for revision %q", rev))
-		return nil, false
-	}
-	return
-}
-
-func (s *singleSourceCacheBolt) getAllVersions() (pvs []PairedVersion, ok bool) {
-	err := s.viewSourceBucket(func(src *bolt.Bucket) error {
-		versions := cacheFindLatestValid(src, cacheVersion, s.epoch)
-		if versions == nil {
-			return nil
-		}
-
-		var msg pb.Constraint
-		return versions.ForEach(func(k, v []byte) error {
-			if err := proto.Unmarshal(k, &msg); err != nil {
-				return err
-			}
-			uv, err := unpairedVersionFromCache(&msg)
-			if err != nil {
-				return err
-			}
-			pvs = append(pvs, uv.Pair(Revision(v)))
-			ok = true
-			return nil
-		})
-	})
-	if err != nil {
-		s.logger.Println(errors.Wrap(err, "failed to get all cached versions"))
-		return nil, false
-	}
-	return
-}
-
-func (s *singleSourceCacheBolt) getRevisionFor(uv UnpairedVersion) (rev Revision, ok bool) {
-	err := s.viewSourceBucket(func(src *bolt.Bucket) error {
-		versions := cacheFindLatestValid(src, cacheVersion, s.epoch)
-		if versions == nil {
-			return nil
-		}
-
-		var msg pb.Constraint
-		uv.copyTo(&msg)
-		b, err := proto.Marshal(&msg)
-		if err != nil {
-			return errors.Wrapf(err, "failed to serialize UnpairedVersion: %#v", uv)
-		}
-
-		v := versions.Get(b)
-		if len(v) > 0 {
-			rev = Revision(v)
-			ok = true
-		}
-		return nil
-	})
-	if err != nil {
-		s.logger.Println(errors.Wrapf(err, "failed to get cached revision for unpaired version: %v", uv))
-	}
-	return
-}
-
-func (s *singleSourceCacheBolt) toRevision(v Version) (rev Revision, ok bool) {
-	switch t := v.(type) {
-	case Revision:
-		return t, true
-	case PairedVersion:
-		return t.Revision(), true
-	case UnpairedVersion:
-		return s.getRevisionFor(t)
-	default:
-		s.logger.Println(fmt.Sprintf("failed to get cached revision for version %v: unknown type %T", v, v))
-		return "", false
-	}
-}
-
-func (s *singleSourceCacheBolt) toUnpaired(v Version) (uv UnpairedVersion, ok bool) {
-	const errMsg = "failed to get cached unpaired version for version: %v"
-	switch t := v.(type) {
-	case UnpairedVersion:
-		return t, true
-	case PairedVersion:
-		return t.Unpair(), true
-	case Revision:
-		err := s.viewRevBucket(t, func(b *bolt.Bucket) error {
-			versions := cacheFindLatestValid(b, cacheVersion, s.epoch)
-			if versions == nil {
-				return nil
-			}
-
-			_, v := versions.Cursor().First()
-			if len(v) == 0 {
-				return nil
-			}
-			var msg pb.Constraint
-			if err := proto.Unmarshal(v, &msg); err != nil {
-				return err
-			}
-			var err error
-			uv, err = unpairedVersionFromCache(&msg)
-			if err != nil {
-				return err
-			}
-
-			ok = true
-			return nil
-		})
-		if err != nil {
-			s.logger.Println(errors.Wrapf(err, errMsg, v))
-		}
-		return
-	default:
-		s.logger.Println(fmt.Sprintf(errMsg, v))
-		return
-	}
-}
-
-// cacheRevisionName returns the bucket name for rev.
-func cacheRevisionName(rev Revision) []byte {
-	name := make([]byte, 1+len(rev))
-	name[0] = 'r'
-	copy(name[1:], string(rev))
-	return name
-}
-
-// viewSourceBucket executes view with the source bucket, if it exists.
-func (s *singleSourceCacheBolt) viewSourceBucket(view func(b *bolt.Bucket) error) error {
-	return s.db.View(func(tx *bolt.Tx) error {
-		b := tx.Bucket(s.sourceName)
-		if b == nil {
-			return nil
-		}
-		return view(b)
-	})
-}
-
-// updateSourceBucket executes update (in batch) with the source bucket, creating it first if necessary.
-func (s *singleSourceCacheBolt) updateSourceBucket(update func(b *bolt.Bucket) error) error {
-	return s.db.Batch(func(tx *bolt.Tx) error {
-		b, err := tx.CreateBucketIfNotExists(s.sourceName)
-		if err != nil {
-			return errors.Wrapf(err, "failed to create bucket: %s", s.sourceName)
-		}
-		return update(b)
-	})
-}
-
-// viewRevBucket executes view with rev's bucket for this source, if it exists.
-func (s *singleSourceCacheBolt) viewRevBucket(rev Revision, view func(b *bolt.Bucket) error) error {
-	return s.viewSourceBucket(func(src *bolt.Bucket) error {
-		b := src.Bucket(cacheRevisionName(rev))
-		if b == nil {
-			return nil
-		}
-		return view(b)
-	})
-}
-
-// updateRevBucket executes update with rev's bucket for this source, creating it first if necessary.
-func (s *singleSourceCacheBolt) updateRevBucket(rev Revision, update func(b *bolt.Bucket) error) error {
-	return s.updateSourceBucket(func(src *bolt.Bucket) error {
-		name := cacheRevisionName(rev)
-		b, err := src.CreateBucketIfNotExists(name)
-		if err != nil {
-			return errors.Wrapf(err, "failed to create bucket: %s", name)
-		}
-		return update(b)
-	})
-}
diff --git a/vendor/github.com/golang/dep/gps/source_cache_bolt_encode.go b/vendor/github.com/golang/dep/gps/source_cache_bolt_encode.go
deleted file mode 100644
index 5b6a903cf6b70d9cba43d4e80f16be14369cdbe5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/source_cache_bolt_encode.go
+++ /dev/null
@@ -1,498 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"encoding/binary"
-	"strings"
-	"time"
-
-	"github.com/boltdb/bolt"
-	"github.com/golang/dep/gps/internal/pb"
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/golang/protobuf/proto"
-	"github.com/jmank88/nuts"
-	"github.com/pkg/errors"
-)
-
-var (
-	cacheKeyComment      = []byte("c")
-	cacheKeyConstraint   = cacheKeyComment
-	cacheKeyError        = []byte("e")
-	cacheKeyInputImports = []byte("m")
-	cacheKeyIgnored      = []byte("i")
-	cacheKeyImport       = cacheKeyIgnored
-	cacheKeyLock         = []byte("l")
-	cacheKeyName         = []byte("n")
-	cacheKeyOverride     = []byte("o")
-	cacheKeyPTree        = []byte("p")
-	cacheKeyRequired     = []byte("r")
-	cacheKeyRevision     = cacheKeyRequired
-	cacheKeyTestImport   = []byte("t")
-
-	cacheRevision = byte('r')
-	cacheVersion  = byte('v')
-)
-
-// propertiesFromCache returns a new ProjectRoot and ProjectProperties with the fields from m.
-func propertiesFromCache(m *pb.ProjectProperties) (ProjectRoot, ProjectProperties, error) {
-	ip := ProjectRoot(m.Root)
-	var pp ProjectProperties
-	pp.Source = m.Source
-
-	if m.Constraint == nil {
-		pp.Constraint = Any()
-	} else {
-		c, err := constraintFromCache(m.Constraint)
-		if err != nil {
-			return "", ProjectProperties{}, err
-		}
-		pp.Constraint = c
-	}
-
-	return ip, pp, nil
-}
-
-// projectPropertiesMsgs is a convenience tuple.
-type projectPropertiesMsgs struct {
-	pp pb.ProjectProperties
-	c  pb.Constraint
-}
-
-// copyFrom sets the ProjectPropertiesMsg fields from ip and pp.
-func (ms *projectPropertiesMsgs) copyFrom(ip ProjectRoot, pp ProjectProperties) {
-	ms.pp.Root = string(ip)
-	ms.pp.Source = pp.Source
-
-	if pp.Constraint != nil && !IsAny(pp.Constraint) {
-		pp.Constraint.copyTo(&ms.c)
-		ms.pp.Constraint = &ms.c
-	} else {
-		ms.pp.Constraint = nil
-	}
-}
-
-// cachePutManifest stores a Manifest in the bolt.Bucket.
-func cachePutManifest(b *bolt.Bucket, m Manifest) error {
-	var ppMsg projectPropertiesMsgs
-
-	constraints := m.DependencyConstraints()
-	if len(constraints) > 0 {
-		cs, err := b.CreateBucket(cacheKeyConstraint)
-		if err != nil {
-			return err
-		}
-		key := make(nuts.Key, nuts.KeyLen(uint64(len(constraints)-1)))
-		var i uint64
-		for ip, pp := range constraints {
-			ppMsg.copyFrom(ip, pp)
-			v, err := proto.Marshal(&ppMsg.pp)
-			if err != nil {
-				return err
-			}
-			key.Put(i)
-			i++
-			if err := cs.Put(key, v); err != nil {
-				return err
-			}
-		}
-	}
-
-	rm, ok := m.(RootManifest)
-	if !ok {
-		return nil
-	}
-
-	ignored := rm.IgnoredPackages().ToSlice()
-	if len(ignored) > 0 {
-		ig, err := b.CreateBucket(cacheKeyIgnored)
-		if err != nil {
-			return err
-		}
-		key := make(nuts.Key, nuts.KeyLen(uint64(len(ignored)-1)))
-		var i uint64
-		for _, ip := range ignored {
-			key.Put(i)
-			i++
-			if err := ig.Put(key, []byte(ip)); err != nil {
-				return err
-			}
-		}
-	}
-
-	overrides := rm.Overrides()
-	if len(overrides) > 0 {
-		ovr, err := b.CreateBucket(cacheKeyOverride)
-		if err != nil {
-			return err
-		}
-		key := make(nuts.Key, nuts.KeyLen(uint64(len(overrides)-1)))
-		var i uint64
-		for ip, pp := range overrides {
-			ppMsg.copyFrom(ip, pp)
-			v, err := proto.Marshal(&ppMsg.pp)
-			if err != nil {
-				return err
-			}
-			key.Put(i)
-			i++
-			if err := ovr.Put(key, v); err != nil {
-				return err
-			}
-		}
-	}
-
-	required := rm.RequiredPackages()
-	if len(required) > 0 {
-		req, err := b.CreateBucket(cacheKeyRequired)
-		if err != nil {
-			return err
-		}
-		key := make(nuts.Key, nuts.KeyLen(uint64(len(required)-1)))
-		var i uint64
-		for ip, ok := range required {
-			if ok {
-				key.Put(i)
-				i++
-				if err := req.Put(key, []byte(ip)); err != nil {
-					return err
-				}
-			}
-		}
-	}
-
-	return nil
-}
-
-// cacheGetManifest returns a new RootManifest with the data retrieved from the bolt.Bucket.
-func cacheGetManifest(b *bolt.Bucket) (RootManifest, error) {
-	//TODO consider storing slice/map lens to enable calling make() with capacity
-	m := &simpleRootManifest{
-		c:   make(ProjectConstraints),
-		ovr: make(ProjectConstraints),
-		req: make(map[string]bool),
-	}
-
-	// Constraints
-	if cs := b.Bucket(cacheKeyConstraint); cs != nil {
-		var msg pb.ProjectProperties
-		err := cs.ForEach(func(_, v []byte) error {
-			if err := proto.Unmarshal(v, &msg); err != nil {
-				return err
-			}
-			ip, pp, err := propertiesFromCache(&msg)
-			if err != nil {
-				return err
-			}
-			m.c[ip] = pp
-			return nil
-		})
-		if err != nil {
-			return nil, errors.Wrap(err, "failed to get constraints")
-		}
-	}
-
-	// Ignored
-	if ig := b.Bucket(cacheKeyIgnored); ig != nil {
-		var igslice []string
-		err := ig.ForEach(func(_, v []byte) error {
-			igslice = append(igslice, string(v))
-			return nil
-		})
-		m.ig = pkgtree.NewIgnoredRuleset(igslice)
-		if err != nil {
-			return nil, errors.Wrap(err, "failed to get ignored")
-		}
-	}
-
-	// Overrides
-	if os := b.Bucket(cacheKeyOverride); os != nil {
-		var msg pb.ProjectProperties
-		err := os.ForEach(func(_, v []byte) error {
-			if err := proto.Unmarshal(v, &msg); err != nil {
-				return err
-			}
-			ip, pp, err := propertiesFromCache(&msg)
-			if err != nil {
-				return err
-			}
-			m.ovr[ip] = pp
-			return nil
-		})
-		if err != nil {
-			return nil, errors.Wrap(err, "failed to get overrides")
-		}
-	}
-
-	// Required
-	if req := b.Bucket(cacheKeyRequired); req != nil {
-		err := req.ForEach(func(_, v []byte) error {
-			m.req[string(v)] = true
-			return nil
-		})
-		if err != nil {
-			return nil, errors.Wrap(err, "failed to get required")
-		}
-	}
-
-	return m, nil
-}
-
-// copyTo returns a serializable representation of lp.
-func (lp lockedProject) copyTo(msg *pb.LockedProject, c *pb.Constraint) {
-	if lp.v == nil {
-		msg.UnpairedVersion = nil
-	} else {
-		lp.v.copyTo(c)
-		msg.UnpairedVersion = c
-	}
-
-	msg.Root = string(lp.pi.ProjectRoot)
-	msg.Source = lp.pi.Source
-	msg.Revision = string(lp.r)
-	msg.Packages = lp.pkgs
-}
-
-// copyLockedProjectTo hydrates pointers to serializable representations of a
-// LockedProject with the appropriate data.
-func copyLockedProjectTo(lp LockedProject, msg *pb.LockedProject, c *pb.Constraint) {
-	if nlp, ok := lp.(lockedProject); ok {
-		nlp.copyTo(msg, c)
-		return
-	}
-
-	v := lp.Version()
-	if v == nil {
-		msg.UnpairedVersion = nil
-	} else {
-		v.copyTo(c)
-		msg.UnpairedVersion = c
-
-		switch tv := v.(type) {
-		case Revision:
-			msg.Revision = string(tv)
-		case versionPair:
-			msg.Revision = string(tv.r)
-		}
-	}
-
-	pi := lp.Ident()
-	msg.Root = string(pi.ProjectRoot)
-	msg.Source = pi.Source
-	msg.Packages = lp.Packages()
-}
-
-// lockedProjectFromCache returns a new LockedProject with fields from m.
-func lockedProjectFromCache(m *pb.LockedProject) (LockedProject, error) {
-	var uv UnpairedVersion
-	var err error
-	if m.UnpairedVersion != nil {
-		uv, err = unpairedVersionFromCache(m.UnpairedVersion)
-		if err != nil {
-			return lockedProject{}, err
-		}
-	}
-	return lockedProject{
-		pi: ProjectIdentifier{
-			ProjectRoot: ProjectRoot(m.Root),
-			Source:      m.Source,
-		},
-		v:    uv,
-		r:    Revision(m.Revision),
-		pkgs: m.Packages,
-	}, nil
-}
-
-// cachePutLock stores the Lock as fields in the bolt.Bucket.
-func cachePutLock(b *bolt.Bucket, l Lock) error {
-	// Input imports, if present.
-	byt := []byte(strings.Join(l.InputImports(), "#"))
-	if err := b.Put(cacheKeyInputImports, byt); err != nil {
-		return errors.Wrap(err, "failed to put input imports")
-	}
-
-	// Projects
-	if projects := l.Projects(); len(projects) > 0 {
-		lb, err := b.CreateBucket(cacheKeyLock)
-		if err != nil {
-			return err
-		}
-		key := make(nuts.Key, nuts.KeyLen(uint64(len(projects)-1)))
-		var msg pb.LockedProject
-		var cMsg pb.Constraint
-		for i, lp := range projects {
-			copyLockedProjectTo(lp, &msg, &cMsg)
-			v, err := proto.Marshal(&msg)
-			if err != nil {
-				return err
-			}
-			key.Put(uint64(i))
-			if err := lb.Put(key, v); err != nil {
-				return err
-			}
-		}
-	}
-
-	return nil
-}
-
-// cacheGetLock returns a new *safeLock with the fields retrieved from the bolt.Bucket.
-func cacheGetLock(b *bolt.Bucket) (*safeLock, error) {
-	l := &safeLock{}
-	if ii := b.Get(cacheKeyInputImports); len(ii) > 0 {
-		l.i = strings.Split(string(ii), "#")
-	}
-
-	if locked := b.Bucket(cacheKeyLock); locked != nil {
-		var msg pb.LockedProject
-		err := locked.ForEach(func(_, v []byte) error {
-			if err := proto.Unmarshal(v, &msg); err != nil {
-				return err
-			}
-			lp, err := lockedProjectFromCache(&msg)
-			if err != nil {
-				return err
-			}
-			l.p = append(l.p, lp)
-			return nil
-		})
-		if err != nil {
-			return nil, errors.Wrap(err, "failed to get locked projects")
-		}
-	}
-	return l, nil
-}
-
-// cachePutPackageOrError stores the pkgtree.PackageOrErr as fields in the bolt.Bucket.
-// Package.ImportPath is ignored.
-func cachePutPackageOrErr(b *bolt.Bucket, poe pkgtree.PackageOrErr) error {
-	if poe.Err != nil {
-		err := b.Put(cacheKeyError, []byte(poe.Err.Error()))
-		return errors.Wrapf(err, "failed to put error: %v", poe.Err)
-	}
-	if len(poe.P.CommentPath) > 0 {
-		err := b.Put(cacheKeyComment, []byte(poe.P.CommentPath))
-		if err != nil {
-			return errors.Wrapf(err, "failed to put package: %v", poe.P)
-		}
-	}
-	if len(poe.P.Imports) > 0 {
-		ip, err := b.CreateBucket(cacheKeyImport)
-		if err != nil {
-			return err
-		}
-		key := make(nuts.Key, nuts.KeyLen(uint64(len(poe.P.Imports)-1)))
-		for i := range poe.P.Imports {
-			v := []byte(poe.P.Imports[i])
-			key.Put(uint64(i))
-			if err := ip.Put(key, v); err != nil {
-				return err
-			}
-		}
-	}
-
-	if len(poe.P.Name) > 0 {
-		err := b.Put(cacheKeyName, []byte(poe.P.Name))
-		if err != nil {
-			return errors.Wrapf(err, "failed to put package: %v", poe.P)
-		}
-	}
-
-	if len(poe.P.TestImports) > 0 {
-		ip, err := b.CreateBucket(cacheKeyTestImport)
-		if err != nil {
-			return err
-		}
-		key := make(nuts.Key, nuts.KeyLen(uint64(len(poe.P.TestImports)-1)))
-		for i := range poe.P.TestImports {
-			v := []byte(poe.P.TestImports[i])
-			key.Put(uint64(i))
-			if err := ip.Put(key, v); err != nil {
-				return err
-			}
-		}
-	}
-	return nil
-}
-
-// cacheGetPackageOrErr returns a new pkgtree.PackageOrErr with fields retrieved
-// from the bolt.Bucket.
-func cacheGetPackageOrErr(b *bolt.Bucket) (pkgtree.PackageOrErr, error) {
-	if v := b.Get(cacheKeyError); len(v) > 0 {
-		return pkgtree.PackageOrErr{
-			Err: errors.New(string(v)),
-		}, nil
-	}
-
-	var p pkgtree.Package
-	p.CommentPath = string(b.Get(cacheKeyComment))
-	if ip := b.Bucket(cacheKeyImport); ip != nil {
-		err := ip.ForEach(func(_, v []byte) error {
-			p.Imports = append(p.Imports, string(v))
-			return nil
-		})
-		if err != nil {
-			return pkgtree.PackageOrErr{}, err
-		}
-	}
-	p.Name = string(b.Get(cacheKeyName))
-	if tip := b.Bucket(cacheKeyTestImport); tip != nil {
-		err := tip.ForEach(func(_, v []byte) error {
-			p.TestImports = append(p.TestImports, string(v))
-			return nil
-		})
-		if err != nil {
-			return pkgtree.PackageOrErr{}, err
-		}
-	}
-	return pkgtree.PackageOrErr{P: p}, nil
-}
-
-// cacheTimestampedKey returns a prefixed key with a trailing timestamp.
-func cacheTimestampedKey(pre byte, t time.Time) []byte {
-	b := make([]byte, 9)
-	b[0] = pre
-	binary.BigEndian.PutUint64(b[1:], uint64(t.Unix()))
-	return b
-}
-
-// boltTxOrBucket is a minimal interface satisfied by bolt.Tx and bolt.Bucket.
-type boltTxOrBucket interface {
-	Cursor() *bolt.Cursor
-	DeleteBucket([]byte) error
-	Bucket([]byte) *bolt.Bucket
-}
-
-// cachePrefixDelete prefix scans and deletes each bucket.
-func cachePrefixDelete(tob boltTxOrBucket, pre byte) error {
-	c := tob.Cursor()
-	for k, _ := c.Seek([]byte{pre}); len(k) > 0 && k[0] == pre; k, _ = c.Next() {
-		if err := tob.DeleteBucket(k); err != nil {
-			return errors.Wrapf(err, "failed to delete bucket: %s", k)
-		}
-	}
-	return nil
-}
-
-// cacheFindLatestValid prefix scans for the latest bucket which is timestamped >= epoch,
-// or returns nil if none exists.
-func cacheFindLatestValid(tob boltTxOrBucket, pre byte, epoch int64) *bolt.Bucket {
-	c := tob.Cursor()
-	var latest []byte
-	for k, _ := c.Seek([]byte{pre}); len(k) > 0 && k[0] == pre; k, _ = c.Next() {
-		latest = k
-	}
-	if latest == nil {
-		return nil
-	}
-	ts := latest[1:]
-	if len(ts) != 8 {
-		return nil
-	}
-	if int64(binary.BigEndian.Uint64(ts)) < epoch {
-		return nil
-	}
-	return tob.Bucket(latest)
-}
diff --git a/vendor/github.com/golang/dep/gps/source_cache_multi.go b/vendor/github.com/golang/dep/gps/source_cache_multi.go
deleted file mode 100644
index 52c08b206339fffe69bd37fa4f26891d959da746..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/source_cache_multi.go
+++ /dev/null
@@ -1,170 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"github.com/golang/dep/gps/pkgtree"
-)
-
-// multiCache creates singleSourceMultiCaches, and coordinates their async updates.
-type multiCache struct {
-	mem, disk sourceCache
-	// Asynchronous disk cache updates. Closed by the close method.
-	async chan func()
-	// Closed when async has completed processing.
-	done chan struct{}
-}
-
-// newMultiCache returns a new multiCache backed by mem and disk sourceCaches.
-// Spawns a single background goroutine which lives until close() is called.
-func newMultiCache(mem, disk sourceCache) *multiCache {
-	m := &multiCache{
-		mem:   mem,
-		disk:  disk,
-		async: make(chan func(), 50),
-		done:  make(chan struct{}),
-	}
-	go m.processAsync()
-	return m
-}
-
-func (c *multiCache) processAsync() {
-	for f := range c.async {
-		f()
-	}
-	close(c.done)
-}
-
-// close releases resources after blocking until async writes complete.
-func (c *multiCache) close() error {
-	close(c.async)
-	_ = c.mem.close()
-	<-c.done
-	return c.disk.close()
-}
-
-// newSingleSourceCache returns a singleSourceMultiCache for id.
-func (c *multiCache) newSingleSourceCache(id ProjectIdentifier) singleSourceCache {
-	return &singleSourceMultiCache{
-		mem:   c.mem.newSingleSourceCache(id),
-		disk:  c.disk.newSingleSourceCache(id),
-		async: c.async,
-	}
-}
-
-// singleSourceMultiCache manages two cache levels, ephemeral in-memory and persistent on-disk.
-//
-// The in-memory cache is always checked first, with the on-disk used as a fallback.
-// Values read from disk are set in-memory when an appropriate method exists.
-//
-// Set values are cached both in-memory and on-disk. Values are set synchronously
-// in-memory. Writes to the on-disk cache are asynchronous, and executed in order by a
-// background goroutine.
-type singleSourceMultiCache struct {
-	mem, disk singleSourceCache
-	// Asynchronous disk cache updates.
-	async chan<- func()
-}
-
-func (c *singleSourceMultiCache) setManifestAndLock(r Revision, ai ProjectAnalyzerInfo, m Manifest, l Lock) {
-	c.mem.setManifestAndLock(r, ai, m, l)
-	c.async <- func() { c.disk.setManifestAndLock(r, ai, m, l) }
-}
-
-func (c *singleSourceMultiCache) getManifestAndLock(r Revision, ai ProjectAnalyzerInfo) (Manifest, Lock, bool) {
-	m, l, ok := c.mem.getManifestAndLock(r, ai)
-	if ok {
-		return m, l, true
-	}
-
-	m, l, ok = c.disk.getManifestAndLock(r, ai)
-	if ok {
-		c.mem.setManifestAndLock(r, ai, m, l)
-		return m, l, true
-	}
-
-	return nil, nil, false
-}
-
-func (c *singleSourceMultiCache) setPackageTree(r Revision, ptree pkgtree.PackageTree) {
-	c.mem.setPackageTree(r, ptree)
-	c.async <- func() { c.disk.setPackageTree(r, ptree) }
-}
-
-func (c *singleSourceMultiCache) getPackageTree(r Revision, pr ProjectRoot) (pkgtree.PackageTree, bool) {
-	ptree, ok := c.mem.getPackageTree(r, pr)
-	if ok {
-		return ptree, true
-	}
-
-	ptree, ok = c.disk.getPackageTree(r, pr)
-	if ok {
-		c.mem.setPackageTree(r, ptree)
-		return ptree, true
-	}
-
-	return pkgtree.PackageTree{}, false
-}
-
-func (c *singleSourceMultiCache) markRevisionExists(r Revision) {
-	c.mem.markRevisionExists(r)
-	c.async <- func() { c.disk.markRevisionExists(r) }
-}
-
-func (c *singleSourceMultiCache) setVersionMap(pvs []PairedVersion) {
-	c.mem.setVersionMap(pvs)
-	c.async <- func() { c.disk.setVersionMap(pvs) }
-}
-
-func (c *singleSourceMultiCache) getVersionsFor(rev Revision) ([]UnpairedVersion, bool) {
-	uvs, ok := c.mem.getVersionsFor(rev)
-	if ok {
-		return uvs, true
-	}
-
-	return c.disk.getVersionsFor(rev)
-}
-
-func (c *singleSourceMultiCache) getAllVersions() ([]PairedVersion, bool) {
-	pvs, ok := c.mem.getAllVersions()
-	if ok {
-		return pvs, true
-	}
-
-	pvs, ok = c.disk.getAllVersions()
-	if ok {
-		c.mem.setVersionMap(pvs)
-		return pvs, true
-	}
-
-	return nil, false
-}
-
-func (c *singleSourceMultiCache) getRevisionFor(uv UnpairedVersion) (Revision, bool) {
-	rev, ok := c.mem.getRevisionFor(uv)
-	if ok {
-		return rev, true
-	}
-
-	return c.disk.getRevisionFor(uv)
-}
-
-func (c *singleSourceMultiCache) toRevision(v Version) (Revision, bool) {
-	rev, ok := c.mem.toRevision(v)
-	if ok {
-		return rev, true
-	}
-
-	return c.disk.toRevision(v)
-}
-
-func (c *singleSourceMultiCache) toUnpaired(v Version) (UnpairedVersion, bool) {
-	uv, ok := c.mem.toUnpaired(v)
-	if ok {
-		return uv, true
-	}
-
-	return c.disk.toUnpaired(v)
-}
diff --git a/vendor/github.com/golang/dep/gps/source_errors.go b/vendor/github.com/golang/dep/gps/source_errors.go
deleted file mode 100644
index e8aab9a77e0c679e651cd5f41012412e6a01ead0..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/source_errors.go
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"github.com/Masterminds/vcs"
-	"github.com/pkg/errors"
-)
-
-// unwrapVcsErr recognizes *vcs.LocalError and *vsc.RemoteError, and returns a form
-// preserving the actual vcs command output and error, in addition to the message.
-// All other types pass through unchanged.
-func unwrapVcsErr(err error) error {
-	var cause error
-	var out, msg string
-
-	switch t := err.(type) {
-	case *vcs.LocalError:
-		cause, out, msg = t.Original(), t.Out(), t.Error()
-	case *vcs.RemoteError:
-		cause, out, msg = t.Original(), t.Out(), t.Error()
-
-	default:
-		return err
-	}
-
-	if cause == nil {
-		cause = errors.New(out)
-	} else {
-		cause = errors.Wrap(cause, out)
-	}
-	return errors.Wrap(cause, msg)
-}
diff --git a/vendor/github.com/golang/dep/gps/source_manager.go b/vendor/github.com/golang/dep/gps/source_manager.go
deleted file mode 100644
index 16c3f4816d125577d34bf56cbd656d2f8668d58b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/source_manager.go
+++ /dev/null
@@ -1,830 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"context"
-	"fmt"
-	"io/ioutil"
-	"log"
-	"net/url"
-	"os"
-	"os/signal"
-	"path/filepath"
-	"runtime"
-	"strings"
-	"sync"
-	"sync/atomic"
-	"time"
-
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/golang/dep/internal/fs"
-	"github.com/nightlyone/lockfile"
-	"github.com/pkg/errors"
-	"github.com/sdboyer/constext"
-)
-
-// Used to compute a friendly filepath from a URL-shaped input.
-var sanitizer = strings.NewReplacer("-", "--", ":", "-", "/", "-", "+", "-")
-
-// A locker is responsible for preventing multiple instances of dep from
-// interfering with one-another.
-//
-// Currently, anything that can either TryLock(), Unlock(), or GetOwner()
-// satisfies that need.
-type locker interface {
-	TryLock() error
-	Unlock() error
-	GetOwner() (*os.Process, error)
-}
-
-// A falselocker adheres to the locker interface and its purpose is to quietly
-// fail to lock when the DEPNOLOCK environment variable is set.
-//
-// This allows dep to run on systems where file locking doesn't work --
-// particularly those that use union mount type filesystems that don't
-// implement hard links or fnctl() style locking.
-type falseLocker struct{}
-
-// Always returns an error to indicate there's no current ower PID for our
-// lock.
-func (fl falseLocker) GetOwner() (*os.Process, error) {
-	return nil, fmt.Errorf("falseLocker always fails")
-}
-
-// Does nothing and returns a nil error so caller believes locking succeeded.
-func (fl falseLocker) TryLock() error {
-	return nil
-}
-
-// Does nothing and returns a nil error so caller believes unlocking succeeded.
-func (fl falseLocker) Unlock() error {
-	return nil
-}
-
-// A SourceManager is responsible for retrieving, managing, and interrogating
-// source repositories. Its primary purpose is to serve the needs of a Solver,
-// but it is handy for other purposes, as well.
-//
-// gps's built-in SourceManager, SourceMgr, is intended to be generic and
-// sufficient for any purpose. It provides some additional semantics around the
-// methods defined here.
-type SourceManager interface {
-	// SourceExists checks if a repository exists, either upstream or in the
-	// SourceManager's central repository cache.
-	SourceExists(ProjectIdentifier) (bool, error)
-
-	// SyncSourceFor will attempt to bring all local information about a source
-	// fully up to date.
-	SyncSourceFor(ProjectIdentifier) error
-
-	// ListVersions retrieves a list of the available versions for a given
-	// repository name.
-	ListVersions(ProjectIdentifier) ([]PairedVersion, error)
-
-	// RevisionPresentIn indicates whether the provided Version is present in
-	// the given repository.
-	RevisionPresentIn(ProjectIdentifier, Revision) (bool, error)
-
-	// ListPackages parses the tree of the Go packages at or below root of the
-	// provided ProjectIdentifier, at the provided version.
-	ListPackages(ProjectIdentifier, Version) (pkgtree.PackageTree, error)
-
-	// GetManifestAndLock returns manifest and lock information for the provided
-	// root import path.
-	//
-	// gps currently requires that projects be rooted at their repository root,
-	// necessitating that the ProjectIdentifier's ProjectRoot must also be a
-	// repository root.
-	GetManifestAndLock(ProjectIdentifier, Version, ProjectAnalyzer) (Manifest, Lock, error)
-
-	// ExportProject writes out the tree of the provided import path, at the
-	// provided version, to the provided directory.
-	ExportProject(context.Context, ProjectIdentifier, Version, string) error
-
-	// ExportPrunedProject writes out the tree corresponding to the provided
-	// LockedProject, the provided version, to the provided directory, applying
-	// the provided pruning options.
-	//
-	// The first return value is the hex-encoded string representation of the
-	// hash, including colon-separated leaders indicating the version of the
-	// hashing function used, and the prune options that were applied.
-	ExportPrunedProject(context.Context, LockedProject, PruneOptions, string) error
-
-	// DeduceProjectRoot takes an import path and deduces the corresponding
-	// project/source root.
-	DeduceProjectRoot(ip string) (ProjectRoot, error)
-
-	// SourceURLsForPath takes an import path and deduces the set of source URLs
-	// that may refer to a canonical upstream source.
-	// In general, these URLs differ only by protocol (e.g. https vs. ssh), not path
-	SourceURLsForPath(ip string) ([]*url.URL, error)
-
-	// Release lets go of any locks held by the SourceManager. Once called, it
-	// is no longer allowed to call methods of that SourceManager; all
-	// method calls will immediately result in errors.
-	Release()
-
-	// InferConstraint tries to puzzle out what kind of version is given in a string -
-	// semver, a revision, or as a fallback, a plain tag
-	InferConstraint(s string, pi ProjectIdentifier) (Constraint, error)
-}
-
-// A ProjectAnalyzer is responsible for analyzing a given path for Manifest and
-// Lock information. Tools relying on gps must implement one.
-type ProjectAnalyzer interface {
-	// Perform analysis of the filesystem tree rooted at path, with the
-	// root import path importRoot, to determine the project's constraints, as
-	// indicated by a Manifest and Lock.
-	//
-	// Note that an error will typically cause the solver to treat the analyzed
-	// version as unusable. As such, an error should generally only be returned
-	// if the code tree is somehow malformed, but not if the implementor's
-	// expected files containing Manifest and Lock data are merely absent.
-	DeriveManifestAndLock(path string, importRoot ProjectRoot) (Manifest, Lock, error)
-
-	// Info reports this project analyzer's info.
-	Info() ProjectAnalyzerInfo
-}
-
-// ProjectAnalyzerInfo indicates a ProjectAnalyzer's name and version.
-type ProjectAnalyzerInfo struct {
-	Name    string
-	Version int
-}
-
-// String returns a string like: "<name>.<decimal version>"
-func (p ProjectAnalyzerInfo) String() string {
-	return fmt.Sprintf("%s.%d", p.Name, p.Version)
-}
-
-// SourceMgr is the default SourceManager for gps.
-//
-// There's no (planned) reason why it would need to be reimplemented by other
-// tools; control via dependency injection is intended to be sufficient.
-type SourceMgr struct {
-	cachedir    string                // path to root of cache dir
-	lf          locker                // handle for the sm lock file on disk
-	suprvsr     *supervisor           // subsystem that supervises running calls/io
-	cancelAll   context.CancelFunc    // cancel func to kill all running work
-	deduceCoord *deductionCoordinator // subsystem that manages import path deduction
-	srcCoord    *sourceCoordinator    // subsystem that manages sources
-	sigmut      sync.Mutex            // mutex protecting signal handling setup/teardown
-	qch         chan struct{}         // quit chan for signal handler
-	relonce     sync.Once             // once-er to ensure we only release once
-	releasing   int32                 // flag indicating release of sm has begun
-}
-
-var _ SourceManager = &SourceMgr{}
-
-// ErrSourceManagerIsReleased is the error returned by any SourceManager method
-// called after the SourceManager has been released, rendering its methods no
-// longer safe to call.
-var ErrSourceManagerIsReleased = fmt.Errorf("this SourceManager has been released, its methods can no longer be called")
-
-// SourceManagerConfig holds configuration information for creating SourceMgrs.
-type SourceManagerConfig struct {
-	CacheAge       time.Duration // Maximum valid age of cached data. <=0: Don't cache.
-	Cachedir       string        // Where to store local instances of upstream sources.
-	Logger         *log.Logger   // Optional info/warn logger. Discards if nil.
-	DisableLocking bool          // True if the SourceManager should NOT use a lock file to protect the Cachedir from multiple processes.
-}
-
-// NewSourceManager produces an instance of gps's built-in SourceManager.
-//
-// The returned SourceManager aggressively caches information wherever possible.
-// If tools need to do preliminary work involving upstream repository analysis
-// prior to invoking a solve run, it is recommended that they create this
-// SourceManager as early as possible and use it to their ends. That way, the
-// solver can benefit from any caches that may have already been warmed.
-//
-// A cacheEpoch is calculated from now()-cacheAge, and older persistent cache data
-// is discarded. When cacheAge is <= 0, the persistent cache is
-// not used.
-//
-// gps's SourceManager is intended to be threadsafe (if it's not, please file a
-// bug!). It should be safe to reuse across concurrent solving runs, even on
-// unrelated projects.
-func NewSourceManager(c SourceManagerConfig) (*SourceMgr, error) {
-	if c.Logger == nil {
-		c.Logger = log.New(ioutil.Discard, "", 0)
-	}
-
-	err := fs.EnsureDir(filepath.Join(c.Cachedir, "sources"), 0777)
-	if err != nil {
-		return nil, err
-	}
-
-	// Fix for #820
-	//
-	// Consult https://godoc.org/github.com/nightlyone/lockfile for the lockfile
-	// behaviour. It's magic. It deals with stale processes, and if there is
-	// a process keeping the lock busy, it will pass back a temporary error that
-	// we can spin on.
-
-	glpath := filepath.Join(c.Cachedir, "sm.lock")
-
-	lockfile, err := func() (locker, error) {
-		if c.DisableLocking {
-			return falseLocker{}, nil
-		}
-		return lockfile.New(glpath)
-	}()
-
-	if err != nil {
-		return nil, CouldNotCreateLockError{
-			Path: glpath,
-			Err:  errors.Wrapf(err, "unable to create lock %s", glpath),
-		}
-	}
-
-	process, err := lockfile.GetOwner()
-	if err == nil {
-		// If we didn't get an error, then the lockfile exists already. We should
-		// check to see if it's us already:
-		if process.Pid == os.Getpid() {
-			return nil, CouldNotCreateLockError{
-				Path: glpath,
-				Err:  fmt.Errorf("lockfile %s already locked by this process", glpath),
-			}
-		}
-
-		// There is a lockfile, but it's owned by someone else. We'll try to lock
-		// it anyway.
-	}
-
-	// If it's a TemporaryError, we retry every second. Otherwise, we fail
-	// permanently.
-	//
-	// TODO: #534 needs to be implemented to provide a better way to log warnings,
-	// but until then we will just use stderr.
-
-	// Implicit Time of 0.
-	var lasttime time.Time
-	err = lockfile.TryLock()
-	for err != nil {
-		nowtime := time.Now()
-		duration := nowtime.Sub(lasttime)
-
-		// The first time this is evaluated, duration will be very large as lasttime is 0.
-		// Unless time travel is invented and someone travels back to the year 1, we should
-		// be ok.
-		if duration > 15*time.Second {
-			fmt.Fprintf(os.Stderr, "waiting for lockfile %s: %s\n", glpath, err.Error())
-			lasttime = nowtime
-		}
-
-		if t, ok := err.(interface {
-			Temporary() bool
-		}); ok && t.Temporary() {
-			time.Sleep(time.Second * 1)
-		} else {
-			return nil, CouldNotCreateLockError{
-				Path: glpath,
-				Err:  errors.Wrapf(err, "unable to lock %s", glpath),
-			}
-		}
-		err = lockfile.TryLock()
-	}
-
-	ctx, cf := context.WithCancel(context.TODO())
-	superv := newSupervisor(ctx)
-	deducer := newDeductionCoordinator(superv)
-
-	var sc sourceCache
-	if c.CacheAge > 0 {
-		// Try to open the BoltDB cache from disk.
-		epoch := time.Now().Add(-c.CacheAge).Unix()
-		boltCache, err := newBoltCache(c.Cachedir, epoch, c.Logger)
-		if err != nil {
-			c.Logger.Println(errors.Wrapf(err, "failed to open persistent cache %q", c.Cachedir))
-		} else {
-			sc = newMultiCache(memoryCache{}, boltCache)
-		}
-	}
-
-	sm := &SourceMgr{
-		cachedir:    c.Cachedir,
-		lf:          lockfile,
-		suprvsr:     superv,
-		cancelAll:   cf,
-		deduceCoord: deducer,
-		srcCoord:    newSourceCoordinator(superv, deducer, c.Cachedir, sc, c.Logger),
-		qch:         make(chan struct{}),
-	}
-
-	return sm, nil
-}
-
-// Cachedir returns the location of the cache directory.
-func (sm *SourceMgr) Cachedir() string {
-	return sm.cachedir
-}
-
-// UseDefaultSignalHandling sets up typical os.Interrupt signal handling for a
-// SourceMgr.
-func (sm *SourceMgr) UseDefaultSignalHandling() {
-	sigch := make(chan os.Signal, 1)
-	signal.Notify(sigch, os.Interrupt)
-	sm.HandleSignals(sigch)
-}
-
-// HandleSignals sets up logic to handle incoming signals with the goal of
-// shutting down the SourceMgr safely.
-//
-// Calling code must provide the signal channel, and is responsible for calling
-// signal.Notify() on that channel.
-//
-// Successive calls to HandleSignals() will deregister the previous handler and
-// set up a new one. It is not recommended that the same channel be passed
-// multiple times to this method.
-//
-// SetUpSigHandling() will set up a handler that is appropriate for most
-// use cases.
-func (sm *SourceMgr) HandleSignals(sigch chan os.Signal) {
-	sm.sigmut.Lock()
-	// always start by closing the qch, which will lead to any existing signal
-	// handler terminating, and deregistering its sigch.
-	if sm.qch != nil {
-		close(sm.qch)
-	}
-	sm.qch = make(chan struct{})
-
-	// Run a new goroutine with the input sigch and the fresh qch
-	go func(sch chan os.Signal, qch <-chan struct{}) {
-		defer signal.Stop(sch)
-		select {
-		case <-sch:
-			// Set up a timer to uninstall the signal handler after three
-			// seconds, so that the user can easily force termination with a
-			// second ctrl-c
-			time.AfterFunc(3*time.Second, func() {
-				signal.Stop(sch)
-			})
-
-			if opc := sm.suprvsr.count(); opc > 0 {
-				fmt.Printf("Signal received: waiting for %v ops to complete...\n", opc)
-			}
-
-			sm.Release()
-		case <-qch:
-			// quit channel triggered - deregister our sigch and return
-		}
-	}(sigch, sm.qch)
-	// Try to ensure handler is blocked in for-select before releasing the mutex
-	runtime.Gosched()
-
-	sm.sigmut.Unlock()
-}
-
-// StopSignalHandling deregisters any signal handler running on this SourceMgr.
-//
-// It's normally not necessary to call this directly; it will be called as
-// needed by Release().
-func (sm *SourceMgr) StopSignalHandling() {
-	sm.sigmut.Lock()
-	if sm.qch != nil {
-		close(sm.qch)
-		sm.qch = nil
-		runtime.Gosched()
-	}
-	sm.sigmut.Unlock()
-}
-
-// CouldNotCreateLockError describe failure modes in which creating a SourceMgr
-// did not succeed because there was an error while attempting to create the
-// on-disk lock file.
-type CouldNotCreateLockError struct {
-	Path string
-	Err  error
-}
-
-func (e CouldNotCreateLockError) Error() string {
-	return e.Err.Error()
-}
-
-// Release lets go of any locks held by the SourceManager. Once called, it is no
-// longer allowed to call methods of that SourceManager; all method calls will
-// immediately result in errors.
-func (sm *SourceMgr) Release() {
-	atomic.StoreInt32(&sm.releasing, 1)
-
-	sm.relonce.Do(func() {
-		// Send the signal to the supervisor to cancel all running calls.
-		sm.cancelAll()
-		sm.suprvsr.wait()
-
-		// Close the source coordinator.
-		sm.srcCoord.close()
-
-		// Close the file handle for the lock file and remove it from disk
-		sm.lf.Unlock()
-		os.Remove(filepath.Join(sm.cachedir, "sm.lock"))
-
-		// Close the qch, if non-nil, so the signal handlers run out. This will
-		// also deregister the sig channel, if any has been set up.
-		if sm.qch != nil {
-			close(sm.qch)
-		}
-	})
-}
-
-// GetManifestAndLock returns manifest and lock information for the provided
-// ProjectIdentifier, at the provided Version. The work of producing the
-// manifest and lock is delegated to the provided ProjectAnalyzer's
-// DeriveManifestAndLock() method.
-func (sm *SourceMgr) GetManifestAndLock(id ProjectIdentifier, v Version, an ProjectAnalyzer) (Manifest, Lock, error) {
-	if atomic.LoadInt32(&sm.releasing) == 1 {
-		return nil, nil, ErrSourceManagerIsReleased
-	}
-
-	srcg, err := sm.srcCoord.getSourceGatewayFor(context.TODO(), id)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	return srcg.getManifestAndLock(context.TODO(), id.ProjectRoot, v, an)
-}
-
-// ListPackages parses the tree of the Go packages at and below the ProjectRoot
-// of the given ProjectIdentifier, at the given version.
-func (sm *SourceMgr) ListPackages(id ProjectIdentifier, v Version) (pkgtree.PackageTree, error) {
-	if atomic.LoadInt32(&sm.releasing) == 1 {
-		return pkgtree.PackageTree{}, ErrSourceManagerIsReleased
-	}
-
-	srcg, err := sm.srcCoord.getSourceGatewayFor(context.TODO(), id)
-	if err != nil {
-		return pkgtree.PackageTree{}, err
-	}
-
-	return srcg.listPackages(context.TODO(), id.ProjectRoot, v)
-}
-
-// ListVersions retrieves a list of the available versions for a given
-// repository name.
-//
-// The list is not sorted; while it may be returned in the order that the
-// underlying VCS reports version information, no guarantee is made. It is
-// expected that the caller either not care about order, or sort the result
-// themselves.
-//
-// This list is always retrieved from upstream on the first call. Subsequent
-// calls will return a cached version of the first call's results. if upstream
-// is not accessible (network outage, access issues, or the resource actually
-// went away), an error will be returned.
-func (sm *SourceMgr) ListVersions(id ProjectIdentifier) ([]PairedVersion, error) {
-	if atomic.LoadInt32(&sm.releasing) == 1 {
-		return nil, ErrSourceManagerIsReleased
-	}
-
-	srcg, err := sm.srcCoord.getSourceGatewayFor(context.TODO(), id)
-	if err != nil {
-		// TODO(sdboyer) More-er proper-er errors
-		return nil, err
-	}
-
-	return srcg.listVersions(context.TODO())
-}
-
-// RevisionPresentIn indicates whether the provided Revision is present in the given
-// repository.
-func (sm *SourceMgr) RevisionPresentIn(id ProjectIdentifier, r Revision) (bool, error) {
-	if atomic.LoadInt32(&sm.releasing) == 1 {
-		return false, ErrSourceManagerIsReleased
-	}
-
-	srcg, err := sm.srcCoord.getSourceGatewayFor(context.TODO(), id)
-	if err != nil {
-		// TODO(sdboyer) More-er proper-er errors
-		return false, err
-	}
-
-	return srcg.revisionPresentIn(context.TODO(), r)
-}
-
-// SourceExists checks if a repository exists, either upstream or in the cache,
-// for the provided ProjectIdentifier.
-func (sm *SourceMgr) SourceExists(id ProjectIdentifier) (bool, error) {
-	if atomic.LoadInt32(&sm.releasing) == 1 {
-		return false, ErrSourceManagerIsReleased
-	}
-
-	srcg, err := sm.srcCoord.getSourceGatewayFor(context.TODO(), id)
-	if err != nil {
-		return false, err
-	}
-
-	ctx := context.TODO()
-	if err := srcg.existsInCache(ctx); err == nil {
-		return true, nil
-	}
-	if err := srcg.existsUpstream(ctx); err != nil {
-		return false, err
-	}
-	return true, nil
-}
-
-// SyncSourceFor will ensure that all local caches and information about a
-// source are up to date with any network-acccesible information.
-//
-// The primary use case for this is prefetching.
-func (sm *SourceMgr) SyncSourceFor(id ProjectIdentifier) error {
-	if atomic.LoadInt32(&sm.releasing) == 1 {
-		return ErrSourceManagerIsReleased
-	}
-
-	srcg, err := sm.srcCoord.getSourceGatewayFor(context.TODO(), id)
-	if err != nil {
-		return err
-	}
-
-	return srcg.syncLocal(context.TODO())
-}
-
-// ExportProject writes out the tree of the provided ProjectIdentifier's
-// ProjectRoot, at the provided version, to the provided directory.
-func (sm *SourceMgr) ExportProject(ctx context.Context, id ProjectIdentifier, v Version, to string) error {
-	if atomic.LoadInt32(&sm.releasing) == 1 {
-		return ErrSourceManagerIsReleased
-	}
-
-	srcg, err := sm.srcCoord.getSourceGatewayFor(ctx, id)
-	if err != nil {
-		return err
-	}
-
-	return srcg.exportVersionTo(ctx, v, to)
-}
-
-// ExportPrunedProject writes out a tree of the provided LockedProject, applying
-// provided pruning rules as appropriate.
-func (sm *SourceMgr) ExportPrunedProject(ctx context.Context, lp LockedProject, prune PruneOptions, to string) error {
-	if atomic.LoadInt32(&sm.releasing) == 1 {
-		return ErrSourceManagerIsReleased
-	}
-
-	srcg, err := sm.srcCoord.getSourceGatewayFor(ctx, lp.Ident())
-	if err != nil {
-		return err
-	}
-
-	return srcg.exportPrunedVersionTo(ctx, lp, prune, to)
-}
-
-// DeduceProjectRoot takes an import path and deduces the corresponding
-// project/source root.
-//
-// Note that some import paths may require network activity to correctly
-// determine the root of the path, such as, but not limited to, vanity import
-// paths. (A special exception is written for gopkg.in to minimize network
-// activity, as its behavior is well-structured)
-func (sm *SourceMgr) DeduceProjectRoot(ip string) (ProjectRoot, error) {
-	if atomic.LoadInt32(&sm.releasing) == 1 {
-		return "", ErrSourceManagerIsReleased
-	}
-
-	// TODO(sdboyer) refactor deduceRootPath() so that this validation can move
-	// back down below a cache point, rather than executing on every call.
-	if !pathvld.MatchString(ip) {
-		return "", errors.Errorf("%q is not a valid import path", ip)
-	}
-
-	pd, err := sm.deduceCoord.deduceRootPath(context.TODO(), ip)
-	return ProjectRoot(pd.root), err
-}
-
-// InferConstraint tries to puzzle out what kind of version is given in a
-// string. Preference is given first for branches, then semver constraints, then
-// plain tags, and then revisions.
-func (sm *SourceMgr) InferConstraint(s string, pi ProjectIdentifier) (Constraint, error) {
-	if s == "" {
-		return Any(), nil
-	}
-
-	// Lookup the string in the repository
-	var version PairedVersion
-	versions, err := sm.ListVersions(pi)
-	if err != nil {
-		return nil, errors.Wrapf(err, "list versions for %s", pi) // means repo does not exist
-	}
-	SortPairedForUpgrade(versions)
-	for _, v := range versions {
-		if s == v.String() {
-			version = v
-			break
-		}
-	}
-
-	// Branch
-	if version != nil && version.Type() == IsBranch {
-		return version.Unpair(), nil
-	}
-
-	// Semver Constraint
-	c, err := NewSemverConstraintIC(s)
-	if c != nil && err == nil {
-		return c, nil
-	}
-
-	// Tag
-	if version != nil {
-		return version.Unpair(), nil
-	}
-
-	// Revision, possibly abbreviated
-	r, err := sm.disambiguateRevision(context.TODO(), pi, Revision(s))
-	if err == nil {
-		return r, nil
-	}
-
-	return nil, errors.Errorf("%s is not a valid version for the package %s(%s)", s, pi.ProjectRoot, pi.Source)
-}
-
-// SourceURLsForPath takes an import path and deduces the set of source URLs
-// that may refer to a canonical upstream source.
-// In general, these URLs differ only by protocol (e.g. https vs. ssh), not path
-func (sm *SourceMgr) SourceURLsForPath(ip string) ([]*url.URL, error) {
-	deduced, err := sm.deduceCoord.deduceRootPath(context.TODO(), ip)
-	if err != nil {
-		return nil, err
-	}
-
-	return deduced.mb.possibleURLs(), nil
-}
-
-// disambiguateRevision looks up a revision in the underlying source, spitting
-// it back out in an unabbreviated, disambiguated form.
-//
-// For example, if pi refers to a git-based project, then rev could be an
-// abbreviated git commit hash. disambiguateRevision would return the complete
-// hash.
-func (sm *SourceMgr) disambiguateRevision(ctx context.Context, pi ProjectIdentifier, rev Revision) (Revision, error) {
-	srcg, err := sm.srcCoord.getSourceGatewayFor(context.TODO(), pi)
-	if err != nil {
-		return "", err
-	}
-	return srcg.disambiguateRevision(ctx, rev)
-}
-
-type timeCount struct {
-	count int
-	start time.Time
-}
-
-type durCount struct {
-	count int
-	dur   time.Duration
-}
-
-type supervisor struct {
-	ctx     context.Context
-	mu      sync.Mutex // Guards all maps
-	cond    sync.Cond  // Wraps mu so callers can wait until all calls end
-	running map[callInfo]timeCount
-	ran     map[callType]durCount
-}
-
-func newSupervisor(ctx context.Context) *supervisor {
-	supv := &supervisor{
-		ctx:     ctx,
-		running: make(map[callInfo]timeCount),
-		ran:     make(map[callType]durCount),
-	}
-
-	supv.cond = sync.Cond{L: &supv.mu}
-	return supv
-}
-
-// do executes the incoming closure using a conjoined context, and keeps
-// counters to ensure the sourceMgr can't finish Release()ing until after all
-// calls have returned.
-func (sup *supervisor) do(inctx context.Context, name string, typ callType, f func(context.Context) error) error {
-	ci := callInfo{
-		name: name,
-		typ:  typ,
-	}
-
-	octx, err := sup.start(ci)
-	if err != nil {
-		return err
-	}
-
-	cctx, cancelFunc := constext.Cons(inctx, octx)
-	err = f(cctx)
-	sup.done(ci)
-	cancelFunc()
-	return err
-}
-
-func (sup *supervisor) start(ci callInfo) (context.Context, error) {
-	sup.mu.Lock()
-	defer sup.mu.Unlock()
-	if err := sup.ctx.Err(); err != nil {
-		// We've already been canceled; error out.
-		return nil, err
-	}
-
-	if existingInfo, has := sup.running[ci]; has {
-		existingInfo.count++
-		sup.running[ci] = existingInfo
-	} else {
-		sup.running[ci] = timeCount{
-			count: 1,
-			start: time.Now(),
-		}
-	}
-
-	return sup.ctx, nil
-}
-
-func (sup *supervisor) count() int {
-	sup.mu.Lock()
-	defer sup.mu.Unlock()
-	return len(sup.running)
-}
-
-func (sup *supervisor) done(ci callInfo) {
-	sup.mu.Lock()
-
-	existingInfo, has := sup.running[ci]
-	if !has {
-		panic(fmt.Sprintf("sourceMgr: tried to complete a call that had not registered via run()"))
-	}
-
-	if existingInfo.count > 1 {
-		// If more than one is pending, don't stop the clock yet.
-		existingInfo.count--
-		sup.running[ci] = existingInfo
-	} else {
-		// Last one for this particular key; update metrics with info.
-		durCnt := sup.ran[ci.typ]
-		durCnt.count++
-		durCnt.dur += time.Since(existingInfo.start)
-		sup.ran[ci.typ] = durCnt
-		delete(sup.running, ci)
-
-		if len(sup.running) == 0 {
-			// This is the only place where we signal the cond, as it's the only
-			// time that the number of running calls could become zero.
-			sup.cond.Signal()
-		}
-	}
-	sup.mu.Unlock()
-}
-
-// wait until all active calls have terminated.
-//
-// Assumes something else has already canceled the supervisor via its context.
-func (sup *supervisor) wait() {
-	sup.cond.L.Lock()
-	for len(sup.running) > 0 {
-		sup.cond.Wait()
-	}
-	sup.cond.L.Unlock()
-}
-
-type callType uint
-
-const (
-	ctHTTPMetadata callType = iota
-	ctListVersions
-	ctGetManifestAndLock
-	ctListPackages
-	ctSourcePing
-	ctSourceInit
-	ctSourceFetch
-	ctExportTree
-	ctValidateLocal
-)
-
-func (ct callType) String() string {
-	switch ct {
-	case ctHTTPMetadata:
-		return "Retrieving go get metadata"
-	case ctListVersions:
-		return "Retrieving latest version list"
-	case ctGetManifestAndLock:
-		return "Reading manifest and lock data"
-	case ctListPackages:
-		return "Parsing PackageTree"
-	case ctSourcePing:
-		return "Checking for upstream existence"
-	case ctSourceInit:
-		return "Initializing local source cache"
-	case ctSourceFetch:
-		return "Fetching latest data into local source cache"
-	case ctExportTree:
-		return "Writing code tree out to disk"
-	default:
-		panic("unknown calltype")
-	}
-}
-
-// callInfo provides metadata about an ongoing call.
-type callInfo struct {
-	name string
-	typ  callType
-}
diff --git a/vendor/github.com/golang/dep/gps/strings.go b/vendor/github.com/golang/dep/gps/strings.go
deleted file mode 100644
index 6ca7b3d9f475847860d00a86d45ca805906404c2..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/strings.go
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"bytes"
-	"unicode"
-	"unicode/utf8"
-)
-
-// toFold returns a string with the property that strings.EqualFold(s, t) iff
-// ToFold(s) == ToFold(t) This lets us test a large set of strings for
-// fold-equivalent duplicates without making a quadratic number of calls to
-// EqualFold. Note that strings.ToUpper and strings.ToLower do not have the
-// desired property in some corner cases.
-//
-// This is hoisted from toolchain internals: src/cmd/go/internal/str/str.go
-func toFold(s string) string {
-	// Fast path: all ASCII, no upper case.
-	// Most paths look like this already.
-	for i := 0; i < len(s); i++ {
-		c := s[i]
-		if c >= utf8.RuneSelf || 'A' <= c && c <= 'Z' {
-			goto Slow
-		}
-	}
-	return s
-
-Slow:
-	var buf bytes.Buffer
-	for _, r := range s {
-		// SimpleFold(x) cycles to the next equivalent rune > x
-		// or wraps around to smaller values. Iterate until it wraps,
-		// and we've found the minimum value.
-		for {
-			r0 := r
-			r = unicode.SimpleFold(r0)
-			if r <= r0 {
-				break
-			}
-		}
-		// Exception to allow fast path above: A-Z => a-z
-		if 'A' <= r && r <= 'Z' {
-			r += 'a' - 'A'
-		}
-		buf.WriteRune(r)
-	}
-	return buf.String()
-}
diff --git a/vendor/github.com/golang/dep/gps/trace.go b/vendor/github.com/golang/dep/gps/trace.go
deleted file mode 100644
index d4dd24a13655b5d8aa433f06581c2dc36299ec7e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/trace.go
+++ /dev/null
@@ -1,205 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"fmt"
-	"strconv"
-	"strings"
-
-	"github.com/golang/dep/gps/pkgtree"
-)
-
-const (
-	successChar   = "✓"
-	successCharSp = successChar + " "
-	failChar      = "✗"
-	failCharSp    = failChar + " "
-	backChar      = "←"
-	innerIndent   = "  "
-)
-
-func (s *solver) traceCheckPkgs(bmi bimodalIdentifier) {
-	if s.tl == nil {
-		return
-	}
-
-	prefix := getprei(len(s.vqs) + 1)
-	s.tl.Printf("%s\n", tracePrefix(fmt.Sprintf("? revisit %s to add %v pkgs", bmi.id, len(bmi.pl)), prefix, prefix))
-}
-
-func (s *solver) traceCheckQueue(q *versionQueue, bmi bimodalIdentifier, cont bool, offset int) {
-	if s.tl == nil {
-		return
-	}
-
-	prefix := getprei(len(s.vqs) + offset)
-	vlen := strconv.Itoa(len(q.pi))
-	if !q.allLoaded {
-		vlen = "at least " + vlen
-	}
-
-	// TODO(sdboyer) how...to list the packages in the limited space we have?
-	var verb string
-	indent := ""
-	if cont {
-		// Continue is an "inner" message.. indenting
-		verb = "continue"
-		vlen = vlen + " more"
-		indent = innerIndent
-	} else {
-		verb = "attempt"
-	}
-
-	s.tl.Printf("%s\n", tracePrefix(fmt.Sprintf("%s? %s %s with %v pkgs; %s versions to try", indent, verb, bmi.id, len(bmi.pl), vlen), prefix, prefix))
-}
-
-// traceStartBacktrack is called with the bmi that first failed, thus initiating
-// backtracking
-func (s *solver) traceStartBacktrack(bmi bimodalIdentifier, err error, pkgonly bool) {
-	if s.tl == nil {
-		return
-	}
-
-	var msg string
-	if pkgonly {
-		msg = fmt.Sprintf("%s%s could not add %v pkgs to %s; begin backtrack", innerIndent, backChar, len(bmi.pl), bmi.id)
-	} else {
-		msg = fmt.Sprintf("%s%s no more versions of %s to try; begin backtrack", innerIndent, backChar, bmi.id)
-	}
-
-	prefix := getprei(len(s.sel.projects))
-	s.tl.Printf("%s\n", tracePrefix(msg, prefix, prefix))
-}
-
-// traceBacktrack is called when a package or project is poppped off during
-// backtracking
-func (s *solver) traceBacktrack(bmi bimodalIdentifier, pkgonly bool) {
-	if s.tl == nil {
-		return
-	}
-
-	var msg string
-	if pkgonly {
-		msg = fmt.Sprintf("%s backtrack: popped %v pkgs from %s", backChar, len(bmi.pl), bmi.id)
-	} else {
-		msg = fmt.Sprintf("%s backtrack: no more versions of %s to try", backChar, bmi.id)
-	}
-
-	prefix := getprei(len(s.sel.projects))
-	s.tl.Printf("%s\n", tracePrefix(msg, prefix, prefix))
-}
-
-// Called just once after solving has finished, whether success or not
-func (s *solver) traceFinish(sol solution, err error) {
-	if s.tl == nil {
-		return
-	}
-
-	if err == nil {
-		var pkgcount int
-		for _, lp := range sol.Projects() {
-			pkgcount += len(lp.Packages())
-		}
-		s.tl.Printf("%s%s found solution with %v packages from %v projects", innerIndent, successChar, pkgcount, len(sol.Projects()))
-	} else {
-		s.tl.Printf("%s%s solving failed", innerIndent, failChar)
-	}
-}
-
-// traceSelectRoot is called just once, when the root project is selected
-func (s *solver) traceSelectRoot(ptree pkgtree.PackageTree, cdeps []completeDep) {
-	if s.tl == nil {
-		return
-	}
-
-	// This duplicates work a bit, but we're in trace mode and it's only once,
-	// so who cares
-	rm, _ := ptree.ToReachMap(true, true, false, s.rd.ir)
-
-	s.tl.Printf("Root project is %q", s.rd.rpt.ImportRoot)
-
-	var expkgs int
-	for _, cdep := range cdeps {
-		expkgs += len(cdep.pl)
-	}
-
-	// TODO(sdboyer) include info on ignored pkgs/imports, etc.
-	s.tl.Printf(" %v transitively valid internal packages", len(rm))
-	s.tl.Printf(" %v external packages imported from %v projects", expkgs, len(cdeps))
-	s.tl.Printf("(0)   " + successCharSp + "select (root)")
-}
-
-// traceSelect is called when an atom is successfully selected
-func (s *solver) traceSelect(awp atomWithPackages, pkgonly bool) {
-	if s.tl == nil {
-		return
-	}
-
-	var msg string
-	if pkgonly {
-		msg = fmt.Sprintf("%s%s include %v more pkgs from %s", innerIndent, successChar, len(awp.pl), a2vs(awp.a))
-	} else {
-		msg = fmt.Sprintf("%s select %s w/%v pkgs", successChar, a2vs(awp.a), len(awp.pl))
-	}
-
-	prefix := getprei(len(s.sel.projects) - 1)
-	s.tl.Printf("%s\n", tracePrefix(msg, prefix, prefix))
-}
-
-func (s *solver) traceInfo(args ...interface{}) {
-	if s.tl == nil {
-		return
-	}
-
-	if len(args) == 0 {
-		panic("must pass at least one param to traceInfo")
-	}
-
-	preflen := len(s.sel.projects)
-	var msg string
-	switch data := args[0].(type) {
-	case string:
-		msg = tracePrefix(innerIndent+fmt.Sprintf(data, args[1:]...), "  ", "  ")
-	case traceError:
-		preflen++
-		// We got a special traceError, use its custom method
-		msg = tracePrefix(innerIndent+data.traceString(), "  ", failCharSp)
-	case error:
-		// Regular error; still use the x leader but default Error() string
-		msg = tracePrefix(innerIndent+data.Error(), "  ", failCharSp)
-	default:
-		// panic here because this can *only* mean a stupid internal bug
-		panic(fmt.Sprintf("canary - unknown type passed as first param to traceInfo %T", data))
-	}
-
-	prefix := getprei(preflen)
-	s.tl.Printf("%s\n", tracePrefix(msg, prefix, prefix))
-}
-
-func getprei(i int) string {
-	var s string
-	if i < 10 {
-		s = fmt.Sprintf("(%d)	", i)
-	} else if i < 100 {
-		s = fmt.Sprintf("(%d)  ", i)
-	} else {
-		s = fmt.Sprintf("(%d) ", i)
-	}
-	return s
-}
-
-func tracePrefix(msg, sep, fsep string) string {
-	parts := strings.Split(strings.TrimSuffix(msg, "\n"), "\n")
-	for k, str := range parts {
-		if k == 0 {
-			parts[k] = fsep + str
-		} else {
-			parts[k] = sep + str
-		}
-	}
-
-	return strings.Join(parts, "\n")
-}
diff --git a/vendor/github.com/golang/dep/gps/typed_radix.go b/vendor/github.com/golang/dep/gps/typed_radix.go
deleted file mode 100644
index 615f297efdc1046a73262a162caae3ae5909687c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/typed_radix.go
+++ /dev/null
@@ -1,92 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"strings"
-	"sync"
-
-	"github.com/armon/go-radix"
-)
-
-// Typed implementations of radix trees. These are just simple wrappers that let
-// us avoid having to type assert anywhere else, cleaning up other code a bit.
-//
-// Some of the more annoying things to implement (like walks) aren't
-// implemented. They can be added if/when we actually need them.
-//
-// Oh generics, where art thou...
-
-type deducerTrie struct {
-	sync.RWMutex
-	t *radix.Tree
-}
-
-func newDeducerTrie() *deducerTrie {
-	return &deducerTrie{
-		t: radix.New(),
-	}
-}
-
-// Suppress unused warning.
-var _ = (*deducerTrie)(nil).Delete
-
-// Delete is used to delete a key, returning the previous value and if it was deleted
-func (t *deducerTrie) Delete(s string) (pathDeducer, bool) {
-	t.Lock()
-	defer t.Unlock()
-	if d, had := t.t.Delete(s); had {
-		return d.(pathDeducer), had
-	}
-	return nil, false
-}
-
-// Insert is used to add a newentry or update an existing entry. Returns if updated.
-func (t *deducerTrie) Insert(s string, d pathDeducer) (pathDeducer, bool) {
-	t.Lock()
-	defer t.Unlock()
-	if d2, had := t.t.Insert(s, d); had {
-		return d2.(pathDeducer), had
-	}
-	return nil, false
-}
-
-// LongestPrefix is like Get, but instead of an exact match, it will return the
-// longest prefix match.
-func (t *deducerTrie) LongestPrefix(s string) (string, pathDeducer, bool) {
-	t.RLock()
-	defer t.RUnlock()
-	if p, d, has := t.t.LongestPrefix(s); has {
-		return p, d.(pathDeducer), has
-	}
-	return "", nil, false
-}
-
-// isPathPrefixOrEqual is an additional helper check to ensure that the literal
-// string prefix returned from a radix tree prefix match is also a path tree
-// match.
-//
-// The radix tree gets it mostly right, but we have to guard against
-// possibilities like this:
-//
-// github.com/sdboyer/foo
-// github.com/sdboyer/foobar/baz
-//
-// The latter would incorrectly be conflated with the former. As we know we're
-// operating on strings that describe import paths, guard against this case by
-// verifying that either the input is the same length as the match (in which
-// case we know they're equal), or that the next character is a "/". (Import
-// paths are defined to always use "/", not the OS-specific path separator.)
-func isPathPrefixOrEqual(pre, path string) bool {
-	prflen, pathlen := len(pre), len(path)
-	if pathlen == prflen+1 {
-		// this can never be the case
-		return false
-	}
-
-	// we assume something else (a trie) has done equality check up to the point
-	// of the prefix, so we just check len
-	return prflen == pathlen || strings.Index(path[prflen:], "/") == 0
-}
diff --git a/vendor/github.com/golang/dep/gps/vcs_repo.go b/vendor/github.com/golang/dep/gps/vcs_repo.go
deleted file mode 100644
index 0835b35736e125322c2d87e58cb25b3adfc1cc91..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/vcs_repo.go
+++ /dev/null
@@ -1,425 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"bytes"
-	"context"
-	"encoding/xml"
-	"os"
-	"path/filepath"
-	"runtime"
-	"strings"
-	"time"
-
-	"github.com/Masterminds/vcs"
-	"github.com/pkg/errors"
-)
-
-type ctxRepo interface {
-	vcs.Repo
-	get(context.Context) error
-	fetch(context.Context) error
-	updateVersion(context.Context, string) error
-	//ping(context.Context) (bool, error)
-}
-
-// ensureCleaner is an optional extension of ctxRepo.
-type ensureCleaner interface {
-	// ensureClean ensures a repository is clean and in working order,
-	// or returns an error if the adaptive recovery attempts fail.
-	ensureClean(context.Context) error
-}
-
-// original implementation of these methods come from
-// https://github.com/Masterminds/vcs
-
-type gitRepo struct {
-	*vcs.GitRepo
-}
-
-func newVcsRemoteErrorOr(err error, args []string, out, msg string) error {
-	if err == context.Canceled || err == context.DeadlineExceeded {
-		return err
-	}
-	return vcs.NewRemoteError(msg, errors.Wrapf(err, "command failed: %v", args), out)
-}
-
-func newVcsLocalErrorOr(err error, args []string, out, msg string) error {
-	if err == context.Canceled || err == context.DeadlineExceeded {
-		return err
-	}
-	return vcs.NewLocalError(msg, errors.Wrapf(err, "command failed: %v", args), out)
-}
-
-func (r *gitRepo) get(ctx context.Context) error {
-	cmd := commandContext(
-		ctx,
-		"git",
-		"clone",
-		"--recursive",
-		"-v",
-		"--progress",
-		r.Remote(),
-		r.LocalPath(),
-	)
-	// Ensure no prompting for PWs
-	cmd.SetEnv(append([]string{"GIT_ASKPASS=", "GIT_TERMINAL_PROMPT=0"}, os.Environ()...))
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to get repository")
-	}
-
-	return nil
-}
-
-func (r *gitRepo) fetch(ctx context.Context) error {
-	cmd := commandContext(
-		ctx,
-		"git",
-		"fetch",
-		"--tags",
-		"--prune",
-		r.RemoteLocation,
-	)
-	cmd.SetDir(r.LocalPath())
-	// Ensure no prompting for PWs
-	cmd.SetEnv(append([]string{"GIT_ASKPASS=", "GIT_TERMINAL_PROMPT=0"}, os.Environ()...))
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to update repository")
-	}
-	return nil
-}
-
-func (r *gitRepo) updateVersion(ctx context.Context, v string) error {
-	cmd := commandContext(ctx, "git", "checkout", v)
-	cmd.SetDir(r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsLocalErrorOr(err, cmd.Args(), string(out),
-			"unable to update checked out version")
-	}
-
-	return r.defendAgainstSubmodules(ctx)
-}
-
-// defendAgainstSubmodules tries to keep repo state sane in the event of
-// submodules. Or nested submodules. What a great idea, submodules.
-func (r *gitRepo) defendAgainstSubmodules(ctx context.Context) error {
-	// First, update them to whatever they should be, if there should happen to be any.
-	{
-		cmd := commandContext(
-			ctx,
-			"git",
-			"submodule",
-			"update",
-			"--init",
-			"--recursive",
-		)
-		cmd.SetDir(r.LocalPath())
-		// Ensure no prompting for PWs
-		cmd.SetEnv(append([]string{"GIT_ASKPASS=", "GIT_TERMINAL_PROMPT=0"}, os.Environ()...))
-		if out, err := cmd.CombinedOutput(); err != nil {
-			return newVcsLocalErrorOr(err, cmd.Args(), string(out),
-				"unexpected error while defensively updating submodules")
-		}
-	}
-
-	// Now, do a special extra-aggressive clean in case changing versions caused
-	// one or more submodules to go away.
-	{
-		cmd := commandContext(ctx, "git", "clean", "-x", "-d", "-f", "-f")
-		cmd.SetDir(r.LocalPath())
-		if out, err := cmd.CombinedOutput(); err != nil {
-			return newVcsLocalErrorOr(err, cmd.Args(), string(out),
-				"unexpected error while defensively cleaning up after possible derelict submodule directories")
-		}
-	}
-
-	// Then, repeat just in case there are any nested submodules that went away.
-	{
-		cmd := commandContext(
-			ctx,
-			"git",
-			"submodule",
-			"foreach",
-			"--recursive",
-			"git",
-			"clean", "-x", "-d", "-f", "-f",
-		)
-		cmd.SetDir(r.LocalPath())
-		if out, err := cmd.CombinedOutput(); err != nil {
-			return newVcsLocalErrorOr(err, cmd.Args(), string(out),
-				"unexpected error while defensively cleaning up after possible derelict nested submodule directories")
-		}
-	}
-
-	return nil
-}
-
-func (r *gitRepo) ensureClean(ctx context.Context) error {
-	cmd := commandContext(
-		ctx,
-		"git",
-		"status",
-		"--porcelain",
-	)
-	cmd.SetDir(r.LocalPath())
-
-	out, err := cmd.CombinedOutput()
-	if err != nil {
-		// An error on simple git status indicates some aggressive repository
-		// corruption, outside of the purview that we can deal with here.
-		return err
-	}
-
-	if len(bytes.TrimSpace(out)) == 0 {
-		// No output from status indicates a clean tree, without any modified or
-		// untracked files - we're in good shape.
-		return nil
-	}
-
-	// We could be more parsimonious about this, but it's probably not worth it
-	// - it's a rare case to have to do any cleanup anyway, so when we do, we
-	// might as well just throw the kitchen sink at it.
-	cmd = commandContext(
-		ctx,
-		"git",
-		"reset",
-		"--hard",
-	)
-	cmd.SetDir(r.LocalPath())
-	_, err = cmd.CombinedOutput()
-	if err != nil {
-		return err
-	}
-
-	// We also need to git clean -df; just reuse defendAgainstSubmodules here,
-	// even though it's a bit layer-breaky.
-	err = r.defendAgainstSubmodules(ctx)
-	if err != nil {
-		return err
-	}
-
-	// Check status one last time. If it's still not clean, give up.
-	cmd = commandContext(
-		ctx,
-		"git",
-		"status",
-		"--porcelain",
-	)
-	cmd.SetDir(r.LocalPath())
-
-	out, err = cmd.CombinedOutput()
-	if err != nil {
-		return err
-	}
-
-	if len(bytes.TrimSpace(out)) != 0 {
-		return errors.Errorf("failed to clean up git repository at %s - dirty? corrupted? status output: \n%s", r.LocalPath(), string(out))
-	}
-
-	return nil
-}
-
-type bzrRepo struct {
-	*vcs.BzrRepo
-}
-
-func (r *bzrRepo) get(ctx context.Context) error {
-	basePath := filepath.Dir(filepath.FromSlash(r.LocalPath()))
-	if _, err := os.Stat(basePath); os.IsNotExist(err) {
-		err = os.MkdirAll(basePath, 0755)
-		if err != nil {
-			return newVcsLocalErrorOr(err, nil, "", "unable to create directory")
-		}
-	}
-
-	cmd := commandContext(ctx, "bzr", "branch", r.Remote(), r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to get repository")
-	}
-
-	return nil
-}
-
-func (r *bzrRepo) fetch(ctx context.Context) error {
-	cmd := commandContext(ctx, "bzr", "pull")
-	cmd.SetDir(r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to update repository")
-	}
-	return nil
-}
-
-func (r *bzrRepo) updateVersion(ctx context.Context, version string) error {
-	cmd := commandContext(ctx, "bzr", "update", "-r", version)
-	cmd.SetDir(r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsLocalErrorOr(err, cmd.Args(), string(out),
-			"unable to update checked out version")
-	}
-	return nil
-}
-
-type hgRepo struct {
-	*vcs.HgRepo
-}
-
-func (r *hgRepo) get(ctx context.Context) error {
-	cmd := commandContext(ctx, "hg", "clone", r.Remote(), r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to get repository")
-	}
-
-	return nil
-}
-
-func (r *hgRepo) fetch(ctx context.Context) error {
-	cmd := commandContext(ctx, "hg", "pull")
-	cmd.SetDir(r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to fetch latest changes")
-	}
-	return nil
-}
-
-func (r *hgRepo) updateVersion(ctx context.Context, version string) error {
-	cmd := commandContext(ctx, "hg", "update", version)
-	cmd.SetDir(r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to update checked out version")
-	}
-
-	return nil
-}
-
-type svnRepo struct {
-	*vcs.SvnRepo
-}
-
-func (r *svnRepo) get(ctx context.Context) error {
-	remote := r.Remote()
-	if strings.HasPrefix(remote, "/") {
-		remote = "file://" + remote
-	} else if runtime.GOOS == "windows" && filepath.VolumeName(remote) != "" {
-		remote = "file:///" + remote
-	}
-
-	cmd := commandContext(ctx, "svn", "checkout", remote, r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to get repository")
-	}
-
-	return nil
-}
-
-func (r *svnRepo) fetch(ctx context.Context) error {
-	cmd := commandContext(ctx, "svn", "update")
-	cmd.SetDir(r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to update repository")
-	}
-
-	return nil
-}
-
-func (r *svnRepo) updateVersion(ctx context.Context, version string) error {
-	cmd := commandContext(ctx, "svn", "update", "-r", version)
-	cmd.SetDir(r.LocalPath())
-	if out, err := cmd.CombinedOutput(); err != nil {
-		return newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to update checked out version")
-	}
-
-	return nil
-}
-
-func (r *svnRepo) CommitInfo(id string) (*vcs.CommitInfo, error) {
-	ctx := context.TODO()
-	// There are cases where Svn log doesn't return anything for HEAD or BASE.
-	// svn info does provide details for these but does not have elements like
-	// the commit message.
-	if id == "HEAD" || id == "BASE" {
-		type commit struct {
-			Revision string `xml:"revision,attr"`
-		}
-
-		type info struct {
-			Commit commit `xml:"entry>commit"`
-		}
-
-		cmd := commandContext(ctx, "svn", "info", "-r", id, "--xml")
-		cmd.SetDir(r.LocalPath())
-		out, err := cmd.CombinedOutput()
-		if err != nil {
-			return nil, newVcsLocalErrorOr(err, cmd.Args(), string(out),
-				"unable to retrieve commit information")
-		}
-
-		infos := new(info)
-		if err := xml.Unmarshal(out, &infos); err != nil {
-			return nil, newVcsLocalErrorOr(err, cmd.Args(), string(out),
-				"unable to retrieve commit information")
-		}
-
-		id = infos.Commit.Revision
-		if id == "" {
-			return nil, vcs.ErrRevisionUnavailable
-		}
-	}
-
-	cmd := commandContext(ctx, "svn", "log", "-r", id, "--xml")
-	cmd.SetDir(r.LocalPath())
-	out, err := cmd.CombinedOutput()
-	if err != nil {
-		return nil, newVcsRemoteErrorOr(err, cmd.Args(), string(out),
-			"unable to retrieve commit information")
-	}
-
-	type logentry struct {
-		Author string `xml:"author"`
-		Date   string `xml:"date"`
-		Msg    string `xml:"msg"`
-	}
-
-	type log struct {
-		XMLName xml.Name   `xml:"log"`
-		Logs    []logentry `xml:"logentry"`
-	}
-
-	logs := new(log)
-	if err := xml.Unmarshal(out, &logs); err != nil {
-		return nil, newVcsLocalErrorOr(err, cmd.Args(), string(out),
-			"unable to retrieve commit information")
-	}
-
-	if len(logs.Logs) == 0 {
-		return nil, vcs.ErrRevisionUnavailable
-	}
-
-	ci := &vcs.CommitInfo{
-		Commit:  id,
-		Author:  logs.Logs[0].Author,
-		Message: logs.Logs[0].Msg,
-	}
-
-	if len(logs.Logs[0].Date) > 0 {
-		ci.Date, err = time.Parse(time.RFC3339Nano, logs.Logs[0].Date)
-		if err != nil {
-			return nil, newVcsLocalErrorOr(err, cmd.Args(), string(out),
-				"unable to retrieve commit information")
-		}
-	}
-
-	return ci, nil
-}
diff --git a/vendor/github.com/golang/dep/gps/vcs_source.go b/vendor/github.com/golang/dep/gps/vcs_source.go
deleted file mode 100644
index 1e04b7b8c478478754d5cc0eeaba7d2904458572..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/vcs_source.go
+++ /dev/null
@@ -1,655 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"bytes"
-	"context"
-	"fmt"
-	"os"
-	"path/filepath"
-	"regexp"
-	"strings"
-
-	"github.com/Masterminds/semver"
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/golang/dep/internal/fs"
-	"github.com/pkg/errors"
-)
-
-type baseVCSSource struct {
-	repo ctxRepo
-}
-
-func (bs *baseVCSSource) sourceType() string {
-	return string(bs.repo.Vcs())
-}
-
-func (bs *baseVCSSource) existsLocally(ctx context.Context) bool {
-	return bs.repo.CheckLocal()
-}
-
-func (bs *baseVCSSource) existsUpstream(ctx context.Context) bool {
-	return bs.repo.Ping()
-}
-
-func (*baseVCSSource) existsCallsListVersions() bool {
-	return false
-}
-
-func (*baseVCSSource) listVersionsRequiresLocal() bool {
-	return false
-}
-
-func (bs *baseVCSSource) upstreamURL() string {
-	return bs.repo.Remote()
-}
-
-func (bs *baseVCSSource) disambiguateRevision(ctx context.Context, r Revision) (Revision, error) {
-	ci, err := bs.repo.CommitInfo(string(r))
-	if err != nil {
-		return "", err
-	}
-	return Revision(ci.Commit), nil
-}
-
-func (bs *baseVCSSource) getManifestAndLock(ctx context.Context, pr ProjectRoot, r Revision, an ProjectAnalyzer) (Manifest, Lock, error) {
-	err := bs.repo.updateVersion(ctx, r.String())
-	if err != nil {
-		return nil, nil, unwrapVcsErr(err)
-	}
-
-	m, l, err := an.DeriveManifestAndLock(bs.repo.LocalPath(), pr)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	if l != nil && l != Lock(nil) {
-		l = prepLock(l)
-	}
-
-	return prepManifest(m), l, nil
-}
-
-func (bs *baseVCSSource) revisionPresentIn(r Revision) (bool, error) {
-	return bs.repo.IsReference(string(r)), nil
-}
-
-// initLocal clones/checks out the upstream repository to disk for the first
-// time.
-func (bs *baseVCSSource) initLocal(ctx context.Context) error {
-	err := bs.repo.get(ctx)
-
-	if err != nil {
-		return unwrapVcsErr(err)
-	}
-	return nil
-}
-
-// updateLocal ensures the local data (versions and code) we have about the
-// source is fully up to date with that of the canonical upstream source.
-func (bs *baseVCSSource) updateLocal(ctx context.Context) error {
-	err := bs.repo.fetch(ctx)
-	if err == nil {
-		return nil
-	}
-
-	ec, ok := bs.repo.(ensureCleaner)
-	if !ok {
-		return err
-	}
-
-	if err := ec.ensureClean(ctx); err != nil {
-		return unwrapVcsErr(err)
-	}
-
-	if err := bs.repo.fetch(ctx); err != nil {
-		return unwrapVcsErr(err)
-	}
-	return nil
-}
-
-func (bs *baseVCSSource) maybeClean(ctx context.Context) error {
-	ec, ok := bs.repo.(ensureCleaner)
-	if !ok {
-		return nil
-	}
-
-	if err := ec.ensureClean(ctx); err != nil {
-		return unwrapVcsErr(err)
-	}
-	return nil
-}
-
-func (bs *baseVCSSource) listPackages(ctx context.Context, pr ProjectRoot, r Revision) (ptree pkgtree.PackageTree, err error) {
-	err = bs.repo.updateVersion(ctx, r.String())
-
-	if err != nil {
-		err = unwrapVcsErr(err)
-	} else {
-		ptree, err = pkgtree.ListPackages(bs.repo.LocalPath(), string(pr))
-	}
-
-	return
-}
-
-func (bs *baseVCSSource) exportRevisionTo(ctx context.Context, r Revision, to string) error {
-	// Only make the parent dir, as CopyDir will balk on trying to write to an
-	// empty but existing dir.
-	if err := os.MkdirAll(filepath.Dir(to), 0777); err != nil {
-		return err
-	}
-
-	if err := bs.repo.updateVersion(ctx, r.String()); err != nil {
-		return unwrapVcsErr(err)
-	}
-
-	return fs.CopyDir(bs.repo.LocalPath(), to)
-}
-
-var (
-	gitHashRE = regexp.MustCompile(`^[a-f0-9]{40}$`)
-)
-
-// gitSource is a generic git repository implementation that should work with
-// all standard git remotes.
-type gitSource struct {
-	baseVCSSource
-}
-
-func (s *gitSource) exportRevisionTo(ctx context.Context, rev Revision, to string) error {
-	r := s.repo
-
-	if err := os.MkdirAll(to, 0777); err != nil {
-		return err
-	}
-
-	// Back up original index
-	idx, bak := filepath.Join(r.LocalPath(), ".git", "index"), filepath.Join(r.LocalPath(), ".git", "origindex")
-	err := fs.RenameWithFallback(idx, bak)
-	if err != nil {
-		return err
-	}
-
-	// could have an err here...but it's hard to imagine how?
-	defer fs.RenameWithFallback(bak, idx)
-
-	{
-		cmd := commandContext(ctx, "git", "read-tree", rev.String())
-		cmd.SetDir(r.LocalPath())
-		if out, err := cmd.CombinedOutput(); err != nil {
-			return errors.Wrap(err, string(out))
-		}
-	}
-
-	// Ensure we have exactly one trailing slash
-	to = strings.TrimSuffix(to, string(os.PathSeparator)) + string(os.PathSeparator)
-	// Checkout from our temporary index to the desired target location on
-	// disk; now it's git's job to make it fast.
-	//
-	// Sadly, this approach *does* also write out vendor dirs. There doesn't
-	// appear to be a way to make checkout-index respect sparse checkout
-	// rules (-a supersedes it). The alternative is using plain checkout,
-	// though we have a bunch of housekeeping to do to set up, then tear
-	// down, the sparse checkout controls, as well as restore the original
-	// index and HEAD.
-	{
-		cmd := commandContext(ctx, "git", "checkout-index", "-a", "--prefix="+to)
-		cmd.SetDir(r.LocalPath())
-		if out, err := cmd.CombinedOutput(); err != nil {
-			return errors.Wrap(err, string(out))
-		}
-	}
-
-	return nil
-}
-
-func (s *gitSource) isValidHash(hash []byte) bool {
-	return gitHashRE.Match(hash)
-}
-
-func (*gitSource) existsCallsListVersions() bool {
-	return true
-}
-
-func (s *gitSource) listVersions(ctx context.Context) (vlist []PairedVersion, err error) {
-	r := s.repo
-
-	cmd := commandContext(ctx, "git", "ls-remote", r.Remote())
-	// We want to invoke from a place where it's not possible for there to be a
-	// .git file instead of a .git directory, as git ls-remote will choke on the
-	// former and erroneously quit. However, we can't be sure that the repo
-	// exists on disk yet at this point; if it doesn't, then instead use the
-	// parent of the local path, as that's still likely a good bet.
-	if r.CheckLocal() {
-		cmd.SetDir(r.LocalPath())
-	} else {
-		cmd.SetDir(filepath.Dir(r.LocalPath()))
-	}
-	// Ensure no prompting for PWs
-	cmd.SetEnv(append([]string{"GIT_ASKPASS=", "GIT_TERMINAL_PROMPT=0"}, os.Environ()...))
-	out, err := cmd.CombinedOutput()
-	if err != nil {
-		return nil, errors.Wrap(err, string(out))
-	}
-
-	all := bytes.Split(bytes.TrimSpace(out), []byte("\n"))
-	if len(all) == 1 && len(all[0]) == 0 {
-		return nil, fmt.Errorf("no data returned from ls-remote")
-	}
-
-	// Pull out the HEAD rev (it's always first) so we know what branches to
-	// mark as default. This is, perhaps, not the best way to glean this, but it
-	// was good enough for git itself until 1.8.5. Also, the alternative is
-	// sniffing data out of the pack protocol, which is a separate request, and
-	// also waaaay more than we want to do right now.
-	//
-	// The cost is that we could potentially have multiple branches marked as
-	// the default. If that does occur, a later check (again, emulating git
-	// <1.8.5 behavior) further narrows the failure mode by choosing master as
-	// the sole default branch if a) master exists and b) master is one of the
-	// branches marked as a default.
-	//
-	// This all reduces the failure mode to a very narrow range of
-	// circumstances. Nevertheless, if we do end up emitting multiple
-	// default branches, it is possible that a user could end up following a
-	// non-default branch, IF:
-	//
-	// * Multiple branches match the HEAD rev
-	// * None of them are master
-	// * The solver makes it into the branch list in the version queue
-	// * The user/tool has provided no constraint (so, anyConstraint)
-	// * A branch that is not actually the default, but happens to share the
-	//   rev, is lexicographically less than the true default branch
-	//
-	// If all of those conditions are met, then the user would end up with an
-	// erroneous non-default branch in their lock file.
-	var headrev Revision
-	var onedef, multidef, defmaster bool
-
-	smap := make(map[string]int)
-	uniq := 0
-	vlist = make([]PairedVersion, len(all))
-	for _, pair := range all {
-		var v PairedVersion
-		// Valid `git ls-remote` output should start with hash, be at least
-		// 45 chars long and 40th character should be '\t'
-		//
-		// See: https://github.com/golang/dep/pull/1160#issuecomment-328843519
-		if len(pair) < 45 || pair[40] != '\t' || !s.isValidHash(pair[:40]) {
-			continue
-		}
-		if string(pair[41:]) == "HEAD" {
-			// If HEAD is present, it's always first
-			headrev = Revision(pair[:40])
-		} else if string(pair[46:51]) == "heads" {
-			rev := Revision(pair[:40])
-
-			isdef := rev == headrev
-			n := string(pair[52:])
-			if isdef {
-				if onedef {
-					multidef = true
-				}
-				onedef = true
-				if n == "master" {
-					defmaster = true
-				}
-			}
-			v = branchVersion{
-				name:      n,
-				isDefault: isdef,
-			}.Pair(rev).(PairedVersion)
-
-			vlist[uniq] = v
-			uniq++
-		} else if string(pair[46:50]) == "tags" {
-			vstr := string(pair[51:])
-			if strings.HasSuffix(vstr, "^{}") {
-				// If the suffix is there, then we *know* this is the rev of
-				// the underlying commit object that we actually want
-				vstr = strings.TrimSuffix(vstr, "^{}")
-				if i, ok := smap[vstr]; ok {
-					v = NewVersion(vstr).Pair(Revision(pair[:40]))
-					vlist[i] = v
-					continue
-				}
-			} else if _, ok := smap[vstr]; ok {
-				// Already saw the deref'd version of this tag, if one
-				// exists, so skip this.
-				continue
-				// Can only hit this branch if we somehow got the deref'd
-				// version first. Which should be impossible, but this
-				// covers us in case of weirdness, anyway.
-			}
-			v = NewVersion(vstr).Pair(Revision(pair[:40]))
-			smap[vstr] = uniq
-			vlist[uniq] = v
-			uniq++
-		}
-	}
-
-	// Trim off excess from the slice
-	vlist = vlist[:uniq]
-
-	// There were multiple default branches, but one was master. So, go through
-	// and strip the default flag from all the non-master branches.
-	if multidef && defmaster {
-		for k, v := range vlist {
-			pv := v.(PairedVersion)
-			if bv, ok := pv.Unpair().(branchVersion); ok {
-				if bv.name != "master" && bv.isDefault {
-					bv.isDefault = false
-					vlist[k] = bv.Pair(pv.Revision())
-				}
-			}
-		}
-	}
-
-	return
-}
-
-// gopkginSource is a specialized git source that performs additional filtering
-// according to the input URL.
-type gopkginSource struct {
-	gitSource
-	major    uint64
-	unstable bool
-	// The aliased URL we report as being the one we talk to, even though we're
-	// actually talking directly to GitHub.
-	aliasURL string
-}
-
-func (s *gopkginSource) upstreamURL() string {
-	return s.aliasURL
-}
-
-func (s *gopkginSource) listVersions(ctx context.Context) ([]PairedVersion, error) {
-	ovlist, err := s.gitSource.listVersions(ctx)
-	if err != nil {
-		return nil, err
-	}
-
-	// Apply gopkg.in's filtering rules
-	vlist := make([]PairedVersion, len(ovlist))
-	k := 0
-	var dbranch int // index of branch to be marked default
-	var bsv semver.Version
-	var defaultBranch PairedVersion
-	tryDefaultAsV0 := s.major == 0
-	for _, v := range ovlist {
-		// all git versions will always be paired
-		pv := v.(versionPair)
-		switch tv := pv.v.(type) {
-		case semVersion:
-			tryDefaultAsV0 = false
-			if tv.sv.Major() == s.major && !s.unstable {
-				vlist[k] = v
-				k++
-			}
-		case branchVersion:
-			if tv.isDefault && defaultBranch == nil {
-				defaultBranch = pv
-			}
-
-			// The semver lib isn't exactly the same as gopkg.in's logic, but
-			// it's close enough that it's probably fine to use. We can be more
-			// exact if real problems crop up.
-			sv, err := semver.NewVersion(tv.name)
-			if err != nil {
-				continue
-			}
-			tryDefaultAsV0 = false
-
-			if sv.Major() != s.major {
-				// not the same major version as specified in the import path constraint
-				continue
-			}
-
-			// Gopkg.in has a special "-unstable" suffix which we need to handle
-			// separately.
-			if s.unstable != strings.HasSuffix(tv.name, gopkgUnstableSuffix) {
-				continue
-			}
-
-			// Turn off the default branch marker unconditionally; we can't know
-			// which one to mark as default until we've seen them all
-			tv.isDefault = false
-			// Figure out if this is the current leader for default branch
-			if bsv == (semver.Version{}) || bsv.LessThan(sv) {
-				bsv = sv
-				dbranch = k
-			}
-			pv.v = tv
-			vlist[k] = pv
-			k++
-		}
-		// The switch skips plainVersions because they cannot possibly meet
-		// gopkg.in's requirements
-	}
-
-	vlist = vlist[:k]
-	if bsv != (semver.Version{}) {
-		dbv := vlist[dbranch].(versionPair)
-		vlist[dbranch] = branchVersion{
-			name:      dbv.v.(branchVersion).name,
-			isDefault: true,
-		}.Pair(dbv.r)
-	}
-
-	// Treat the default branch as v0 only when no other semver branches/tags exist
-	// See http://labix.org/gopkg.in#VersionZero
-	if tryDefaultAsV0 && defaultBranch != nil {
-		vlist = append(vlist, defaultBranch)
-	}
-
-	return vlist, nil
-}
-
-// bzrSource is a generic bzr repository implementation that should work with
-// all standard bazaar remotes.
-type bzrSource struct {
-	baseVCSSource
-}
-
-func (s *bzrSource) exportRevisionTo(ctx context.Context, rev Revision, to string) error {
-	if err := s.baseVCSSource.exportRevisionTo(ctx, rev, to); err != nil {
-		return err
-	}
-
-	return os.RemoveAll(filepath.Join(to, ".bzr"))
-}
-
-func (s *bzrSource) listVersionsRequiresLocal() bool {
-	return true
-}
-
-func (s *bzrSource) listVersions(ctx context.Context) ([]PairedVersion, error) {
-	r := s.repo
-
-	// Now, list all the tags
-	tagsCmd := commandContext(ctx, "bzr", "tags", "--show-ids", "-v")
-	tagsCmd.SetDir(r.LocalPath())
-	out, err := tagsCmd.CombinedOutput()
-	if err != nil {
-		return nil, errors.Wrap(err, string(out))
-	}
-
-	all := bytes.Split(bytes.TrimSpace(out), []byte("\n"))
-
-	viCmd := commandContext(ctx, "bzr", "version-info", "--custom", "--template={revision_id}", "--revision=branch:.")
-	viCmd.SetDir(r.LocalPath())
-	branchrev, err := viCmd.CombinedOutput()
-	if err != nil {
-		return nil, errors.Wrap(err, string(branchrev))
-	}
-
-	vlist := make([]PairedVersion, 0, len(all)+1)
-
-	// Now, all the tags.
-	for _, line := range all {
-		idx := bytes.IndexByte(line, 32) // space
-		v := NewVersion(string(line[:idx]))
-		r := Revision(bytes.TrimSpace(line[idx:]))
-		vlist = append(vlist, v.Pair(r))
-	}
-
-	// Last, add the default branch, hardcoding the visual representation of it
-	// that bzr uses when operating in the workflow mode we're using.
-	v := newDefaultBranch("(default)")
-	vlist = append(vlist, v.Pair(Revision(string(branchrev))))
-
-	return vlist, nil
-}
-
-func (s *bzrSource) disambiguateRevision(ctx context.Context, r Revision) (Revision, error) {
-	// If we used the default baseVCSSource behavior here, we would return the
-	// bazaar revision number, which is not a globally unique identifier - it is
-	// only unique within a branch. This is just the way that
-	// github.com/Masterminds/vcs chooses to handle bazaar. We want a
-	// disambiguated unique ID, though, so we need slightly different behavior:
-	// check whether r doesn't error when we try to look it up. If so, trust that
-	// it's a revision.
-	_, err := s.repo.CommitInfo(string(r))
-	if err != nil {
-		return "", err
-	}
-	return r, nil
-}
-
-// hgSource is a generic hg repository implementation that should work with
-// all standard mercurial servers.
-type hgSource struct {
-	baseVCSSource
-}
-
-func (s *hgSource) exportRevisionTo(ctx context.Context, rev Revision, to string) error {
-	// TODO: use hg instead of the generic approach in
-	// baseVCSSource.exportRevisionTo to make it faster.
-	if err := s.baseVCSSource.exportRevisionTo(ctx, rev, to); err != nil {
-		return err
-	}
-
-	return os.RemoveAll(filepath.Join(to, ".hg"))
-}
-
-func (s *hgSource) listVersionsRequiresLocal() bool {
-	return true
-}
-
-func (s *hgSource) hgCmd(ctx context.Context, args ...string) cmd {
-	r := s.repo
-	cmd := commandContext(ctx, "hg", args...)
-	cmd.SetDir(r.LocalPath())
-	// Let's make sure extensions don't interfere with our expectations
-	// regarding the output of commands.
-	cmd.Cmd.Env = append(cmd.Cmd.Env, "HGRCPATH=")
-	return cmd
-}
-
-func (s *hgSource) listVersions(ctx context.Context) ([]PairedVersion, error) {
-	var vlist []PairedVersion
-
-	// Now, list all the tags
-	tagsCmd := s.hgCmd(ctx, "tags", "--debug", "--verbose")
-	out, err := tagsCmd.CombinedOutput()
-	if err != nil {
-		return nil, errors.Wrap(err, string(out))
-	}
-
-	all := bytes.Split(bytes.TrimSpace(out), []byte("\n"))
-	lbyt := []byte("local")
-	nulrev := []byte("0000000000000000000000000000000000000000")
-	for _, line := range all {
-		if bytes.Equal(lbyt, line[len(line)-len(lbyt):]) {
-			// Skip local tags
-			continue
-		}
-
-		// tip is magic, don't include it
-		if bytes.HasPrefix(line, []byte("tip")) {
-			continue
-		}
-
-		// Split on colon; this gets us the rev and the tag plus local revno
-		pair := bytes.Split(line, []byte(":"))
-		if bytes.Equal(nulrev, pair[1]) {
-			// null rev indicates this tag is marked for deletion
-			continue
-		}
-
-		idx := bytes.IndexByte(pair[0], 32) // space
-		v := NewVersion(string(pair[0][:idx])).Pair(Revision(pair[1])).(PairedVersion)
-		vlist = append(vlist, v)
-	}
-
-	// bookmarks next, because the presence of the magic @ bookmark has to
-	// determine how we handle the branches
-	var magicAt bool
-	bookmarksCmd := s.hgCmd(ctx, "bookmarks", "--debug")
-	out, err = bookmarksCmd.CombinedOutput()
-	if err != nil {
-		// better nothing than partial and misleading
-		return nil, errors.Wrap(err, string(out))
-	}
-
-	out = bytes.TrimSpace(out)
-	if !bytes.Equal(out, []byte("no bookmarks set")) {
-		all = bytes.Split(out, []byte("\n"))
-		for _, line := range all {
-			// Trim leading spaces, and * marker if present
-			line = bytes.TrimLeft(line, " *")
-			pair := bytes.Split(line, []byte(":"))
-			// if this doesn't split exactly once, we have something weird
-			if len(pair) != 2 {
-				continue
-			}
-
-			// Split on colon; this gets us the rev and the branch plus local revno
-			idx := bytes.IndexByte(pair[0], 32) // space
-			// if it's the magic @ marker, make that the default branch
-			str := string(pair[0][:idx])
-			var v PairedVersion
-			if str == "@" {
-				magicAt = true
-				v = newDefaultBranch(str).Pair(Revision(pair[1])).(PairedVersion)
-			} else {
-				v = NewBranch(str).Pair(Revision(pair[1])).(PairedVersion)
-			}
-			vlist = append(vlist, v)
-		}
-	}
-
-	cmd := s.hgCmd(ctx, "branches", "-c", "--debug")
-	out, err = cmd.CombinedOutput()
-	if err != nil {
-		// better nothing than partial and misleading
-		return nil, errors.Wrap(err, string(out))
-	}
-
-	all = bytes.Split(bytes.TrimSpace(out), []byte("\n"))
-	for _, line := range all {
-		// Trim inactive and closed suffixes, if present; we represent these
-		// anyway
-		line = bytes.TrimSuffix(line, []byte(" (inactive)"))
-		line = bytes.TrimSuffix(line, []byte(" (closed)"))
-
-		// Split on colon; this gets us the rev and the branch plus local revno
-		pair := bytes.Split(line, []byte(":"))
-		idx := bytes.IndexByte(pair[0], 32) // space
-		str := string(pair[0][:idx])
-		// if there was no magic @ bookmark, and this is mercurial's magic
-		// "default" branch, then mark it as default branch
-		var v PairedVersion
-		if !magicAt && str == "default" {
-			v = newDefaultBranch(str).Pair(Revision(pair[1])).(PairedVersion)
-		} else {
-			v = NewBranch(str).Pair(Revision(pair[1])).(PairedVersion)
-		}
-		vlist = append(vlist, v)
-	}
-
-	return vlist, nil
-}
diff --git a/vendor/github.com/golang/dep/gps/vcs_version.go b/vendor/github.com/golang/dep/gps/vcs_version.go
deleted file mode 100644
index 80e6a4e69e43987452bf1d508281455e60f48c27..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/vcs_version.go
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"strings"
-
-	"github.com/Masterminds/vcs"
-	"github.com/pkg/errors"
-)
-
-// VCSVersion returns the current project version for an absolute path.
-func VCSVersion(path string) (Version, error) {
-	repo, err := vcs.NewRepo("", path)
-	if err != nil {
-		return nil, errors.Wrapf(err, "creating new repo for root: %s", path)
-	}
-
-	ver, err := repo.Current()
-	if err != nil {
-		return nil, errors.Wrapf(err, "finding current branch/version for root: %s", path)
-	}
-
-	rev, err := repo.Version()
-	if err != nil {
-		return nil, errors.Wrapf(err, "getting repo version for root: %s", path)
-	}
-
-	// First look through tags.
-	tags, err := repo.Tags()
-	if err != nil {
-		return nil, errors.Wrapf(err, "getting repo tags for root: %s", path)
-	}
-	// Try to match the current version to a tag.
-	if contains(tags, ver) {
-		// Assume semver if it starts with a v.
-		if strings.HasPrefix(ver, "v") {
-			return NewVersion(ver).Pair(Revision(rev)), nil
-		}
-
-		return nil, errors.Errorf("version for root %s does not start with a v: %q", path, ver)
-	}
-
-	// Look for the current branch.
-	branches, err := repo.Branches()
-	if err != nil {
-		return nil, errors.Wrapf(err, "getting repo branch for root: %s", path)
-	}
-	// Try to match the current version to a branch.
-	if contains(branches, ver) {
-		return NewBranch(ver).Pair(Revision(rev)), nil
-	}
-
-	return Revision(rev), nil
-}
-
-// contains checks if a array of strings contains a value
-func contains(a []string, b string) bool {
-	for _, v := range a {
-		if b == v {
-			return true
-		}
-	}
-	return false
-}
diff --git a/vendor/github.com/golang/dep/gps/verify/digest.go b/vendor/github.com/golang/dep/gps/verify/digest.go
deleted file mode 100644
index ba8add7da6902daf7bc7b712562045073295260d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/verify/digest.go
+++ /dev/null
@@ -1,555 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package verify
-
-import (
-	"bytes"
-	"crypto/sha256"
-	"encoding/binary"
-	"encoding/hex"
-	"fmt"
-	"hash"
-	"io"
-	"os"
-	"path/filepath"
-	"sort"
-	"strconv"
-	"strings"
-
-	"github.com/pkg/errors"
-)
-
-// HashVersion is an arbitrary number that identifies the hash algorithm used by
-// the directory hasher.
-//
-//   1: SHA256, as implemented in crypto/sha256
-const HashVersion = 1
-
-const osPathSeparator = string(filepath.Separator)
-
-// lineEndingReader is a `io.Reader` that converts CRLF sequences to LF.
-//
-// When cloning or checking out repositories, some Version Control Systems,
-// VCSs, on some supported Go Operating System architectures, GOOS, will
-// automatically convert line endings that end in a single line feed byte, LF,
-// to line endings that end in a two byte sequence of carriage return, CR,
-// followed by LF. This LF to CRLF conversion would cause otherwise identical
-// versioned files to have different on disk contents simply based on which VCS
-// and GOOS are involved. Different file contents for the same file would cause
-// the resultant hashes to differ. In order to ensure file contents normalize
-// and produce the same hash, this structure wraps an io.Reader that modifies
-// the file's contents when it is read, translating all CRLF sequences to LF.
-type lineEndingReader struct {
-	src             io.Reader // source io.Reader from which this reads
-	prevReadEndedCR bool      // used to track whether final byte of previous Read was CR
-}
-
-// newLineEndingReader returns a new lineEndingReader that reads from the
-// specified source io.Reader.
-func newLineEndingReader(src io.Reader) *lineEndingReader {
-	return &lineEndingReader{src: src}
-}
-
-var crlf = []byte("\r\n")
-
-// Read consumes bytes from the structure's source io.Reader to fill the
-// specified slice of bytes. It converts all CRLF byte sequences to LF, and
-// handles cases where CR and LF straddle across two Read operations.
-func (f *lineEndingReader) Read(buf []byte) (int, error) {
-	buflen := len(buf)
-	if f.prevReadEndedCR {
-		// Read one fewer bytes so we have room if the first byte of the
-		// upcoming Read is not a LF, in which case we will need to insert
-		// trailing CR from previous read.
-		buflen--
-	}
-	nr, er := f.src.Read(buf[:buflen])
-	if nr > 0 {
-		if f.prevReadEndedCR && buf[0] != '\n' {
-			// Having a CRLF split across two Read operations is rare, so the
-			// performance impact of copying entire buffer to the right by one
-			// byte, while suboptimal, will at least will not happen very
-			// often. This negative performance impact is mitigated somewhat on
-			// many Go compilation architectures, GOARCH, because the `copy`
-			// builtin uses a machine opcode for performing the memory copy on
-			// possibly overlapping regions of memory. This machine opcodes is
-			// not instantaneous and does require multiple CPU cycles to
-			// complete, but is significantly faster than the application
-			// looping through bytes.
-			copy(buf[1:nr+1], buf[:nr]) // shift data to right one byte
-			buf[0] = '\r'               // insert the previous skipped CR byte at start of buf
-			nr++                        // pretend we read one more byte
-		}
-
-		// Remove any CRLF sequences in the buffer using `bytes.Index` because,
-		// like the `copy` builtin on many GOARCHs, it also takes advantage of a
-		// machine opcode to search for byte patterns.
-		var searchOffset int // index within buffer from whence the search will commence for each loop; set to the index of the end of the previous loop.
-		var shiftCount int   // each subsequenct shift operation needs to shift bytes to the left by one more position than the shift that preceded it.
-		previousIndex := -1  // index of previously found CRLF; -1 means no previous index
-		for {
-			index := bytes.Index(buf[searchOffset:nr], crlf)
-			if index == -1 {
-				break
-			}
-			index += searchOffset // convert relative index to absolute
-			if previousIndex != -1 {
-				// shift substring between previous index and this index
-				copy(buf[previousIndex-shiftCount:], buf[previousIndex+1:index])
-				shiftCount++ // next shift needs to be 1 byte to the left
-			}
-			previousIndex = index
-			searchOffset = index + 2 // start next search after len(crlf)
-		}
-		if previousIndex != -1 {
-			// handle final shift
-			copy(buf[previousIndex-shiftCount:], buf[previousIndex+1:nr])
-			shiftCount++
-		}
-		nr -= shiftCount // shorten byte read count by number of shifts executed
-
-		// When final byte from a read operation is CR, do not emit it until
-		// ensure first byte on next read is not LF.
-		if f.prevReadEndedCR = buf[nr-1] == '\r'; f.prevReadEndedCR {
-			nr-- // pretend byte was never read from source
-		}
-	} else if f.prevReadEndedCR {
-		// Reading from source returned nothing, but this struct is sitting on a
-		// trailing CR from previous Read, so let's give it to client now.
-		buf[0] = '\r'
-		nr = 1
-		er = nil
-		f.prevReadEndedCR = false // prevent infinite loop
-	}
-	return nr, er
-}
-
-// writeBytesWithNull appends the specified data to the specified hash, followed by
-// the NULL byte, in order to make accidental hash collisions less likely.
-func writeBytesWithNull(h hash.Hash, data []byte) {
-	// Ignore return values from writing to the hash, because hash write always
-	// returns nil error.
-	_, _ = h.Write(append(data, 0))
-}
-
-// dirWalkClosure is used to reduce number of allocation involved in closing
-// over these variables.
-type dirWalkClosure struct {
-	someCopyBufer []byte // allocate once and reuse for each file copy
-	someModeBytes []byte // allocate once and reuse for each node
-	someDirLen    int
-	someHash      hash.Hash
-}
-
-// DigestFromDirectory returns a hash of the specified directory contents, which
-// will match the hash computed for any directory on any supported Go platform
-// whose contents exactly match the specified directory.
-//
-// This function ignores any file system node named `vendor`, `.bzr`, `.git`,
-// `.hg`, and `.svn`, as these are typically used as Version Control System
-// (VCS) directories.
-//
-// Other than the `vendor` and VCS directories mentioned above, the calculated
-// hash includes the pathname to every discovered file system node, whether it
-// is an empty directory, a non-empty directory, an empty file, or a non-empty file.
-//
-// Symbolic links are excluded, as they are not considered valid elements in the
-// definition of a Go module.
-func DigestFromDirectory(osDirname string) (VersionedDigest, error) {
-	osDirname = filepath.Clean(osDirname)
-
-	// Create a single hash instance for the entire operation, rather than a new
-	// hash for each node we encounter.
-
-	closure := dirWalkClosure{
-		someCopyBufer: make([]byte, 4*1024), // only allocate a single page
-		someModeBytes: make([]byte, 4),      // scratch place to store encoded os.FileMode (uint32)
-		someDirLen:    len(osDirname) + len(osPathSeparator),
-		someHash:      sha256.New(),
-	}
-
-	err := filepath.Walk(osDirname, func(osPathname string, info os.FileInfo, err error) error {
-		if err != nil {
-			return err
-		}
-
-		// Completely ignore symlinks.
-		if info.Mode()&os.ModeSymlink != 0 {
-			return nil
-		}
-
-		var osRelative string
-		if len(osPathname) > closure.someDirLen {
-			osRelative = osPathname[closure.someDirLen:]
-		}
-
-		switch filepath.Base(osRelative) {
-		case "vendor", ".bzr", ".git", ".hg", ".svn":
-			return filepath.SkipDir
-		}
-
-		// We could make our own enum-like data type for encoding the file type,
-		// but Go's runtime already gives us architecture independent file
-		// modes, as discussed in `os/types.go`:
-		//
-		//    Go's runtime FileMode type has same definition on all systems, so
-		//    that information about files can be moved from one system to
-		//    another portably.
-		var mt os.FileMode
-
-		// We only care about the bits that identify the type of a file system
-		// node, and can ignore append, exclusive, temporary, setuid, setgid,
-		// permission bits, and sticky bits, which are coincident to bits which
-		// declare type of the file system node.
-		modeType := info.Mode() & os.ModeType
-		var shouldSkip bool // skip some types of file system nodes
-
-		switch {
-		case modeType&os.ModeDir > 0:
-			mt = os.ModeDir
-			// This func does not need to enumerate children, because
-			// filepath.Walk will do that for us.
-			shouldSkip = true
-		case modeType&os.ModeNamedPipe > 0:
-			mt = os.ModeNamedPipe
-			shouldSkip = true
-		case modeType&os.ModeSocket > 0:
-			mt = os.ModeSocket
-			shouldSkip = true
-		case modeType&os.ModeDevice > 0:
-			mt = os.ModeDevice
-			shouldSkip = true
-		}
-
-		// Write the relative pathname to hash because the hash is a function of
-		// the node names, node types, and node contents. Added benefit is that
-		// empty directories, named pipes, sockets, and devices. Use
-		// `filepath.ToSlash` to ensure relative pathname is os-agnostic.
-		writeBytesWithNull(closure.someHash, []byte(filepath.ToSlash(osRelative)))
-
-		binary.LittleEndian.PutUint32(closure.someModeBytes, uint32(mt)) // encode the type of mode
-		writeBytesWithNull(closure.someHash, closure.someModeBytes)      // and write to hash
-
-		if shouldSkip {
-			return nil // nothing more to do for some of the node types
-		}
-
-		// If we get here, node is a regular file.
-		fh, err := os.Open(osPathname)
-		if err != nil {
-			return errors.Wrap(err, "cannot Open")
-		}
-
-		var bytesWritten int64
-		bytesWritten, err = io.CopyBuffer(closure.someHash, newLineEndingReader(fh), closure.someCopyBufer) // fast copy of file contents to hash
-		err = errors.Wrap(err, "cannot Copy")                                                               // errors.Wrap only wraps non-nil, so skip extra check
-		writeBytesWithNull(closure.someHash, []byte(strconv.FormatInt(bytesWritten, 10)))                   // 10: format file size as base 10 integer
-
-		// Close the file handle to the open file without masking
-		// possible previous error value.
-		if er := fh.Close(); err == nil {
-			err = errors.Wrap(er, "cannot Close")
-		}
-		return err
-	})
-
-	if err != nil {
-		return VersionedDigest{}, err
-	}
-
-	return VersionedDigest{
-		HashVersion: HashVersion,
-		Digest:      closure.someHash.Sum(nil),
-	}, nil
-}
-
-// VendorStatus represents one of a handful of possible status conditions for a
-// particular file system node in the vendor directory tree.
-type VendorStatus uint8
-
-const (
-	// NotInLock is used when a file system node exists for which there is no
-	// corresponding dependency in the lock file.
-	NotInLock VendorStatus = iota
-
-	// NotInTree is used when a lock file dependency exists for which there is
-	// no corresponding file system node.
-	NotInTree
-
-	// NoMismatch is used when the digest for a dependency listed in the
-	// lockfile matches what is calculated from the file system.
-	NoMismatch
-
-	// EmptyDigestInLock is used when the digest for a dependency listed in the
-	// lock file is the empty string. While this is a special case of
-	// DigestMismatchInLock, separating the cases is a desired feature.
-	EmptyDigestInLock
-
-	// DigestMismatchInLock is used when the digest for a dependency listed in
-	// the lock file does not match what is calculated from the file system.
-	DigestMismatchInLock
-
-	// HashVersionMismatch indicates that the hashing algorithm used to generate
-	// the digest being compared against is not the same as the one used by the
-	// current program.
-	HashVersionMismatch
-)
-
-func (ls VendorStatus) String() string {
-	switch ls {
-	case NotInTree:
-		return "not in tree"
-	case NotInLock:
-		return "not in lock"
-	case NoMismatch:
-		return "match"
-	case EmptyDigestInLock:
-		return "empty digest in lock"
-	case DigestMismatchInLock:
-		return "mismatch"
-	case HashVersionMismatch:
-		return "hasher changed"
-	}
-	return "unknown"
-}
-
-// fsnode is used to track which file system nodes are required by the lock
-// file. When a directory is found whose name matches one of the declared
-// projects in the lock file, e.g., "github.com/alice/alice1", an fsnode is
-// created for that directory, but not for any of its children. All other file
-// system nodes encountered will result in a fsnode created to represent it.
-type fsnode struct {
-	osRelative           string // os-specific relative path of a resource under vendor root
-	isRequiredAncestor   bool   // true iff this node or one of its descendants is in the lock file
-	myIndex, parentIndex int    // index of this node and its parent in the tree's slice
-}
-
-// VersionedDigest comprises both a hash digest, and a simple integer indicating
-// the version of the hash algorithm that produced the digest.
-type VersionedDigest struct {
-	HashVersion int
-	Digest      []byte
-}
-
-func (vd VersionedDigest) String() string {
-	return fmt.Sprintf("%s:%s", strconv.Itoa(vd.HashVersion), hex.EncodeToString(vd.Digest))
-}
-
-// IsEmpty indicates if the VersionedDigest is the zero value.
-func (vd VersionedDigest) IsEmpty() bool {
-	return vd.HashVersion == 0 && len(vd.Digest) == 0
-}
-
-// ParseVersionedDigest decodes the string representation of versioned digest
-// information - a colon-separated string with a version number in the first
-// part and the hex-encdoed hash digest in the second - as a VersionedDigest.
-func ParseVersionedDigest(input string) (VersionedDigest, error) {
-	var vd VersionedDigest
-	var err error
-
-	parts := strings.Split(input, ":")
-	if len(parts) != 2 {
-		return VersionedDigest{}, errors.Errorf("expected two colon-separated components in the versioned hash digest, got %q", input)
-	}
-	if vd.Digest, err = hex.DecodeString(parts[1]); err != nil {
-		return VersionedDigest{}, err
-	}
-	if vd.HashVersion, err = strconv.Atoi(parts[0]); err != nil {
-		return VersionedDigest{}, err
-	}
-
-	return vd, nil
-}
-
-// CheckDepTree verifies a dependency tree according to expected digest sums,
-// and returns an associative array of file system nodes and their respective
-// vendor status conditions.
-//
-// The keys to the expected digest sums associative array represent the
-// project's dependencies, and each is required to be expressed using the
-// solidus character, `/`, as its path separator. For example, even on a GOOS
-// platform where the file system path separator is a character other than
-// solidus, one particular dependency would be represented as
-// "github.com/alice/alice1".
-func CheckDepTree(osDirname string, wantDigests map[string]VersionedDigest) (map[string]VendorStatus, error) {
-	osDirname = filepath.Clean(osDirname)
-
-	// Create associative array to store the results of calling this function.
-	slashStatus := make(map[string]VendorStatus)
-
-	// Ensure top level pathname is a directory
-	fi, err := os.Stat(osDirname)
-	if err != nil {
-		// If the dir doesn't exist at all, that's OK - just consider all the
-		// wanted paths absent.
-		if os.IsNotExist(err) {
-			for path := range wantDigests {
-				slashStatus[path] = NotInTree
-			}
-			return slashStatus, nil
-		}
-		return nil, errors.Wrap(err, "cannot Stat")
-	}
-
-	if !fi.IsDir() {
-		return nil, errors.Errorf("cannot verify non directory: %q", osDirname)
-	}
-
-	// Initialize work queue with a node representing the specified directory
-	// name by declaring its relative pathname under the directory name as the
-	// empty string.
-	currentNode := &fsnode{osRelative: "", parentIndex: -1, isRequiredAncestor: true}
-	queue := []*fsnode{currentNode} // queue of directories that must be inspected
-
-	// In order to identify all file system nodes that are not in the lock file,
-	// represented by the specified expected sums parameter, and in order to
-	// only report the top level of a subdirectory of file system nodes, rather
-	// than every node internal to them, we will create a tree of nodes stored
-	// in a slice. We do this because we cannot predict the depth at which
-	// project roots occur. Some projects are fewer than and some projects more
-	// than the typical three layer subdirectory under the vendor root
-	// directory.
-	//
-	// For a following few examples, assume the below vendor root directory:
-	//
-	// github.com/alice/alice1/a1.go
-	// github.com/alice/alice2/a2.go
-	// github.com/bob/bob1/b1.go
-	// github.com/bob/bob2/b2.go
-	// launchpad.net/nifty/n1.go
-	//
-	// 1) If only the `alice1` and `alice2` projects were in the lock file, we'd
-	// prefer the output to state that `github.com/bob` is `NotInLock`, and
-	// `launchpad.net/nifty` is `NotInLock`.
-	//
-	// 2) If `alice1`, `alice2`, and `bob1` were in the lock file, we'd want to
-	// report `github.com/bob/bob2` as `NotInLock`, and `launchpad.net/nifty` is
-	// `NotInLock`.
-	//
-	// 3) If none of `alice1`, `alice2`, `bob1`, or `bob2` were in the lock
-	// file, the entire `github.com` directory would be reported as `NotInLock`,
-	// along with `launchpad.net/nifty` is `NotInLock`.
-	//
-	// Each node in our tree has the slice index of its parent node, so once we
-	// can categorically state a particular directory is required because it is
-	// in the lock file, we can mark all of its ancestors as also being
-	// required. Then, when we finish walking the directory hierarchy, any nodes
-	// which are not required but have a required parent will be marked as
-	// `NotInLock`.
-	nodes := []*fsnode{currentNode}
-
-	// Mark directories of expected projects as required. When each respective
-	// project is later found while traversing the vendor root hierarchy, its
-	// status will be updated to reflect whether its digest is empty, or,
-	// whether or not it matches the expected digest.
-	for slashPathname := range wantDigests {
-		slashStatus[slashPathname] = NotInTree
-	}
-
-	for len(queue) > 0 {
-		// Pop node from the top of queue (depth first traversal, reverse
-		// lexicographical order inside a directory), clearing the value stored
-		// in the slice's backing array as we proceed.
-		lq1 := len(queue) - 1
-		currentNode, queue[lq1], queue = queue[lq1], nil, queue[:lq1]
-		slashPathname := filepath.ToSlash(currentNode.osRelative)
-		osPathname := filepath.Join(osDirname, currentNode.osRelative)
-
-		if expectedSum, ok := wantDigests[slashPathname]; ok {
-			ls := EmptyDigestInLock
-			if expectedSum.HashVersion != HashVersion {
-				if !expectedSum.IsEmpty() {
-					ls = HashVersionMismatch
-				}
-			} else if len(expectedSum.Digest) > 0 {
-				projectSum, err := DigestFromDirectory(osPathname)
-				if err != nil {
-					return nil, errors.Wrap(err, "cannot compute dependency hash")
-				}
-				if bytes.Equal(projectSum.Digest, expectedSum.Digest) {
-					ls = NoMismatch
-				} else {
-					ls = DigestMismatchInLock
-				}
-			}
-			slashStatus[slashPathname] = ls
-
-			// Mark current nodes and all its parents as required.
-			for i := currentNode.myIndex; i != -1; i = nodes[i].parentIndex {
-				nodes[i].isRequiredAncestor = true
-			}
-
-			// Do not need to process this directory's contents because we
-			// already accounted for its contents while calculating its digest.
-			continue
-		}
-
-		osChildrenNames, err := sortedChildrenFromDirname(osPathname)
-		if err != nil {
-			return nil, errors.Wrap(err, "cannot get sorted list of directory children")
-		}
-		for _, osChildName := range osChildrenNames {
-			switch osChildName {
-			case ".", "..", "vendor", ".bzr", ".git", ".hg", ".svn":
-				// skip
-			default:
-				osChildRelative := filepath.Join(currentNode.osRelative, osChildName)
-				osChildPathname := filepath.Join(osDirname, osChildRelative)
-
-				// Create a new fsnode for this file system node, with a parent
-				// index set to the index of the current node.
-				otherNode := &fsnode{osRelative: osChildRelative, myIndex: len(nodes), parentIndex: currentNode.myIndex}
-
-				fi, err := os.Stat(osChildPathname)
-				if err != nil {
-					return nil, errors.Wrap(err, "cannot Stat")
-				}
-				nodes = append(nodes, otherNode) // Track all file system nodes...
-				if fi.IsDir() {
-					queue = append(queue, otherNode) // but only need to add directories to the work queue.
-				}
-			}
-		}
-	}
-
-	// Ignoring first node in the list, walk nodes from last to first. Whenever
-	// the current node is not required, but its parent is required, then the
-	// current node ought to be marked as `NotInLock`.
-	for len(nodes) > 1 {
-		// Pop node from top of queue, clearing the value stored in the slice's
-		// backing array as we proceed.
-		ln1 := len(nodes) - 1
-		currentNode, nodes[ln1], nodes = nodes[ln1], nil, nodes[:ln1]
-
-		if !currentNode.isRequiredAncestor && nodes[currentNode.parentIndex].isRequiredAncestor {
-			slashStatus[filepath.ToSlash(currentNode.osRelative)] = NotInLock
-		}
-	}
-	currentNode, nodes = nil, nil
-
-	return slashStatus, nil
-}
-
-// sortedChildrenFromDirname returns a lexicographically sorted list of child
-// nodes for the specified directory.
-func sortedChildrenFromDirname(osDirname string) ([]string, error) {
-	fh, err := os.Open(osDirname)
-	if err != nil {
-		return nil, errors.Wrap(err, "cannot Open")
-	}
-
-	osChildrenNames, err := fh.Readdirnames(0) // 0: read names of all children
-	if err != nil {
-		return nil, errors.Wrap(err, "cannot Readdirnames")
-	}
-	sort.Strings(osChildrenNames)
-
-	// Close the file handle to the open directory without masking possible
-	// previous error value.
-	if er := fh.Close(); err == nil {
-		err = errors.Wrap(er, "cannot Close")
-	}
-	return osChildrenNames, err
-}
diff --git a/vendor/github.com/golang/dep/gps/verify/lock.go b/vendor/github.com/golang/dep/gps/verify/lock.go
deleted file mode 100644
index d6742a8655e033b03b1682476567c8a4d7698bce..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/verify/lock.go
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package verify
-
-import (
-	"github.com/golang/dep/gps"
-)
-
-// VerifiableProject composes a LockedProject to indicate what the hash digest
-// of a file tree for that LockedProject should be, given the PruneOptions and
-// the list of packages.
-type VerifiableProject struct {
-	gps.LockedProject
-	PruneOpts gps.PruneOptions
-	Digest    VersionedDigest
-}
diff --git a/vendor/github.com/golang/dep/gps/verify/lockdiff.go b/vendor/github.com/golang/dep/gps/verify/lockdiff.go
deleted file mode 100644
index 525a46db0e85c4602cd9a83f64288f5d9e4c25ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/verify/lockdiff.go
+++ /dev/null
@@ -1,434 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package verify
-
-import (
-	"bytes"
-	"sort"
-	"strings"
-
-	"github.com/golang/dep/gps"
-)
-
-// DeltaDimension defines a bitset enumerating all of the different dimensions
-// along which a Lock, and its constitutent components, can change.
-type DeltaDimension uint32
-
-// Each flag represents an ortohgonal dimension along which Locks can vary with
-// respect to each other.
-const (
-	InputImportsChanged DeltaDimension = 1 << iota
-	ProjectAdded
-	ProjectRemoved
-	SourceChanged
-	VersionChanged
-	RevisionChanged
-	PackagesChanged
-	PruneOptsChanged
-	HashVersionChanged
-	HashChanged
-	AnyChanged = (1 << iota) - 1
-)
-
-// LockDelta represents all possible differences between two Locks.
-type LockDelta struct {
-	AddedImportInputs   []string
-	RemovedImportInputs []string
-	ProjectDeltas       map[gps.ProjectRoot]LockedProjectDelta
-}
-
-// LockedProjectDelta represents all possible state changes of a LockedProject
-// within a Lock. It encapsulates the property-level differences represented by
-// a LockedProjectPropertiesDelta, but can also represent existence deltas - a
-// given name came to exist, or cease to exist, across two Locks.
-type LockedProjectDelta struct {
-	Name                         gps.ProjectRoot
-	ProjectRemoved, ProjectAdded bool
-	LockedProjectPropertiesDelta
-}
-
-// LockedProjectPropertiesDelta represents all possible differences between the
-// properties of two LockedProjects. It can represent deltas for
-// VerifiableProject properties, as well.
-type LockedProjectPropertiesDelta struct {
-	PackagesAdded, PackagesRemoved      []string
-	VersionBefore, VersionAfter         gps.UnpairedVersion
-	RevisionBefore, RevisionAfter       gps.Revision
-	SourceBefore, SourceAfter           string
-	PruneOptsBefore, PruneOptsAfter     gps.PruneOptions
-	HashVersionBefore, HashVersionAfter int
-	HashChanged                         bool
-}
-
-// DiffLocks compares two locks and computes a semantically rich delta between
-// them.
-func DiffLocks(l1, l2 gps.Lock) LockDelta {
-	// Default nil locks to empty locks, so that we can still generate a diff.
-	if l1 == nil {
-		if l2 == nil {
-			// But both locks being nil results in an empty delta.
-			return LockDelta{}
-		}
-		l1 = gps.SimpleLock{}
-	}
-	if l2 == nil {
-		l2 = gps.SimpleLock{}
-	}
-
-	p1, p2 := l1.Projects(), l2.Projects()
-
-	p1 = sortLockedProjects(p1)
-	p2 = sortLockedProjects(p2)
-
-	diff := LockDelta{
-		ProjectDeltas: make(map[gps.ProjectRoot]LockedProjectDelta),
-	}
-
-	var i2next int
-	for i1 := 0; i1 < len(p1); i1++ {
-		lp1 := p1[i1]
-		pr1 := lp1.Ident().ProjectRoot
-
-		lpd := LockedProjectDelta{
-			Name: pr1,
-		}
-
-		for i2 := i2next; i2 < len(p2); i2++ {
-			lp2 := p2[i2]
-			pr2 := lp2.Ident().ProjectRoot
-
-			switch strings.Compare(string(pr1), string(pr2)) {
-			case 0: // Found a matching project
-				lpd.LockedProjectPropertiesDelta = DiffLockedProjectProperties(lp1, lp2)
-				i2next = i2 + 1 // Don't visit this project again
-			case +1: // Found a new project
-				diff.ProjectDeltas[pr2] = LockedProjectDelta{
-					Name:         pr2,
-					ProjectAdded: true,
-				}
-				i2next = i2 + 1 // Don't visit this project again
-				continue        // Keep looking for a matching project
-			case -1: // Project has been removed, handled below
-				lpd.ProjectRemoved = true
-			}
-
-			break // Done evaluating this project, move onto the next
-		}
-
-		diff.ProjectDeltas[pr1] = lpd
-	}
-
-	// Anything that still hasn't been evaluated are adds
-	for i2 := i2next; i2 < len(p2); i2++ {
-		lp2 := p2[i2]
-		pr2 := lp2.Ident().ProjectRoot
-		diff.ProjectDeltas[pr2] = LockedProjectDelta{
-			Name:         pr2,
-			ProjectAdded: true,
-		}
-	}
-
-	diff.AddedImportInputs, diff.RemovedImportInputs = findAddedAndRemoved(l1.InputImports(), l2.InputImports())
-
-	return diff
-}
-
-func findAddedAndRemoved(l1, l2 []string) (add, remove []string) {
-	// Computing package add/removes might be optimizable to O(n) (?), but it's
-	// not critical path for any known case, so not worth the effort right now.
-	p1, p2 := make(map[string]bool, len(l1)), make(map[string]bool, len(l2))
-
-	for _, pkg := range l1 {
-		p1[pkg] = true
-	}
-	for _, pkg := range l2 {
-		p2[pkg] = true
-	}
-
-	for pkg := range p1 {
-		if !p2[pkg] {
-			remove = append(remove, pkg)
-		}
-	}
-	for pkg := range p2 {
-		if !p1[pkg] {
-			add = append(add, pkg)
-		}
-	}
-
-	return add, remove
-}
-
-// DiffLockedProjectProperties takes two gps.LockedProject and computes a delta
-// for each of their component properties.
-//
-// This function is focused exclusively on the properties of a LockedProject. As
-// such, it does not compare the ProjectRoot part of the LockedProject's
-// ProjectIdentifier, as those are names, and the concern here is a difference
-// in properties, not intrinsic identity.
-func DiffLockedProjectProperties(lp1, lp2 gps.LockedProject) LockedProjectPropertiesDelta {
-	ld := LockedProjectPropertiesDelta{
-		SourceBefore: lp1.Ident().Source,
-		SourceAfter:  lp2.Ident().Source,
-	}
-
-	ld.PackagesAdded, ld.PackagesRemoved = findAddedAndRemoved(lp1.Packages(), lp2.Packages())
-
-	switch v := lp1.Version().(type) {
-	case gps.PairedVersion:
-		ld.VersionBefore, ld.RevisionBefore = v.Unpair(), v.Revision()
-	case gps.Revision:
-		ld.RevisionBefore = v
-	case gps.UnpairedVersion:
-		// This should ideally never happen
-		ld.VersionBefore = v
-	}
-
-	switch v := lp2.Version().(type) {
-	case gps.PairedVersion:
-		ld.VersionAfter, ld.RevisionAfter = v.Unpair(), v.Revision()
-	case gps.Revision:
-		ld.RevisionAfter = v
-	case gps.UnpairedVersion:
-		// This should ideally never happen
-		ld.VersionAfter = v
-	}
-
-	vp1, ok1 := lp1.(VerifiableProject)
-	vp2, ok2 := lp2.(VerifiableProject)
-
-	if ok1 && ok2 {
-		ld.PruneOptsBefore, ld.PruneOptsAfter = vp1.PruneOpts, vp2.PruneOpts
-		ld.HashVersionBefore, ld.HashVersionAfter = vp1.Digest.HashVersion, vp2.Digest.HashVersion
-
-		if !bytes.Equal(vp1.Digest.Digest, vp2.Digest.Digest) {
-			ld.HashChanged = true
-		}
-	} else if ok1 {
-		ld.PruneOptsBefore = vp1.PruneOpts
-		ld.HashVersionBefore = vp1.Digest.HashVersion
-		ld.HashChanged = true
-	} else if ok2 {
-		ld.PruneOptsAfter = vp2.PruneOpts
-		ld.HashVersionAfter = vp2.Digest.HashVersion
-		ld.HashChanged = true
-	}
-
-	return ld
-}
-
-// Changed indicates whether the delta contains a change along the dimensions
-// with their corresponding bits set.
-//
-// This implementation checks the topmost-level Lock properties
-func (ld LockDelta) Changed(dims DeltaDimension) bool {
-	if dims&InputImportsChanged != 0 && (len(ld.AddedImportInputs) > 0 || len(ld.RemovedImportInputs) > 0) {
-		return true
-	}
-
-	for _, ld := range ld.ProjectDeltas {
-		if ld.Changed(dims & ^InputImportsChanged) {
-			return true
-		}
-	}
-
-	return false
-}
-
-// Changes returns a bitset indicating the dimensions along which deltas exist across
-// all contents of the LockDelta.
-//
-// This recurses down into the individual LockedProjectDeltas contained within
-// the LockDelta. A single delta along a particular dimension from a single
-// project is sufficient to flip the bit on for that dimension.
-func (ld LockDelta) Changes() DeltaDimension {
-	var dd DeltaDimension
-	if len(ld.AddedImportInputs) > 0 || len(ld.RemovedImportInputs) > 0 {
-		dd |= InputImportsChanged
-	}
-
-	for _, ld := range ld.ProjectDeltas {
-		dd |= ld.Changes()
-	}
-
-	return dd
-}
-
-// Changed indicates whether the delta contains a change along the dimensions
-// with their corresponding bits set.
-//
-// For example, if only the Revision changed, and this method is called with
-// SourceChanged | VersionChanged, it will return false; if it is called with
-// VersionChanged | RevisionChanged, it will return true.
-func (ld LockedProjectDelta) Changed(dims DeltaDimension) bool {
-	if dims&ProjectAdded != 0 && ld.WasAdded() {
-		return true
-	}
-
-	if dims&ProjectRemoved != 0 && ld.WasRemoved() {
-		return true
-	}
-
-	return ld.LockedProjectPropertiesDelta.Changed(dims & ^ProjectAdded & ^ProjectRemoved)
-}
-
-// Changes returns a bitset indicating the dimensions along which there were
-// changes between the compared LockedProjects. This includes both
-// existence-level deltas (add/remove) and property-level deltas.
-func (ld LockedProjectDelta) Changes() DeltaDimension {
-	var dd DeltaDimension
-	if ld.WasAdded() {
-		dd |= ProjectAdded
-	}
-
-	if ld.WasRemoved() {
-		dd |= ProjectRemoved
-	}
-
-	return dd | ld.LockedProjectPropertiesDelta.Changes()
-}
-
-// WasRemoved returns true if the named project existed in the first lock, but
-// did not exist in the second lock.
-func (ld LockedProjectDelta) WasRemoved() bool {
-	return ld.ProjectRemoved
-}
-
-// WasAdded returns true if the named project did not exist in the first lock,
-// but did exist in the second lock.
-func (ld LockedProjectDelta) WasAdded() bool {
-	return ld.ProjectAdded
-}
-
-// Changed indicates whether the delta contains a change along the dimensions
-// with their corresponding bits set.
-//
-// For example, if only the Revision changed, and this method is called with
-// SourceChanged | VersionChanged, it will return false; if it is called with
-// VersionChanged | RevisionChanged, it will return true.
-func (ld LockedProjectPropertiesDelta) Changed(dims DeltaDimension) bool {
-	if dims&SourceChanged != 0 && ld.SourceChanged() {
-		return true
-	}
-	if dims&RevisionChanged != 0 && ld.RevisionChanged() {
-		return true
-	}
-	if dims&PruneOptsChanged != 0 && ld.PruneOptsChanged() {
-		return true
-	}
-	if dims&HashChanged != 0 && ld.HashChanged {
-		return true
-	}
-	if dims&HashVersionChanged != 0 && ld.HashVersionChanged() {
-		return true
-	}
-	if dims&VersionChanged != 0 && ld.VersionChanged() {
-		return true
-	}
-	if dims&PackagesChanged != 0 && ld.PackagesChanged() {
-		return true
-	}
-
-	return false
-}
-
-// Changes returns a bitset indicating the dimensions along which there were
-// changes between the compared LockedProjects.
-func (ld LockedProjectPropertiesDelta) Changes() DeltaDimension {
-	var dd DeltaDimension
-	if ld.SourceChanged() {
-		dd |= SourceChanged
-	}
-	if ld.RevisionChanged() {
-		dd |= RevisionChanged
-	}
-	if ld.PruneOptsChanged() {
-		dd |= PruneOptsChanged
-	}
-	if ld.HashChanged {
-		dd |= HashChanged
-	}
-	if ld.HashVersionChanged() {
-		dd |= HashVersionChanged
-	}
-	if ld.VersionChanged() {
-		dd |= VersionChanged
-	}
-	if ld.PackagesChanged() {
-		dd |= PackagesChanged
-	}
-
-	return dd
-}
-
-// SourceChanged returns true if the source field differed between the first and
-// second locks.
-func (ld LockedProjectPropertiesDelta) SourceChanged() bool {
-	return ld.SourceBefore != ld.SourceAfter
-}
-
-// VersionChanged returns true if the version property differed between the
-// first and second locks. In addition to simple changes (e.g. 1.0.1 -> 1.0.2),
-// this also includes all possible version type changes either going from a
-// paired version to a plain revision, or the reverse direction, or the type of
-// unpaired version changing (e.g. branch -> semver).
-func (ld LockedProjectPropertiesDelta) VersionChanged() bool {
-	if ld.VersionBefore == nil && ld.VersionAfter == nil {
-		return false
-	} else if (ld.VersionBefore == nil || ld.VersionAfter == nil) || (ld.VersionBefore.Type() != ld.VersionAfter.Type()) {
-		return true
-	} else if !ld.VersionBefore.Matches(ld.VersionAfter) {
-		return true
-	}
-
-	return false
-}
-
-// RevisionChanged returns true if the revision property differed between the
-// first and second locks.
-func (ld LockedProjectPropertiesDelta) RevisionChanged() bool {
-	return ld.RevisionBefore != ld.RevisionAfter
-}
-
-// PackagesChanged returns true if the package set gained or lost members (or
-// both) between the first and second locks.
-func (ld LockedProjectPropertiesDelta) PackagesChanged() bool {
-	return len(ld.PackagesAdded) > 0 || len(ld.PackagesRemoved) > 0
-}
-
-// PruneOptsChanged returns true if the pruning flags for the project changed
-// between the first and second locks.
-func (ld LockedProjectPropertiesDelta) PruneOptsChanged() bool {
-	return ld.PruneOptsBefore != ld.PruneOptsAfter
-}
-
-// HashVersionChanged returns true if the version of the hashing algorithm
-// changed between the first and second locks.
-func (ld LockedProjectPropertiesDelta) HashVersionChanged() bool {
-	return ld.HashVersionBefore != ld.HashVersionAfter
-}
-
-// HashVersionWasZero returns true if the first lock had a zero hash version,
-// which can only mean it was uninitialized.
-func (ld LockedProjectPropertiesDelta) HashVersionWasZero() bool {
-	return ld.HashVersionBefore == 0
-}
-
-// sortLockedProjects returns a sorted copy of lps, or itself if already sorted.
-func sortLockedProjects(lps []gps.LockedProject) []gps.LockedProject {
-	if len(lps) <= 1 || sort.SliceIsSorted(lps, func(i, j int) bool {
-		return lps[i].Ident().Less(lps[j].Ident())
-	}) {
-		return lps
-	}
-
-	cp := make([]gps.LockedProject, len(lps))
-	copy(cp, lps)
-
-	sort.Slice(cp, func(i, j int) bool {
-		return cp[i].Ident().Less(cp[j].Ident())
-	})
-	return cp
-}
diff --git a/vendor/github.com/golang/dep/gps/verify/locksat.go b/vendor/github.com/golang/dep/gps/verify/locksat.go
deleted file mode 100644
index bd0321aa21601b9333a6f5a1aa5ab4c4dbabbddc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/verify/locksat.go
+++ /dev/null
@@ -1,199 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package verify
-
-import (
-	radix "github.com/armon/go-radix"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/paths"
-	"github.com/golang/dep/gps/pkgtree"
-)
-
-// LockSatisfaction holds the compound result of LockSatisfiesInputs, allowing
-// the caller to inspect each of several orthogonal possible types of failure.
-//
-// The zero value assumes that there was no input lock, which necessarily means
-// the inputs were not satisfied. This zero value means we err on the side of
-// failure.
-type LockSatisfaction struct {
-	// If LockExisted is false, it indicates that a nil gps.Lock was passed to
-	// LockSatisfiesInputs().
-	LockExisted bool
-	// MissingImports is the set of import paths that were present in the
-	// inputs but missing in the Lock.
-	MissingImports []string
-	// ExcessImports is the set of import paths that were present in the Lock
-	// but absent from the inputs.
-	ExcessImports []string
-	// UnmatchedConstraints reports any normal, non-override constraint rules that
-	// were not satisfied by the corresponding LockedProject in the Lock.
-	UnmetConstraints map[gps.ProjectRoot]ConstraintMismatch
-	// UnmatchedOverrides reports any override rules that were not satisfied by the
-	// corresponding LockedProject in the Lock.
-	UnmetOverrides map[gps.ProjectRoot]ConstraintMismatch
-}
-
-// ConstraintMismatch is a two-tuple of a gps.Version, and a gps.Constraint that
-// does not allow that version.
-type ConstraintMismatch struct {
-	C gps.Constraint
-	V gps.Version
-}
-
-// LockSatisfiesInputs determines whether the provided Lock satisfies all the
-// requirements indicated by the inputs (RootManifest and PackageTree).
-//
-// The second parameter is expected to be the list of imports that were used to
-// generate the input Lock. Without this explicit list, it is not possible to
-// compute package imports that may have been removed. Figuring out that
-// negative space would require exploring the entire graph to ensure there are
-// no in-edges for particular imports.
-func LockSatisfiesInputs(l gps.Lock, m gps.RootManifest, ptree pkgtree.PackageTree) LockSatisfaction {
-	if l == nil {
-		return LockSatisfaction{}
-	}
-
-	lsat := LockSatisfaction{
-		LockExisted:      true,
-		UnmetOverrides:   make(map[gps.ProjectRoot]ConstraintMismatch),
-		UnmetConstraints: make(map[gps.ProjectRoot]ConstraintMismatch),
-	}
-
-	var ig *pkgtree.IgnoredRuleset
-	var req map[string]bool
-	if m != nil {
-		ig = m.IgnoredPackages()
-		req = m.RequiredPackages()
-	}
-
-	rm, _ := ptree.ToReachMap(true, true, false, ig)
-	reach := rm.FlattenFn(paths.IsStandardImportPath)
-
-	inlock := make(map[string]bool, len(l.InputImports()))
-	ininputs := make(map[string]bool, len(reach)+len(req))
-
-	type lockUnsatisfy uint8
-	const (
-		missingFromLock lockUnsatisfy = iota
-		inAdditionToLock
-	)
-
-	pkgDiff := make(map[string]lockUnsatisfy)
-
-	for _, imp := range reach {
-		ininputs[imp] = true
-	}
-
-	for imp := range req {
-		ininputs[imp] = true
-	}
-
-	for _, imp := range l.InputImports() {
-		inlock[imp] = true
-	}
-
-	for ip := range ininputs {
-		if !inlock[ip] {
-			pkgDiff[ip] = missingFromLock
-		} else {
-			// So we don't have to revisit it below
-			delete(inlock, ip)
-		}
-	}
-
-	// Something in the missing list might already be in the packages list,
-	// because another package in the depgraph imports it. We could make a
-	// special case for that, but it would break the simplicity of the model and
-	// complicate the notion of LockSatisfaction.Passed(), so let's see if we
-	// can get away without it.
-
-	for ip := range inlock {
-		if !ininputs[ip] {
-			pkgDiff[ip] = inAdditionToLock
-		}
-	}
-
-	for ip, typ := range pkgDiff {
-		if typ == missingFromLock {
-			lsat.MissingImports = append(lsat.MissingImports, ip)
-		} else {
-			lsat.ExcessImports = append(lsat.ExcessImports, ip)
-		}
-	}
-
-	eff := findEffectualConstraints(m, ininputs)
-	ovr, constraints := m.Overrides(), m.DependencyConstraints()
-
-	for _, lp := range l.Projects() {
-		pr := lp.Ident().ProjectRoot
-
-		if pp, has := ovr[pr]; has {
-			if !pp.Constraint.Matches(lp.Version()) {
-				lsat.UnmetOverrides[pr] = ConstraintMismatch{
-					C: pp.Constraint,
-					V: lp.Version(),
-				}
-			}
-			// The constraint isn't considered if we have an override,
-			// independent of whether the override is satisfied.
-			continue
-		}
-
-		if pp, has := constraints[pr]; has && eff[string(pr)] && !pp.Constraint.Matches(lp.Version()) {
-			lsat.UnmetConstraints[pr] = ConstraintMismatch{
-				C: pp.Constraint,
-				V: lp.Version(),
-			}
-		}
-	}
-
-	return lsat
-}
-
-// Satisfied is a shortcut method that indicates whether there were any ways in
-// which the Lock did not satisfy the inputs. It will return true only if the
-// Lock was satisfactory in all respects vis-a-vis the inputs.
-func (ls LockSatisfaction) Satisfied() bool {
-	if !ls.LockExisted {
-		return false
-	}
-
-	if len(ls.MissingImports) > 0 {
-		return false
-	}
-
-	if len(ls.ExcessImports) > 0 {
-		return false
-	}
-
-	if len(ls.UnmetOverrides) > 0 {
-		return false
-	}
-
-	if len(ls.UnmetConstraints) > 0 {
-		return false
-	}
-
-	return true
-}
-
-func findEffectualConstraints(m gps.Manifest, imports map[string]bool) map[string]bool {
-	eff := make(map[string]bool)
-	xt := radix.New()
-
-	for pr := range m.DependencyConstraints() {
-		// FIXME(sdboyer) this has the trailing slash ambiguity problem; adapt
-		// code from the solver
-		xt.Insert(string(pr), nil)
-	}
-
-	for imp := range imports {
-		if root, _, has := xt.LongestPrefix(imp); has {
-			eff[root] = true
-		}
-	}
-
-	return eff
-}
diff --git a/vendor/github.com/golang/dep/gps/version.go b/vendor/github.com/golang/dep/gps/version.go
deleted file mode 100644
index 7d843d3580f139551129c259e616fe4ec798e16b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/version.go
+++ /dev/null
@@ -1,847 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"fmt"
-	"sort"
-
-	"github.com/Masterminds/semver"
-	"github.com/golang/dep/gps/internal/pb"
-)
-
-// VersionType indicates a type for a Version that conveys some additional
-// semantics beyond that which is literally embedded on the Go type.
-type VersionType uint8
-
-// VersionTypes for the four major classes of version.
-const (
-	IsRevision VersionType = iota
-	IsVersion
-	IsSemver
-	IsBranch
-)
-
-// Version represents one of the different types of versions used by gps.
-//
-// Version composes Constraint, because all versions can be used as a constraint
-// (where they allow one, and only one, version - themselves), but constraints
-// are not necessarily discrete versions.
-//
-// Version is an interface, but it contains private methods, which restricts it
-// to gps's own internal implementations. We do this for the confluence of
-// two reasons: the implementation of Versions is complete (there is no case in
-// which we'd need other types), and the implementation relies on type magic
-// under the hood, which would be unsafe to do if other dynamic types could be
-// hiding behind the interface.
-type Version interface {
-	Constraint
-
-	// Indicates the type of version - Revision, Branch, Version, or Semver.
-	Type() VersionType
-}
-
-// PairedVersion represents a normal Version, but paired with its corresponding,
-// underlying Revision.
-type PairedVersion interface {
-	Version
-
-	// Revision returns the immutable Revision that identifies this Version.
-	Revision() Revision
-
-	// Unpair returns the surface-level UnpairedVersion that half of the pair.
-	//
-	// It does NOT modify the original PairedVersion.
-	Unpair() UnpairedVersion
-
-	// Ensures it is impossible to be both a PairedVersion and an
-	// UnpairedVersion.
-	_pair(int)
-}
-
-// UnpairedVersion represents a normal Version, with a method for creating a
-// VersionPair by indicating the version's corresponding, underlying Revision.
-type UnpairedVersion interface {
-	Version
-	// Pair takes the underlying Revision that this UnpairedVersion corresponds
-	// to and unites them into a PairedVersion.
-	Pair(Revision) PairedVersion
-	// Ensures it is impossible to be both a PairedVersion and an
-	// UnpairedVersion.
-	_pair(bool)
-}
-
-// types are weird
-func (branchVersion) _pair(bool) {}
-func (plainVersion) _pair(bool)  {}
-func (semVersion) _pair(bool)    {}
-func (versionPair) _pair(int)    {}
-
-// NewBranch creates a new Version to represent a floating version (in
-// general, a branch).
-func NewBranch(body string) UnpairedVersion {
-	return branchVersion{
-		name: body,
-		// We always set isDefault to false here, because the property is
-		// specifically designed to be internal-only: only the SourceManager
-		// gets to mark it. This is OK because nothing that client code is
-		// responsible for needs to care about has to touch it it.
-		//
-		// TODO(sdboyer) ...maybe. this just ugly.
-		isDefault: false,
-	}
-}
-
-func newDefaultBranch(body string) UnpairedVersion {
-	return branchVersion{
-		name:      body,
-		isDefault: true,
-	}
-}
-
-// NewVersion creates a Semver-typed Version if the provided version string is
-// valid semver, and a plain/non-semver version if not.
-func NewVersion(body string) UnpairedVersion {
-	sv, err := semver.NewVersion(body)
-
-	if err != nil {
-		return plainVersion(body)
-	}
-	return semVersion{sv: sv}
-}
-
-// A Revision represents an immutable versioning identifier.
-type Revision string
-
-// String converts the Revision back into a string.
-func (r Revision) String() string {
-	return string(r)
-}
-
-// ImpliedCaretString follows the same rules as String(), but in accordance with
-// the Constraint interface will always print a leading "=", as all Versions,
-// when acting as a Constraint, act as exact matches.
-func (r Revision) ImpliedCaretString() string {
-	return r.String()
-}
-
-func (r Revision) typedString() string {
-	return "r-" + string(r)
-}
-
-// Type indicates the type of version - for revisions, "revision".
-func (r Revision) Type() VersionType {
-	return IsRevision
-}
-
-// Matches is the Revision acting as a constraint; it checks to see if the provided
-// version is the same Revision as itself.
-func (r Revision) Matches(v Version) bool {
-	switch tv := v.(type) {
-	case Revision:
-		return r == tv
-	case versionPair:
-		return r == tv.r
-	}
-
-	return false
-}
-
-// MatchesAny is the Revision acting as a constraint; it checks to see if the provided
-// version is the same Revision as itself.
-func (r Revision) MatchesAny(c Constraint) bool {
-	switch tc := c.(type) {
-	case anyConstraint:
-		return true
-	case noneConstraint:
-		return false
-	case Revision:
-		return r == tc
-	case versionPair:
-		return r == tc.r
-	}
-
-	return false
-}
-
-// Intersect computes the intersection of the Constraint with the provided
-// Constraint. For Revisions, this can only be another, exactly equal
-// Revision, or a PairedVersion whose underlying Revision is exactly equal.
-func (r Revision) Intersect(c Constraint) Constraint {
-	switch tc := c.(type) {
-	case anyConstraint:
-		return r
-	case noneConstraint:
-		return none
-	case Revision:
-		if r == tc {
-			return r
-		}
-	case versionPair:
-		if r == tc.r {
-			return r
-		}
-	}
-
-	return none
-}
-
-func (r Revision) identical(c Constraint) bool {
-	r2, ok := c.(Revision)
-	if !ok {
-		return false
-	}
-	return r == r2
-}
-
-func (r Revision) copyTo(msg *pb.Constraint) {
-	msg.Type = pb.Constraint_Revision
-	msg.Value = string(r)
-}
-
-type branchVersion struct {
-	name      string
-	isDefault bool
-}
-
-func (v branchVersion) String() string {
-	return string(v.name)
-}
-
-func (v branchVersion) ImpliedCaretString() string {
-	return v.String()
-}
-
-func (v branchVersion) typedString() string {
-	return fmt.Sprintf("b-%s", v.String())
-}
-
-func (v branchVersion) Type() VersionType {
-	return IsBranch
-}
-
-func (v branchVersion) Matches(v2 Version) bool {
-	switch tv := v2.(type) {
-	case branchVersion:
-		return v.name == tv.name
-	case versionPair:
-		if tv2, ok := tv.v.(branchVersion); ok {
-			return tv2.name == v.name
-		}
-	}
-	return false
-}
-
-func (v branchVersion) MatchesAny(c Constraint) bool {
-	switch tc := c.(type) {
-	case anyConstraint:
-		return true
-	case noneConstraint:
-		return false
-	case branchVersion:
-		return v.name == tc.name
-	case versionPair:
-		if tc2, ok := tc.v.(branchVersion); ok {
-			return tc2.name == v.name
-		}
-	}
-
-	return false
-}
-
-func (v branchVersion) Intersect(c Constraint) Constraint {
-	switch tc := c.(type) {
-	case anyConstraint:
-		return v
-	case noneConstraint:
-		return none
-	case branchVersion:
-		if v.name == tc.name {
-			return v
-		}
-	case versionPair:
-		if tc2, ok := tc.v.(branchVersion); ok {
-			if v.name == tc2.name {
-				return v
-			}
-		}
-	}
-
-	return none
-}
-
-func (v branchVersion) Pair(r Revision) PairedVersion {
-	return versionPair{
-		v: v,
-		r: r,
-	}
-}
-
-func (v branchVersion) identical(c Constraint) bool {
-	v2, ok := c.(branchVersion)
-	if !ok {
-		return false
-	}
-	return v == v2
-}
-
-func (v branchVersion) copyTo(msg *pb.Constraint) {
-	if v.isDefault {
-		msg.Type = pb.Constraint_DefaultBranch
-	} else {
-		msg.Type = pb.Constraint_Branch
-	}
-	msg.Value = v.name
-}
-
-type plainVersion string
-
-func (v plainVersion) String() string {
-	return string(v)
-}
-
-func (v plainVersion) ImpliedCaretString() string {
-	return v.String()
-}
-
-func (v plainVersion) typedString() string {
-	return fmt.Sprintf("pv-%s", v.String())
-}
-
-func (v plainVersion) Type() VersionType {
-	return IsVersion
-}
-
-func (v plainVersion) Matches(v2 Version) bool {
-	switch tv := v2.(type) {
-	case plainVersion:
-		return v == tv
-	case versionPair:
-		if tv2, ok := tv.v.(plainVersion); ok {
-			return tv2 == v
-		}
-	}
-	return false
-}
-
-func (v plainVersion) MatchesAny(c Constraint) bool {
-	switch tc := c.(type) {
-	case anyConstraint:
-		return true
-	case noneConstraint:
-		return false
-	case plainVersion:
-		return v == tc
-	case versionPair:
-		if tc2, ok := tc.v.(plainVersion); ok {
-			return tc2 == v
-		}
-	}
-
-	return false
-}
-
-func (v plainVersion) Intersect(c Constraint) Constraint {
-	switch tc := c.(type) {
-	case anyConstraint:
-		return v
-	case noneConstraint:
-		return none
-	case plainVersion:
-		if v == tc {
-			return v
-		}
-	case versionPair:
-		if tc2, ok := tc.v.(plainVersion); ok {
-			if v == tc2 {
-				return v
-			}
-		}
-	}
-
-	return none
-}
-
-func (v plainVersion) Pair(r Revision) PairedVersion {
-	return versionPair{
-		v: v,
-		r: r,
-	}
-}
-
-func (v plainVersion) identical(c Constraint) bool {
-	v2, ok := c.(plainVersion)
-	if !ok {
-		return false
-	}
-	return v == v2
-}
-
-func (v plainVersion) copyTo(msg *pb.Constraint) {
-	msg.Type = pb.Constraint_Version
-	msg.Value = string(v)
-}
-
-type semVersion struct {
-	sv semver.Version
-}
-
-func (v semVersion) String() string {
-	str := v.sv.Original()
-	if str == "" {
-		str = v.sv.String()
-	}
-	return str
-}
-
-func (v semVersion) ImpliedCaretString() string {
-	return v.sv.ImpliedCaretString()
-}
-
-func (v semVersion) typedString() string {
-	return fmt.Sprintf("sv-%s", v.String())
-}
-
-func (v semVersion) Type() VersionType {
-	return IsSemver
-}
-
-func (v semVersion) Matches(v2 Version) bool {
-	switch tv := v2.(type) {
-	case semVersion:
-		return v.sv.Equal(tv.sv)
-	case versionPair:
-		if tv2, ok := tv.v.(semVersion); ok {
-			return tv2.sv.Equal(v.sv)
-		}
-	}
-	return false
-}
-
-func (v semVersion) MatchesAny(c Constraint) bool {
-	switch tc := c.(type) {
-	case anyConstraint:
-		return true
-	case noneConstraint:
-		return false
-	case semVersion:
-		return v.sv.Equal(tc.sv)
-	case semverConstraint:
-		return tc.Intersect(v) != none
-	case versionPair:
-		if tc2, ok := tc.v.(semVersion); ok {
-			return tc2.sv.Equal(v.sv)
-		}
-	}
-
-	return false
-}
-
-func (v semVersion) Intersect(c Constraint) Constraint {
-	switch tc := c.(type) {
-	case anyConstraint:
-		return v
-	case noneConstraint:
-		return none
-	case semVersion:
-		if v.sv.Equal(tc.sv) {
-			return v
-		}
-	case semverConstraint:
-		return tc.Intersect(v)
-	case versionPair:
-		if tc2, ok := tc.v.(semVersion); ok {
-			if v.sv.Equal(tc2.sv) {
-				return v
-			}
-		}
-	}
-
-	return none
-}
-
-func (v semVersion) Pair(r Revision) PairedVersion {
-	return versionPair{
-		v: v,
-		r: r,
-	}
-}
-
-func (v semVersion) identical(c Constraint) bool {
-	v2, ok := c.(semVersion)
-	if !ok {
-		return false
-	}
-	return v == v2
-}
-
-func (v semVersion) copyTo(msg *pb.Constraint) {
-	msg.Type = pb.Constraint_Semver
-	msg.Value = v.String() //TODO better encoding which doesn't require re-parsing
-}
-
-type versionPair struct {
-	v UnpairedVersion
-	r Revision
-}
-
-func (v versionPair) String() string {
-	return v.v.String()
-}
-
-func (v versionPair) ImpliedCaretString() string {
-	return v.v.ImpliedCaretString()
-}
-
-func (v versionPair) typedString() string {
-	return fmt.Sprintf("%s-%s", v.Unpair().typedString(), v.Revision().typedString())
-}
-
-func (v versionPair) Type() VersionType {
-	return v.v.Type()
-}
-
-func (v versionPair) Revision() Revision {
-	return v.r
-}
-
-func (v versionPair) Unpair() UnpairedVersion {
-	return v.v
-}
-
-func (v versionPair) Matches(v2 Version) bool {
-	switch tv2 := v2.(type) {
-	case versionPair:
-		return v.r == tv2.r
-	case Revision:
-		return v.r == tv2
-	}
-
-	switch tv := v.v.(type) {
-	case plainVersion, branchVersion:
-		if tv.Matches(v2) {
-			return true
-		}
-	case semVersion:
-		if tv2, ok := v2.(semVersion); ok {
-			if tv.sv.Equal(tv2.sv) {
-				return true
-			}
-		}
-	}
-
-	return false
-}
-
-func (v versionPair) MatchesAny(c2 Constraint) bool {
-	return c2.Matches(v)
-}
-
-func (v versionPair) Intersect(c2 Constraint) Constraint {
-	switch tc := c2.(type) {
-	case anyConstraint:
-		return v
-	case noneConstraint:
-		return none
-	case versionPair:
-		if v.r == tc.r {
-			return v.r
-		}
-	case Revision:
-		if v.r == tc {
-			return v.r
-		}
-	case semverConstraint:
-		if tv, ok := v.v.(semVersion); ok {
-			if tc.Intersect(tv) == v.v {
-				return v
-			}
-		}
-		// If the semver intersection failed, we know nothing could work
-		return none
-	}
-
-	switch tv := v.v.(type) {
-	case plainVersion, branchVersion:
-		if c2.Matches(v) {
-			return v
-		}
-	case semVersion:
-		if tv2, ok := c2.(semVersion); ok {
-			if tv.sv.Equal(tv2.sv) {
-				return v
-			}
-		}
-	}
-
-	return none
-}
-
-func (v versionPair) identical(c Constraint) bool {
-	v2, ok := c.(versionPair)
-	if !ok {
-		return false
-	}
-	if v.r != v2.r {
-		return false
-	}
-	return v.v.identical(v2.v)
-}
-
-func (v versionPair) copyTo(*pb.Constraint) {
-	panic("versionPair should never be serialized; it is solver internal-only")
-}
-
-// compareVersionType is a sort func helper that makes a coarse-grained sorting
-// decision based on version type.
-//
-// Make sure that l and r have already been converted from versionPair (if
-// applicable).
-func compareVersionType(l, r Version) int {
-	// Big fugly double type switch. No reflect, because this can be smack in a hot loop
-	switch l.(type) {
-	case Revision:
-		switch r.(type) {
-		case Revision:
-			return 0
-		case branchVersion, plainVersion, semVersion:
-			return 1
-		}
-
-	case plainVersion:
-		switch r.(type) {
-		case Revision:
-			return -1
-		case plainVersion:
-			return 0
-		case branchVersion, semVersion:
-			return 1
-		}
-
-	case branchVersion:
-		switch r.(type) {
-		case Revision, plainVersion:
-			return -1
-		case branchVersion:
-			return 0
-		case semVersion:
-			return 1
-		}
-
-	case semVersion:
-		switch r.(type) {
-		case Revision, branchVersion, plainVersion:
-			return -1
-		case semVersion:
-			return 0
-		}
-	}
-	panic("unknown version type")
-}
-
-// SortForUpgrade sorts a slice of []Version in roughly descending order, so
-// that presumably newer versions are visited first. The rules are:
-//
-//  - All semver versions come first, and sort mostly according to the semver
-//  2.0 spec (as implemented by github.com/Masterminds/semver lib), with one
-//  exception:
-//  - Semver versions with a prerelease are after *all* non-prerelease semver.
-//  Within this subset they are sorted first by their numerical component, then
-//  lexicographically by their prerelease version.
-//  - The default branch(es) is next; the exact semantics of that are specific
-//  to the underlying source.
-//  - All other branches come next, sorted lexicographically.
-//  - All non-semver versions (tags) are next, sorted lexicographically.
-//  - Revisions, if any, are last, sorted lexicographically. Revisions do not
-//  typically appear in version lists, so the only invariant we maintain is
-//  determinism - deeper semantics, like chronology or topology, do not matter.
-//
-// So, given a slice of the following versions:
-//
-//  - Branch: master devel
-//  - Semver tags: v1.0.0, v1.1.0, v1.1.0-alpha1
-//  - Non-semver tags: footag
-//  - Revision: f6e74e8d
-//
-// Sorting for upgrade will result in the following slice:
-//
-//  [v1.1.0 v1.0.0 v1.1.0-alpha1 master devel footag f6e74e8d]
-func SortForUpgrade(vl []Version) {
-	sort.Sort(upgradeVersionSorter(vl))
-}
-
-// SortPairedForUpgrade has the same behavior as SortForUpgrade, but operates on
-// []PairedVersion types.
-func SortPairedForUpgrade(vl []PairedVersion) {
-	sort.Sort(pvupgradeVersionSorter(vl))
-}
-
-// SortForDowngrade sorts a slice of []Version in roughly ascending order, so
-// that presumably older versions are visited first.
-//
-// This is *not* the same as reversing SortForUpgrade (or you could simply
-// sort.Reverse()). The type precedence is the same, including the semver vs.
-// semver-with-prerelease relation. Lexicographical comparisons within
-// non-semver tags, branches, and revisions remains the same as well; because we
-// treat these domains as having no ordering relation, there can be no real
-// concept of "upgrade" vs "downgrade", so there is no reason to reverse them.
-//
-// Thus, the only binary relation that is reversed for downgrade is within-type
-// comparisons for semver.
-//
-// So, given a slice of the following versions:
-//
-//  - Branch: master devel
-//  - Semver tags: v1.0.0, v1.1.0, v1.1.0-alpha1
-//  - Non-semver tags: footag
-//  - Revision: f6e74e8d
-//
-// Sorting for downgrade will result in the following slice:
-//
-//  [v1.0.0 v1.1.0 v1.1.0-alpha1 footag devel master f6e74e8d]
-func SortForDowngrade(vl []Version) {
-	sort.Sort(downgradeVersionSorter(vl))
-}
-
-// SortPairedForDowngrade has the same behavior as SortForDowngrade, but
-// operates on []PairedVersion types.
-func SortPairedForDowngrade(vl []PairedVersion) {
-	sort.Sort(pvdowngradeVersionSorter(vl))
-}
-
-type upgradeVersionSorter []Version
-
-func (vs upgradeVersionSorter) Len() int {
-	return len(vs)
-}
-
-func (vs upgradeVersionSorter) Swap(i, j int) {
-	vs[i], vs[j] = vs[j], vs[i]
-}
-
-func (vs upgradeVersionSorter) Less(i, j int) bool {
-	l, r := vs[i], vs[j]
-	return vLess(l, r, false)
-}
-
-type pvupgradeVersionSorter []PairedVersion
-
-func (vs pvupgradeVersionSorter) Len() int {
-	return len(vs)
-}
-
-func (vs pvupgradeVersionSorter) Swap(i, j int) {
-	vs[i], vs[j] = vs[j], vs[i]
-}
-func (vs pvupgradeVersionSorter) Less(i, j int) bool {
-	l, r := vs[i], vs[j]
-	return vLess(l, r, false)
-}
-
-type downgradeVersionSorter []Version
-
-func (vs downgradeVersionSorter) Len() int {
-	return len(vs)
-}
-
-func (vs downgradeVersionSorter) Swap(i, j int) {
-	vs[i], vs[j] = vs[j], vs[i]
-}
-
-func (vs downgradeVersionSorter) Less(i, j int) bool {
-	l, r := vs[i], vs[j]
-	return vLess(l, r, true)
-}
-
-type pvdowngradeVersionSorter []PairedVersion
-
-func (vs pvdowngradeVersionSorter) Len() int {
-	return len(vs)
-}
-
-func (vs pvdowngradeVersionSorter) Swap(i, j int) {
-	vs[i], vs[j] = vs[j], vs[i]
-}
-func (vs pvdowngradeVersionSorter) Less(i, j int) bool {
-	l, r := vs[i], vs[j]
-	return vLess(l, r, true)
-}
-
-func vLess(l, r Version, down bool) bool {
-	if tl, ispair := l.(versionPair); ispair {
-		l = tl.v
-	}
-	if tr, ispair := r.(versionPair); ispair {
-		r = tr.v
-	}
-
-	switch compareVersionType(l, r) {
-	case -1:
-		return true
-	case 1:
-		return false
-	case 0:
-		break
-	default:
-		panic("unreachable")
-	}
-
-	switch tl := l.(type) {
-	case branchVersion:
-		tr := r.(branchVersion)
-		if tl.isDefault != tr.isDefault {
-			// If they're not both defaults, then return the left val: if left
-			// is the default, then it is "less" (true) b/c we want it earlier.
-			// Else the right is the default, and so the left should be later
-			// (false).
-			return tl.isDefault
-		}
-		return l.String() < r.String()
-	case Revision, plainVersion:
-		// All that we can do now is alpha sort
-		return l.String() < r.String()
-	}
-
-	// This ensures that pre-release versions are always sorted after ALL
-	// full-release versions
-	lsv, rsv := l.(semVersion).sv, r.(semVersion).sv
-	lpre, rpre := lsv.Prerelease() == "", rsv.Prerelease() == ""
-	if (lpre && !rpre) || (!lpre && rpre) {
-		return lpre
-	}
-
-	if down {
-		return lsv.LessThan(rsv)
-	}
-	return lsv.GreaterThan(rsv)
-}
-
-func hidePair(pvl []PairedVersion) []Version {
-	vl := make([]Version, 0, len(pvl))
-	for _, v := range pvl {
-		vl = append(vl, v)
-	}
-	return vl
-}
-
-// VersionComponentStrings decomposes a Version into the underlying number, branch and revision.
-func VersionComponentStrings(v Version) (revision string, branch string, version string) {
-	switch tv := v.(type) {
-	case UnpairedVersion:
-	case Revision:
-		revision = tv.String()
-	case PairedVersion:
-		revision = tv.Revision().String()
-	}
-
-	switch v.Type() {
-	case IsBranch:
-		branch = v.String()
-	case IsSemver, IsVersion:
-		version = v.String()
-	}
-
-	return
-}
diff --git a/vendor/github.com/golang/dep/gps/version_queue.go b/vendor/github.com/golang/dep/gps/version_queue.go
deleted file mode 100644
index 6e23ba4f275dfeadf65c0b48440fbbdbbc124e67..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/gps/version_queue.go
+++ /dev/null
@@ -1,158 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gps
-
-import (
-	"fmt"
-	"strings"
-)
-
-type failedVersion struct {
-	v Version
-	f error
-}
-
-type versionQueue struct {
-	id           ProjectIdentifier
-	pi           []Version
-	lockv, prefv Version
-	fails        []failedVersion
-	b            sourceBridge
-	failed       bool
-	allLoaded    bool
-	adverr       error
-}
-
-func newVersionQueue(id ProjectIdentifier, lockv, prefv Version, b sourceBridge) (*versionQueue, error) {
-	vq := &versionQueue{
-		id: id,
-		b:  b,
-	}
-
-	// Lock goes in first, if present
-	if lockv != nil {
-		vq.lockv = lockv
-		vq.pi = append(vq.pi, lockv)
-	}
-
-	// Preferred version next
-	if prefv != nil {
-		vq.prefv = prefv
-		vq.pi = append(vq.pi, prefv)
-	}
-
-	if len(vq.pi) == 0 {
-		var err error
-		vq.pi, err = vq.b.listVersions(vq.id)
-		if err != nil {
-			// TODO(sdboyer) pushing this error this early entails that we
-			// unconditionally deep scan (e.g. vendor), as well as hitting the
-			// network.
-			return nil, err
-		}
-		vq.allLoaded = true
-	}
-
-	return vq, nil
-}
-
-func (vq *versionQueue) current() Version {
-	if len(vq.pi) > 0 {
-		return vq.pi[0]
-	}
-
-	return nil
-}
-
-// advance moves the versionQueue forward to the next available version,
-// recording the failure that eliminated the current version.
-func (vq *versionQueue) advance(fail error) error {
-	// Nothing in the queue means...nothing in the queue, nicely enough
-	if vq.adverr != nil || len(vq.pi) == 0 { // should be a redundant check, but just in case
-		return vq.adverr
-	}
-
-	// Record the fail reason and pop the queue
-	vq.fails = append(vq.fails, failedVersion{
-		v: vq.pi[0],
-		f: fail,
-	})
-	vq.pi = vq.pi[1:]
-
-	// *now*, if the queue is empty, ensure all versions have been loaded
-	if len(vq.pi) == 0 {
-		if vq.allLoaded {
-			// This branch gets hit when the queue is first fully exhausted,
-			// after a previous advance() already called ListVersions().
-			return nil
-		}
-		vq.allLoaded = true
-
-		var vltmp []Version
-		vltmp, vq.adverr = vq.b.listVersions(vq.id)
-		if vq.adverr != nil {
-			return vq.adverr
-		}
-		// defensive copy - calling listVersions here means slice contents may
-		// be modified when removing prefv/lockv.
-		vq.pi = make([]Version, len(vltmp))
-		copy(vq.pi, vltmp)
-
-		// search for and remove lockv and prefv, in a pointer GC-safe manner
-		//
-		// could use the version comparator for binary search here to avoid
-		// O(n) each time...if it matters
-		var delkeys []int
-		for k, pi := range vq.pi {
-			if pi == vq.lockv || pi == vq.prefv {
-				delkeys = append(delkeys, k)
-			}
-		}
-
-		for k, dk := range delkeys {
-			dk -= k
-			copy(vq.pi[dk:], vq.pi[dk+1:])
-			// write nil to final position for GC safety
-			vq.pi[len(vq.pi)-1] = nil
-			vq.pi = vq.pi[:len(vq.pi)-1]
-		}
-
-		if len(vq.pi) == 0 {
-			// If listing versions added nothing (new), then return now
-			return nil
-		}
-	}
-
-	// We're finally sure that there's something in the queue. Remove the
-	// failure marker, as the current version may have failed, but the next one
-	// hasn't yet
-	vq.failed = false
-
-	// If all have been loaded and the queue is empty, we're definitely out
-	// of things to try. Return empty, though, because vq semantics dictate
-	// that we don't explicitly indicate the end of the queue here.
-	return nil
-}
-
-// isExhausted indicates whether or not the queue has definitely been exhausted,
-// in which case it will return true.
-//
-// It may return false negatives - suggesting that there is more in the queue
-// when a subsequent call to current() will be empty. Plan accordingly.
-func (vq *versionQueue) isExhausted() bool {
-	if !vq.allLoaded {
-		return false
-	}
-	return len(vq.pi) == 0
-}
-
-func (vq *versionQueue) String() string {
-	var vs []string
-
-	for _, v := range vq.pi {
-		vs = append(vs, v.String())
-	}
-	return fmt.Sprintf("[%s]", strings.Join(vs, ", "))
-}
diff --git a/vendor/github.com/golang/dep/hack/build-all.bash b/vendor/github.com/golang/dep/hack/build-all.bash
deleted file mode 100755
index a5630a6f8b57613cea06158fc49b252710b641df..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/hack/build-all.bash
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/usr/bin/env bash
-# Copyright 2017 The Go Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style
-# license that can be found in the LICENSE file.
-#
-# This script will build dep and calculate hash for each
-# (DEP_BUILD_PLATFORMS, DEP_BUILD_ARCHS) pair.
-# DEP_BUILD_PLATFORMS="linux" DEP_BUILD_ARCHS="amd64" ./hack/build-all.bash
-# can be called to build only for linux-amd64
-
-set -e
-
-DEP_ROOT=$(git rev-parse --show-toplevel)
-VERSION=$(git describe --tags --dirty)
-COMMIT_HASH=$(git rev-parse --short HEAD 2>/dev/null)
-DATE=$(date "+%Y-%m-%d")
-BUILD_PLATFORM=$(uname -a | awk '{print tolower($1);}')
-IMPORT_DURING_SOLVE=${IMPORT_DURING_SOLVE:-false}
-
-if [[ "$(pwd)" != "${DEP_ROOT}" ]]; then
-  echo "you are not in the root of the repo" 1>&2
-  echo "please cd to ${DEP_ROOT} before running this script" 1>&2
-  exit 1
-fi
-
-GO_BUILD_CMD="go build -a -installsuffix cgo"
-GO_BUILD_LDFLAGS="-s -w -X main.commitHash=${COMMIT_HASH} -X main.buildDate=${DATE} -X main.version=${VERSION} -X main.flagImportDuringSolve=${IMPORT_DURING_SOLVE}"
-
-if [[ -z "${DEP_BUILD_PLATFORMS}" ]]; then
-    DEP_BUILD_PLATFORMS="linux windows darwin freebsd"
-fi
-
-if [[ -z "${DEP_BUILD_ARCHS}" ]]; then
-    DEP_BUILD_ARCHS="amd64 386 ppc64 ppc64le"
-fi
-
-mkdir -p "${DEP_ROOT}/release"
-
-for OS in ${DEP_BUILD_PLATFORMS[@]}; do
-  for ARCH in ${DEP_BUILD_ARCHS[@]}; do
-    NAME="dep-${OS}-${ARCH}"
-    if [[ "${OS}" == "windows" ]]; then
-      NAME="${NAME}.exe"
-    fi
-
-    # Enable CGO if building for OS X on OS X; see
-    # https://github.com/golang/dep/issues/1838 for details.
-    if [[ "${OS}" == "darwin" && "${BUILD_PLATFORM}" == "darwin" ]]; then
-      CGO_ENABLED=1
-    else
-      CGO_ENABLED=0
-    fi
-    if [[ "${ARCH}" == "ppc64" || "${ARCH}" == "ppc64le" ]] && [[ "${OS}" != "linux" ]]; then
-        # ppc64 and ppc64le are only supported on Linux.
-        echo "Building for ${OS}/${ARCH} not supported."
-    else
-        echo "Building for ${OS}/${ARCH} with CGO_ENABLED=${CGO_ENABLED}"
-        GOARCH=${ARCH} GOOS=${OS} CGO_ENABLED=${CGO_ENABLED} ${GO_BUILD_CMD} -ldflags "${GO_BUILD_LDFLAGS}"\
-            -o "${DEP_ROOT}/release/${NAME}" ./cmd/dep/
-        shasum -a 256 "${DEP_ROOT}/release/${NAME}" > "${DEP_ROOT}/release/${NAME}".sha256
-    fi
-  done
-done
diff --git a/vendor/github.com/golang/dep/hack/coverage.bash b/vendor/github.com/golang/dep/hack/coverage.bash
deleted file mode 100755
index 6ad89d9f54e847656e916f8b73836be46e644935..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/hack/coverage.bash
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env bash
-# Copyright 2017 The Go Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style
-# license that can be found in the LICENSE file.
-#
-# This script will generate coverage.txt
-set -e
-
-PKGS=$(go list ./... | grep -v /vendor/)
-for pkg in $PKGS; do
-  go test -race -coverprofile=profile.out -covermode=atomic $pkg
-  if [[ -f profile.out ]]; then
-    cat profile.out >> coverage.txt
-    rm profile.out
-  fi
-done
diff --git a/vendor/github.com/golang/dep/hack/licenseok/main.go b/vendor/github.com/golang/dep/hack/licenseok/main.go
deleted file mode 100644
index 9ef8fa8e2d2848d0bba11db95634c0f23897a51e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/hack/licenseok/main.go
+++ /dev/null
@@ -1,203 +0,0 @@
-// +build ignore
-
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// Checks if all files have the license header, a lot of this is based off
-// https://github.com/google/addlicense.
-package main
-
-import (
-	"bytes"
-	"flag"
-	"fmt"
-	"io/ioutil"
-	"log"
-	"os"
-	"path/filepath"
-	"sync"
-	"time"
-)
-
-const helpText = `Usage: licenseok [flags] pattern [pattern ...]
-This program ensures source code files have copyright license headers
-by scanning directory patterns recursively.
-The pattern argument can be provided multiple times, and may also refer
-to single files.
-Flags:
-`
-
-const tmpl = `The Go Authors. All rights reserved.
-Use of this source code is governed by a BSD-style
-license that can be found in the LICENSE file.`
-
-var (
-	update bool
-)
-
-type file struct {
-	path string
-	mode os.FileMode
-}
-
-func init() {
-	flag.BoolVar(&update, "u", false, "modifies all source files in place and avoids adding a license header to any file that already has one.")
-
-	flag.Usage = func() {
-		fmt.Fprintln(os.Stderr, helpText)
-		flag.PrintDefaults()
-	}
-
-	flag.Parse()
-
-	if flag.NArg() == 0 {
-		flag.Usage()
-		os.Exit(1)
-	}
-}
-
-func main() {
-	exitStatus := 0
-
-	// process at most 1000 files in parallel
-	ch := make(chan *file, 1000)
-	done := make(chan struct{})
-	go func() {
-		var wg sync.WaitGroup
-		for f := range ch {
-			wg.Add(1)
-			go func(f *file) {
-				b, err := ioutil.ReadFile(f.path)
-				if err != nil {
-					log.Printf("%s: %v", f.path, err)
-					exitStatus = 1
-				}
-
-				if !hasLicense(b) {
-					if !update {
-						fmt.Fprintln(os.Stderr, f.path)
-						exitStatus = 1
-					} else {
-						fmt.Fprintln(os.Stdout, f.path)
-						if err := addLicense(b, f.path, f.mode); err != nil {
-							log.Printf("%s: %v", f.path, err)
-							exitStatus = 1
-						}
-					}
-				}
-
-				wg.Done()
-			}(f)
-		}
-		wg.Wait()
-		close(done)
-	}()
-
-	for _, d := range flag.Args() {
-		walk(ch, d)
-	}
-	close(ch)
-	<-done
-	os.Exit(exitStatus)
-}
-
-func walk(ch chan<- *file, start string) {
-	filepath.Walk(start, func(path string, fi os.FileInfo, err error) error {
-		if err != nil {
-			log.Printf("%s error: %v", path, err)
-			return nil
-		}
-		if fi.IsDir() {
-			return nil
-		}
-		ch <- &file{path, fi.Mode()}
-		return nil
-	})
-}
-
-func addLicense(b []byte, path string, fmode os.FileMode) error {
-	var lic []byte
-	var err error
-	switch filepath.Ext(path) {
-	default:
-		return nil
-	case ".c", ".h":
-		lic, err = prefix("/*", " * ", " */")
-	case ".js", ".css":
-		lic, err = prefix("/**", " * ", " */")
-	case ".cc", ".cpp", ".cs", ".go", ".hh", ".hpp", ".java", ".m", ".mm", ".proto", ".rs", ".scala", ".swift", ".dart":
-		lic, err = prefix("", "// ", "")
-	case ".py", ".sh":
-		lic, err = prefix("", "# ", "")
-	case ".el", ".lisp":
-		lic, err = prefix("", ";; ", "")
-	case ".erl":
-		lic, err = prefix("", "% ", "")
-	case ".hs":
-		lic, err = prefix("", "-- ", "")
-	case ".html", ".xml":
-		lic, err = prefix("<!--", " ", "-->")
-	case ".php":
-		lic, err = prefix("<?php", "// ", "?>")
-	}
-	if err != nil || lic == nil {
-		return err
-	}
-
-	line := hashBang(b)
-	if len(line) > 0 {
-		b = b[len(line):]
-		if line[len(line)-1] != '\n' {
-			line = append(line, '\n')
-		}
-		lic = append(line, lic...)
-	}
-	b = append(lic, b...)
-	return ioutil.WriteFile(path, b, fmode)
-}
-
-func hashBang(b []byte) []byte {
-	var line = make([]byte, 0, len(b))
-	for _, c := range b {
-		line = append(line, c)
-		if c == '\n' {
-			break
-		}
-	}
-	if bytes.HasPrefix(line, []byte("#!")) {
-		return line
-	}
-	return nil
-}
-
-func hasLicense(b []byte) bool {
-	n := 100
-	if len(b) < 100 {
-		n = len(b)
-	}
-	return bytes.Contains(bytes.ToLower(b[:n]), []byte("copyright"))
-}
-
-// prefix will execute a license template and prefix the result with top, middle and bottom.
-func prefix(top, mid, bot string) ([]byte, error) {
-	buf := bytes.NewBufferString(fmt.Sprintf("Copyright %d %s", time.Now().Year(), tmpl))
-	var out bytes.Buffer
-	if top != "" {
-		out.WriteString(top)
-		out.WriteRune('\n')
-	}
-	out.WriteString(mid)
-	for _, c := range buf.Bytes() {
-		out.WriteByte(c)
-		if c == '\n' {
-			out.WriteString(mid)
-		}
-	}
-	if bot != "" {
-		out.WriteRune('\n')
-		out.WriteString(bot)
-	}
-	out.Write([]byte{'\n', '\n'})
-	return out.Bytes(), nil
-}
diff --git a/vendor/github.com/golang/dep/hack/lint.bash b/vendor/github.com/golang/dep/hack/lint.bash
deleted file mode 100755
index c474d6b7cc655f975b8fbe6a0d0db7cda655b3dc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/hack/lint.bash
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-# Copyright 2017 The Go Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style
-# license that can be found in the LICENSE file.
-#
-# This script will validate code with various linters
-set -e
-
-PKGS=$(go list ./... | grep -vF /vendor/)
-go vet $PKGS
-golint $PKGS
-megacheck -unused.exported -ignore "github.com/golang/dep/internal/test/test.go:U1000 github.com/golang/dep/gps/prune.go:U1000 github.com/golang/dep/manifest.go:U1000" $PKGS
diff --git a/vendor/github.com/golang/dep/hack/test.bash b/vendor/github.com/golang/dep/hack/test.bash
deleted file mode 100755
index 38c704be88b9e81dbb211e455421337fc1f3f4cb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/hack/test.bash
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env bash
-# Copyright 2017 The Go Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style
-# license that can be found in the LICENSE file.
-#
-# This script will build dep and calculate hash for each
-# (DEP_BUILD_PLATFORMS, DEP_BUILD_ARCHS) pair.
-# DEP_BUILD_PLATFORMS="linux" DEP_BUILD_ARCHS="amd64" ./hack/build-all.bash
-# can be called to build only for linux-amd64
-
-set -e
-
-IMPORT_DURING_SOLVE=${IMPORT_DURING_SOLVE:-false}
-
-go test -race \
-    -ldflags '-X github.com/golang/dep/cmd/dep.flagImportDuringSolve=${IMPORT_DURING_SOLVE}' \
-    ./...
-
-if ! ./dep status -out .dep.status.file.output; then exit 1; fi
-if ! ./dep status > .dep.status.stdout.output; then
-   rm -f .dep.status.file.output
-   exit 1
-fi
-if ! diff .dep.status.file.output .dep.status.stdout.output; then
-  diffResult=1
-else
-  diffResult=0
-fi
-rm -f .dep.status.file.output .dep.status.stdout.output
-if [ "$diffResult" -eq "1" ]; then
-  exit 1
-fi
diff --git a/vendor/github.com/golang/dep/hack/validate-gofmt.bash b/vendor/github.com/golang/dep/hack/validate-gofmt.bash
deleted file mode 100755
index a5ee7fa8bbc02e5e28869ef6ae6982ac1004d37f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/hack/validate-gofmt.bash
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/env bash
-# Copyright 2017 The Go Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style
-# license that can be found in the LICENSE file.
-#
-# This script will validate that `go fmt` has been ran
-# and is passing for certain directories in the project.
-#
-# Here we use `go list` to help determine which packages
-# we need to check for `go fmt`
-#
-# EXIT 0 - The check is successful
-# EXIT 1 - The check has failed
-
-PKGS=$(go list ./... | grep -v /vendor/)
-REPO_TLD="github.com/golang/dep"
-IGNORE_PKGS=". ./gps"
-
-for PKG in $PKGS; do
-    RELATIVE_PATH="${PKG/$REPO_TLD/.}"
-    i=0
-    for IGNORE_PKG in $IGNORE_PKGS; do
-        if [ "${IGNORE_PKG}" == $RELATIVE_PATH ]; then
-            i=1
-        fi
-    done;
-    if [ $i -eq 1 ]; then
-        continue
-    fi
-
-    echo "Processing gofmt for: ${PKG}"
-    gofmt -s -l $RELATIVE_PATH
-    if [ $? -ne 0 ]; then
-        echo "GO FMT FAILURE: ${PKG}"
-        exit 1
-    fi
-done;
-exit 0
diff --git a/vendor/github.com/golang/dep/hack/validate-licence.bash b/vendor/github.com/golang/dep/hack/validate-licence.bash
deleted file mode 100755
index 385a31490bbb1ccbe8df4d3d6e9f605ccbf30c6d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/hack/validate-licence.bash
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env bash
-# Copyright 2017 The Go Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style
-# license that can be found in the LICENSE file.
-#
-# This script will build licenseok and run it on all
-# source files to check licence
-set -e
-
-go build -o licenseok ./hack/licenseok/main.go
-find . -path ./vendor -prune -o -path ./cmd/dep/testdata -prune\
-    -o -regex ".+\.pb\.go$" -prune -o -type f -regex ".*\.\(go\|proto\)$"\
-    -printf '%P\n' | xargs ./licenseok
diff --git a/vendor/github.com/golang/dep/install.sh b/vendor/github.com/golang/dep/install.sh
deleted file mode 100755
index 6851ca16666c8748849e0db71baf7c310066d38a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/install.sh
+++ /dev/null
@@ -1,174 +0,0 @@
-#!/bin/sh
-
-# This install script is intended to download and install the latest available
-# release of the dep dependency manager for Golang.
-#
-# It attempts to identify the current platform and an error will be thrown if
-# the platform is not supported.
-#
-# Environment variables:
-# - INSTALL_DIRECTORY (optional): defaults to $GOPATH/bin
-# - DEP_RELEASE_TAG (optional): defaults to fetching the latest release
-# - DEP_OS (optional): use a specific value for OS (mostly for testing)
-# - DEP_ARCH (optional): use a specific value for ARCH (mostly for testing)
-#
-# You can install using this script:
-# $ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
-
-set -e
-
-RELEASES_URL="https://github.com/golang/dep/releases"
-
-downloadJSON() {
-    url="$2"
-
-    echo "Fetching $url.."
-    if test -x "$(command -v curl)"; then
-        response=$(curl -s -L -w 'HTTPSTATUS:%{http_code}' -H 'Accept: application/json' "$url")
-        body=$(echo "$response" | sed -e 's/HTTPSTATUS\:.*//g')
-        code=$(echo "$response" | tr -d '\n' | sed -e 's/.*HTTPSTATUS://')
-    elif test -x "$(command -v wget)"; then
-        temp=$(mktemp)
-        body=$(wget -q --header='Accept: application/json' -O - --server-response "$url" 2> "$temp")
-        code=$(awk '/^  HTTP/{print $2}' < "$temp" | tail -1)
-        rm "$temp"
-    else
-        echo "Neither curl nor wget was available to perform http requests."
-        exit 1
-    fi
-    if [ "$code" != 200 ]; then
-        echo "Request failed with code $code"
-        exit 1
-    fi
-
-    eval "$1='$body'"
-}
-
-downloadFile() {
-    url="$1"
-    destination="$2"
-
-    echo "Fetching $url.."
-    if test -x "$(command -v curl)"; then
-        code=$(curl -s -w '%{http_code}' -L "$url" -o "$destination")
-    elif test -x "$(command -v wget)"; then
-        code=$(wget -q -O "$destination" --server-response "$url" 2>&1 | awk '/^  HTTP/{print $2}' | tail -1)
-    else
-        echo "Neither curl nor wget was available to perform http requests."
-        exit 1
-    fi
-
-    if [ "$code" != 200 ]; then
-        echo "Request failed with code $code"
-        exit 1
-    fi
-}
-
-findGoBinDirectory() {
-    EFFECTIVE_GOPATH=$(go env GOPATH)
-    # CYGWIN: Convert Windows-style path into sh-compatible path
-    if [ "$OS_CYGWIN" = "1" ]; then
-	EFFECTIVE_GOPATH=$(cygpath "$EFFECTIVE_GOPATH")
-    fi
-    if [ -z "$EFFECTIVE_GOPATH" ]; then
-        echo "Installation could not determine your \$GOPATH."
-        exit 1
-    fi
-    if [ -z "$GOBIN" ]; then
-        GOBIN=$(echo "${EFFECTIVE_GOPATH%%:*}/bin" | sed s#//*#/#g)
-    fi
-    if [ ! -d "$GOBIN" ]; then
-        echo "Installation requires your GOBIN directory $GOBIN to exist. Please create it."
-        exit 1
-    fi
-    eval "$1='$GOBIN'"
-}
-
-initArch() {
-    ARCH=$(uname -m)
-    if [ -n "$DEP_ARCH" ]; then
-        echo "Using DEP_ARCH"
-        ARCH="$DEP_ARCH"
-    fi
-    case $ARCH in
-        amd64) ARCH="amd64";;
-        x86_64) ARCH="amd64";;
-        i386) ARCH="386";;
-        ppc64) ARCH="ppc64";;
-        ppc64le) ARCH="ppc64le";;
-        *) echo "Architecture ${ARCH} is not supported by this installation script"; exit 1;;
-    esac
-    echo "ARCH = $ARCH"
-}
-
-initOS() {
-    OS=$(uname | tr '[:upper:]' '[:lower:]')
-    OS_CYGWIN=0
-    if [ -n "$DEP_OS" ]; then
-        echo "Using DEP_OS"
-        OS="$DEP_OS"
-    fi
-    case "$OS" in
-        darwin) OS='darwin';;
-        linux) OS='linux';;
-        freebsd) OS='freebsd';;
-        mingw*) OS='windows';;
-        msys*) OS='windows';;
-	cygwin*)
-	    OS='windows'
-	    OS_CYGWIN=1
-	    ;;
-        *) echo "OS ${OS} is not supported by this installation script"; exit 1;;
-    esac
-    echo "OS = $OS"
-}
-
-# identify platform based on uname output
-initArch
-initOS
-
-# determine install directory if required
-if [ -z "$INSTALL_DIRECTORY" ]; then
-    findGoBinDirectory INSTALL_DIRECTORY
-fi
-echo "Will install into $INSTALL_DIRECTORY"
-
-# assemble expected release artifact name
-if [ "${OS}" != "linux" ] && { [ "${ARCH}" = "ppc64" ] || [ "${ARCH}" = "ppc64le" ];}; then
-    # ppc64 and ppc64le are only supported on Linux.
-    echo "${OS}-${ARCH} is not supported by this instalation script"
-else
-    BINARY="dep-${OS}-${ARCH}"
-fi
-
-# add .exe if on windows
-if [ "$OS" = "windows" ]; then
-    BINARY="$BINARY.exe"
-fi
-
-# if DEP_RELEASE_TAG was not provided, assume latest
-if [ -z "$DEP_RELEASE_TAG" ]; then
-    downloadJSON LATEST_RELEASE "$RELEASES_URL/latest"
-    DEP_RELEASE_TAG=$(echo "${LATEST_RELEASE}" | tr -s '\n' ' ' | sed 's/.*"tag_name":"//' | sed 's/".*//' )
-fi
-echo "Release Tag = $DEP_RELEASE_TAG"
-
-# fetch the real release data to make sure it exists before we attempt a download
-downloadJSON RELEASE_DATA "$RELEASES_URL/tag/$DEP_RELEASE_TAG"
-
-BINARY_URL="$RELEASES_URL/download/$DEP_RELEASE_TAG/$BINARY"
-DOWNLOAD_FILE=$(mktemp)
-
-downloadFile "$BINARY_URL" "$DOWNLOAD_FILE"
-
-echo "Setting executable permissions."
-chmod +x "$DOWNLOAD_FILE"
-
-INSTALL_NAME="dep"
-
-if [ "$OS" = "windows" ]; then
-    INSTALL_NAME="$INSTALL_NAME.exe"
-fi
-
-echo "Moving executable to $INSTALL_DIRECTORY/$INSTALL_NAME"
-mv "$DOWNLOAD_FILE" "$INSTALL_DIRECTORY/$INSTALL_NAME"
diff --git a/vendor/github.com/golang/dep/internal/feedback/feedback.go b/vendor/github.com/golang/dep/internal/feedback/feedback.go
deleted file mode 100644
index 69e2c7235ed68b43e178e5ac761b9aa1bf424458..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/feedback/feedback.go
+++ /dev/null
@@ -1,237 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package feedback
-
-import (
-	"encoding/hex"
-	"fmt"
-	"log"
-
-	"github.com/golang/dep/gps"
-)
-
-const (
-	// ConsTypeConstraint represents a constraint
-	ConsTypeConstraint = "constraint"
-
-	// ConsTypeHint represents a constraint type hint
-	ConsTypeHint = "hint"
-
-	// DepTypeDirect represents a direct dependency
-	DepTypeDirect = "direct dep"
-
-	// DepTypeTransitive represents a transitive dependency,
-	// or a dependency of a dependency
-	DepTypeTransitive = "transitive dep"
-
-	// DepTypeImported represents a dependency imported by an external tool
-	DepTypeImported = "imported dep"
-)
-
-// ConstraintFeedback holds project constraint feedback data
-type ConstraintFeedback struct {
-	Constraint, LockedVersion, Revision, ConstraintType, DependencyType, ProjectPath string
-}
-
-// NewConstraintFeedback builds a feedback entry for a constraint in the manifest.
-func NewConstraintFeedback(pc gps.ProjectConstraint, depType string) *ConstraintFeedback {
-	cf := &ConstraintFeedback{
-		Constraint:     pc.Constraint.String(),
-		ProjectPath:    string(pc.Ident.ProjectRoot),
-		DependencyType: depType,
-	}
-
-	if _, ok := pc.Constraint.(gps.Revision); ok {
-		cf.ConstraintType = ConsTypeHint
-	} else {
-		cf.ConstraintType = ConsTypeConstraint
-	}
-
-	return cf
-}
-
-// NewLockedProjectFeedback builds a feedback entry for a project in the lock.
-func NewLockedProjectFeedback(lp gps.LockedProject, depType string) *ConstraintFeedback {
-	cf := &ConstraintFeedback{
-		ProjectPath:    string(lp.Ident().ProjectRoot),
-		DependencyType: depType,
-	}
-
-	switch vt := lp.Version().(type) {
-	case gps.PairedVersion:
-		cf.LockedVersion = vt.String()
-		cf.Revision = vt.Revision().String()
-	case gps.UnpairedVersion: // Logically this should never occur, but handle for completeness sake
-		cf.LockedVersion = vt.String()
-	case gps.Revision:
-		cf.Revision = vt.String()
-	}
-
-	return cf
-}
-
-// LogFeedback logs feedback on changes made to the manifest or lock.
-func (cf ConstraintFeedback) LogFeedback(logger *log.Logger) {
-	if cf.Constraint != "" {
-		logger.Printf("  %v", GetUsingFeedback(cf.Constraint, cf.ConstraintType, cf.DependencyType, cf.ProjectPath))
-	}
-	if cf.Revision != "" {
-		logger.Printf("  %v", GetLockingFeedback(cf.LockedVersion, cf.Revision, cf.DependencyType, cf.ProjectPath))
-	}
-}
-
-type brokenImport interface {
-	String() string
-}
-
-type modifiedImport struct {
-	source, branch, revision, version *StringDiff
-	projectPath                       string
-}
-
-func (mi modifiedImport) String() string {
-	var pv string
-	var pr string
-	pp := mi.projectPath
-
-	var cr string
-	var cv string
-	cp := ""
-
-	if mi.revision != nil {
-		pr = fmt.Sprintf("(%s)", trimSHA(mi.revision.Previous))
-		cr = fmt.Sprintf("(%s)", trimSHA(mi.revision.Current))
-	}
-
-	if mi.version != nil {
-		pv = mi.version.Previous
-		cv = mi.version.Current
-	} else if mi.branch != nil {
-		pv = mi.branch.Previous
-		cv = mi.branch.Current
-	}
-
-	if mi.source != nil {
-		pp = fmt.Sprintf("%s(%s)", mi.projectPath, mi.source.Previous)
-		cp = fmt.Sprintf(" for %s(%s)", mi.projectPath, mi.source.Current)
-	}
-
-	// Warning: Unable to preserve imported lock VERSION/BRANCH (REV) for PROJECT(SOURCE). Locking in VERSION/BRANCH (REV) for PROJECT(SOURCE)
-	return fmt.Sprintf("%v %s for %s. Locking in %v %s%s", pv, pr, pp, cv, cr, cp)
-}
-
-type removedImport struct {
-	source, branch, revision, version *StringDiff
-	projectPath                       string
-}
-
-func (ri removedImport) String() string {
-	var pr string
-	var pv string
-	pp := ri.projectPath
-
-	if ri.revision != nil {
-		pr = fmt.Sprintf("(%s)", trimSHA(ri.revision.Previous))
-	}
-
-	if ri.version != nil {
-		pv = ri.version.Previous
-	} else if ri.branch != nil {
-		pv = ri.branch.Previous
-	}
-
-	if ri.source != nil {
-		pp = fmt.Sprintf("%s(%s)", ri.projectPath, ri.source.Previous)
-	}
-
-	// Warning: Unable to preserve imported lock VERSION/BRANCH (REV) for PROJECT(SOURCE). Locking in VERSION/BRANCH (REV) for PROJECT(SOURCE)
-	return fmt.Sprintf("%v %s for %s. The project was removed from the lock because it is not used.", pv, pr, pp)
-}
-
-// BrokenImportFeedback holds information on changes to locks pre- and post- solving.
-type BrokenImportFeedback struct {
-	brokenImports []brokenImport
-}
-
-// NewBrokenImportFeedback builds a feedback entry that compares an initially
-// imported, unsolved lock to the same lock after it has been solved.
-func NewBrokenImportFeedback(ld *LockDiff) *BrokenImportFeedback {
-	bi := &BrokenImportFeedback{}
-	if ld == nil {
-		return bi
-	}
-
-	for _, lpd := range ld.Modify {
-		if lpd.Branch == nil && lpd.Revision == nil && lpd.Source == nil && lpd.Version == nil {
-			continue
-		}
-		bi.brokenImports = append(bi.brokenImports, modifiedImport{
-			projectPath: string(lpd.Name),
-			source:      lpd.Source,
-			branch:      lpd.Branch,
-			revision:    lpd.Revision,
-			version:     lpd.Version,
-		})
-	}
-
-	for _, lpd := range ld.Remove {
-		bi.brokenImports = append(bi.brokenImports, removedImport{
-			projectPath: string(lpd.Name),
-			source:      lpd.Source,
-			branch:      lpd.Branch,
-			revision:    lpd.Revision,
-			version:     lpd.Version,
-		})
-	}
-
-	return bi
-}
-
-// LogFeedback logs a warning for all changes between the initially imported and post- solve locks
-func (b BrokenImportFeedback) LogFeedback(logger *log.Logger) {
-	for _, bi := range b.brokenImports {
-		logger.Printf("Warning: Unable to preserve imported lock %v\n", bi)
-	}
-}
-
-// GetUsingFeedback returns a dependency "using" feedback message. For example:
-//
-//    Using ^1.0.0 as constraint for direct dep github.com/foo/bar
-//    Using 1b8edb3 as hint for direct dep github.com/bar/baz
-func GetUsingFeedback(version, consType, depType, projectPath string) string {
-	if depType == DepTypeImported {
-		return fmt.Sprintf("Using %s as initial %s for %s %s", version, consType, depType, projectPath)
-	}
-	return fmt.Sprintf("Using %s as %s for %s %s", version, consType, depType, projectPath)
-}
-
-// GetLockingFeedback returns a dependency "locking" feedback message. For
-// example:
-//
-//    Locking in v1.1.4 (bc29b4f) for direct dep github.com/foo/bar
-//    Locking in master (436f39d) for transitive dep github.com/baz/qux
-func GetLockingFeedback(version, revision, depType, projectPath string) string {
-	revision = trimSHA(revision)
-
-	if depType == DepTypeImported {
-		if version == "" {
-			version = "*"
-		}
-		return fmt.Sprintf("Trying %s (%s) as initial lock for %s %s", version, revision, depType, projectPath)
-	}
-	return fmt.Sprintf("Locking in %s (%s) for %s %s", version, revision, depType, projectPath)
-}
-
-// trimSHA checks if revision is a valid SHA1 digest and trims to 7 characters.
-func trimSHA(revision string) string {
-	if len(revision) == 40 {
-		if _, err := hex.DecodeString(revision); err == nil {
-			// Valid SHA1 digest
-			revision = revision[0:7]
-		}
-	}
-
-	return revision
-}
diff --git a/vendor/github.com/golang/dep/internal/feedback/lockdiff.go b/vendor/github.com/golang/dep/internal/feedback/lockdiff.go
deleted file mode 100644
index f17dd05b52c614036c6140a8ce1e0eceafa9273f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/feedback/lockdiff.go
+++ /dev/null
@@ -1,256 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package feedback
-
-import (
-	"fmt"
-	"sort"
-	"strings"
-
-	"github.com/golang/dep/gps"
-)
-
-// StringDiff represents a modified string value.
-// * Added: Previous = nil, Current != nil
-// * Deleted: Previous != nil, Current = nil
-// * Modified: Previous != nil, Current != nil
-// * No Change: Previous = Current, or a nil pointer
-type StringDiff struct {
-	Previous string
-	Current  string
-}
-
-func (diff *StringDiff) String() string {
-	if diff == nil {
-		return ""
-	}
-
-	if diff.Previous == "" && diff.Current != "" {
-		return fmt.Sprintf("+ %s", diff.Current)
-	}
-
-	if diff.Previous != "" && diff.Current == "" {
-		return fmt.Sprintf("- %s", diff.Previous)
-	}
-
-	if diff.Previous != diff.Current {
-		return fmt.Sprintf("%s -> %s", diff.Previous, diff.Current)
-	}
-
-	return diff.Current
-}
-
-// LockDiff is the set of differences between an existing lock file and an updated lock file.
-// Fields are only populated when there is a difference, otherwise they are empty.
-type LockDiff struct {
-	Add    []LockedProjectDiff
-	Remove []LockedProjectDiff
-	Modify []LockedProjectDiff
-}
-
-// LockedProjectDiff contains the before and after snapshot of a project reference.
-// Fields are only populated when there is a difference, otherwise they are empty.
-type LockedProjectDiff struct {
-	Name     gps.ProjectRoot
-	Source   *StringDiff
-	Version  *StringDiff
-	Branch   *StringDiff
-	Revision *StringDiff
-	Packages []StringDiff
-}
-
-// DiffLocks compares two locks and identifies the differences between them.
-// Returns nil if there are no differences.
-func DiffLocks(l1, l2 gps.Lock) *LockDiff {
-	// Default nil locks to empty locks, so that we can still generate a diff
-	if l1 == nil {
-		l1 = gps.SimpleLock{}
-	}
-	if l2 == nil {
-		l2 = gps.SimpleLock{}
-	}
-
-	p1, p2 := l1.Projects(), l2.Projects()
-
-	p1 = sortLockedProjects(p1)
-	p2 = sortLockedProjects(p2)
-
-	diff := LockDiff{}
-
-	var i2next int
-	for i1 := 0; i1 < len(p1); i1++ {
-		lp1 := p1[i1]
-		pr1 := lp1.Ident().ProjectRoot
-
-		var matched bool
-		for i2 := i2next; i2 < len(p2); i2++ {
-			lp2 := p2[i2]
-			pr2 := lp2.Ident().ProjectRoot
-
-			switch strings.Compare(string(pr1), string(pr2)) {
-			case 0: // Found a matching project
-				matched = true
-				pdiff := DiffProjects(lp1, lp2)
-				if pdiff != nil {
-					diff.Modify = append(diff.Modify, *pdiff)
-				}
-				i2next = i2 + 1 // Don't evaluate to this again
-			case +1: // Found a new project
-				add := buildLockedProjectDiff(lp2)
-				diff.Add = append(diff.Add, add)
-				i2next = i2 + 1 // Don't evaluate to this again
-				continue        // Keep looking for a matching project
-			case -1: // Project has been removed, handled below
-				continue
-			}
-
-			break // Done evaluating this project, move onto the next
-		}
-
-		if !matched {
-			remove := buildLockedProjectDiff(lp1)
-			diff.Remove = append(diff.Remove, remove)
-		}
-	}
-
-	// Anything that still hasn't been evaluated are adds
-	for i2 := i2next; i2 < len(p2); i2++ {
-		lp2 := p2[i2]
-		add := buildLockedProjectDiff(lp2)
-		diff.Add = append(diff.Add, add)
-	}
-
-	if len(diff.Add) == 0 && len(diff.Remove) == 0 && len(diff.Modify) == 0 {
-		return nil // The locks are the equivalent
-	}
-	return &diff
-}
-
-func buildLockedProjectDiff(lp gps.LockedProject) LockedProjectDiff {
-	s2 := lp.Ident().Source
-	r2, b2, v2 := gps.VersionComponentStrings(lp.Version())
-
-	var rev, version, branch, source *StringDiff
-	if s2 != "" {
-		source = &StringDiff{Previous: s2, Current: s2}
-	}
-	if r2 != "" {
-		rev = &StringDiff{Previous: r2, Current: r2}
-	}
-	if b2 != "" {
-		branch = &StringDiff{Previous: b2, Current: b2}
-	}
-	if v2 != "" {
-		version = &StringDiff{Previous: v2, Current: v2}
-	}
-
-	add := LockedProjectDiff{
-		Name:     lp.Ident().ProjectRoot,
-		Source:   source,
-		Revision: rev,
-		Version:  version,
-		Branch:   branch,
-		Packages: make([]StringDiff, len(lp.Packages())),
-	}
-	for i, pkg := range lp.Packages() {
-		add.Packages[i] = StringDiff{Previous: pkg, Current: pkg}
-	}
-	return add
-}
-
-// DiffProjects compares two projects and identifies the differences between them.
-// Returns nil if there are no differences.
-func DiffProjects(lp1, lp2 gps.LockedProject) *LockedProjectDiff {
-	diff := LockedProjectDiff{Name: lp1.Ident().ProjectRoot}
-
-	s1 := lp1.Ident().Source
-	s2 := lp2.Ident().Source
-	if s1 != s2 {
-		diff.Source = &StringDiff{Previous: s1, Current: s2}
-	}
-
-	r1, b1, v1 := gps.VersionComponentStrings(lp1.Version())
-	r2, b2, v2 := gps.VersionComponentStrings(lp2.Version())
-	if r1 != r2 {
-		diff.Revision = &StringDiff{Previous: r1, Current: r2}
-	}
-	if b1 != b2 {
-		diff.Branch = &StringDiff{Previous: b1, Current: b2}
-	}
-	if v1 != v2 {
-		diff.Version = &StringDiff{Previous: v1, Current: v2}
-	}
-
-	p1 := lp1.Packages()
-	p2 := lp2.Packages()
-	if !sort.StringsAreSorted(p1) {
-		p1 = make([]string, len(p1))
-		copy(p1, lp1.Packages())
-		sort.Strings(p1)
-	}
-	if !sort.StringsAreSorted(p2) {
-		p2 = make([]string, len(p2))
-		copy(p2, lp2.Packages())
-		sort.Strings(p2)
-	}
-
-	var i2next int
-	for i1 := 0; i1 < len(p1); i1++ {
-		pkg1 := p1[i1]
-
-		var matched bool
-		for i2 := i2next; i2 < len(p2); i2++ {
-			pkg2 := p2[i2]
-
-			switch strings.Compare(pkg1, pkg2) {
-			case 0: // Found matching package
-				matched = true
-				i2next = i2 + 1 // Don't evaluate to this again
-			case +1: // Found a new package
-				add := StringDiff{Current: pkg2}
-				diff.Packages = append(diff.Packages, add)
-				i2next = i2 + 1 // Don't evaluate to this again
-				continue        // Keep looking for a match
-			case -1: // Package has been removed (handled below)
-				continue
-			}
-
-			break // Done evaluating this package, move onto the next
-		}
-
-		if !matched {
-			diff.Packages = append(diff.Packages, StringDiff{Previous: pkg1})
-		}
-	}
-
-	// Anything that still hasn't been evaluated are adds
-	for i2 := i2next; i2 < len(p2); i2++ {
-		pkg2 := p2[i2]
-		add := StringDiff{Current: pkg2}
-		diff.Packages = append(diff.Packages, add)
-	}
-
-	if diff.Source == nil && diff.Version == nil && diff.Revision == nil && len(diff.Packages) == 0 {
-		return nil // The projects are equivalent
-	}
-	return &diff
-}
-
-// sortLockedProjects returns a sorted copy of lps, or itself if already sorted.
-func sortLockedProjects(lps []gps.LockedProject) []gps.LockedProject {
-	if len(lps) <= 1 || sort.SliceIsSorted(lps, func(i, j int) bool {
-		return lps[i].Ident().Less(lps[j].Ident())
-	}) {
-		return lps
-	}
-
-	cp := make([]gps.LockedProject, len(lps))
-	copy(cp, lps)
-
-	sort.Slice(cp, func(i, j int) bool {
-		return cp[i].Ident().Less(cp[j].Ident())
-	})
-	return cp
-}
diff --git a/vendor/github.com/golang/dep/internal/fs/fs.go b/vendor/github.com/golang/dep/internal/fs/fs.go
deleted file mode 100644
index a1e44eee4fb58c7ee5e6561df1a62d5c99e7032c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/fs/fs.go
+++ /dev/null
@@ -1,694 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package fs
-
-import (
-	"io"
-	"io/ioutil"
-	"os"
-	"path/filepath"
-	"runtime"
-	"strings"
-	"syscall"
-	"unicode"
-
-	"github.com/pkg/errors"
-)
-
-// HasFilepathPrefix will determine if "path" starts with "prefix" from
-// the point of view of a filesystem.
-//
-// Unlike filepath.HasPrefix, this function is path-aware, meaning that
-// it knows that two directories /foo and /foobar are not the same
-// thing, and therefore HasFilepathPrefix("/foobar", "/foo") will return
-// false.
-//
-// This function also handles the case where the involved filesystems
-// are case-insensitive, meaning /foo/bar and /Foo/Bar correspond to the
-// same file. In that situation HasFilepathPrefix("/Foo/Bar", "/foo")
-// will return true. The implementation is *not* OS-specific, so a FAT32
-// filesystem mounted on Linux will be handled correctly.
-func HasFilepathPrefix(path, prefix string) (bool, error) {
-	// this function is more convoluted then ideal due to need for special
-	// handling of volume name/drive letter on Windows. vnPath and vnPrefix
-	// are first compared, and then used to initialize initial values of p and
-	// d which will be appended to for incremental checks using
-	// IsCaseSensitiveFilesystem and then equality.
-
-	// no need to check IsCaseSensitiveFilesystem because VolumeName return
-	// empty string on all non-Windows machines
-	vnPath := strings.ToLower(filepath.VolumeName(path))
-	vnPrefix := strings.ToLower(filepath.VolumeName(prefix))
-	if vnPath != vnPrefix {
-		return false, nil
-	}
-
-	// Because filepath.Join("c:","dir") returns "c:dir", we have to manually
-	// add path separator to drive letters. Also, we need to set the path root
-	// on *nix systems, since filepath.Join("", "dir") returns a relative path.
-	vnPath += string(os.PathSeparator)
-	vnPrefix += string(os.PathSeparator)
-
-	var dn string
-
-	if isDir, err := IsDir(path); err != nil {
-		return false, errors.Wrap(err, "failed to check filepath prefix")
-	} else if isDir {
-		dn = path
-	} else {
-		dn = filepath.Dir(path)
-	}
-
-	dn = filepath.Clean(dn)
-	prefix = filepath.Clean(prefix)
-
-	// [1:] in the lines below eliminates empty string on *nix and volume name on Windows
-	dirs := strings.Split(dn, string(os.PathSeparator))[1:]
-	prefixes := strings.Split(prefix, string(os.PathSeparator))[1:]
-
-	if len(prefixes) > len(dirs) {
-		return false, nil
-	}
-
-	// d,p are initialized with "/" on *nix and volume name on Windows
-	d := vnPath
-	p := vnPrefix
-
-	for i := range prefixes {
-		// need to test each component of the path for
-		// case-sensitiveness because on Unix we could have
-		// something like ext4 filesystem mounted on FAT
-		// mountpoint, mounted on ext4 filesystem, i.e. the
-		// problematic filesystem is not the last one.
-		caseSensitive, err := IsCaseSensitiveFilesystem(filepath.Join(d, dirs[i]))
-		if err != nil {
-			return false, errors.Wrap(err, "failed to check filepath prefix")
-		}
-		if caseSensitive {
-			d = filepath.Join(d, dirs[i])
-			p = filepath.Join(p, prefixes[i])
-		} else {
-			d = filepath.Join(d, strings.ToLower(dirs[i]))
-			p = filepath.Join(p, strings.ToLower(prefixes[i]))
-		}
-
-		if p != d {
-			return false, nil
-		}
-	}
-
-	return true, nil
-}
-
-// EquivalentPaths compares the paths passed to check if they are equivalent.
-// It respects the case-sensitivity of the underlying filesysyems.
-func EquivalentPaths(p1, p2 string) (bool, error) {
-	p1 = filepath.Clean(p1)
-	p2 = filepath.Clean(p2)
-
-	fi1, err := os.Stat(p1)
-	if err != nil {
-		return false, errors.Wrapf(err, "could not check for path equivalence")
-	}
-	fi2, err := os.Stat(p2)
-	if err != nil {
-		return false, errors.Wrapf(err, "could not check for path equivalence")
-	}
-
-	p1Filename, p2Filename := "", ""
-
-	if !fi1.IsDir() {
-		p1, p1Filename = filepath.Split(p1)
-	}
-	if !fi2.IsDir() {
-		p2, p2Filename = filepath.Split(p2)
-	}
-
-	if isPrefix1, err := HasFilepathPrefix(p1, p2); err != nil {
-		return false, errors.Wrap(err, "failed to check for path equivalence")
-	} else if isPrefix2, err := HasFilepathPrefix(p2, p1); err != nil {
-		return false, errors.Wrap(err, "failed to check for path equivalence")
-	} else if !isPrefix1 || !isPrefix2 {
-		return false, nil
-	}
-
-	if p1Filename != "" || p2Filename != "" {
-		caseSensitive, err := IsCaseSensitiveFilesystem(filepath.Join(p1, p1Filename))
-		if err != nil {
-			return false, errors.Wrap(err, "could not check for filesystem case-sensitivity")
-		}
-		if caseSensitive {
-			if p1Filename != p2Filename {
-				return false, nil
-			}
-		} else {
-			if strings.ToLower(p1Filename) != strings.ToLower(p2Filename) {
-				return false, nil
-			}
-		}
-	}
-
-	return true, nil
-}
-
-// RenameWithFallback attempts to rename a file or directory, but falls back to
-// copying in the event of a cross-device link error. If the fallback copy
-// succeeds, src is still removed, emulating normal rename behavior.
-func RenameWithFallback(src, dst string) error {
-	_, err := os.Stat(src)
-	if err != nil {
-		return errors.Wrapf(err, "cannot stat %s", src)
-	}
-
-	err = os.Rename(src, dst)
-	if err == nil {
-		return nil
-	}
-
-	return renameFallback(err, src, dst)
-}
-
-// renameByCopy attempts to rename a file or directory by copying it to the
-// destination and then removing the src thus emulating the rename behavior.
-func renameByCopy(src, dst string) error {
-	var cerr error
-	if dir, _ := IsDir(src); dir {
-		cerr = CopyDir(src, dst)
-		if cerr != nil {
-			cerr = errors.Wrap(cerr, "copying directory failed")
-		}
-	} else {
-		cerr = copyFile(src, dst)
-		if cerr != nil {
-			cerr = errors.Wrap(cerr, "copying file failed")
-		}
-	}
-
-	if cerr != nil {
-		return errors.Wrapf(cerr, "rename fallback failed: cannot rename %s to %s", src, dst)
-	}
-
-	return errors.Wrapf(os.RemoveAll(src), "cannot delete %s", src)
-}
-
-// IsCaseSensitiveFilesystem determines if the filesystem where dir
-// exists is case sensitive or not.
-//
-// CAVEAT: this function works by taking the last component of the given
-// path and flipping the case of the first letter for which case
-// flipping is a reversible operation (/foo/Bar → /foo/bar), then
-// testing for the existence of the new filename. There are two
-// possibilities:
-//
-// 1. The alternate filename does not exist. We can conclude that the
-// filesystem is case sensitive.
-//
-// 2. The filename happens to exist. We have to test if the two files
-// are the same file (case insensitive file system) or different ones
-// (case sensitive filesystem).
-//
-// If the input directory is such that the last component is composed
-// exclusively of case-less codepoints (e.g.  numbers), this function will
-// return false.
-func IsCaseSensitiveFilesystem(dir string) (bool, error) {
-	alt := filepath.Join(filepath.Dir(dir), genTestFilename(filepath.Base(dir)))
-
-	dInfo, err := os.Stat(dir)
-	if err != nil {
-		return false, errors.Wrap(err, "could not determine the case-sensitivity of the filesystem")
-	}
-
-	aInfo, err := os.Stat(alt)
-	if err != nil {
-		// If the file doesn't exists, assume we are on a case-sensitive filesystem.
-		if os.IsNotExist(err) {
-			return true, nil
-		}
-
-		return false, errors.Wrap(err, "could not determine the case-sensitivity of the filesystem")
-	}
-
-	return !os.SameFile(dInfo, aInfo), nil
-}
-
-// genTestFilename returns a string with at most one rune case-flipped.
-//
-// The transformation is applied only to the first rune that can be
-// reversibly case-flipped, meaning:
-//
-// * A lowercase rune for which it's true that lower(upper(r)) == r
-// * An uppercase rune for which it's true that upper(lower(r)) == r
-//
-// All the other runes are left intact.
-func genTestFilename(str string) string {
-	flip := true
-	return strings.Map(func(r rune) rune {
-		if flip {
-			if unicode.IsLower(r) {
-				u := unicode.ToUpper(r)
-				if unicode.ToLower(u) == r {
-					r = u
-					flip = false
-				}
-			} else if unicode.IsUpper(r) {
-				l := unicode.ToLower(r)
-				if unicode.ToUpper(l) == r {
-					r = l
-					flip = false
-				}
-			}
-		}
-		return r
-	}, str)
-}
-
-var errPathNotDir = errors.New("given path is not a directory")
-
-// ReadActualFilenames is used to determine the actual file names in given directory.
-//
-// On case sensitive file systems like ext4, it will check if those files exist using
-// `os.Stat` and return a map with key and value as filenames which exist in the folder.
-//
-// Otherwise, it reads the contents of the directory and returns a map which has the
-// given file name as the key and actual filename as the value(if it was found).
-func ReadActualFilenames(dirPath string, names []string) (map[string]string, error) {
-	actualFilenames := make(map[string]string, len(names))
-	if len(names) == 0 {
-		// This isn't expected to happen for current usage. Adding edge case handling,
-		// as it may be useful in future.
-		return actualFilenames, nil
-	}
-	// First, check that the given path is valid and it is a directory
-	dirStat, err := os.Stat(dirPath)
-	if err != nil {
-		return nil, errors.Wrap(err, "failed to read actual filenames")
-	}
-
-	if !dirStat.IsDir() {
-		return nil, errPathNotDir
-	}
-
-	// Ideally, we would use `os.Stat` for getting the actual file names but that returns
-	// the name we passed in as an argument and not the actual filename. So we are forced
-	// to list the directory contents and check against that. Since this check is costly,
-	// we do it only if absolutely necessary.
-	caseSensitive, err := IsCaseSensitiveFilesystem(dirPath)
-	if err != nil {
-		return nil, errors.Wrap(err, "failed to read actual filenames")
-	}
-	if caseSensitive {
-		// There will be no difference between actual filename and given filename. So
-		// just check if those files exist.
-		for _, name := range names {
-			_, err := os.Stat(filepath.Join(dirPath, name))
-			if err == nil {
-				actualFilenames[name] = name
-			} else if !os.IsNotExist(err) {
-				// Some unexpected err, wrap and return it.
-				return nil, errors.Wrap(err, "failed to read actual filenames")
-			}
-		}
-		return actualFilenames, nil
-	}
-
-	dir, err := os.Open(dirPath)
-	if err != nil {
-		return nil, errors.Wrap(err, "failed to read actual filenames")
-	}
-	defer dir.Close()
-
-	// Pass -1 to read all filenames in directory
-	filenames, err := dir.Readdirnames(-1)
-	if err != nil {
-		return nil, errors.Wrap(err, "failed to read actual filenames")
-	}
-
-	// namesMap holds the mapping from lowercase name to search name. Using this, we can
-	// avoid repeatedly looping through names.
-	namesMap := make(map[string]string, len(names))
-	for _, name := range names {
-		namesMap[strings.ToLower(name)] = name
-	}
-
-	for _, filename := range filenames {
-		searchName, ok := namesMap[strings.ToLower(filename)]
-		if ok {
-			// We are interested in this file, case insensitive match successful.
-			actualFilenames[searchName] = filename
-			if len(actualFilenames) == len(names) {
-				// We found all that we were looking for.
-				return actualFilenames, nil
-			}
-		}
-	}
-	return actualFilenames, nil
-}
-
-var (
-	errSrcNotDir = errors.New("source is not a directory")
-	errDstExist  = errors.New("destination already exists")
-)
-
-// CopyDir recursively copies a directory tree, attempting to preserve permissions.
-// Source directory must exist, destination directory must *not* exist.
-func CopyDir(src, dst string) error {
-	src = filepath.Clean(src)
-	dst = filepath.Clean(dst)
-
-	// We use os.Lstat() here to ensure we don't fall in a loop where a symlink
-	// actually links to a one of its parent directories.
-	fi, err := os.Lstat(src)
-	if err != nil {
-		return err
-	}
-	if !fi.IsDir() {
-		return errSrcNotDir
-	}
-
-	_, err = os.Stat(dst)
-	if err != nil && !os.IsNotExist(err) {
-		return err
-	}
-	if err == nil {
-		return errDstExist
-	}
-
-	if err = os.MkdirAll(dst, fi.Mode()); err != nil {
-		return errors.Wrapf(err, "cannot mkdir %s", dst)
-	}
-
-	entries, err := ioutil.ReadDir(src)
-	if err != nil {
-		return errors.Wrapf(err, "cannot read directory %s", dst)
-	}
-
-	for _, entry := range entries {
-		srcPath := filepath.Join(src, entry.Name())
-		dstPath := filepath.Join(dst, entry.Name())
-
-		if entry.IsDir() {
-			if err = CopyDir(srcPath, dstPath); err != nil {
-				return errors.Wrap(err, "copying directory failed")
-			}
-		} else {
-			// This will include symlinks, which is what we want when
-			// copying things.
-			if err = copyFile(srcPath, dstPath); err != nil {
-				return errors.Wrap(err, "copying file failed")
-			}
-		}
-	}
-
-	return nil
-}
-
-// copyFile copies the contents of the file named src to the file named
-// by dst. The file will be created if it does not already exist. If the
-// destination file exists, all its contents will be replaced by the contents
-// of the source file. The file mode will be copied from the source.
-func copyFile(src, dst string) (err error) {
-	if sym, err := IsSymlink(src); err != nil {
-		return errors.Wrap(err, "symlink check failed")
-	} else if sym {
-		if err := cloneSymlink(src, dst); err != nil {
-			if runtime.GOOS == "windows" {
-				// If cloning the symlink fails on Windows because the user
-				// does not have the required privileges, ignore the error and
-				// fall back to copying the file contents.
-				//
-				// ERROR_PRIVILEGE_NOT_HELD is 1314 (0x522):
-				// https://msdn.microsoft.com/en-us/library/windows/desktop/ms681385(v=vs.85).aspx
-				if lerr, ok := err.(*os.LinkError); ok && lerr.Err != syscall.Errno(1314) {
-					return err
-				}
-			} else {
-				return err
-			}
-		} else {
-			return nil
-		}
-	}
-
-	in, err := os.Open(src)
-	if err != nil {
-		return
-	}
-	defer in.Close()
-
-	out, err := os.Create(dst)
-	if err != nil {
-		return
-	}
-
-	if _, err = io.Copy(out, in); err != nil {
-		out.Close()
-		return
-	}
-
-	// Check for write errors on Close
-	if err = out.Close(); err != nil {
-		return
-	}
-
-	si, err := os.Stat(src)
-	if err != nil {
-		return
-	}
-
-	// Temporary fix for Go < 1.9
-	//
-	// See: https://github.com/golang/dep/issues/774
-	// and https://github.com/golang/go/issues/20829
-	if runtime.GOOS == "windows" {
-		dst = fixLongPath(dst)
-	}
-	err = os.Chmod(dst, si.Mode())
-
-	return
-}
-
-// cloneSymlink will create a new symlink that points to the resolved path of sl.
-// If sl is a relative symlink, dst will also be a relative symlink.
-func cloneSymlink(sl, dst string) error {
-	resolved, err := os.Readlink(sl)
-	if err != nil {
-		return err
-	}
-
-	return os.Symlink(resolved, dst)
-}
-
-// EnsureDir tries to ensure that a directory is present at the given path. It first
-// checks if the directory already exists at the given path. If there isn't one, it tries
-// to create it with the given permissions. However, it does not try to create the
-// directory recursively.
-func EnsureDir(path string, perm os.FileMode) error {
-	_, err := IsDir(path)
-
-	if os.IsNotExist(err) {
-		err = os.Mkdir(path, perm)
-		if err != nil {
-			return errors.Wrapf(err, "failed to ensure directory at %q", path)
-		}
-	}
-
-	return err
-}
-
-// IsDir determines is the path given is a directory or not.
-func IsDir(name string) (bool, error) {
-	fi, err := os.Stat(name)
-	if err != nil {
-		return false, err
-	}
-	if !fi.IsDir() {
-		return false, errors.Errorf("%q is not a directory", name)
-	}
-	return true, nil
-}
-
-// IsNonEmptyDir determines if the path given is a non-empty directory or not.
-func IsNonEmptyDir(name string) (bool, error) {
-	isDir, err := IsDir(name)
-	if err != nil && !os.IsNotExist(err) {
-		return false, err
-	} else if !isDir {
-		return false, nil
-	}
-
-	// Get file descriptor
-	f, err := os.Open(name)
-	if err != nil {
-		return false, err
-	}
-	defer f.Close()
-
-	// Query only 1 child. EOF if no children.
-	_, err = f.Readdirnames(1)
-	switch err {
-	case io.EOF:
-		return false, nil
-	case nil:
-		return true, nil
-	default:
-		return false, err
-	}
-}
-
-// IsRegular determines if the path given is a regular file or not.
-func IsRegular(name string) (bool, error) {
-	fi, err := os.Stat(name)
-	if os.IsNotExist(err) {
-		return false, nil
-	}
-	if err != nil {
-		return false, err
-	}
-	mode := fi.Mode()
-	if mode&os.ModeType != 0 {
-		return false, errors.Errorf("%q is a %v, expected a file", name, mode)
-	}
-	return true, nil
-}
-
-// IsSymlink determines if the given path is a symbolic link.
-func IsSymlink(path string) (bool, error) {
-	l, err := os.Lstat(path)
-	if err != nil {
-		return false, err
-	}
-
-	return l.Mode()&os.ModeSymlink == os.ModeSymlink, nil
-}
-
-// fixLongPath returns the extended-length (\\?\-prefixed) form of
-// path when needed, in order to avoid the default 260 character file
-// path limit imposed by Windows. If path is not easily converted to
-// the extended-length form (for example, if path is a relative path
-// or contains .. elements), or is short enough, fixLongPath returns
-// path unmodified.
-//
-// See https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#maxpath
-func fixLongPath(path string) string {
-	// Do nothing (and don't allocate) if the path is "short".
-	// Empirically (at least on the Windows Server 2013 builder),
-	// the kernel is arbitrarily okay with < 248 bytes. That
-	// matches what the docs above say:
-	// "When using an API to create a directory, the specified
-	// path cannot be so long that you cannot append an 8.3 file
-	// name (that is, the directory name cannot exceed MAX_PATH
-	// minus 12)." Since MAX_PATH is 260, 260 - 12 = 248.
-	//
-	// The MSDN docs appear to say that a normal path that is 248 bytes long
-	// will work; empirically the path must be less then 248 bytes long.
-	if len(path) < 248 {
-		// Don't fix. (This is how Go 1.7 and earlier worked,
-		// not automatically generating the \\?\ form)
-		return path
-	}
-
-	// The extended form begins with \\?\, as in
-	// \\?\c:\windows\foo.txt or \\?\UNC\server\share\foo.txt.
-	// The extended form disables evaluation of . and .. path
-	// elements and disables the interpretation of / as equivalent
-	// to \. The conversion here rewrites / to \ and elides
-	// . elements as well as trailing or duplicate separators. For
-	// simplicity it avoids the conversion entirely for relative
-	// paths or paths containing .. elements. For now,
-	// \\server\share paths are not converted to
-	// \\?\UNC\server\share paths because the rules for doing so
-	// are less well-specified.
-	if len(path) >= 2 && path[:2] == `\\` {
-		// Don't canonicalize UNC paths.
-		return path
-	}
-	if !isAbs(path) {
-		// Relative path
-		return path
-	}
-
-	const prefix = `\\?`
-
-	pathbuf := make([]byte, len(prefix)+len(path)+len(`\`))
-	copy(pathbuf, prefix)
-	n := len(path)
-	r, w := 0, len(prefix)
-	for r < n {
-		switch {
-		case os.IsPathSeparator(path[r]):
-			// empty block
-			r++
-		case path[r] == '.' && (r+1 == n || os.IsPathSeparator(path[r+1])):
-			// /./
-			r++
-		case r+1 < n && path[r] == '.' && path[r+1] == '.' && (r+2 == n || os.IsPathSeparator(path[r+2])):
-			// /../ is currently unhandled
-			return path
-		default:
-			pathbuf[w] = '\\'
-			w++
-			for ; r < n && !os.IsPathSeparator(path[r]); r++ {
-				pathbuf[w] = path[r]
-				w++
-			}
-		}
-	}
-	// A drive's root directory needs a trailing \
-	if w == len(`\\?\c:`) {
-		pathbuf[w] = '\\'
-		w++
-	}
-	return string(pathbuf[:w])
-}
-
-func isAbs(path string) (b bool) {
-	v := volumeName(path)
-	if v == "" {
-		return false
-	}
-	path = path[len(v):]
-	if path == "" {
-		return false
-	}
-	return os.IsPathSeparator(path[0])
-}
-
-func volumeName(path string) (v string) {
-	if len(path) < 2 {
-		return ""
-	}
-	// with drive letter
-	c := path[0]
-	if path[1] == ':' &&
-		('0' <= c && c <= '9' || 'a' <= c && c <= 'z' ||
-			'A' <= c && c <= 'Z') {
-		return path[:2]
-	}
-	// is it UNC
-	if l := len(path); l >= 5 && os.IsPathSeparator(path[0]) && os.IsPathSeparator(path[1]) &&
-		!os.IsPathSeparator(path[2]) && path[2] != '.' {
-		// first, leading `\\` and next shouldn't be `\`. its server name.
-		for n := 3; n < l-1; n++ {
-			// second, next '\' shouldn't be repeated.
-			if os.IsPathSeparator(path[n]) {
-				n++
-				// third, following something characters. its share name.
-				if !os.IsPathSeparator(path[n]) {
-					if path[n] == '.' {
-						break
-					}
-					for ; n < l; n++ {
-						if os.IsPathSeparator(path[n]) {
-							break
-						}
-					}
-					return path[:n]
-				}
-				break
-			}
-		}
-	}
-	return ""
-}
diff --git a/vendor/github.com/golang/dep/internal/fs/rename.go b/vendor/github.com/golang/dep/internal/fs/rename.go
deleted file mode 100644
index c48f69f1a0f2ff97ce5c729cd9152f3a6eff664a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/fs/rename.go
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build !windows
-
-package fs
-
-import (
-	"os"
-	"syscall"
-
-	"github.com/pkg/errors"
-)
-
-// renameFallback attempts to determine the appropriate fallback to failed rename
-// operation depending on the resulting error.
-func renameFallback(err error, src, dst string) error {
-	// Rename may fail if src and dst are on different devices; fall back to
-	// copy if we detect that case. syscall.EXDEV is the common name for the
-	// cross device link error which has varying output text across different
-	// operating systems.
-	terr, ok := err.(*os.LinkError)
-	if !ok {
-		return err
-	} else if terr.Err != syscall.EXDEV {
-		return errors.Wrapf(terr, "link error: cannot rename %s to %s", src, dst)
-	}
-
-	return renameByCopy(src, dst)
-}
diff --git a/vendor/github.com/golang/dep/internal/fs/rename_windows.go b/vendor/github.com/golang/dep/internal/fs/rename_windows.go
deleted file mode 100644
index 50829a5cd0ac4c4c0c482fd0a891ad964eba8f4c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/fs/rename_windows.go
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build windows
-
-package fs
-
-import (
-	"os"
-	"syscall"
-
-	"github.com/pkg/errors"
-)
-
-// renameFallback attempts to determine the appropriate fallback to failed rename
-// operation depending on the resulting error.
-func renameFallback(err error, src, dst string) error {
-	// Rename may fail if src and dst are on different devices; fall back to
-	// copy if we detect that case. syscall.EXDEV is the common name for the
-	// cross device link error which has varying output text across different
-	// operating systems.
-	terr, ok := err.(*os.LinkError)
-	if !ok {
-		return err
-	}
-
-	if terr.Err != syscall.EXDEV {
-		// In windows it can drop down to an operating system call that
-		// returns an operating system error with a different number and
-		// message. Checking for that as a fall back.
-		noerr, ok := terr.Err.(syscall.Errno)
-
-		// 0x11 (ERROR_NOT_SAME_DEVICE) is the windows error.
-		// See https://msdn.microsoft.com/en-us/library/cc231199.aspx
-		if ok && noerr != 0x11 {
-			return errors.Wrapf(terr, "link error: cannot rename %s to %s", src, dst)
-		}
-	}
-
-	return renameByCopy(src, dst)
-}
diff --git a/vendor/github.com/golang/dep/internal/fs/testdata/symlinks/file-symlink b/vendor/github.com/golang/dep/internal/fs/testdata/symlinks/file-symlink
deleted file mode 120000
index 4c52274de03d033b81624d6e4166dad4ed318305..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/fs/testdata/symlinks/file-symlink
+++ /dev/null
@@ -1 +0,0 @@
-../test.file
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/internal/fs/testdata/symlinks/invalid-symlink b/vendor/github.com/golang/dep/internal/fs/testdata/symlinks/invalid-symlink
deleted file mode 120000
index 0edf4f301b10b187dc83623bd7355ddabde08b31..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/fs/testdata/symlinks/invalid-symlink
+++ /dev/null
@@ -1 +0,0 @@
-/non/existing/file
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/internal/fs/testdata/symlinks/windows-file-symlink b/vendor/github.com/golang/dep/internal/fs/testdata/symlinks/windows-file-symlink
deleted file mode 120000
index af1d6c8f573953098bec93dace071d9c84880297..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/fs/testdata/symlinks/windows-file-symlink
+++ /dev/null
@@ -1 +0,0 @@
-C:/Users/ibrahim/go/src/github.com/golang/dep/internal/fs/testdata/test.file
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/internal/fs/testdata/test.file b/vendor/github.com/golang/dep/internal/fs/testdata/test.file
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/internal/importers/base/importer.go b/vendor/github.com/golang/dep/internal/importers/base/importer.go
deleted file mode 100644
index 9a5f5f856fee6c6d886cdb45a3692ffae7152277..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/base/importer.go
+++ /dev/null
@@ -1,333 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package base
-
-import (
-	"log"
-	"strings"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	fb "github.com/golang/dep/internal/feedback"
-	"github.com/pkg/errors"
-)
-
-// Importer provides a common implementation for importing from other
-// dependency managers.
-type Importer struct {
-	SourceManager gps.SourceManager
-	Logger        *log.Logger
-	Verbose       bool
-	Manifest      *dep.Manifest
-	Lock          *dep.Lock
-}
-
-// NewImporter creates a new Importer for embedding in an importer.
-func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager) *Importer {
-	return &Importer{
-		Logger:        logger,
-		Verbose:       verbose,
-		Manifest:      dep.NewManifest(),
-		Lock:          &dep.Lock{},
-		SourceManager: sm,
-	}
-}
-
-// isTag determines if the specified value is a tag (plain or semver).
-func (i *Importer) isTag(pi gps.ProjectIdentifier, value string) (bool, gps.Version, error) {
-	versions, err := i.SourceManager.ListVersions(pi)
-	if err != nil {
-		return false, nil, errors.Wrapf(err, "unable to list versions for %s(%s)", pi.ProjectRoot, pi.Source)
-	}
-
-	for _, version := range versions {
-		if version.Type() != gps.IsVersion && version.Type() != gps.IsSemver {
-			continue
-		}
-
-		if value == version.String() {
-			return true, version, nil
-		}
-	}
-
-	return false, nil, nil
-}
-
-// lookupVersionForLockedProject figures out the appropriate version for a locked
-// project based on the locked revision and the constraint from the manifest.
-// First try matching the revision to a version, then try the constraint from the
-// manifest, then finally the revision.
-func (i *Importer) lookupVersionForLockedProject(pi gps.ProjectIdentifier, c gps.Constraint, rev gps.Revision) (gps.Version, error) {
-	// Find the version that goes with this revision, if any
-	versions, err := i.SourceManager.ListVersions(pi)
-	if err != nil {
-		return rev, errors.Wrapf(err, "Unable to lookup the version represented by %s in %s(%s). Falling back to locking the revision only.", rev, pi.ProjectRoot, pi.Source)
-	}
-
-	var branchConstraint gps.PairedVersion
-	gps.SortPairedForUpgrade(versions) // Sort versions in asc order
-	var matches []gps.Version
-	for _, v := range versions {
-		if v.Revision() == rev {
-			matches = append(matches, v)
-		}
-		if c != nil && v.Type() == gps.IsBranch && v.String() == c.String() {
-			branchConstraint = v
-		}
-	}
-
-	// Try to narrow down the matches with the constraint. Otherwise return the first match.
-	if len(matches) > 0 {
-		if c != nil {
-			for _, v := range matches {
-				if i.testConstraint(c, v) {
-					return v, nil
-				}
-			}
-		}
-		return matches[0], nil
-	}
-
-	// Use branch constraint from the manifest
-	if branchConstraint != nil {
-		return branchConstraint.Unpair().Pair(rev), nil
-	}
-
-	// Give up and lock only to a revision
-	return rev, nil
-}
-
-// ImportedPackage is a common intermediate representation of a package imported
-// from an external tool's configuration.
-type ImportedPackage struct {
-	// Required. The package path, not necessarily the project root.
-	Name string
-
-	// Required. Text representing a revision or tag.
-	LockHint string
-
-	// Optional. Alternative source, or fork, for the project.
-	Source string
-
-	// Optional. Text representing a branch or version.
-	ConstraintHint string
-}
-
-// importedProject is a consolidated representation of a set of imported packages
-// for the same project root.
-type importedProject struct {
-	Root gps.ProjectRoot
-	ImportedPackage
-}
-
-// loadPackages consolidates all package references into a set of project roots.
-func (i *Importer) loadPackages(packages []ImportedPackage) []importedProject {
-	// preserve the original order of the packages so that messages that
-	// are printed as they are processed are in a consistent order.
-	orderedProjects := make([]importedProject, 0, len(packages))
-
-	projects := make(map[gps.ProjectRoot]*importedProject, len(packages))
-	for _, pkg := range packages {
-		pr, err := i.SourceManager.DeduceProjectRoot(pkg.Name)
-		if err != nil {
-			i.Logger.Printf(
-				"  Warning: Skipping project. Cannot determine the project root for %s: %s\n",
-				pkg.Name, err,
-			)
-			continue
-		}
-		pkg.Name = string(pr)
-
-		prj, exists := projects[pr]
-		if !exists {
-			prj := importedProject{pr, pkg}
-			orderedProjects = append(orderedProjects, prj)
-			projects[pr] = &orderedProjects[len(orderedProjects)-1]
-			continue
-		}
-
-		// The config found first "wins", though we allow for incrementally
-		// setting each field because some importers have a config and lock file.
-		if prj.Source == "" && pkg.Source != "" {
-			prj.Source = pkg.Source
-		}
-
-		if prj.ConstraintHint == "" && pkg.ConstraintHint != "" {
-			prj.ConstraintHint = pkg.ConstraintHint
-		}
-
-		if prj.LockHint == "" && pkg.LockHint != "" {
-			prj.LockHint = pkg.LockHint
-		}
-	}
-
-	return orderedProjects
-}
-
-// ImportPackages loads imported packages into the manifest and lock.
-// - defaultConstraintFromLock specifies if a constraint should be defaulted
-//   based on the locked version when there wasn't a constraint hint.
-//
-// Rules:
-// * When a constraint is ignored, default to *.
-// * HEAD revisions default to the matching branch.
-// * Semantic versions default to ^VERSION.
-// * Revision constraints are ignored.
-// * Versions that don't satisfy the constraint, drop the constraint.
-// * Untagged revisions ignore non-branch constraint hints.
-func (i *Importer) ImportPackages(packages []ImportedPackage, defaultConstraintFromLock bool) {
-	projects := i.loadPackages(packages)
-
-	for _, prj := range projects {
-		source := prj.Source
-		if len(source) > 0 {
-			isDefault, err := i.isDefaultSource(prj.Root, source)
-			if err != nil {
-				i.Logger.Printf("  Ignoring imported source %s for %s: %s", source, prj.Root, err.Error())
-				source = ""
-			} else if isDefault {
-				source = ""
-			} else if strings.Contains(source, "/vendor/") {
-				i.Logger.Printf("  Ignoring imported source %s for %s because vendored sources aren't supported", source, prj.Root)
-				source = ""
-			}
-		}
-
-		pc := gps.ProjectConstraint{
-			Ident: gps.ProjectIdentifier{
-				ProjectRoot: prj.Root,
-				Source:      source,
-			},
-		}
-
-		var err error
-		pc.Constraint, err = i.SourceManager.InferConstraint(prj.ConstraintHint, pc.Ident)
-		if err != nil {
-			pc.Constraint = gps.Any()
-		}
-
-		var version gps.Version
-		if prj.LockHint != "" {
-			var isTag bool
-			// Determine if the lock hint is a revision or tag
-			isTag, version, err = i.isTag(pc.Ident, prj.LockHint)
-			if err != nil {
-				i.Logger.Printf(
-					"  Warning: Skipping project. Unable to import lock %q for %v: %s\n",
-					prj.LockHint, pc.Ident, err,
-				)
-				continue
-			}
-			// If the hint is a revision, check if it is tagged
-			if !isTag {
-				revision := gps.Revision(prj.LockHint)
-				version, err = i.lookupVersionForLockedProject(pc.Ident, pc.Constraint, revision)
-				if err != nil {
-					version = nil
-					i.Logger.Println(err)
-				}
-			}
-
-			// Default the constraint based on the locked version
-			if defaultConstraintFromLock && prj.ConstraintHint == "" && version != nil {
-				c := i.convertToConstraint(version)
-				if c != nil {
-					pc.Constraint = c
-				}
-			}
-		}
-
-		// Ignore pinned constraints
-		if i.isConstraintPinned(pc.Constraint) {
-			if i.Verbose {
-				i.Logger.Printf("  Ignoring pinned constraint %v for %v.\n", pc.Constraint, pc.Ident)
-			}
-			pc.Constraint = gps.Any()
-		}
-
-		// Ignore constraints which conflict with the locked revision, so that
-		// solve doesn't later change the revision to satisfy the constraint.
-		if !i.testConstraint(pc.Constraint, version) {
-			if i.Verbose {
-				i.Logger.Printf("  Ignoring constraint %v for %v because it would invalidate the locked version %v.\n", pc.Constraint, pc.Ident, version)
-			}
-			pc.Constraint = gps.Any()
-		}
-
-		// Add constraint to manifest that is not empty (has a branch, version or source)
-		if !gps.IsAny(pc.Constraint) || pc.Ident.Source != "" {
-			i.Manifest.Constraints[pc.Ident.ProjectRoot] = gps.ProjectProperties{
-				Source:     pc.Ident.Source,
-				Constraint: pc.Constraint,
-			}
-			fb.NewConstraintFeedback(pc, fb.DepTypeImported).LogFeedback(i.Logger)
-		}
-
-		if version != nil {
-			lp := gps.NewLockedProject(pc.Ident, version, nil)
-			i.Lock.P = append(i.Lock.P, lp)
-			fb.NewLockedProjectFeedback(lp, fb.DepTypeImported).LogFeedback(i.Logger)
-		}
-	}
-}
-
-// isConstraintPinned returns if a constraint is pinned to a specific revision.
-func (i *Importer) isConstraintPinned(c gps.Constraint) bool {
-	if version, isVersion := c.(gps.Version); isVersion {
-		switch version.Type() {
-		case gps.IsRevision, gps.IsVersion:
-			return true
-		}
-	}
-	return false
-}
-
-// testConstraint verifies that the constraint won't invalidate the locked version.
-func (i *Importer) testConstraint(c gps.Constraint, v gps.Version) bool {
-	// Assume branch constraints are satisfied
-	if version, isVersion := c.(gps.Version); isVersion {
-		if version.Type() == gps.IsBranch {
-
-			return true
-		}
-	}
-
-	return c.Matches(v)
-}
-
-// convertToConstraint turns a version into a constraint.
-// Semver tags are converted to a range with the caret operator.
-func (i *Importer) convertToConstraint(v gps.Version) gps.Constraint {
-	if v.Type() == gps.IsSemver {
-		c, err := gps.NewSemverConstraintIC(v.String())
-		if err != nil {
-			// This should never fail, because the type is semver.
-			// If it does fail somehow, don't let that impact the import.
-			return nil
-		}
-		return c
-	}
-	return v
-}
-
-func (i *Importer) isDefaultSource(projectRoot gps.ProjectRoot, sourceURL string) (bool, error) {
-	// this condition is mainly for gopkg.in imports,
-	// as some importers specify the repository url as https://gopkg.in/...,
-	// but SourceManager.SourceURLsForPath() returns https://github.com/... urls for gopkg.in
-	if sourceURL == "https://"+string(projectRoot) {
-		return true, nil
-	}
-
-	sourceURLs, err := i.SourceManager.SourceURLsForPath(string(projectRoot))
-	if err != nil {
-		return false, err
-	}
-	// The first url in the slice will be the default one (usually https://...)
-	if len(sourceURLs) > 0 && sourceURL == sourceURLs[0].String() {
-		return true, nil
-	}
-
-	return false, nil
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/glide/importer.go b/vendor/github.com/golang/dep/internal/importers/glide/importer.go
deleted file mode 100644
index 9bad5c54149f942e2592937e715fa74c314e0ef3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/glide/importer.go
+++ /dev/null
@@ -1,211 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package glide
-
-import (
-	"bytes"
-	"io/ioutil"
-	"log"
-	"os"
-	"path"
-	"path/filepath"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/fs"
-	"github.com/golang/dep/internal/importers/base"
-	"github.com/pkg/errors"
-	"gopkg.in/yaml.v2"
-)
-
-const glideYamlName = "glide.yaml"
-const glideLockName = "glide.lock"
-
-// Importer imports glide configuration into the dep configuration format.
-type Importer struct {
-	*base.Importer
-	glideConfig glideYaml
-	glideLock   glideLock
-	lockFound   bool
-}
-
-// NewImporter for glide.
-func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager) *Importer {
-	return &Importer{Importer: base.NewImporter(logger, verbose, sm)}
-}
-
-type glideYaml struct {
-	Name        string         `yaml:"package"`
-	Ignores     []string       `yaml:"ignore"`
-	ExcludeDirs []string       `yaml:"excludeDirs"`
-	Imports     []glidePackage `yaml:"import"`
-	TestImports []glidePackage `yaml:"testImport"`
-}
-
-type glideLock struct {
-	Imports     []glideLockedPackage `yaml:"imports"`
-	TestImports []glideLockedPackage `yaml:"testImports"`
-}
-
-type glidePackage struct {
-	Name       string `yaml:"package"`
-	Reference  string `yaml:"version"` // could contain a semver, tag or branch
-	Repository string `yaml:"repo"`
-
-	// Unsupported fields that we will warn if used
-	Subpackages []string `yaml:"subpackages"`
-	OS          string   `yaml:"os"`
-	Arch        string   `yaml:"arch"`
-}
-
-type glideLockedPackage struct {
-	Name       string `yaml:"name"`
-	Revision   string `yaml:"version"`
-	Repository string `yaml:"repo"`
-}
-
-// Name of the importer.
-func (g *Importer) Name() string {
-	return "glide"
-}
-
-// HasDepMetadata checks if a directory contains config that the importer can handle.
-func (g *Importer) HasDepMetadata(dir string) bool {
-	// Only require glide.yaml, the lock is optional
-	y := filepath.Join(dir, glideYamlName)
-	if _, err := os.Stat(y); err != nil {
-		return false
-	}
-
-	return true
-}
-
-// Import the config found in the directory.
-func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock, error) {
-	err := g.load(dir)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	m, l := g.convert(pr)
-	return m, l, nil
-}
-
-// load the glide configuration files. Failure to load `glide.yaml` is considered
-// unrecoverable and an error is returned for it. But if there is any error while trying
-// to load the lock file, only a warning is logged.
-func (g *Importer) load(projectDir string) error {
-	g.Logger.Println("Detected glide configuration files...")
-	y := filepath.Join(projectDir, glideYamlName)
-	if g.Verbose {
-		g.Logger.Printf("  Loading %s", y)
-	}
-	yb, err := ioutil.ReadFile(y)
-	if err != nil {
-		return errors.Wrapf(err, "unable to read %s", y)
-	}
-	err = yaml.Unmarshal(yb, &g.glideConfig)
-	if err != nil {
-		return errors.Wrapf(err, "unable to parse %s", y)
-	}
-
-	l := filepath.Join(projectDir, glideLockName)
-	if exists, _ := fs.IsRegular(l); exists {
-		if g.Verbose {
-			g.Logger.Printf("  Loading %s", l)
-		}
-		lb, err := ioutil.ReadFile(l)
-		if err != nil {
-			g.Logger.Printf("  Warning: Ignoring lock file. Unable to read %s: %s\n", l, err)
-			return nil
-		}
-		lock := glideLock{}
-		err = yaml.Unmarshal(lb, &lock)
-		if err != nil {
-			g.Logger.Printf("  Warning: Ignoring lock file. Unable to parse %s: %s\n", l, err)
-			return nil
-		}
-		g.lockFound = true
-		g.glideLock = lock
-	}
-
-	return nil
-}
-
-// convert the glide configuration files into dep configuration files.
-func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock) {
-	projectName := string(pr)
-
-	task := bytes.NewBufferString("Converting from glide.yaml")
-	if g.lockFound {
-		task.WriteString(" and glide.lock")
-	}
-	task.WriteString("...")
-	g.Logger.Println(task)
-
-	numPkgs := len(g.glideConfig.Imports) + len(g.glideConfig.TestImports) + len(g.glideLock.Imports) + len(g.glideLock.TestImports)
-	packages := make([]base.ImportedPackage, 0, numPkgs)
-
-	// Constraints
-	for _, pkg := range append(g.glideConfig.Imports, g.glideConfig.TestImports...) {
-		// Validate
-		if pkg.Name == "" {
-			g.Logger.Println(
-				"  Warning: Skipping project. Invalid glide configuration, Name is required",
-			)
-			continue
-		}
-
-		// Warn
-		if g.Verbose {
-			if pkg.OS != "" {
-				g.Logger.Printf("  The %s package specified an os, but that isn't supported by dep yet, and will be ignored. See https://github.com/golang/dep/issues/291.\n", pkg.Name)
-			}
-			if pkg.Arch != "" {
-				g.Logger.Printf("  The %s package specified an arch, but that isn't supported by dep yet, and will be ignored. See https://github.com/golang/dep/issues/291.\n", pkg.Name)
-			}
-		}
-
-		ip := base.ImportedPackage{
-			Name:           pkg.Name,
-			Source:         pkg.Repository,
-			ConstraintHint: pkg.Reference,
-		}
-		packages = append(packages, ip)
-	}
-
-	// Locks
-	for _, pkg := range append(g.glideLock.Imports, g.glideLock.TestImports...) {
-		// Validate
-		if pkg.Name == "" {
-			g.Logger.Println("  Warning: Skipping project. Invalid glide lock, Name is required")
-			continue
-		}
-
-		ip := base.ImportedPackage{
-			Name:     pkg.Name,
-			Source:   pkg.Repository,
-			LockHint: pkg.Revision,
-		}
-		packages = append(packages, ip)
-	}
-
-	g.ImportPackages(packages, false)
-
-	// Ignores
-	g.Manifest.Ignored = append(g.Manifest.Ignored, g.glideConfig.Ignores...)
-	if len(g.glideConfig.ExcludeDirs) > 0 {
-		if g.glideConfig.Name != "" && g.glideConfig.Name != projectName {
-			g.Logger.Printf("  Glide thinks the package is '%s' but dep thinks it is '%s', using dep's value.\n", g.glideConfig.Name, projectName)
-		}
-
-		for _, dir := range g.glideConfig.ExcludeDirs {
-			pkg := path.Join(projectName, dir)
-			g.Manifest.Ignored = append(g.Manifest.Ignored, pkg)
-		}
-	}
-
-	return g.Manifest, g.Lock
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/glide/testdata/glide.lock b/vendor/github.com/golang/dep/internal/importers/glide/testdata/glide.lock
deleted file mode 100644
index 0fae06602804c9edcb5132308a926f465bff82ae..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/glide/testdata/glide.lock
+++ /dev/null
@@ -1,12 +0,0 @@
-hash: 16053c82a71f9bd509b05a4523df6bc418aed2083e4b8bd97a870bbc003256f8
-updated: 2017-03-07T17:02:32.214383898-06:00
-imports:
-- name: github.com/sdboyer/deptest
-  repo: https://github.com/sdboyer/deptest.git
-  vcs: git
-  version: 3f4c3bea144e112a69bbe5d8d01c1b09a544253f
-- name: github.com/sdboyer/deptestdos
-  version: 5c607206be5decd28e6263ffffdcee067266015e
-testImports:
-- name: github.com/golang/lint
-  version: cb00e5669539f047b2f4c53a421a01b0c8e172c6
diff --git a/vendor/github.com/golang/dep/internal/importers/glide/testdata/glide.yaml b/vendor/github.com/golang/dep/internal/importers/glide/testdata/glide.yaml
deleted file mode 100644
index 88a3f2be74d96a91a7f462ca1ae7f9c3d37f6fe7..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/glide/testdata/glide.yaml
+++ /dev/null
@@ -1,20 +0,0 @@
-package: github.com/golang/notexist
-homepage: http://example.com
-license: MIT
-owners:
-- name: Sam Boyer
-  email: sdboyer@example.com
-  homepage: http://sdboyer.io
-ignore:
-- github.com/sdboyer/dep-test
-excludeDirs:
-- samples
-import:
-- package: github.com/sdboyer/deptest
-  repo: https://github.com/sdboyer/deptest.git
-  vcs: git
-  version: master
-- package: github.com/sdboyer/deptestdos
-  version: v2.0.0
-testImport:
-- package: github.com/golang/lint
diff --git a/vendor/github.com/golang/dep/internal/importers/glide/testdata/golden.txt b/vendor/github.com/golang/dep/internal/importers/glide/testdata/golden.txt
deleted file mode 100644
index b8a0e65ca8ce52a21ea72bb50c50173daf1b40fc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/glide/testdata/golden.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Detected glide configuration files...
-Converting from glide.yaml and glide.lock...
-  Using master as initial constraint for imported dep github.com/sdboyer/deptest
-  Trying v0.8.1 (3f4c3be) as initial lock for imported dep github.com/sdboyer/deptest
-  Using ^2.0.0 as initial constraint for imported dep github.com/sdboyer/deptestdos
-  Trying v2.0.0 (5c60720) as initial lock for imported dep github.com/sdboyer/deptestdos
-  Trying * (cb00e56) as initial lock for imported dep github.com/golang/lint
diff --git a/vendor/github.com/golang/dep/internal/importers/glock/importer.go b/vendor/github.com/golang/dep/internal/importers/glock/importer.go
deleted file mode 100644
index 6120d459aaf329d5ec7a1d94d1565bbc9372b940..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/glock/importer.go
+++ /dev/null
@@ -1,150 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package glock
-
-import (
-	"bufio"
-	"fmt"
-	"log"
-	"os"
-	"path/filepath"
-	"strings"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/importers/base"
-	"github.com/pkg/errors"
-)
-
-const glockfile = "GLOCKFILE"
-
-// Importer imports glock configuration into the dep configuration format.
-type Importer struct {
-	*base.Importer
-
-	packages []glockPackage
-}
-
-// NewImporter for glock.
-func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager) *Importer {
-	return &Importer{Importer: base.NewImporter(logger, verbose, sm)}
-}
-
-// Name of the importer.
-func (g *Importer) Name() string {
-	return "glock"
-}
-
-// HasDepMetadata checks if a directory contains config that the importer can handle.
-func (g *Importer) HasDepMetadata(dir string) bool {
-	path := filepath.Join(dir, glockfile)
-	if _, err := os.Stat(path); err != nil {
-		return false
-	}
-
-	return true
-}
-
-// Import the config found in the directory.
-func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock, error) {
-	err := g.load(dir)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	m, l := g.convert(pr)
-	return m, l, nil
-}
-
-type glockPackage struct {
-	importPath string
-	revision   string
-}
-
-func (g *Importer) load(projectDir string) error {
-	g.Logger.Println("Detected glock configuration files...")
-	path := filepath.Join(projectDir, glockfile)
-	if g.Verbose {
-		g.Logger.Printf("  Loading %s", path)
-	}
-
-	f, err := os.Open(path)
-	if err != nil {
-		return errors.Wrapf(err, "unable to open %s", path)
-	}
-	defer f.Close()
-
-	scanner := bufio.NewScanner(f)
-	for scanner.Scan() {
-		pkg, err := parseGlockLine(scanner.Text())
-		if err != nil {
-			g.Logger.Printf("  Warning: Skipping line. Unable to parse: %s\n", err)
-			continue
-		}
-		if pkg == nil {
-			continue
-		}
-		g.packages = append(g.packages, *pkg)
-	}
-
-	if err := scanner.Err(); err != nil {
-		g.Logger.Printf("  Warning: Ignoring errors found while parsing %s: %s\n", path, err)
-	}
-
-	return nil
-}
-
-func parseGlockLine(line string) (*glockPackage, error) {
-	fields := strings.Fields(line)
-	switch len(fields) {
-	case 2: // Valid.
-	case 0: // Skip empty lines.
-		return nil, nil
-	default:
-		return nil, fmt.Errorf("invalid glock configuration: %s", line)
-	}
-
-	// Skip commands.
-	if fields[0] == "cmd" {
-		return nil, nil
-	}
-	return &glockPackage{
-		importPath: fields[0],
-		revision:   fields[1],
-	}, nil
-}
-
-func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock) {
-	g.Logger.Println("Converting from GLOCKFILE ...")
-
-	packages := make([]base.ImportedPackage, 0, len(g.packages))
-	for _, pkg := range g.packages {
-		// Validate
-		if pkg.importPath == "" {
-			g.Logger.Println(
-				"  Warning: Skipping project. Invalid glock configuration, import path is required",
-			)
-			continue
-		}
-
-		if pkg.revision == "" {
-			// Do not add 'empty constraints' to the manifest. Solve will add to lock if required.
-			g.Logger.Printf(
-				"  Warning: Skipping import with empty constraints. "+
-					"The solve step will add the dependency to the lock if needed: %q\n",
-				pkg.importPath,
-			)
-			continue
-		}
-
-		packages = append(packages, base.ImportedPackage{
-			Name:     pkg.importPath,
-			LockHint: pkg.revision,
-		})
-	}
-
-	g.ImportPackages(packages, true)
-	return g.Manifest, g.Lock
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/glock/testdata/GLOCKFILE b/vendor/github.com/golang/dep/internal/importers/glock/testdata/GLOCKFILE
deleted file mode 100644
index 27f499a4270a7b5c336a74766b23739729d424fd..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/glock/testdata/GLOCKFILE
+++ /dev/null
@@ -1,3 +0,0 @@
-cmd github.com/golang/lint
-github.com/sdboyer/deptest 3f4c3bea144e112a69bbe5d8d01c1b09a544253f
-github.com/sdboyer/deptestdos 5c607206be5decd28e6263ffffdcee067266015e
diff --git a/vendor/github.com/golang/dep/internal/importers/glock/testdata/golden.txt b/vendor/github.com/golang/dep/internal/importers/glock/testdata/golden.txt
deleted file mode 100644
index 3d7781b4f392b1b73a58ad5db874d6894f05528a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/glock/testdata/golden.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Detected glock configuration files...
-Converting from GLOCKFILE ...
-  Using ^0.8.1 as initial constraint for imported dep github.com/sdboyer/deptest
-  Trying v0.8.1 (3f4c3be) as initial lock for imported dep github.com/sdboyer/deptest
-  Using ^2.0.0 as initial constraint for imported dep github.com/sdboyer/deptestdos
-  Trying v2.0.0 (5c60720) as initial lock for imported dep github.com/sdboyer/deptestdos
diff --git a/vendor/github.com/golang/dep/internal/importers/godep/importer.go b/vendor/github.com/golang/dep/internal/importers/godep/importer.go
deleted file mode 100644
index 0d0879a531082b16a50dfee0f914cee91711a4ac..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/godep/importer.go
+++ /dev/null
@@ -1,128 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package godep
-
-import (
-	"encoding/json"
-	"io/ioutil"
-	"log"
-	"os"
-	"path/filepath"
-	"strings"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/importers/base"
-	"github.com/pkg/errors"
-)
-
-const godepPath = "Godeps" + string(os.PathSeparator) + "Godeps.json"
-
-// Importer imports godep configuration into the dep configuration format.
-type Importer struct {
-	*base.Importer
-	json godepJSON
-}
-
-// NewImporter for godep.
-func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager) *Importer {
-	return &Importer{Importer: base.NewImporter(logger, verbose, sm)}
-}
-
-type godepJSON struct {
-	Required []string       `json:"Packages"`
-	Imports  []godepPackage `json:"Deps"`
-}
-
-type godepPackage struct {
-	ImportPath string `json:"ImportPath"`
-	Rev        string `json:"Rev"`
-	Comment    string `json:"Comment"`
-}
-
-// Name of the importer.
-func (g *Importer) Name() string {
-	return "godep"
-}
-
-// HasDepMetadata checks if a directory contains config that the importer can handle.
-func (g *Importer) HasDepMetadata(dir string) bool {
-	y := filepath.Join(dir, godepPath)
-	if _, err := os.Stat(y); err != nil {
-		return false
-	}
-
-	return true
-}
-
-// Import the config found in the directory.
-func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock, error) {
-	err := g.load(dir)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	m, l := g.convert(pr)
-	return m, l, nil
-}
-
-func (g *Importer) load(projectDir string) error {
-	g.Logger.Println("Detected godep configuration files...")
-	j := filepath.Join(projectDir, godepPath)
-	if g.Verbose {
-		g.Logger.Printf("  Loading %s", j)
-	}
-	jb, err := ioutil.ReadFile(j)
-	if err != nil {
-		return errors.Wrapf(err, "unable to read %s", j)
-	}
-	err = json.Unmarshal(jb, &g.json)
-	if err != nil {
-		return errors.Wrapf(err, "unable to parse %s", j)
-	}
-
-	return nil
-}
-
-func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock) {
-	g.Logger.Println("Converting from Godeps.json ...")
-
-	packages := make([]base.ImportedPackage, 0, len(g.json.Imports))
-	for _, pkg := range g.json.Imports {
-		// Validate
-		if pkg.ImportPath == "" {
-			g.Logger.Println(
-				"  Warning: Skipping project. Invalid godep configuration, ImportPath is required",
-			)
-			continue
-		}
-
-		if pkg.Rev == "" {
-			g.Logger.Printf(
-				"  Warning: Invalid godep configuration, Rev not found for ImportPath %q\n",
-				pkg.ImportPath,
-			)
-		}
-
-		ip := base.ImportedPackage{
-			Name:           pkg.ImportPath,
-			LockHint:       pkg.Rev,
-			ConstraintHint: pkg.Comment,
-		}
-		packages = append(packages, ip)
-	}
-
-	g.ImportPackages(packages, true)
-	required := make([]string, 0, len(g.json.Required))
-	for _, req := range g.json.Required {
-		if !strings.HasPrefix(req, ".") { // ignore project packages
-			required = append(required, req)
-		}
-	}
-	if len(required) > 0 {
-		g.Manifest.Required = required
-	}
-	return g.Manifest, g.Lock
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/godep/testdata/Godeps.json b/vendor/github.com/golang/dep/internal/importers/godep/testdata/Godeps.json
deleted file mode 100644
index 15126ac12d18c6c02cc0745586161fcebdea6719..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/godep/testdata/Godeps.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
-  "ImportPath": "github.com/golang/notexist",
-  "GoVersion": "go1.8",
-  "GodepVersion": "vXYZ",
-  "Deps": [
-    {
-      "ImportPath": "github.com/sdboyer/deptest",
-      "Rev": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f"
-    },
-    {
-      "ImportPath": "github.com/sdboyer/deptestdos",
-      "Comment": "v2.0.0",
-      "Rev": "5c607206be5decd28e6263ffffdcee067266015e"
-    }
-  ]
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/godep/testdata/golden.txt b/vendor/github.com/golang/dep/internal/importers/godep/testdata/golden.txt
deleted file mode 100644
index 9788b947f795b66ea93963cc8ebff883088de820..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/godep/testdata/golden.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Detected godep configuration files...
-Converting from Godeps.json ...
-  Using ^0.8.1 as initial constraint for imported dep github.com/sdboyer/deptest
-  Trying v0.8.1 (3f4c3be) as initial lock for imported dep github.com/sdboyer/deptest
-  Using ^2.0.0 as initial constraint for imported dep github.com/sdboyer/deptestdos
-  Trying v2.0.0 (5c60720) as initial lock for imported dep github.com/sdboyer/deptestdos
diff --git a/vendor/github.com/golang/dep/internal/importers/govend/importer.go b/vendor/github.com/golang/dep/internal/importers/govend/importer.go
deleted file mode 100644
index 7a54c4660ad35c86597ad48a940f90e7c612b510..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/govend/importer.go
+++ /dev/null
@@ -1,121 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package govend
-
-import (
-	"io/ioutil"
-	"log"
-	"os"
-	"path/filepath"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/importers/base"
-	"github.com/pkg/errors"
-	"gopkg.in/yaml.v2"
-)
-
-// ToDo: govend supports json and xml formats as well and we will add support for other formats in next PR - @RaviTezu
-// govend don't have a separate lock file.
-const govendYAMLName = "vendor.yml"
-
-// Importer imports govend configuration in to the dep configuration format.
-type Importer struct {
-	*base.Importer
-	yaml govendYAML
-}
-
-// NewImporter for govend.
-func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager) *Importer {
-	return &Importer{Importer: base.NewImporter(logger, verbose, sm)}
-}
-
-type govendYAML struct {
-	Imports []govendPackage `yaml:"vendors"`
-}
-
-type govendPackage struct {
-	Path     string `yaml:"path"`
-	Revision string `yaml:"rev"`
-}
-
-// Name of the importer.
-func (g *Importer) Name() string {
-	return "govend"
-}
-
-// HasDepMetadata checks if a directory contains config that the importer can handle.
-func (g *Importer) HasDepMetadata(dir string) bool {
-	y := filepath.Join(dir, govendYAMLName)
-	if _, err := os.Stat(y); err != nil {
-		return false
-	}
-
-	return true
-}
-
-// Import the config found in the directory.
-func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock, error) {
-	err := g.load(dir)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	m, l := g.convert(pr)
-	return m, l, nil
-}
-
-// load the govend configuration files.
-func (g *Importer) load(projectDir string) error {
-	g.Logger.Println("Detected govend configuration files...")
-	y := filepath.Join(projectDir, govendYAMLName)
-	if g.Verbose {
-		g.Logger.Printf("  Loading %s", y)
-	}
-	yb, err := ioutil.ReadFile(y)
-	if err != nil {
-		return errors.Wrapf(err, "unable to read %s", y)
-	}
-	err = yaml.Unmarshal(yb, &g.yaml)
-	if err != nil {
-		return errors.Wrapf(err, "unable to parse %s", y)
-	}
-	return nil
-}
-
-// convert the govend configuration files into dep configuration files.
-func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock) {
-	g.Logger.Println("Converting from vendor.yaml...")
-
-	packages := make([]base.ImportedPackage, 0, len(g.yaml.Imports))
-	for _, pkg := range g.yaml.Imports {
-		// Path must not be empty
-		if pkg.Path == "" {
-			g.Logger.Println(
-				"  Warning: Skipping project. Invalid govend configuration, path is required",
-			)
-			continue
-		}
-
-		if pkg.Revision == "" {
-			// Do not add 'empty constraints' to the manifest. Solve will add to lock if required.
-			g.Logger.Printf(
-				"  Warning: Skipping import with empty constraints. "+
-					"The solve step will add the dependency to the lock if needed: %q\n",
-				pkg.Path,
-			)
-			continue
-		}
-
-		ip := base.ImportedPackage{
-			Name:     pkg.Path,
-			LockHint: pkg.Revision,
-		}
-		packages = append(packages, ip)
-	}
-
-	g.ImportPackages(packages, true)
-	return g.Manifest, g.Lock
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/govend/testdata/golden.txt b/vendor/github.com/golang/dep/internal/importers/govend/testdata/golden.txt
deleted file mode 100644
index e77c76ab5f34bb62251c1873005b711a4abef04e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/govend/testdata/golden.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Detected govend configuration files...
-Converting from vendor.yaml...
-  Using ^0.8.1 as initial constraint for imported dep github.com/sdboyer/deptest
-  Trying v0.8.1 (3f4c3be) as initial lock for imported dep github.com/sdboyer/deptest
-  Using ^2.0.0 as initial constraint for imported dep github.com/sdboyer/deptestdos
-  Trying v2.0.0 (5c60720) as initial lock for imported dep github.com/sdboyer/deptestdos
diff --git a/vendor/github.com/golang/dep/internal/importers/govend/testdata/vendor.yml b/vendor/github.com/golang/dep/internal/importers/govend/testdata/vendor.yml
deleted file mode 100644
index 0545b10125a599de1a059d01b140965f24191e10..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/govend/testdata/vendor.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-vendors:
-- path: github.com/sdboyer/deptest
-  rev: 3f4c3bea144e112a69bbe5d8d01c1b09a544253f
-- path: github.com/sdboyer/deptestdos
-  rev: 5c607206be5decd28e6263ffffdcee067266015e
-
diff --git a/vendor/github.com/golang/dep/internal/importers/govendor/importer.go b/vendor/github.com/golang/dep/internal/importers/govendor/importer.go
deleted file mode 100644
index 09611f49ed6e4f23d961410a47fba3bd67a1557e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/govendor/importer.go
+++ /dev/null
@@ -1,151 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package govendor
-
-import (
-	"encoding/json"
-	"io/ioutil"
-	"log"
-	"os"
-	"path"
-	"path/filepath"
-	"strings"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/importers/base"
-	"github.com/pkg/errors"
-)
-
-const govendorDir = "vendor"
-const govendorName = "vendor.json"
-
-// Importer imports govendor configuration into the dep configuration format.
-type Importer struct {
-	*base.Importer
-
-	file govendorFile
-}
-
-// NewImporter for govendor.
-func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager) *Importer {
-	return &Importer{Importer: base.NewImporter(logger, verbose, sm)}
-}
-
-// File is the structure of the vendor file.
-type govendorFile struct {
-	RootPath string // Import path of vendor folder
-	Ignore   string
-	Package  []*govendorPackage
-}
-
-// Package represents each package.
-type govendorPackage struct {
-	// See the vendor spec for definitions.
-	Origin   string
-	Path     string
-	Revision string
-	Version  string
-}
-
-// Name of the importer.
-func (g *Importer) Name() string {
-	return "govendor"
-}
-
-// HasDepMetadata checks if a directory contains config that the importer can handle.
-func (g *Importer) HasDepMetadata(dir string) bool {
-	y := filepath.Join(dir, govendorDir, govendorName)
-	if _, err := os.Stat(y); err != nil {
-		return false
-	}
-	return true
-}
-
-// Import the config found in the directory.
-func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock, error) {
-	err := g.load(dir)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	m, l := g.convert(pr)
-	return m, l, nil
-}
-
-func (g *Importer) load(projectDir string) error {
-	g.Logger.Println("Detected govendor configuration file...")
-	v := filepath.Join(projectDir, govendorDir, govendorName)
-	if g.Verbose {
-		g.Logger.Printf("  Loading %s", v)
-	}
-	vb, err := ioutil.ReadFile(v)
-	if err != nil {
-		return errors.Wrapf(err, "unable to read %s", v)
-	}
-	err = json.Unmarshal(vb, &g.file)
-	if err != nil {
-		return errors.Wrapf(err, "unable to parse %s", v)
-	}
-	return nil
-}
-
-func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock) {
-	g.Logger.Println("Converting from vendor.json...")
-
-	packages := make([]base.ImportedPackage, 0, len(g.file.Package))
-	for _, pkg := range g.file.Package {
-		// Path must not be empty
-		if pkg.Path == "" {
-			g.Logger.Println(
-				"  Warning: Skipping project. Invalid govendor configuration, Path is required",
-			)
-			continue
-		}
-
-		// There are valid govendor configs in the wild that don't have a revision set
-		// so we are not requiring it to be set during import
-
-		ip := base.ImportedPackage{
-			Name:     pkg.Path,
-			Source:   pkg.Origin,
-			LockHint: pkg.Revision,
-		}
-		packages = append(packages, ip)
-	}
-
-	g.ImportPackages(packages, true)
-
-	if len(g.file.Ignore) > 0 {
-		// Govendor has three use cases here
-		// 1. 'test' - special case for ignoring test files
-		// 2. build tags - any string without a slash (/) in it
-		// 3. path and path prefix - any string with a slash (/) in it.
-		//   The path case could be a full path or just a prefix.
-		// Dep doesn't support build tags right now: https://github.com/golang/dep/issues/120
-		for _, i := range strings.Split(g.file.Ignore, " ") {
-			if !strings.Contains(i, "/") {
-				g.Logger.Printf("  Govendor was configured to ignore the %s build tag, but that isn't supported by dep yet, and will be ignored. See https://github.com/golang/dep/issues/291.", i)
-				continue
-			}
-
-			var ignorePattern string
-			_, err := g.SourceManager.DeduceProjectRoot(i)
-			if err == nil { // external package
-				ignorePattern = i
-			} else { // relative package path in the current project
-				ignorePattern = path.Join(string(pr), i)
-			}
-
-			// Convert to a a wildcard ignore
-			ignorePattern = strings.TrimRight(ignorePattern, "/")
-			ignorePattern += "*"
-
-			g.Manifest.Ignored = append(g.Manifest.Ignored, ignorePattern)
-		}
-	}
-
-	return g.Manifest, g.Lock
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/govendor/testdata/golden.txt b/vendor/github.com/golang/dep/internal/importers/govendor/testdata/golden.txt
deleted file mode 100644
index 51a348f7c9d1497c2b09b3112d11f412c86a42fc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/govendor/testdata/golden.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Detected govendor configuration file...
-Converting from vendor.json...
-  Using ^0.8.1 as initial constraint for imported dep github.com/sdboyer/deptest
-  Trying v0.8.1 (3f4c3be) as initial lock for imported dep github.com/sdboyer/deptest
-  Using ^2.0.0 as initial constraint for imported dep github.com/sdboyer/deptestdos
-  Trying v2.0.0 (5c60720) as initial lock for imported dep github.com/sdboyer/deptestdos
-  Govendor was configured to ignore the test build tag, but that isn't supported by dep yet, and will be ignored. See https://github.com/golang/dep/issues/291.
diff --git a/vendor/github.com/golang/dep/internal/importers/govendor/testdata/vendor.json b/vendor/github.com/golang/dep/internal/importers/govendor/testdata/vendor.json
deleted file mode 100644
index 983f15f6192ec19e37ab5a04699dcce583bc0ecc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/govendor/testdata/vendor.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
-	"comment": "",
-	"ignore": "test github.com/sdboyer/dep-test",
-	"package": [
-		{
-			"checksumSHA1": "4R6TQcq0/gI/I2kKeUunuO/pEec=",
-			"origin": "github.com/carolynvs/deptest",
-			"path": "github.com/sdboyer/deptest",
-			"revision": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f",
-			"revisionTime": "2017-02-22T03:31:47Z"
-		},
-		{
-			"checksumSHA1": "96YwrJjpE07ENey/eDWWnCWKQOw=",
-			"path": "github.com/sdboyer/deptestdos",
-			"revision": "5c607206be5decd28e6263ffffdcee067266015e",
-			"revisionTime": "2017-02-22T03:34:58Z",
-			"version": "v2",
-			"versionExact": "v2.0.0"
-		}
-	],
-	"rootPath": "github.com/golang/notexist"
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/gvt/importer.go b/vendor/github.com/golang/dep/internal/importers/gvt/importer.go
deleted file mode 100644
index 97f61a16be034472053aaeb0b47efc8a070350cc..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/gvt/importer.go
+++ /dev/null
@@ -1,130 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package gvt
-
-import (
-	"encoding/json"
-	"io/ioutil"
-	"log"
-	"os"
-	"path/filepath"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/importers/base"
-	"github.com/pkg/errors"
-)
-
-const gvtPath = "vendor" + string(os.PathSeparator) + "manifest"
-
-// Importer imports gvt configuration into the dep configuration format.
-type Importer struct {
-	*base.Importer
-	gvtConfig gvtManifest
-}
-
-// NewImporter for gvt. It handles gb (gb-vendor) too as they share a common manifest file & format
-func NewImporter(logger *log.Logger, verbose bool, sm gps.SourceManager) *Importer {
-	return &Importer{Importer: base.NewImporter(logger, verbose, sm)}
-}
-
-type gvtManifest struct {
-	Deps []gvtPkg `json:"dependencies"`
-}
-
-type gvtPkg struct {
-	ImportPath string
-	Repository string
-	Revision   string
-	Branch     string
-}
-
-// Name of the importer.
-func (g *Importer) Name() string {
-	return "gvt"
-}
-
-// HasDepMetadata checks if a directory contains config that the importer can handle.
-func (g *Importer) HasDepMetadata(dir string) bool {
-	y := filepath.Join(dir, gvtPath)
-	if _, err := os.Stat(y); err != nil {
-		return false
-	}
-
-	return true
-}
-
-// Import the config found in the directory.
-func (g *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock, error) {
-	err := g.load(dir)
-	if err != nil {
-		return nil, nil, err
-	}
-
-	m, l := g.convert(pr)
-	return m, l, nil
-}
-
-func (g *Importer) load(projectDir string) error {
-	g.Logger.Println("Detected gb/gvt configuration files...")
-	j := filepath.Join(projectDir, gvtPath)
-	if g.Verbose {
-		g.Logger.Printf("  Loading %s", j)
-	}
-	jb, err := ioutil.ReadFile(j)
-	if err != nil {
-		return errors.Wrapf(err, "unable to read %s", j)
-	}
-	err = json.Unmarshal(jb, &g.gvtConfig)
-	if err != nil {
-		return errors.Wrapf(err, "unable to parse %s", j)
-	}
-
-	return nil
-}
-
-func (g *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock) {
-	g.Logger.Println("Converting from vendor/manifest ...")
-
-	packages := make([]base.ImportedPackage, 0, len(g.gvtConfig.Deps))
-	for _, pkg := range g.gvtConfig.Deps {
-		// Validate
-		if pkg.ImportPath == "" {
-			g.Logger.Println(
-				"  Warning: Skipping project. Invalid gvt configuration, ImportPath is required",
-			)
-			continue
-		}
-
-		if pkg.Revision == "" {
-			g.Logger.Printf(
-				"  Warning: Invalid gvt configuration, Revision not found for ImportPath %q\n",
-				pkg.ImportPath,
-			)
-		}
-
-		var contstraintHint = ""
-		if pkg.Branch == "HEAD" {
-			// gb-vendor sets "branch" to "HEAD", if the package was feteched via -tag or -revision,
-			// we pass the revision as the constraint hint
-			contstraintHint = pkg.Revision
-		} else if pkg.Branch != "master" {
-			// both gvt & gb-vendor set "branch" to "master" unless a different branch was requested.
-			// so it's not really a constraint unless it's a different branch
-			contstraintHint = pkg.Branch
-		}
-
-		ip := base.ImportedPackage{
-			Name:           pkg.ImportPath,
-			Source:         pkg.Repository,
-			LockHint:       pkg.Revision,
-			ConstraintHint: contstraintHint,
-		}
-		packages = append(packages, ip)
-	}
-
-	g.ImportPackages(packages, true)
-	return g.Manifest, g.Lock
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/gvt/testdata/golden.txt b/vendor/github.com/golang/dep/internal/importers/gvt/testdata/golden.txt
deleted file mode 100644
index 2a079fda7f49d76f025491b409b44d284c0faffe..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/gvt/testdata/golden.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Detected gb/gvt configuration files...
-Converting from vendor/manifest ...
-  Trying v0.8.1 (3f4c3be) as initial lock for imported dep github.com/sdboyer/deptest
-  Using ^2.0.0 as initial constraint for imported dep github.com/sdboyer/deptestdos
-  Trying v2.0.0 (5c60720) as initial lock for imported dep github.com/sdboyer/deptestdos
-  Using v2 as initial constraint for imported dep github.com/carolynvs/deptest-importers
-  Trying v2 (b79bc94) as initial lock for imported dep github.com/carolynvs/deptest-importers
diff --git a/vendor/github.com/golang/dep/internal/importers/gvt/testdata/manifest b/vendor/github.com/golang/dep/internal/importers/gvt/testdata/manifest
deleted file mode 100644
index 36e49d56b1699cc19b7ded3fb750d9c38cf31ac6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/gvt/testdata/manifest
+++ /dev/null
@@ -1,19 +0,0 @@
-{
-  "dependencies": [
-    {
-      "importpath": "github.com/sdboyer/deptest",
-      "revision": "3f4c3bea144e112a69bbe5d8d01c1b09a544253f",
-      "branch": "HEAD"
-    },
-    {
-      "importpath": "github.com/sdboyer/deptestdos",
-      "revision": "5c607206be5decd28e6263ffffdcee067266015e",
-      "branch": "master"
-    },
-    {
-      "importpath": "github.com/carolynvs/deptest-importers",
-      "revision": "b79bc9482da8bb7402cdc3e3fd984db250718dd7",
-      "branch": "v2" 
-    }
-  ]
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/importers.go b/vendor/github.com/golang/dep/internal/importers/importers.go
deleted file mode 100644
index d54277c14bac4cb93653fdcc7ff273e51e7740d4..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/importers.go
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package importers
-
-import (
-	"log"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/importers/glide"
-	"github.com/golang/dep/internal/importers/glock"
-	"github.com/golang/dep/internal/importers/godep"
-	"github.com/golang/dep/internal/importers/govend"
-	"github.com/golang/dep/internal/importers/govendor"
-	"github.com/golang/dep/internal/importers/gvt"
-	"github.com/golang/dep/internal/importers/vndr"
-)
-
-// Importer handles importing configuration from other dependency managers into
-// the dep configuration format.
-type Importer interface {
-	// Name of the importer.
-	Name() string
-
-	// Import the config found in the directory.
-	Import(path string, pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock, error)
-
-	// HasDepMetadata checks if a directory contains config that the importer can handle.
-	HasDepMetadata(dir string) bool
-}
-
-// BuildAll returns a slice of all the importers.
-func BuildAll(logger *log.Logger, verbose bool, sm gps.SourceManager) []Importer {
-	return []Importer{
-		glide.NewImporter(logger, verbose, sm),
-		godep.NewImporter(logger, verbose, sm),
-		vndr.NewImporter(logger, verbose, sm),
-		govend.NewImporter(logger, verbose, sm),
-		gvt.NewImporter(logger, verbose, sm),
-		govendor.NewImporter(logger, verbose, sm),
-		glock.NewImporter(logger, verbose, sm),
-	}
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/importertest/testcase.go b/vendor/github.com/golang/dep/internal/importers/importertest/testcase.go
deleted file mode 100644
index 176a2ba1b8005f4f49735008a4cc5cdbce29c249..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/importertest/testcase.go
+++ /dev/null
@@ -1,191 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package importertest
-
-import (
-	"bytes"
-	"io/ioutil"
-	"log"
-	"sort"
-	"strings"
-	"testing"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/test"
-	"github.com/pkg/errors"
-)
-
-// TestCase is a common set of validations applied to the result
-// of an importer converting from an external config format to dep's.
-type TestCase struct {
-	DefaultConstraintFromLock bool
-	WantSourceRepo            string
-	WantConstraint            string
-	WantRevision              gps.Revision
-	WantVersion               string
-	WantIgnored               []string
-	WantRequired              []string
-	WantWarning               string
-}
-
-// NewTestContext creates a unique context with its own GOPATH for a single test.
-func NewTestContext(h *test.Helper) *dep.Ctx {
-	h.TempDir("src")
-	pwd := h.Path(".")
-	discardLogger := log.New(ioutil.Discard, "", 0)
-
-	return &dep.Ctx{
-		GOPATH: pwd,
-		Out:    discardLogger,
-		Err:    discardLogger,
-	}
-}
-
-// Execute and validate the test case.
-func (tc TestCase) Execute(t *testing.T, convert func(logger *log.Logger, sm gps.SourceManager) (*dep.Manifest, *dep.Lock)) error {
-	h := test.NewHelper(t)
-	defer h.Cleanup()
-	// Disable parallel tests until we can resolve this error on the Windows builds:
-	// "remote repository at https://github.com/carolynvs/deptest-importers does not exist, or is inaccessible"
-	//h.Parallel()
-
-	ctx := NewTestContext(h)
-	sm, err := ctx.SourceManager()
-	h.Must(err)
-	defer sm.Release()
-
-	// Capture stderr so we can verify warnings
-	output := &bytes.Buffer{}
-	ctx.Err = log.New(output, "", 0)
-
-	manifest, lock := convert(ctx.Err, sm)
-	return tc.validate(manifest, lock, output)
-}
-
-// validate returns an error if any of the testcase validations failed.
-func (tc TestCase) validate(manifest *dep.Manifest, lock *dep.Lock, output *bytes.Buffer) error {
-	if !equalSlice(manifest.Ignored, tc.WantIgnored) {
-		return errors.Errorf("unexpected set of ignored projects: \n\t(GOT) %#v \n\t(WNT) %#v",
-			manifest.Ignored, tc.WantIgnored)
-	}
-
-	if !equalSlice(manifest.Required, tc.WantRequired) {
-		return errors.Errorf("unexpected set of required projects: \n\t(GOT) %#v \n\t(WNT) %#v",
-			manifest.Required, tc.WantRequired)
-	}
-
-	wantConstraintCount := 0
-	if tc.WantConstraint != "" {
-		wantConstraintCount = 1
-	}
-	gotConstraintCount := len(manifest.Constraints)
-	if gotConstraintCount != wantConstraintCount {
-		return errors.Errorf("unexpected number of constraints: \n\t(GOT) %v \n\t(WNT) %v",
-			gotConstraintCount, wantConstraintCount)
-	}
-
-	if tc.WantConstraint != "" {
-		d, ok := manifest.Constraints[Project]
-		if !ok {
-			return errors.Errorf("Expected the manifest to have a dependency for '%v'",
-				Project)
-		}
-
-		gotConstraint := d.Constraint.String()
-		if gotConstraint != tc.WantConstraint {
-			return errors.Errorf("unexpected constraint: \n\t(GOT) %v \n\t(WNT) %v",
-				gotConstraint, tc.WantConstraint)
-		}
-
-	}
-
-	// Lock checks.
-	wantLockCount := 0
-	if tc.WantRevision != "" {
-		wantLockCount = 1
-	}
-	gotLockCount := 0
-	if lock != nil {
-		gotLockCount = len(lock.P)
-	}
-	if gotLockCount != wantLockCount {
-		return errors.Errorf("unexpected number of locked projects: \n\t(GOT) %v \n\t(WNT) %v",
-			gotLockCount, wantLockCount)
-	}
-
-	if tc.WantRevision != "" {
-		lp := lock.P[0]
-
-		gotProjectRoot := lp.Ident().ProjectRoot
-		if gotProjectRoot != Project {
-			return errors.Errorf("unexpected root project in lock: \n\t(GOT) %v \n\t(WNT) %v",
-				gotProjectRoot, Project)
-		}
-
-		gotSource := lp.Ident().Source
-		if gotSource != tc.WantSourceRepo {
-			return errors.Errorf("unexpected source repository: \n\t(GOT) %v \n\t(WNT) %v",
-				gotSource, tc.WantSourceRepo)
-		}
-
-		// Break down the locked "version" into a version (optional) and revision
-		var gotVersion string
-		var gotRevision gps.Revision
-		if lpv, ok := lp.Version().(gps.PairedVersion); ok {
-			gotVersion = lpv.String()
-			gotRevision = lpv.Revision()
-		} else if lr, ok := lp.Version().(gps.Revision); ok {
-			gotRevision = lr
-		} else {
-			return errors.New("could not determine the type of the locked version")
-		}
-
-		if gotRevision != tc.WantRevision {
-			return errors.Errorf("unexpected locked revision: \n\t(GOT) %v \n\t(WNT) %v",
-				gotRevision,
-				tc.WantRevision)
-		}
-		if gotVersion != tc.WantVersion {
-			return errors.Errorf("unexpected locked version: \n\t(GOT) %v \n\t(WNT) %v",
-				gotVersion,
-				tc.WantVersion)
-		}
-	}
-
-	if tc.WantWarning != "" {
-		gotWarning := output.String()
-		if !strings.Contains(gotWarning, tc.WantWarning) {
-			return errors.Errorf("Expected the output to include the warning '%s' but got '%s'\n", tc.WantWarning, gotWarning)
-		}
-	}
-
-	return nil
-}
-
-// equalSlice is comparing two string slices for equality.
-func equalSlice(a, b []string) bool {
-	if a == nil && b == nil {
-		return true
-	}
-
-	if a == nil || b == nil {
-		return false
-	}
-
-	if len(a) != len(b) {
-		return false
-	}
-
-	sort.Strings(a)
-	sort.Strings(b)
-	for i := range a {
-		if a[i] != b[i] {
-			return false
-		}
-	}
-
-	return true
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/importertest/testdata.go b/vendor/github.com/golang/dep/internal/importers/importertest/testdata.go
deleted file mode 100644
index fc037ff0dd9890ac0d110926d2f71eed6a0f8894..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/importertest/testdata.go
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package importertest
-
-const (
-	// RootProject is the containing project performing the import.
-	RootProject = "github.com/golang/notexist"
-
-	// Project being imported.
-	Project = "github.com/carolynvs/deptest-importers"
-
-	// ProjectSrc is an alternate source for the imported project.
-	ProjectSrc = "https://github.com/carolynvs/deptest-importers.git"
-
-	// UntaggedRev is a revision without any tags.
-	UntaggedRev = "9b670d143bfb4a00f7461451d5c4a62f80e9d11d"
-
-	// UntaggedRevAbbrv is the result of running `git describe` on UntaggedRev
-	UntaggedRevAbbrv = "v1.0.0-1-g9b670d1"
-
-	// Beta1Tag is a non-semver tag.
-	Beta1Tag = "beta1"
-
-	// Beta1Rev is the revision of Beta1Tag
-	Beta1Rev = "7913ab26988c6fb1e16225f845a178e8849dd254"
-
-	// V2Branch is a branch that could be interpreted as a semver tag (but shouldn't).
-	V2Branch = "v2"
-
-	// V2Rev is the HEAD revision of V2Branch.
-	V2Rev = "45dcf5a09c64b48b6e836028a3bc672b19b9d11d"
-
-	// V2PatchTag is a prerelease semver tag on the non-default branch.
-	V2PatchTag = "v2.0.0-alpha1"
-
-	// V2PatchRev is the revision of V2PatchTag.
-	V2PatchRev = "347760b50204948ea63e531dd6560e56a9adde8f"
-
-	// V1Tag is a semver tag that matches V1Constraint.
-	V1Tag = "v1.0.0"
-
-	// V1Rev is the revision of V1Tag.
-	V1Rev = "d0c29640b17f77426b111f4c1640d716591aa70e"
-
-	// V1PatchTag is a semver tag that matches V1Constraint.
-	V1PatchTag = "v1.0.2"
-
-	// V1PatchRev is the revision of V1PatchTag
-	V1PatchRev = "788963efe22e3e6e24c776a11a57468bb2fcd780"
-
-	// V1Constraint is a constraint that matches multiple semver tags.
-	V1Constraint = "^1.0.0"
-
-	// MultiTaggedRev is a revision with multiple tags.
-	MultiTaggedRev = "34cf993cc346f65601fe4356dd68bd54d20a1bfe"
-
-	// MultiTaggedSemverTag is a semver tag on MultiTaggedRev.
-	MultiTaggedSemverTag = "v1.0.4"
-
-	// MultiTaggedPlainTag is a non-semver tag on MultiTaggedRev.
-	MultiTaggedPlainTag = "stable"
-
-	// NonexistentPrj is a dummy project which does not exist on Github.
-	NonexistentPrj = "github.com/nonexistent/project"
-)
diff --git a/vendor/github.com/golang/dep/internal/importers/vndr/importer.go b/vendor/github.com/golang/dep/internal/importers/vndr/importer.go
deleted file mode 100644
index 60e28e23208c409a8854a6481e13fedba99372f8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/vndr/importer.go
+++ /dev/null
@@ -1,149 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package vndr
-
-import (
-	"bufio"
-	"log"
-	"os"
-	"path/filepath"
-	"strings"
-
-	"github.com/golang/dep"
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/internal/importers/base"
-	"github.com/pkg/errors"
-)
-
-func vndrFile(dir string) string {
-	return filepath.Join(dir, "vendor.conf")
-}
-
-// Importer imports vndr configuration into the dep configuration format.
-type Importer struct {
-	*base.Importer
-	packages []vndrPackage
-}
-
-// NewImporter for vndr.
-func NewImporter(log *log.Logger, verbose bool, sm gps.SourceManager) *Importer {
-	return &Importer{Importer: base.NewImporter(log, verbose, sm)}
-}
-
-// Name of the importer.
-func (v *Importer) Name() string { return "vndr" }
-
-// HasDepMetadata checks if a directory contains config that the importer can handle.
-func (v *Importer) HasDepMetadata(dir string) bool {
-	_, err := os.Stat(vndrFile(dir))
-	return err == nil
-}
-
-// Import the config found in the directory.
-func (v *Importer) Import(dir string, pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock, error) {
-	v.Logger.Println("Detected vndr configuration file...")
-
-	err := v.loadVndrFile(dir)
-	if err != nil {
-		return nil, nil, errors.Wrapf(err, "unable to load vndr file")
-	}
-
-	m, l := v.convert(pr)
-	return m, l, nil
-}
-
-func (v *Importer) loadVndrFile(dir string) error {
-	v.Logger.Printf("Converting from vendor.conf...")
-
-	path := vndrFile(dir)
-	f, err := os.Open(path)
-	if err != nil {
-		return errors.Wrapf(err, "unable to open %s", path)
-	}
-	defer f.Close()
-
-	scanner := bufio.NewScanner(f)
-	for scanner.Scan() {
-		pkg, err := parseVndrLine(scanner.Text())
-		if err != nil {
-			v.Logger.Printf("  Warning: Skipping line. Unable to parse: %s\n", err)
-			continue
-		}
-		if pkg == nil {
-			// Could be an empty line or one which is just a comment
-			continue
-		}
-		v.packages = append(v.packages, *pkg)
-	}
-
-	if err := scanner.Err(); err != nil {
-		v.Logger.Printf("  Warning: Ignoring errors found while parsing %s: %s\n", path, err)
-	}
-
-	return nil
-}
-
-func (v *Importer) convert(pr gps.ProjectRoot) (*dep.Manifest, *dep.Lock) {
-	packages := make([]base.ImportedPackage, 0, len(v.packages))
-	for _, pkg := range v.packages {
-		// Validate
-		if pkg.importPath == "" {
-			v.Logger.Println(
-				"  Warning: Skipping project. Invalid vndr configuration, import path is required",
-			)
-			continue
-		}
-
-		if pkg.reference == "" {
-			v.Logger.Printf(
-				"  Warning: Invalid vndr configuration, reference not found for import path %q\n",
-				pkg.importPath,
-			)
-		}
-
-		ip := base.ImportedPackage{
-			Name:     pkg.importPath,
-			Source:   pkg.repository,
-			LockHint: pkg.reference,
-		}
-		packages = append(packages, ip)
-	}
-	v.ImportPackages(packages, true)
-	return v.Manifest, v.Lock
-}
-
-type vndrPackage struct {
-	importPath string
-	reference  string
-	repository string
-}
-
-func parseVndrLine(line string) (*vndrPackage, error) {
-	commentIdx := strings.Index(line, "#")
-	if commentIdx >= 0 {
-		line = line[:commentIdx]
-	}
-	line = strings.TrimSpace(line)
-
-	if line == "" {
-		return nil, nil
-	}
-
-	parts := strings.Fields(line)
-
-	if !(len(parts) == 2 || len(parts) == 3) {
-		return nil, errors.Errorf("invalid config format: %q", line)
-	}
-
-	pkg := &vndrPackage{
-		importPath: parts[0],
-		reference:  parts[1],
-	}
-	if len(parts) == 3 {
-		pkg.repository = parts[2]
-	}
-
-	return pkg, nil
-}
diff --git a/vendor/github.com/golang/dep/internal/importers/vndr/testdata/golden.txt b/vendor/github.com/golang/dep/internal/importers/vndr/testdata/golden.txt
deleted file mode 100644
index 3702ae436a186583798636c02256d74a00915a41..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/vndr/testdata/golden.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Detected vndr configuration file...
-Converting from vendor.conf...
-  Using ^0.8.1 as initial constraint for imported dep github.com/sdboyer/deptest
-  Trying v0.8.1 (3f4c3be) as initial lock for imported dep github.com/sdboyer/deptest
-  Using ^2.0.0 as initial constraint for imported dep github.com/sdboyer/deptestdos
-  Trying v2.0.0 (5c60720) as initial lock for imported dep github.com/sdboyer/deptestdos
diff --git a/vendor/github.com/golang/dep/internal/importers/vndr/testdata/vendor.conf b/vendor/github.com/golang/dep/internal/importers/vndr/testdata/vendor.conf
deleted file mode 100644
index 072166aa57b945b01f1683f85a6539b0333bf900..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/importers/vndr/testdata/vendor.conf
+++ /dev/null
@@ -1,4 +0,0 @@
-github.com/sdboyer/deptest 3f4c3bea144e112a69bbe5d8d01c1b09a544253f https://github.com/sdboyer/deptest.git # trailing comment
-# line comment
-
-github.com/sdboyer/deptestdos v2.0.0 # trailing comment
diff --git a/vendor/github.com/golang/dep/internal/test/integration/testcase.go b/vendor/github.com/golang/dep/internal/test/integration/testcase.go
deleted file mode 100644
index cb7f60fed08ff60b7cd3911d60178c8b215b47f8..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/test/integration/testcase.go
+++ /dev/null
@@ -1,223 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package integration
-
-import (
-	"encoding/json"
-	"io/ioutil"
-	"os"
-	"path/filepath"
-	"strings"
-	"testing"
-	"unicode"
-
-	"github.com/golang/dep/internal/test"
-)
-
-// TestCase manages a test case directory structure and content
-type TestCase struct {
-	t             *testing.T
-	name          string
-	rootPath      string
-	initialPath   string
-	finalPath     string
-	Commands      [][]string        `json:"commands"`
-	ShouldFail    bool              `json:"should-fail"`
-	ErrorExpected string            `json:"error-expected"`
-	GopathInitial map[string]string `json:"gopath-initial"`
-	VendorInitial map[string]string `json:"vendor-initial"`
-	VendorFinal   []string          `json:"vendor-final"`
-	InitPath      string            `json:"init-path"`
-
-	RequiredFeatureFlag string `json:"feature"`
-}
-
-// NewTestCase creates a new TestCase.
-func NewTestCase(t *testing.T, dir, name string) *TestCase {
-	rootPath := filepath.FromSlash(filepath.Join(dir, name))
-	n := &TestCase{
-		t:           t,
-		name:        name,
-		rootPath:    rootPath,
-		initialPath: filepath.Join(rootPath, "initial"),
-		finalPath:   filepath.Join(rootPath, "final"),
-	}
-	j, err := ioutil.ReadFile(filepath.Join(rootPath, "testcase.json"))
-	if err != nil {
-		t.Fatal(err)
-	}
-	err = json.Unmarshal(j, n)
-	if err != nil {
-		t.Fatal(err)
-	}
-
-	// Flip ShouldFail on if it's not set, but there's an expected error.
-	if n.ErrorExpected != "" && !n.ShouldFail {
-		n.ShouldFail = true
-	}
-	return n
-}
-
-// InitialPath represents the initial set of files in a project.
-func (tc *TestCase) InitialPath() string {
-	return tc.initialPath
-}
-
-// UpdateFile updates the golden file with the working result.
-func (tc *TestCase) UpdateFile(goldenPath, workingPath string) {
-	exists, working, err := getFile(workingPath)
-	if err != nil {
-		tc.t.Fatalf("Error reading project file %s: %s", goldenPath, err)
-	}
-
-	golden := filepath.Join(tc.finalPath, goldenPath)
-	if exists {
-		if err := tc.WriteFile(golden, working); err != nil {
-			tc.t.Fatal(err)
-		}
-	} else {
-		err := os.Remove(golden)
-		if err != nil && !os.IsNotExist(err) {
-			tc.t.Fatal(err)
-		}
-	}
-}
-
-// CompareFile compares the golden file with the working result.
-func (tc *TestCase) CompareFile(goldenPath, working string) {
-	golden := filepath.Join(tc.finalPath, goldenPath)
-
-	gotExists, got, err := getFile(working)
-	if err != nil {
-		tc.t.Fatalf("Error reading project file %q: %s", goldenPath, err)
-	}
-	wantExists, want, err := getFile(golden)
-	if err != nil {
-		tc.t.Fatalf("Error reading testcase file %q: %s", goldenPath, err)
-	}
-
-	if wantExists && gotExists {
-		if want != got {
-			tc.t.Errorf("%s was not as expected\n(WNT):\n%s\n(GOT):\n%s", filepath.Base(goldenPath), want, got)
-		}
-	} else if !wantExists && gotExists {
-		tc.t.Errorf("%q created where none was expected", goldenPath)
-	} else if wantExists && !gotExists {
-		tc.t.Errorf("%q not created where one was expected", goldenPath)
-	}
-}
-
-// UpdateOutput updates the golden file for stdout with the working result.
-func (tc *TestCase) UpdateOutput(stdout string) {
-	stdoutPath := filepath.Join(tc.rootPath, "stdout.txt")
-	_, err := os.Stat(stdoutPath)
-	if err != nil {
-		if os.IsNotExist(err) {
-			// Don't update the stdout.txt file if it doesn't exist.
-			return
-		}
-		panic(err)
-	}
-
-	if err := tc.WriteFile(stdoutPath, stdout); err != nil {
-		tc.t.Fatal(err)
-	}
-}
-
-// CompareOutput compares expected and actual stdout output.
-func (tc *TestCase) CompareOutput(stdout string) {
-	expected, err := ioutil.ReadFile(filepath.Join(tc.rootPath, "stdout.txt"))
-	if err != nil {
-		if os.IsNotExist(err) {
-			// Nothing to verify
-			return
-		}
-		panic(err)
-	}
-
-	expStr := normalizeLines(string(expected))
-	stdout = normalizeLines(stdout)
-
-	if expStr != stdout {
-		tc.t.Errorf("stdout was not as expected\n(WNT):\n%s\n(GOT):\n%s\n", expStr, stdout)
-	}
-}
-
-// normalizeLines returns a version with trailing whitespace stripped from each line.
-func normalizeLines(s string) string {
-	lines := strings.Split(s, "\n")
-	for i := range lines {
-		lines[i] = strings.TrimRightFunc(lines[i], unicode.IsSpace)
-	}
-	return strings.Join(lines, "\n")
-}
-
-// CompareError compares expected and actual stderr output.
-func (tc *TestCase) CompareError(err error, stderr string) {
-	wantExists, want := tc.ErrorExpected != "", tc.ErrorExpected
-	gotExists, got := stderr != "" && err != nil, stderr
-
-	if wantExists && gotExists {
-		switch c := strings.Count(got, want); c {
-		case 0:
-			tc.t.Errorf("error did not contain expected string:\n\t(GOT): %s\n\t(WNT): %s", got, want)
-		case 1:
-		default:
-			tc.t.Errorf("expected error %s matches %d times to actual error %s", want, c, got)
-		}
-	} else if !wantExists && gotExists {
-		tc.t.Fatalf("error raised where none was expected: \n%v", stderr)
-	} else if wantExists && !gotExists {
-		tc.t.Error("error not raised where one was expected:", want)
-	}
-}
-
-// CompareCmdFailure checks to see if the failure/success (in the sense of an
-// exit code) was as expected by the test fixture.
-func (tc *TestCase) CompareCmdFailure(gotFail bool) {
-	if gotFail == tc.ShouldFail {
-		return
-	}
-
-	if tc.ShouldFail {
-		tc.t.Errorf("expected command to fail, but it did not")
-	} else {
-		tc.t.Errorf("expected command not to fail, but it did")
-	}
-}
-
-// CompareVendorPaths validates the vendor directory contents.
-func (tc *TestCase) CompareVendorPaths(gotVendorPaths []string) {
-	if *test.UpdateGolden {
-		tc.VendorFinal = gotVendorPaths
-	} else {
-		wantVendorPaths := tc.VendorFinal
-		if len(gotVendorPaths) != len(wantVendorPaths) {
-			tc.t.Fatalf("Wrong number of vendor paths created: want %d got %d", len(wantVendorPaths), len(gotVendorPaths))
-		}
-		for ind := range gotVendorPaths {
-			if gotVendorPaths[ind] != wantVendorPaths[ind] {
-				tc.t.Errorf("Mismatch in vendor paths created: want %s got %s", wantVendorPaths, gotVendorPaths)
-			}
-		}
-	}
-}
-
-// WriteFile writes a file using the default file permissions.
-func (tc *TestCase) WriteFile(src string, content string) error {
-	return ioutil.WriteFile(src, []byte(content), 0666)
-}
-
-func getFile(path string) (bool, string, error) {
-	_, err := os.Stat(path)
-	if err != nil {
-		return false, "", nil
-	}
-	f, err := ioutil.ReadFile(path)
-	if err != nil {
-		return true, "", err
-	}
-	return true, string(f), nil
-}
diff --git a/vendor/github.com/golang/dep/internal/test/integration/testproj.go b/vendor/github.com/golang/dep/internal/test/integration/testproj.go
deleted file mode 100644
index 1d8cc729d7e5250763e984a2a57ccddc46c076a3..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/test/integration/testproj.go
+++ /dev/null
@@ -1,321 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package integration
-
-import (
-	"bytes"
-	"io"
-	"io/ioutil"
-	"os"
-	"os/exec"
-	"path/filepath"
-	"runtime"
-	"sort"
-	"strings"
-	"testing"
-
-	"github.com/golang/dep/internal/test"
-	"github.com/pkg/errors"
-)
-
-const (
-	projectRoot = "src/github.com/golang/notexist"
-)
-
-// RunFunc defines the function signature for an integration test command to execute.
-type RunFunc func(prog string, newargs []string, outW, errW io.Writer, dir string, env []string) error
-
-// TestProject manages the "virtual" test project directory structure
-// and content
-type TestProject struct {
-	t          *testing.T
-	preImports []string
-	tempdir    string
-	env        []string
-	origWd     string
-	stdout     bytes.Buffer
-	stderr     bytes.Buffer
-	run        RunFunc
-}
-
-// NewTestProject initializes a new test's project directory.
-func NewTestProject(t *testing.T, initPath, wd string, run RunFunc) *TestProject {
-	// Cleaning up the GIT_DIR variable is useful when running tests under git
-	// rebase. In any case, since we're operating with temporary clones,
-	// no pre-existing value could be useful here.
-	// We do it globally because the internal runs don't actually use the
-	// TestProject's environment.
-	os.Unsetenv("GIT_DIR")
-
-	new := &TestProject{
-		t:      t,
-		origWd: wd,
-		env:    os.Environ(),
-		run:    run,
-	}
-	new.makeRootTempDir()
-	new.TempDir(projectRoot, "vendor")
-	new.CopyTree(initPath)
-
-	new.Setenv("GOPATH", new.tempdir)
-
-	return new
-}
-
-// Cleanup (remove) the test project's directory.
-func (p *TestProject) Cleanup() {
-	os.RemoveAll(p.tempdir)
-}
-
-// Path to the test project directory.
-func (p *TestProject) Path(args ...string) string {
-	return filepath.Join(p.tempdir, filepath.Join(args...))
-}
-
-// ProjPath builds an import path for the test project.
-func (p *TestProject) ProjPath(args ...string) string {
-	localPath := append([]string{projectRoot}, args...)
-	return p.Path(localPath...)
-}
-
-// TempDir creates a temporary directory for the test project.
-func (p *TestProject) TempDir(args ...string) {
-	fullPath := p.Path(args...)
-	if err := os.MkdirAll(fullPath, 0755); err != nil && !os.IsExist(err) {
-		p.t.Fatalf("%+v", errors.Errorf("Unable to create temp directory: %s", fullPath))
-	}
-}
-
-// TempProjDir builds the path to a package within the test project.
-func (p *TestProject) TempProjDir(args ...string) {
-	localPath := append([]string{projectRoot}, args...)
-	p.TempDir(localPath...)
-}
-
-// VendorPath lists the contents of the test project's vendor directory.
-func (p *TestProject) VendorPath(args ...string) string {
-	localPath := append([]string{projectRoot, "vendor"}, args...)
-	p.TempDir(localPath...)
-	return p.Path(localPath...)
-}
-
-// RunGo runs a go command, and expects it to succeed.
-func (p *TestProject) RunGo(args ...string) {
-	cmd := exec.Command("go", args...)
-	p.stdout.Reset()
-	p.stderr.Reset()
-	cmd.Stdout = &p.stdout
-	cmd.Stderr = &p.stderr
-	cmd.Dir = p.tempdir
-	cmd.Env = p.env
-	status := cmd.Run()
-	if p.stdout.Len() > 0 {
-		p.t.Log("go standard output:")
-		p.t.Log(p.stdout.String())
-	}
-	if p.stderr.Len() > 0 {
-		p.t.Log("go standard error:")
-		p.t.Log(p.stderr.String())
-	}
-	if status != nil {
-		p.t.Logf("go %v failed unexpectedly: %v", args, status)
-		p.t.FailNow()
-	}
-}
-
-// RunGit runs a git command, and expects it to succeed.
-func (p *TestProject) RunGit(dir string, args ...string) {
-	cmd := exec.Command("git", args...)
-	p.stdout.Reset()
-	p.stderr.Reset()
-	cmd.Stdout = &p.stdout
-	cmd.Stderr = &p.stderr
-	cmd.Dir = dir
-	cmd.Env = p.env
-	status := cmd.Run()
-	if *test.PrintLogs {
-		if p.stdout.Len() > 0 {
-			p.t.Logf("git %v standard output:", args)
-			p.t.Log(p.stdout.String())
-		}
-		if p.stderr.Len() > 0 {
-			p.t.Logf("git %v standard error:", args)
-			p.t.Log(p.stderr.String())
-		}
-	}
-	if status != nil {
-		p.t.Logf("git %v failed unexpectedly: %v", args, status)
-		p.t.FailNow()
-	}
-}
-
-// GetStdout gets the Stdout output from test run.
-func (p *TestProject) GetStdout() string {
-	return p.stdout.String()
-}
-
-// GetStderr gets the Stderr output from test run.
-func (p *TestProject) GetStderr() string {
-	return p.stderr.String()
-}
-
-// GetVendorGit populates the initial vendor directory for a test project.
-func (p *TestProject) GetVendorGit(ip string) {
-	parse := strings.Split(ip, "/")
-	gitDir := strings.Join(parse[:len(parse)-1], string(filepath.Separator))
-	p.TempProjDir("vendor", gitDir)
-	p.RunGit(p.ProjPath("vendor", gitDir), "clone", "http://"+ip)
-}
-
-// DoRun executes the integration test command against the test project.
-func (p *TestProject) DoRun(args []string) error {
-	if *test.PrintLogs {
-		p.t.Logf("running testdep %v", args)
-	}
-	prog := filepath.Join(p.origWd, "testdep"+test.ExeSuffix)
-
-	newargs := args
-	if args[0] != "check" {
-		newargs = append([]string{args[0], "-v"}, args[1:]...)
-	}
-
-	p.stdout.Reset()
-	p.stderr.Reset()
-
-	status := p.run(prog, newargs, &p.stdout, &p.stderr, p.ProjPath(""), p.env)
-
-	if *test.PrintLogs {
-		if p.stdout.Len() > 0 {
-			p.t.Logf("\nstandard output:%s", p.stdout.String())
-		}
-		if p.stderr.Len() > 0 {
-			p.t.Logf("standard error:\n%s", p.stderr.String())
-		}
-	}
-	return status
-}
-
-// CopyTree recursively copies a source directory into the test project's directory.
-func (p *TestProject) CopyTree(src string) {
-	filepath.Walk(src,
-		func(path string, info os.FileInfo, err error) error {
-			if path != src {
-				localpath := path[len(src)+1:]
-				if info.IsDir() {
-					p.TempDir(projectRoot, localpath)
-				} else {
-					destpath := filepath.Join(p.ProjPath(), localpath)
-					copyFile(destpath, path)
-				}
-			}
-			return nil
-		})
-}
-
-func copyFile(dest, src string) {
-	in, err := os.Open(src)
-	if err != nil {
-		panic(err)
-	}
-	defer in.Close()
-
-	out, err := os.Create(dest)
-	if err != nil {
-		panic(err)
-	}
-	defer out.Close()
-
-	io.Copy(out, in)
-}
-
-// GetVendorPaths collects final vendor paths at a depth of three levels.
-func (p *TestProject) GetVendorPaths() []string {
-	vendorPath := p.ProjPath("vendor")
-	result := make([]string, 0)
-	filepath.Walk(
-		vendorPath,
-		func(path string, info os.FileInfo, err error) error {
-			if len(path) > len(vendorPath) && info.IsDir() {
-				parse := strings.Split(path[len(vendorPath)+1:], string(filepath.Separator))
-				if len(parse) == 3 {
-					result = append(result, strings.Join(parse, "/"))
-					return filepath.SkipDir
-				}
-			}
-			return nil
-		},
-	)
-	sort.Strings(result)
-	return result
-}
-
-// GetImportPaths collect final vendor paths at a depth of three levels.
-func (p *TestProject) GetImportPaths() []string {
-	importPath := p.Path("src")
-	result := make([]string, 0)
-	filepath.Walk(
-		importPath,
-		func(path string, info os.FileInfo, err error) error {
-			if len(path) > len(importPath) && info.IsDir() {
-				parse := strings.Split(path[len(importPath)+1:], string(filepath.Separator))
-				if len(parse) == 3 {
-					result = append(result, strings.Join(parse, "/"))
-					return filepath.SkipDir
-				}
-			}
-			return nil
-		},
-	)
-	sort.Strings(result)
-	return result
-}
-
-// RecordImportPaths takes a snapshot of the import paths before test is run.
-func (p *TestProject) RecordImportPaths() {
-	p.preImports = p.GetImportPaths()
-}
-
-// CompareImportPaths compares import paths before and after test commands.
-func (p *TestProject) CompareImportPaths() {
-	wantImportPaths := p.preImports
-	gotImportPaths := p.GetImportPaths()
-	if len(gotImportPaths) != len(wantImportPaths) {
-		p.t.Fatalf("Import path count changed during command: pre %d post %d", len(wantImportPaths), len(gotImportPaths))
-	}
-	for ind := range gotImportPaths {
-		if gotImportPaths[ind] != wantImportPaths[ind] {
-			p.t.Errorf("Change in import paths during: pre %s post %s", gotImportPaths, wantImportPaths)
-		}
-	}
-}
-
-// makeRootTempdir makes a temporary directory for a run of testgo. If
-// the temporary directory was already created, this does nothing.
-func (p *TestProject) makeRootTempDir() {
-	if p.tempdir == "" {
-		var err error
-		p.tempdir, err = ioutil.TempDir("", "gotest")
-		p.Must(err)
-
-		// Fix for OSX where the tempdir is a symlink:
-		if runtime.GOOS == "darwin" {
-			p.tempdir, err = filepath.EvalSymlinks(p.tempdir)
-			p.Must(err)
-		}
-	}
-}
-
-// Setenv sets an environment variable to use when running the test go
-// command.
-func (p *TestProject) Setenv(name, val string) {
-	p.env = append(p.env, name+"="+val)
-}
-
-// Must gives a fatal error if err is not nil.
-func (p *TestProject) Must(err error) {
-	if err != nil {
-		p.t.Fatalf("%+v", err)
-	}
-}
diff --git a/vendor/github.com/golang/dep/internal/test/test.go b/vendor/github.com/golang/dep/internal/test/test.go
deleted file mode 100644
index 9d609f74f56fa81a4218ca1fc577b30ee107932b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/test/test.go
+++ /dev/null
@@ -1,628 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package test
-
-import (
-	"bytes"
-	"flag"
-	"fmt"
-	"go/format"
-	"io"
-	"io/ioutil"
-	"os"
-	"os/exec"
-	"path/filepath"
-	"regexp"
-	"runtime"
-	"strings"
-	"sync"
-	"testing"
-
-	"github.com/pkg/errors"
-)
-
-var (
-	// ExeSuffix is the suffix of executable files; ".exe" on Windows.
-	ExeSuffix string
-	mu        sync.Mutex
-	// PrintLogs controls logging of test commands.
-	PrintLogs = flag.Bool("logs", false, "log stdin/stdout of test commands")
-	// UpdateGolden controls updating test fixtures.
-	UpdateGolden = flag.Bool("update", false, "update golden files")
-)
-
-const (
-	manifestName = "Gopkg.toml"
-	lockName     = "Gopkg.lock"
-)
-
-func init() {
-	switch runtime.GOOS {
-	case "windows":
-		ExeSuffix = ".exe"
-	}
-}
-
-// Helper with utilities for testing.
-type Helper struct {
-	t              *testing.T
-	temps          []string
-	wd             string
-	origWd         string
-	env            []string
-	tempdir        string
-	ran            bool
-	inParallel     bool
-	stdout, stderr bytes.Buffer
-}
-
-// NewHelper initializes a new helper for testing.
-func NewHelper(t *testing.T) *Helper {
-	wd, err := os.Getwd()
-	if err != nil {
-		panic(err)
-	}
-	return &Helper{t: t, origWd: wd}
-}
-
-// Must gives a fatal error if err is not nil.
-func (h *Helper) Must(err error) {
-	if err != nil {
-		h.t.Fatalf("%+v", err)
-	}
-}
-
-// check gives a test non-fatal error if err is not nil.
-func (h *Helper) check(err error) {
-	if err != nil {
-		h.t.Errorf("%+v", err)
-	}
-}
-
-// Parallel runs the test in parallel by calling t.Parallel.
-func (h *Helper) Parallel() {
-	if h.ran {
-		h.t.Fatalf("%+v", errors.New("internal testsuite error: call to parallel after run"))
-	}
-	if h.wd != "" {
-		h.t.Fatalf("%+v", errors.New("internal testsuite error: call to parallel after cd"))
-	}
-	for _, e := range h.env {
-		if strings.HasPrefix(e, "GOROOT=") || strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "GOBIN=") {
-			val := e[strings.Index(e, "=")+1:]
-			if strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata") {
-				h.t.Fatalf("%+v", errors.Errorf("internal testsuite error: call to parallel with testdata in environment (%s)", e))
-			}
-		}
-	}
-	h.inParallel = true
-	h.t.Parallel()
-}
-
-// pwd returns the current directory.
-func (h *Helper) pwd() string {
-	wd, err := os.Getwd()
-	if err != nil {
-		h.t.Fatalf("%+v", errors.Wrap(err, "could not get working directory"))
-	}
-	return wd
-}
-
-// Cd changes the current directory to the named directory. Note that
-// using this means that the test must not be run in parallel with any
-// other tests.
-func (h *Helper) Cd(dir string) {
-	if h.inParallel {
-		h.t.Fatalf("%+v", errors.New("internal testsuite error: changing directory when running in parallel"))
-	}
-	if h.wd == "" {
-		h.wd = h.pwd()
-	}
-	abs, err := filepath.Abs(dir)
-	if err == nil {
-		h.Setenv("PWD", abs)
-	}
-
-	err = os.Chdir(dir)
-	h.Must(errors.Wrapf(err, "Unable to cd to %s", dir))
-}
-
-// Setenv sets an environment variable to use when running the test go
-// command.
-func (h *Helper) Setenv(name, val string) {
-	if h.inParallel && (name == "GOROOT" || name == "GOPATH" || name == "GOBIN") && (strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata")) {
-		h.t.Fatalf("%+v", errors.Errorf("internal testsuite error: call to setenv with testdata (%s=%s) after parallel", name, val))
-	}
-	h.unsetenv(name)
-	h.env = append(h.env, name+"="+val)
-}
-
-// unsetenv removes an environment variable.
-func (h *Helper) unsetenv(name string) {
-	if h.env == nil {
-		h.env = append([]string(nil), os.Environ()...)
-	}
-	for i, v := range h.env {
-		if strings.HasPrefix(v, name+"=") {
-			h.env = append(h.env[:i], h.env[i+1:]...)
-			break
-		}
-	}
-}
-
-// DoRun runs the test go command, recording stdout and stderr and
-// returning exit status.
-func (h *Helper) DoRun(args []string) error {
-	if h.inParallel {
-		for _, arg := range args {
-			if strings.HasPrefix(arg, "testdata") || strings.HasPrefix(arg, "./testdata") {
-				h.t.Fatalf("%+v", errors.New("internal testsuite error: parallel run using testdata"))
-			}
-		}
-	}
-	if *PrintLogs {
-		h.t.Logf("running testdep %v", args)
-	}
-	var prog string
-	if h.wd == "" {
-		prog = "./testdep" + ExeSuffix
-	} else {
-		prog = filepath.Join(h.wd, "testdep"+ExeSuffix)
-	}
-	newargs := args
-	if args[0] != "check" {
-		newargs = append([]string{args[0], "-v"}, args[1:]...)
-	}
-
-	cmd := exec.Command(prog, newargs...)
-	h.stdout.Reset()
-	h.stderr.Reset()
-	cmd.Stdout = &h.stdout
-	cmd.Stderr = &h.stderr
-	cmd.Env = h.env
-	status := cmd.Run()
-	if *PrintLogs {
-		if h.stdout.Len() > 0 {
-			h.t.Log("standard output:")
-			h.t.Log(h.stdout.String())
-		}
-		if h.stderr.Len() > 0 {
-			h.t.Log("standard error:")
-			h.t.Log(h.stderr.String())
-		}
-	}
-	h.ran = true
-	return errors.Wrapf(status, "Error running %s\n%s", strings.Join(newargs, " "), h.stderr.String())
-}
-
-// Run runs the test go command, and expects it to succeed.
-func (h *Helper) Run(args ...string) {
-	if runtime.GOOS == "windows" {
-		mu.Lock()
-		defer mu.Unlock()
-	}
-	if status := h.DoRun(args); status != nil {
-		h.t.Logf("go %v failed unexpectedly: %v", args, status)
-		h.t.FailNow()
-	}
-}
-
-// runFail runs the test go command, and expects it to fail.
-func (h *Helper) runFail(args ...string) {
-	if status := h.DoRun(args); status == nil {
-		h.t.Fatalf("%+v", errors.New("testgo succeeded unexpectedly"))
-	} else {
-		h.t.Log("testgo failed as expected:", status)
-	}
-}
-
-// RunGo runs a go command, and expects it to succeed.
-func (h *Helper) RunGo(args ...string) {
-	cmd := exec.Command("go", args...)
-	h.stdout.Reset()
-	h.stderr.Reset()
-	cmd.Stdout = &h.stdout
-	cmd.Stderr = &h.stderr
-	cmd.Dir = h.wd
-	cmd.Env = h.env
-	status := cmd.Run()
-	if h.stdout.Len() > 0 {
-		h.t.Log("go standard output:")
-		h.t.Log(h.stdout.String())
-	}
-	if h.stderr.Len() > 0 {
-		h.t.Log("go standard error:")
-		h.t.Log(h.stderr.String())
-	}
-	if status != nil {
-		h.t.Logf("go %v failed unexpectedly: %v", args, status)
-		h.t.FailNow()
-	}
-}
-
-// NeedsExternalNetwork makes sure the tests needing external network will not
-// be run when executing tests in short mode.
-func NeedsExternalNetwork(t *testing.T) {
-	if testing.Short() {
-		t.Skip("skipping test: no external network in -short mode")
-	}
-}
-
-// NeedsGit will make sure the tests that require git will be skipped if the
-// git binary is not available.
-func NeedsGit(t *testing.T) {
-	if _, err := exec.LookPath("git"); err != nil {
-		t.Skip("skipping because git binary not found")
-	}
-}
-
-// RunGit runs a git command, and expects it to succeed.
-func (h *Helper) RunGit(dir string, args ...string) {
-	cmd := exec.Command("git", args...)
-	h.stdout.Reset()
-	h.stderr.Reset()
-	cmd.Stdout = &h.stdout
-	cmd.Stderr = &h.stderr
-	cmd.Dir = dir
-	cmd.Env = h.env
-	status := cmd.Run()
-	if *PrintLogs {
-		if h.stdout.Len() > 0 {
-			h.t.Logf("git %v standard output:", args)
-			h.t.Log(h.stdout.String())
-		}
-		if h.stderr.Len() > 0 {
-			h.t.Logf("git %v standard error:", args)
-			h.t.Log(h.stderr.String())
-		}
-	}
-	if status != nil {
-		h.t.Logf("git %v failed unexpectedly: %v", args, status)
-		h.t.FailNow()
-	}
-}
-
-// getStdout returns standard output of the testgo run as a string.
-func (h *Helper) getStdout() string {
-	if !h.ran {
-		h.t.Fatalf("%+v", errors.New("internal testsuite error: stdout called before run"))
-	}
-	return h.stdout.String()
-}
-
-// getStderr returns standard error of the testgo run as a string.
-func (h *Helper) getStderr() string {
-	if !h.ran {
-		h.t.Fatalf("%+v", errors.New("internal testsuite error: stdout called before run"))
-	}
-	return h.stderr.String()
-}
-
-// doGrepMatch looks for a regular expression in a buffer, and returns
-// whether it is found. The regular expression is matched against
-// each line separately, as with the grep command.
-func (h *Helper) doGrepMatch(match string, b *bytes.Buffer) bool {
-	if !h.ran {
-		h.t.Fatalf("%+v", errors.New("internal testsuite error: grep called before run"))
-	}
-	re := regexp.MustCompile(match)
-	for _, ln := range bytes.Split(b.Bytes(), []byte{'\n'}) {
-		if re.Match(ln) {
-			return true
-		}
-	}
-	return false
-}
-
-// doGrep looks for a regular expression in a buffer and fails if it
-// is not found. The name argument is the name of the output we are
-// searching, "output" or "error".  The msg argument is logged on
-// failure.
-func (h *Helper) doGrep(match string, b *bytes.Buffer, name, msg string) {
-	if !h.doGrepMatch(match, b) {
-		h.t.Log(msg)
-		h.t.Logf("pattern %v not found in standard %s", match, name)
-		h.t.FailNow()
-	}
-}
-
-// grepStdout looks for a regular expression in the test run's
-// standard output and fails, logging msg, if it is not found.
-func (h *Helper) grepStdout(match, msg string) {
-	h.doGrep(match, &h.stdout, "output", msg)
-}
-
-// grepStderr looks for a regular expression in the test run's
-// standard error and fails, logging msg, if it is not found.
-func (h *Helper) grepStderr(match, msg string) {
-	h.doGrep(match, &h.stderr, "error", msg)
-}
-
-// grepBoth looks for a regular expression in the test run's standard
-// output or stand error and fails, logging msg, if it is not found.
-func (h *Helper) grepBoth(match, msg string) {
-	if !h.doGrepMatch(match, &h.stdout) && !h.doGrepMatch(match, &h.stderr) {
-		h.t.Log(msg)
-		h.t.Logf("pattern %v not found in standard output or standard error", match)
-		h.t.FailNow()
-	}
-}
-
-// doGrepNot looks for a regular expression in a buffer and fails if
-// it is found. The name and msg arguments are as for doGrep.
-func (h *Helper) doGrepNot(match string, b *bytes.Buffer, name, msg string) {
-	if h.doGrepMatch(match, b) {
-		h.t.Log(msg)
-		h.t.Logf("pattern %v found unexpectedly in standard %s", match, name)
-		h.t.FailNow()
-	}
-}
-
-// grepStdoutNot looks for a regular expression in the test run's
-// standard output and fails, logging msg, if it is found.
-func (h *Helper) grepStdoutNot(match, msg string) {
-	h.doGrepNot(match, &h.stdout, "output", msg)
-}
-
-// grepStderrNot looks for a regular expression in the test run's
-// standard error and fails, logging msg, if it is found.
-func (h *Helper) grepStderrNot(match, msg string) {
-	h.doGrepNot(match, &h.stderr, "error", msg)
-}
-
-// grepBothNot looks for a regular expression in the test run's
-// standard output or stand error and fails, logging msg, if it is
-// found.
-func (h *Helper) grepBothNot(match, msg string) {
-	if h.doGrepMatch(match, &h.stdout) || h.doGrepMatch(match, &h.stderr) {
-		h.t.Log(msg)
-		h.t.Fatalf("%+v", errors.Errorf("pattern %v found unexpectedly in standard output or standard error", match))
-	}
-}
-
-// doGrepCount counts the number of times a regexp is seen in a buffer.
-func (h *Helper) doGrepCount(match string, b *bytes.Buffer) int {
-	if !h.ran {
-		h.t.Fatalf("%+v", errors.New("internal testsuite error: doGrepCount called before run"))
-	}
-	re := regexp.MustCompile(match)
-	c := 0
-	for _, ln := range bytes.Split(b.Bytes(), []byte{'\n'}) {
-		if re.Match(ln) {
-			c++
-		}
-	}
-	return c
-}
-
-// grepCountBoth returns the number of times a regexp is seen in both
-// standard output and standard error.
-func (h *Helper) grepCountBoth(match string) int {
-	return h.doGrepCount(match, &h.stdout) + h.doGrepCount(match, &h.stderr)
-}
-
-// creatingTemp records that the test plans to create a temporary file
-// or directory. If the file or directory exists already, it will be
-// removed. When the test completes, the file or directory will be
-// removed if it exists.
-func (h *Helper) creatingTemp(path string) {
-	if filepath.IsAbs(path) && !strings.HasPrefix(path, h.tempdir) {
-		h.t.Fatalf("%+v", errors.Errorf("internal testsuite error: creatingTemp(%q) with absolute path not in temporary directory", path))
-	}
-	// If we have changed the working directory, make sure we have
-	// an absolute path, because we are going to change directory
-	// back before we remove the temporary.
-	if h.wd != "" && !filepath.IsAbs(path) {
-		path = filepath.Join(h.pwd(), path)
-	}
-	h.Must(os.RemoveAll(path))
-	h.temps = append(h.temps, path)
-}
-
-// makeTempdir makes a temporary directory for a run of testgo. If
-// the temporary directory was already created, this does nothing.
-func (h *Helper) makeTempdir() {
-	if h.tempdir == "" {
-		var err error
-		h.tempdir, err = ioutil.TempDir("", "gotest")
-		h.Must(err)
-	}
-}
-
-// TempFile adds a temporary file for a run of testgo.
-func (h *Helper) TempFile(path, contents string) {
-	h.makeTempdir()
-	h.Must(os.MkdirAll(filepath.Join(h.tempdir, filepath.Dir(path)), 0755))
-	bytes := []byte(contents)
-	if strings.HasSuffix(path, ".go") {
-		formatted, err := format.Source(bytes)
-		if err == nil {
-			bytes = formatted
-		}
-	}
-	h.Must(ioutil.WriteFile(filepath.Join(h.tempdir, path), bytes, 0644))
-}
-
-// WriteTestFile writes a file to the testdata directory from memory.  src is
-// relative to ./testdata.
-func (h *Helper) WriteTestFile(src string, content string) error {
-	err := ioutil.WriteFile(filepath.Join(h.origWd, "testdata", src), []byte(content), 0666)
-	return err
-}
-
-// GetFile reads a file into memory
-func (h *Helper) GetFile(path string) io.ReadCloser {
-	content, err := os.Open(path)
-	if err != nil {
-		h.t.Fatalf("%+v", errors.Wrapf(err, "Unable to open file: %s", path))
-	}
-	return content
-}
-
-// GetTestFile reads a file from the testdata directory into memory.  src is
-// relative to ./testdata.
-func (h *Helper) GetTestFile(src string) io.ReadCloser {
-	fullPath := filepath.Join(h.origWd, "testdata", src)
-	return h.GetFile(fullPath)
-}
-
-// GetTestFileString reads a file from the testdata directory into memory.  src is
-// relative to ./testdata.
-func (h *Helper) GetTestFileString(src string) string {
-	srcf := h.GetTestFile(src)
-	defer srcf.Close()
-	content, err := ioutil.ReadAll(srcf)
-	if err != nil {
-		h.t.Fatalf("%+v", err)
-	}
-	return string(content)
-}
-
-// TempCopy copies a temporary file from testdata into the temporary directory.
-// dest is relative to the temp directory location, and src is relative to
-// ./testdata.
-func (h *Helper) TempCopy(dest, src string) {
-	in := h.GetTestFile(src)
-	defer in.Close()
-	h.TempDir(filepath.Dir(dest))
-	out, err := os.Create(filepath.Join(h.tempdir, dest))
-	if err != nil {
-		panic(err)
-	}
-	defer out.Close()
-	io.Copy(out, in)
-}
-
-// TempDir adds a temporary directory for a run of testgo.
-func (h *Helper) TempDir(path string) {
-	h.makeTempdir()
-	fullPath := filepath.Join(h.tempdir, path)
-	if err := os.MkdirAll(fullPath, 0755); err != nil && !os.IsExist(err) {
-		h.t.Fatalf("%+v", errors.Errorf("Unable to create temp directory: %s", fullPath))
-	}
-}
-
-// Path returns the absolute pathname to file with the temporary
-// directory.
-func (h *Helper) Path(name string) string {
-	if h.tempdir == "" {
-		h.t.Fatalf("%+v", errors.Errorf("internal testsuite error: path(%q) with no tempdir", name))
-	}
-
-	var joined string
-	if name == "." {
-		joined = h.tempdir
-	} else {
-		joined = filepath.Join(h.tempdir, name)
-	}
-
-	// Ensure it's the absolute, symlink-less path we're returning
-	abs, err := filepath.EvalSymlinks(joined)
-	if err != nil {
-		h.t.Fatalf("%+v", errors.Wrapf(err, "internal testsuite error: could not get absolute path for dir(%q)", joined))
-	}
-	return abs
-}
-
-// MustExist fails if path does not exist.
-func (h *Helper) MustExist(path string) {
-	if err := h.ShouldExist(path); err != nil {
-		h.t.Fatalf("%+v", err)
-	}
-}
-
-// ShouldExist returns an error if path does not exist.
-func (h *Helper) ShouldExist(path string) error {
-	if !h.Exist(path) {
-		return errors.Errorf("%s does not exist but should", path)
-	}
-
-	return nil
-}
-
-// Exist returns whether or not a path exists
-func (h *Helper) Exist(path string) bool {
-	if _, err := os.Stat(path); err != nil {
-		if os.IsNotExist(err) {
-			return false
-		}
-		h.t.Fatalf("%+v", errors.Wrapf(err, "Error checking if path exists: %s", path))
-	}
-
-	return true
-}
-
-// MustNotExist fails if path exists.
-func (h *Helper) MustNotExist(path string) {
-	if err := h.ShouldNotExist(path); err != nil {
-		h.t.Fatalf("%+v", err)
-	}
-}
-
-// ShouldNotExist returns an error if path exists.
-func (h *Helper) ShouldNotExist(path string) error {
-	if h.Exist(path) {
-		return errors.Errorf("%s exists but should not", path)
-	}
-
-	return nil
-}
-
-// Cleanup cleans up a test that runs testgo.
-func (h *Helper) Cleanup() {
-	if h.wd != "" {
-		if err := os.Chdir(h.wd); err != nil {
-			// We are unlikely to be able to continue.
-			fmt.Fprintln(os.Stderr, "could not restore working directory, crashing:", err)
-			os.Exit(2)
-		}
-	}
-	// NOTE(mattn): It seems that sometimes git.exe is not dead
-	// when cleanup() is called. But we do not know any way to wait for it.
-	if runtime.GOOS == "windows" {
-		mu.Lock()
-		exec.Command(`taskkill`, `/F`, `/IM`, `git.exe`).Run()
-		mu.Unlock()
-	}
-	for _, path := range h.temps {
-		h.check(os.RemoveAll(path))
-	}
-	if h.tempdir != "" {
-		h.check(os.RemoveAll(h.tempdir))
-	}
-}
-
-// ReadManifest returns the manifest in the current directory.
-func (h *Helper) ReadManifest() string {
-	m := filepath.Join(h.pwd(), manifestName)
-	h.MustExist(m)
-
-	f, err := ioutil.ReadFile(m)
-	h.Must(err)
-	return string(f)
-}
-
-// ReadLock returns the lock in the current directory.
-func (h *Helper) ReadLock() string {
-	l := filepath.Join(h.pwd(), lockName)
-	h.MustExist(l)
-
-	f, err := ioutil.ReadFile(l)
-	h.Must(err)
-	return string(f)
-}
-
-// GetCommit treats repo as a path to a git repository and returns the current
-// revision.
-func (h *Helper) GetCommit(repo string) string {
-	repoPath := h.Path("pkg/dep/sources/https---" + strings.Replace(repo, "/", "-", -1))
-	cmd := exec.Command("git", "rev-parse", "HEAD")
-	cmd.Dir = repoPath
-	out, err := cmd.CombinedOutput()
-	if err != nil {
-		h.t.Fatalf("%+v", errors.Wrapf(err, "git commit failed: out -> %s", string(out)))
-	}
-	return strings.TrimSpace(string(out))
-}
diff --git a/vendor/github.com/golang/dep/internal/test/writer.go b/vendor/github.com/golang/dep/internal/test/writer.go
deleted file mode 100644
index 7fd3a4d948f4697e88f6262fc02f028ba2fe2b50..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/internal/test/writer.go
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2017 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package test
-
-import (
-	"strings"
-	"testing"
-	"unicode"
-)
-
-// Writer adapts a testing.TB to the io.Writer interface
-type Writer struct {
-	testing.TB
-}
-
-func (t Writer) Write(b []byte) (n int, err error) {
-	str := string(b)
-	if len(str) == 0 {
-		return 0, nil
-	}
-
-	for _, part := range strings.Split(str, "\n") {
-		str := strings.TrimRightFunc(part, unicode.IsSpace)
-		if len(str) != 0 {
-			t.Log(str)
-		}
-	}
-	return len(b), err
-}
diff --git a/vendor/github.com/golang/dep/lock.go b/vendor/github.com/golang/dep/lock.go
deleted file mode 100644
index cdb35927a2fd60d9f25cb4f8a9ce9c6428f5294f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/lock.go
+++ /dev/null
@@ -1,259 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dep
-
-import (
-	"bytes"
-	"io"
-	"sort"
-
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/verify"
-	"github.com/pelletier/go-toml"
-	"github.com/pkg/errors"
-)
-
-// LockName is the lock file name used by dep.
-const LockName = "Gopkg.lock"
-
-// Lock holds lock file data and implements gps.Lock.
-type Lock struct {
-	SolveMeta SolveMeta
-	P         []gps.LockedProject
-}
-
-// SolveMeta holds metadata about the solving process that created the lock that
-// is not specific to any individual project.
-type SolveMeta struct {
-	AnalyzerName    string
-	AnalyzerVersion int
-	SolverName      string
-	SolverVersion   int
-	InputImports    []string
-}
-
-type rawLock struct {
-	SolveMeta solveMeta          `toml:"solve-meta"`
-	Projects  []rawLockedProject `toml:"projects"`
-}
-
-type solveMeta struct {
-	AnalyzerName    string   `toml:"analyzer-name"`
-	AnalyzerVersion int      `toml:"analyzer-version"`
-	SolverName      string   `toml:"solver-name"`
-	SolverVersion   int      `toml:"solver-version"`
-	InputImports    []string `toml:"input-imports"`
-}
-
-type rawLockedProject struct {
-	Name      string   `toml:"name"`
-	Branch    string   `toml:"branch,omitempty"`
-	Revision  string   `toml:"revision"`
-	Version   string   `toml:"version,omitempty"`
-	Source    string   `toml:"source,omitempty"`
-	Packages  []string `toml:"packages"`
-	PruneOpts string   `toml:"pruneopts"`
-	Digest    string   `toml:"digest"`
-}
-
-func readLock(r io.Reader) (*Lock, error) {
-	buf := &bytes.Buffer{}
-	_, err := buf.ReadFrom(r)
-	if err != nil {
-		return nil, errors.Wrap(err, "Unable to read byte stream")
-	}
-
-	raw := rawLock{}
-	err = toml.Unmarshal(buf.Bytes(), &raw)
-	if err != nil {
-		return nil, errors.Wrap(err, "Unable to parse the lock as TOML")
-	}
-
-	return fromRawLock(raw)
-}
-
-func fromRawLock(raw rawLock) (*Lock, error) {
-	l := &Lock{
-		P: make([]gps.LockedProject, 0, len(raw.Projects)),
-	}
-
-	l.SolveMeta.AnalyzerName = raw.SolveMeta.AnalyzerName
-	l.SolveMeta.AnalyzerVersion = raw.SolveMeta.AnalyzerVersion
-	l.SolveMeta.SolverName = raw.SolveMeta.SolverName
-	l.SolveMeta.SolverVersion = raw.SolveMeta.SolverVersion
-	l.SolveMeta.InputImports = raw.SolveMeta.InputImports
-
-	for _, ld := range raw.Projects {
-		r := gps.Revision(ld.Revision)
-
-		var v gps.Version = r
-		if ld.Version != "" {
-			if ld.Branch != "" {
-				return nil, errors.Errorf("lock file specified both a branch (%s) and version (%s) for %s", ld.Branch, ld.Version, ld.Name)
-			}
-			v = gps.NewVersion(ld.Version).Pair(r)
-		} else if ld.Branch != "" {
-			v = gps.NewBranch(ld.Branch).Pair(r)
-		} else if r == "" {
-			return nil, errors.Errorf("lock file has entry for %s, but specifies no branch or version", ld.Name)
-		}
-
-		id := gps.ProjectIdentifier{
-			ProjectRoot: gps.ProjectRoot(ld.Name),
-			Source:      ld.Source,
-		}
-
-		var err error
-		vp := verify.VerifiableProject{
-			LockedProject: gps.NewLockedProject(id, v, ld.Packages),
-		}
-		if ld.Digest != "" {
-			vp.Digest, err = verify.ParseVersionedDigest(ld.Digest)
-			if err != nil {
-				return nil, err
-			}
-		}
-
-		po, err := gps.ParsePruneOptions(ld.PruneOpts)
-		if err != nil {
-			return nil, errors.Errorf("%s in prune options for %s", err.Error(), ld.Name)
-		}
-		// Add the vendor pruning bit so that gps doesn't get confused
-		vp.PruneOpts = po | gps.PruneNestedVendorDirs
-
-		l.P = append(l.P, vp)
-	}
-
-	return l, nil
-}
-
-// Projects returns the list of LockedProjects contained in the lock data.
-func (l *Lock) Projects() []gps.LockedProject {
-	if l == nil || l == (*Lock)(nil) {
-		return nil
-	}
-	return l.P
-}
-
-// InputImports reports the list of input imports that were used in generating
-// this Lock.
-func (l *Lock) InputImports() []string {
-	if l == nil || l == (*Lock)(nil) {
-		return nil
-	}
-	return l.SolveMeta.InputImports
-}
-
-// HasProjectWithRoot checks if the lock contains a project with the provided
-// ProjectRoot.
-//
-// This check is O(n) in the number of projects.
-func (l *Lock) HasProjectWithRoot(root gps.ProjectRoot) bool {
-	for _, p := range l.P {
-		if p.Ident().ProjectRoot == root {
-			return true
-		}
-	}
-
-	return false
-}
-
-func (l *Lock) dup() *Lock {
-	l2 := &Lock{
-		SolveMeta: l.SolveMeta,
-		P:         make([]gps.LockedProject, len(l.P)),
-	}
-
-	l2.SolveMeta.InputImports = make([]string, len(l.SolveMeta.InputImports))
-	copy(l2.SolveMeta.InputImports, l.SolveMeta.InputImports)
-	copy(l2.P, l.P)
-
-	return l2
-}
-
-// toRaw converts the manifest into a representation suitable to write to the lock file
-func (l *Lock) toRaw() rawLock {
-	raw := rawLock{
-		SolveMeta: solveMeta{
-			AnalyzerName:    l.SolveMeta.AnalyzerName,
-			AnalyzerVersion: l.SolveMeta.AnalyzerVersion,
-			InputImports:    l.SolveMeta.InputImports,
-			SolverName:      l.SolveMeta.SolverName,
-			SolverVersion:   l.SolveMeta.SolverVersion,
-		},
-		Projects: make([]rawLockedProject, 0, len(l.P)),
-	}
-
-	sort.Slice(l.P, func(i, j int) bool {
-		return l.P[i].Ident().Less(l.P[j].Ident())
-	})
-
-	for _, lp := range l.P {
-		id := lp.Ident()
-		ld := rawLockedProject{
-			Name:     string(id.ProjectRoot),
-			Source:   id.Source,
-			Packages: lp.Packages(),
-		}
-
-		v := lp.Version()
-		ld.Revision, ld.Branch, ld.Version = gps.VersionComponentStrings(v)
-
-		// This will panic if the lock isn't the expected dynamic type. We can
-		// relax this later if it turns out to create real problems, but there's
-		// no intended case in which this is untrue, so it's preferable to start
-		// by failing hard if those expectations aren't met.
-		vp := lp.(verify.VerifiableProject)
-		ld.Digest = vp.Digest.String()
-		ld.PruneOpts = (vp.PruneOpts & ^gps.PruneNestedVendorDirs).String()
-
-		raw.Projects = append(raw.Projects, ld)
-	}
-
-	return raw
-}
-
-// MarshalTOML serializes this lock into TOML via an intermediate raw form.
-func (l *Lock) MarshalTOML() ([]byte, error) {
-	raw := l.toRaw()
-	var buf bytes.Buffer
-	enc := toml.NewEncoder(&buf).ArraysWithOneElementPerLine(true)
-	err := enc.Encode(raw)
-	return buf.Bytes(), errors.Wrap(err, "Unable to marshal lock to TOML string")
-}
-
-// LockFromSolution converts a gps.Solution to dep's representation of a lock.
-// It makes sure that that the provided prune options are set correctly, as the
-// solver does not use VerifiableProjects for new selections it makes.
-//
-// Data is defensively copied wherever necessary to ensure the resulting *Lock
-// shares no memory with the input solution.
-func LockFromSolution(in gps.Solution, prune gps.CascadingPruneOptions) *Lock {
-	p := in.Projects()
-
-	l := &Lock{
-		SolveMeta: SolveMeta{
-			AnalyzerName:    in.AnalyzerName(),
-			AnalyzerVersion: in.AnalyzerVersion(),
-			InputImports:    in.InputImports(),
-			SolverName:      in.SolverName(),
-			SolverVersion:   in.SolverVersion(),
-		},
-		P: make([]gps.LockedProject, 0, len(p)),
-	}
-
-	for _, lp := range p {
-		if vp, ok := lp.(verify.VerifiableProject); ok {
-			l.P = append(l.P, vp)
-		} else {
-			l.P = append(l.P, verify.VerifiableProject{
-				LockedProject: lp,
-				PruneOpts:     prune.PruneOptionsFor(lp.Ident().ProjectRoot),
-			})
-		}
-	}
-
-	return l
-}
diff --git a/vendor/github.com/golang/dep/manifest.go b/vendor/github.com/golang/dep/manifest.go
deleted file mode 100644
index b40ac2db975315711df65fdc5bb586d25dcabf23..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/manifest.go
+++ /dev/null
@@ -1,656 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dep
-
-import (
-	"bytes"
-	"fmt"
-	"io"
-	"reflect"
-	"regexp"
-	"sort"
-	"sync"
-
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/pelletier/go-toml"
-	"github.com/pkg/errors"
-)
-
-// ManifestName is the manifest file name used by dep.
-const ManifestName = "Gopkg.toml"
-
-// Errors
-var (
-	errInvalidConstraint   = errors.Errorf("%q must be a TOML array of tables", "constraint")
-	errInvalidOverride     = errors.Errorf("%q must be a TOML array of tables", "override")
-	errInvalidRequired     = errors.Errorf("%q must be a TOML list of strings", "required")
-	errInvalidIgnored      = errors.Errorf("%q must be a TOML list of strings", "ignored")
-	errInvalidNoVerify     = errors.Errorf("%q must be a TOML list of strings", "noverify")
-	errInvalidPrune        = errors.Errorf("%q must be a TOML table of booleans", "prune")
-	errInvalidPruneProject = errors.Errorf("%q must be a TOML array of tables", "prune.project")
-	errInvalidMetadata     = errors.New("metadata should be a TOML table")
-
-	errInvalidProjectRoot = errors.New("ProjectRoot name validation failed")
-
-	errInvalidPruneValue = errors.New("prune options values must be booleans")
-	errPruneSubProject   = errors.New("prune projects should not contain sub projects")
-
-	errRootPruneContainsName   = errors.Errorf("%q should not include a name", "prune")
-	errInvalidRootPruneValue   = errors.New("root prune options must be omitted instead of being set to false")
-	errInvalidPruneProjectName = errors.Errorf("%q in %q must be a string", "name", "prune.project")
-	errNoName                  = errors.New("no name provided")
-)
-
-// Manifest holds manifest file data and implements gps.RootManifest.
-type Manifest struct {
-	Constraints gps.ProjectConstraints
-	Ovr         gps.ProjectConstraints
-
-	Ignored  []string
-	Required []string
-
-	NoVerify []string
-
-	PruneOptions gps.CascadingPruneOptions
-}
-
-type rawManifest struct {
-	Constraints  []rawProject    `toml:"constraint,omitempty"`
-	Overrides    []rawProject    `toml:"override,omitempty"`
-	Ignored      []string        `toml:"ignored,omitempty"`
-	Required     []string        `toml:"required,omitempty"`
-	NoVerify     []string        `toml:"noverify,omitempty"`
-	PruneOptions rawPruneOptions `toml:"prune,omitempty"`
-}
-
-type rawProject struct {
-	Name     string `toml:"name"`
-	Branch   string `toml:"branch,omitempty"`
-	Revision string `toml:"revision,omitempty"`
-	Version  string `toml:"version,omitempty"`
-	Source   string `toml:"source,omitempty"`
-}
-
-type rawPruneOptions struct {
-	UnusedPackages bool `toml:"unused-packages,omitempty"`
-	NonGoFiles     bool `toml:"non-go,omitempty"`
-	GoTests        bool `toml:"go-tests,omitempty"`
-
-	//Projects []map[string]interface{} `toml:"project,omitempty"`
-	Projects []map[string]interface{}
-}
-
-const (
-	pruneOptionUnusedPackages = "unused-packages"
-	pruneOptionGoTests        = "go-tests"
-	pruneOptionNonGo          = "non-go"
-)
-
-// Constants representing per-project prune uint8 values.
-const (
-	pvnone  uint8 = 0 // No per-project prune value was set in Gopkg.toml.
-	pvtrue  uint8 = 1 // Per-project prune value was explicitly set to true.
-	pvfalse uint8 = 2 // Per-project prune value was explicitly set to false.
-)
-
-// NewManifest instantites a new manifest.
-func NewManifest() *Manifest {
-	return &Manifest{
-		Constraints: make(gps.ProjectConstraints),
-		Ovr:         make(gps.ProjectConstraints),
-		PruneOptions: gps.CascadingPruneOptions{
-			DefaultOptions:    gps.PruneNestedVendorDirs,
-			PerProjectOptions: map[gps.ProjectRoot]gps.PruneOptionSet{},
-		},
-	}
-}
-
-func validateManifest(s string) ([]error, error) {
-	var warns []error
-	// Load the TomlTree from string
-	tree, err := toml.Load(s)
-	if err != nil {
-		return warns, errors.Wrap(err, "unable to load TomlTree from string")
-	}
-	// Convert tree to a map
-	manifest := tree.ToMap()
-
-	// match abbreviated git hash (7chars) or hg hash (12chars)
-	abbrevRevHash := regexp.MustCompile("^[a-f0-9]{7}([a-f0-9]{5})?$")
-	// Look for unknown fields and collect errors
-	for prop, val := range manifest {
-		switch prop {
-		case "metadata":
-			// Check if metadata is of Map type
-			if reflect.TypeOf(val).Kind() != reflect.Map {
-				warns = append(warns, errInvalidMetadata)
-			}
-		case "constraint", "override":
-			valid := true
-			// Invalid if type assertion fails. Not a TOML array of tables.
-			if rawProj, ok := val.([]interface{}); ok {
-				// Check element type. Must be a map. Checking one element would be
-				// enough because TOML doesn't allow mixing of types.
-				if reflect.TypeOf(rawProj[0]).Kind() != reflect.Map {
-					valid = false
-				}
-
-				if valid {
-					// Iterate through each array of tables
-					for _, v := range rawProj {
-						ruleProvided := false
-						props := v.(map[string]interface{})
-						// Check the individual field's key to be valid
-						for key, value := range props {
-							// Check if the key is valid
-							switch key {
-							case "name":
-							case "branch", "version", "source":
-								ruleProvided = true
-							case "revision":
-								ruleProvided = true
-								if valueStr, ok := value.(string); ok {
-									if abbrevRevHash.MatchString(valueStr) {
-										warns = append(warns, fmt.Errorf("revision %q should not be in abbreviated form", valueStr))
-									}
-								}
-							case "metadata":
-								// Check if metadata is of Map type
-								if reflect.TypeOf(value).Kind() != reflect.Map {
-									warns = append(warns, fmt.Errorf("metadata in %q should be a TOML table", prop))
-								}
-							default:
-								// unknown/invalid key
-								warns = append(warns, fmt.Errorf("invalid key %q in %q", key, prop))
-							}
-						}
-						if _, ok := props["name"]; !ok {
-							warns = append(warns, errNoName)
-						} else if !ruleProvided && prop == "constraint" {
-							warns = append(warns, fmt.Errorf("branch, version, revision, or source should be provided for %q", props["name"]))
-						}
-					}
-				}
-			} else {
-				valid = false
-			}
-
-			if !valid {
-				if prop == "constraint" {
-					return warns, errInvalidConstraint
-				}
-				if prop == "override" {
-					return warns, errInvalidOverride
-				}
-			}
-		case "ignored", "required", "noverify":
-			valid := true
-			if rawList, ok := val.([]interface{}); ok {
-				// Check element type of the array. TOML doesn't let mixing of types in
-				// array. Checking one element would be enough. Empty array is valid.
-				if len(rawList) > 0 && reflect.TypeOf(rawList[0]).Kind() != reflect.String {
-					valid = false
-				}
-			} else {
-				valid = false
-			}
-
-			if !valid {
-				if prop == "ignored" {
-					return warns, errInvalidIgnored
-				}
-				if prop == "required" {
-					return warns, errInvalidRequired
-				}
-				if prop == "noverify" {
-					return warns, errInvalidNoVerify
-				}
-			}
-		case "prune":
-			pruneWarns, err := validatePruneOptions(val, true)
-			warns = append(warns, pruneWarns...)
-			if err != nil {
-				return warns, err
-			}
-		default:
-			warns = append(warns, fmt.Errorf("unknown field in manifest: %v", prop))
-		}
-	}
-
-	return warns, nil
-}
-
-func validatePruneOptions(val interface{}, root bool) (warns []error, err error) {
-	if reflect.TypeOf(val).Kind() != reflect.Map {
-		return warns, errInvalidPrune
-	}
-
-	for key, value := range val.(map[string]interface{}) {
-		switch key {
-		case pruneOptionNonGo, pruneOptionGoTests, pruneOptionUnusedPackages:
-			if option, ok := value.(bool); !ok {
-				return warns, errInvalidPruneValue
-			} else if root && !option {
-				return warns, errInvalidRootPruneValue
-			}
-		case "name":
-			if root {
-				warns = append(warns, errRootPruneContainsName)
-			} else if _, ok := value.(string); !ok {
-				return warns, errInvalidPruneProjectName
-			}
-		case "project":
-			if !root {
-				return warns, errPruneSubProject
-			}
-			if reflect.TypeOf(value).Kind() != reflect.Slice {
-				return warns, errInvalidPruneProject
-			}
-
-			for _, project := range value.([]interface{}) {
-				projectWarns, err := validatePruneOptions(project, false)
-				warns = append(warns, projectWarns...)
-				if err != nil {
-					return nil, err
-				}
-			}
-
-		default:
-			if root {
-				warns = append(warns, errors.Errorf("unknown field %q in %q", key, "prune"))
-			} else {
-				warns = append(warns, errors.Errorf("unknown field %q in %q", key, "prune.project"))
-			}
-		}
-	}
-
-	return warns, err
-}
-
-func checkRedundantPruneOptions(co gps.CascadingPruneOptions) (warns []error) {
-	for name, project := range co.PerProjectOptions {
-		if project.UnusedPackages != pvnone {
-			if (co.DefaultOptions&gps.PruneUnusedPackages != 0) == (project.UnusedPackages == pvtrue) {
-				warns = append(warns, errors.Errorf("redundant prune option %q set for %q", pruneOptionUnusedPackages, name))
-			}
-		}
-
-		if project.NonGoFiles != pvnone {
-			if (co.DefaultOptions&gps.PruneNonGoFiles != 0) == (project.NonGoFiles == pvtrue) {
-				warns = append(warns, errors.Errorf("redundant prune option %q set for %q", pruneOptionNonGo, name))
-			}
-		}
-
-		if project.GoTests != pvnone {
-			if (co.DefaultOptions&gps.PruneGoTestFiles != 0) == (project.GoTests == pvtrue) {
-				warns = append(warns, errors.Errorf("redundant prune option %q set for %q", pruneOptionGoTests, name))
-			}
-		}
-	}
-
-	return warns
-}
-
-// ValidateProjectRoots validates the project roots present in manifest.
-func ValidateProjectRoots(c *Ctx, m *Manifest, sm gps.SourceManager) error {
-	// Channel to receive all the errors
-	errorCh := make(chan error, len(m.Constraints)+len(m.Ovr))
-
-	var wg sync.WaitGroup
-
-	validate := func(pr gps.ProjectRoot) {
-		defer wg.Done()
-		origPR, err := sm.DeduceProjectRoot(string(pr))
-		if err != nil {
-			errorCh <- err
-		} else if origPR != pr {
-			errorCh <- fmt.Errorf("the name for %q should be changed to %q", pr, origPR)
-		}
-	}
-
-	for pr := range m.Constraints {
-		wg.Add(1)
-		go validate(pr)
-	}
-	for pr := range m.Ovr {
-		wg.Add(1)
-		go validate(pr)
-	}
-	for pr := range m.PruneOptions.PerProjectOptions {
-		wg.Add(1)
-		go validate(pr)
-	}
-
-	wg.Wait()
-	close(errorCh)
-
-	var valErr error
-	if len(errorCh) > 0 {
-		valErr = errInvalidProjectRoot
-		c.Err.Printf("The following issues were found in Gopkg.toml:\n\n")
-		for err := range errorCh {
-			c.Err.Println("  ✗", err.Error())
-		}
-		c.Err.Println()
-	}
-
-	return valErr
-}
-
-// readManifest returns a Manifest read from r and a slice of validation warnings.
-func readManifest(r io.Reader) (*Manifest, []error, error) {
-	buf := &bytes.Buffer{}
-	_, err := buf.ReadFrom(r)
-	if err != nil {
-		return nil, nil, errors.Wrap(err, "unable to read byte stream")
-	}
-
-	warns, err := validateManifest(buf.String())
-	if err != nil {
-		return nil, warns, errors.Wrap(err, "manifest validation failed")
-	}
-
-	raw := rawManifest{}
-	err = toml.Unmarshal(buf.Bytes(), &raw)
-	if err != nil {
-		return nil, warns, errors.Wrap(err, "unable to parse the manifest as TOML")
-	}
-
-	m, err := fromRawManifest(raw, buf)
-	if err != nil {
-		return nil, warns, err
-	}
-
-	warns = append(warns, checkRedundantPruneOptions(m.PruneOptions)...)
-	return m, warns, nil
-}
-
-func fromRawManifest(raw rawManifest, buf *bytes.Buffer) (*Manifest, error) {
-	m := NewManifest()
-
-	m.Constraints = make(gps.ProjectConstraints, len(raw.Constraints))
-	m.Ovr = make(gps.ProjectConstraints, len(raw.Overrides))
-	m.Ignored = raw.Ignored
-	m.Required = raw.Required
-	m.NoVerify = raw.NoVerify
-
-	for i := 0; i < len(raw.Constraints); i++ {
-		name, prj, err := toProject(raw.Constraints[i])
-		if err != nil {
-			return nil, err
-		}
-		if _, exists := m.Constraints[name]; exists {
-			return nil, errors.Errorf("multiple dependencies specified for %s, can only specify one", name)
-		}
-		m.Constraints[name] = prj
-	}
-
-	for i := 0; i < len(raw.Overrides); i++ {
-		name, prj, err := toProject(raw.Overrides[i])
-		if err != nil {
-			return nil, err
-		}
-		if _, exists := m.Ovr[name]; exists {
-			return nil, errors.Errorf("multiple overrides specified for %s, can only specify one", name)
-		}
-		m.Ovr[name] = prj
-	}
-
-	// TODO(sdboyer) it is awful that we have to do this manual extraction
-	tree, err := toml.Load(buf.String())
-	if err != nil {
-		return nil, errors.Wrap(err, "unable to load TomlTree from string")
-	}
-
-	iprunemap := tree.Get("prune")
-	if iprunemap == nil {
-		return m, nil
-	}
-	// Previous validation already guaranteed that, if it exists, it's this map
-	// type.
-	m.PruneOptions = fromRawPruneOptions(iprunemap.(*toml.Tree).ToMap())
-
-	return m, nil
-}
-
-func fromRawPruneOptions(prunemap map[string]interface{}) gps.CascadingPruneOptions {
-	opts := gps.CascadingPruneOptions{
-		DefaultOptions:    gps.PruneNestedVendorDirs,
-		PerProjectOptions: make(map[gps.ProjectRoot]gps.PruneOptionSet),
-	}
-
-	if val, has := prunemap[pruneOptionUnusedPackages]; has && val.(bool) {
-		opts.DefaultOptions |= gps.PruneUnusedPackages
-	}
-	if val, has := prunemap[pruneOptionNonGo]; has && val.(bool) {
-		opts.DefaultOptions |= gps.PruneNonGoFiles
-	}
-	if val, has := prunemap[pruneOptionGoTests]; has && val.(bool) {
-		opts.DefaultOptions |= gps.PruneGoTestFiles
-	}
-
-	trinary := func(v interface{}) uint8 {
-		b := v.(bool)
-		if b {
-			return pvtrue
-		}
-		return pvfalse
-	}
-
-	if projprunes, has := prunemap["project"]; has {
-		for _, proj := range projprunes.([]interface{}) {
-			var pr gps.ProjectRoot
-			// This should be redundant, but being explicit doesn't hurt.
-			pos := gps.PruneOptionSet{NestedVendor: pvtrue}
-
-			for key, val := range proj.(map[string]interface{}) {
-				switch key {
-				case "name":
-					pr = gps.ProjectRoot(val.(string))
-				case pruneOptionNonGo:
-					pos.NonGoFiles = trinary(val)
-				case pruneOptionGoTests:
-					pos.GoTests = trinary(val)
-				case pruneOptionUnusedPackages:
-					pos.UnusedPackages = trinary(val)
-				}
-			}
-			opts.PerProjectOptions[pr] = pos
-		}
-	}
-
-	return opts
-}
-
-// toRawPruneOptions converts a gps.RootPruneOption's PruneOptions to rawPruneOptions
-//
-// Will panic if gps.RootPruneOption includes ProjectPruneOptions
-// See https://github.com/golang/dep/pull/1460#discussion_r158128740 for more information
-func toRawPruneOptions(co gps.CascadingPruneOptions) rawPruneOptions {
-	if len(co.PerProjectOptions) != 0 {
-		panic("toRawPruneOptions cannot convert ProjectOptions to rawPruneOptions")
-	}
-	raw := rawPruneOptions{}
-
-	if (co.DefaultOptions & gps.PruneUnusedPackages) != 0 {
-		raw.UnusedPackages = true
-	}
-
-	if (co.DefaultOptions & gps.PruneNonGoFiles) != 0 {
-		raw.NonGoFiles = true
-	}
-
-	if (co.DefaultOptions & gps.PruneGoTestFiles) != 0 {
-		raw.GoTests = true
-	}
-	return raw
-}
-
-// toProject interprets the string representations of project information held in
-// a rawProject, converting them into a proper gps.ProjectProperties. An
-// error is returned if the rawProject contains some invalid combination -
-// for example, if both a branch and version constraint are specified.
-func toProject(raw rawProject) (n gps.ProjectRoot, pp gps.ProjectProperties, err error) {
-	n = gps.ProjectRoot(raw.Name)
-	if raw.Branch != "" {
-		if raw.Version != "" || raw.Revision != "" {
-			return n, pp, errors.Errorf("multiple constraints specified for %s, can only specify one", n)
-		}
-		pp.Constraint = gps.NewBranch(raw.Branch)
-	} else if raw.Version != "" {
-		if raw.Revision != "" {
-			return n, pp, errors.Errorf("multiple constraints specified for %s, can only specify one", n)
-		}
-
-		// always semver if we can
-		pp.Constraint, err = gps.NewSemverConstraintIC(raw.Version)
-		if err != nil {
-			// but if not, fall back on plain versions
-			pp.Constraint = gps.NewVersion(raw.Version)
-		}
-	} else if raw.Revision != "" {
-		pp.Constraint = gps.Revision(raw.Revision)
-	} else {
-		// If the user specifies nothing, it means an open constraint (accept
-		// anything).
-		pp.Constraint = gps.Any()
-	}
-
-	pp.Source = raw.Source
-
-	return n, pp, nil
-}
-
-// MarshalTOML serializes this manifest into TOML via an intermediate raw form.
-func (m *Manifest) MarshalTOML() ([]byte, error) {
-	raw := m.toRaw()
-	var buf bytes.Buffer
-	enc := toml.NewEncoder(&buf).ArraysWithOneElementPerLine(true)
-	err := enc.Encode(raw)
-	return buf.Bytes(), errors.Wrap(err, "unable to marshal the lock to a TOML string")
-}
-
-// toRaw converts the manifest into a representation suitable to write to the manifest file
-func (m *Manifest) toRaw() rawManifest {
-	raw := rawManifest{
-		Constraints: make([]rawProject, 0, len(m.Constraints)),
-		Overrides:   make([]rawProject, 0, len(m.Ovr)),
-		Ignored:     m.Ignored,
-		Required:    m.Required,
-		NoVerify:    m.NoVerify,
-	}
-
-	for n, prj := range m.Constraints {
-		raw.Constraints = append(raw.Constraints, toRawProject(n, prj))
-	}
-	sort.Sort(sortedRawProjects(raw.Constraints))
-
-	for n, prj := range m.Ovr {
-		raw.Overrides = append(raw.Overrides, toRawProject(n, prj))
-	}
-	sort.Sort(sortedRawProjects(raw.Overrides))
-
-	raw.PruneOptions = toRawPruneOptions(m.PruneOptions)
-
-	return raw
-}
-
-type sortedRawProjects []rawProject
-
-func (s sortedRawProjects) Len() int      { return len(s) }
-func (s sortedRawProjects) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
-func (s sortedRawProjects) Less(i, j int) bool {
-	l, r := s[i], s[j]
-
-	if l.Name < r.Name {
-		return true
-	}
-	if r.Name < l.Name {
-		return false
-	}
-
-	return l.Source < r.Source
-}
-
-func toRawProject(name gps.ProjectRoot, project gps.ProjectProperties) rawProject {
-	raw := rawProject{
-		Name:   string(name),
-		Source: project.Source,
-	}
-
-	if v, ok := project.Constraint.(gps.Version); ok {
-		switch v.Type() {
-		case gps.IsRevision:
-			raw.Revision = v.String()
-		case gps.IsBranch:
-			raw.Branch = v.String()
-		case gps.IsSemver, gps.IsVersion:
-			raw.Version = v.ImpliedCaretString()
-		}
-		return raw
-	}
-
-	// We simply don't allow for a case where the user could directly
-	// express a 'none' constraint, so we can ignore it here. We also ignore
-	// the 'any' case, because that's the other possibility, and it's what
-	// we interpret not having any constraint expressions at all to mean.
-	// if !gps.IsAny(pp.Constraint) && !gps.IsNone(pp.Constraint) {
-	if !gps.IsAny(project.Constraint) && project.Constraint != nil {
-		// Has to be a semver range.
-		raw.Version = project.Constraint.ImpliedCaretString()
-	}
-
-	return raw
-}
-
-// DependencyConstraints returns a list of project-level constraints.
-func (m *Manifest) DependencyConstraints() gps.ProjectConstraints {
-	return m.Constraints
-}
-
-// Overrides returns a list of project-level override constraints.
-func (m *Manifest) Overrides() gps.ProjectConstraints {
-	return m.Ovr
-}
-
-// IgnoredPackages returns a set of import paths to ignore.
-func (m *Manifest) IgnoredPackages() *pkgtree.IgnoredRuleset {
-	if m == nil {
-		return pkgtree.NewIgnoredRuleset(nil)
-	}
-	return pkgtree.NewIgnoredRuleset(m.Ignored)
-}
-
-// HasConstraintsOn checks if the manifest contains either constraints or
-// overrides on the provided ProjectRoot.
-func (m *Manifest) HasConstraintsOn(root gps.ProjectRoot) bool {
-	if _, has := m.Constraints[root]; has {
-		return true
-	}
-	if _, has := m.Ovr[root]; has {
-		return true
-	}
-
-	return false
-}
-
-// RequiredPackages returns a set of import paths to require.
-func (m *Manifest) RequiredPackages() map[string]bool {
-	if m == nil || m == (*Manifest)(nil) {
-		return map[string]bool{}
-	}
-
-	if len(m.Required) == 0 {
-		return nil
-	}
-
-	mp := make(map[string]bool, len(m.Required))
-	for _, i := range m.Required {
-		mp[i] = true
-	}
-
-	return mp
-}
diff --git a/vendor/github.com/golang/dep/project.go b/vendor/github.com/golang/dep/project.go
deleted file mode 100644
index e54744d31574aa042aa413e8b533bebbfadaeaf9..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/project.go
+++ /dev/null
@@ -1,302 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dep
-
-import (
-	"fmt"
-	"os"
-	"path/filepath"
-	"sort"
-	"sync"
-
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/pkgtree"
-	"github.com/golang/dep/gps/verify"
-	"github.com/golang/dep/internal/fs"
-	"github.com/pkg/errors"
-)
-
-var (
-	errProjectNotFound    = fmt.Errorf("could not find project %s, use dep init to initiate a manifest", ManifestName)
-	errVendorBackupFailed = fmt.Errorf("failed to create vendor backup. File with same name exists")
-)
-
-// findProjectRoot searches from the starting directory upwards looking for a
-// manifest file until we get to the root of the filesystem.
-func findProjectRoot(from string) (string, error) {
-	for {
-		mp := filepath.Join(from, ManifestName)
-
-		_, err := os.Stat(mp)
-		if err == nil {
-			return from, nil
-		}
-		if !os.IsNotExist(err) {
-			// Some err other than non-existence - return that out
-			return "", err
-		}
-
-		parent := filepath.Dir(from)
-		if parent == from {
-			return "", errProjectNotFound
-		}
-		from = parent
-	}
-}
-
-// checkGopkgFilenames validates filename case for the manifest and lock files.
-//
-// This is relevant on case-insensitive file systems like the defaults in Windows and
-// macOS.
-//
-// If manifest file is not found, it returns an error indicating the project could not be
-// found. If it is found but the case does not match, an error is returned. If a lock
-// file is not found, no error is returned as lock file is optional. If it is found but
-// the case does not match, an error is returned.
-func checkGopkgFilenames(projectRoot string) error {
-	// ReadActualFilenames is actually costly. Since the check to validate filename case
-	// for Gopkg filenames is not relevant to case-sensitive filesystems like
-	// ext4(linux), try for an early return.
-	caseSensitive, err := fs.IsCaseSensitiveFilesystem(projectRoot)
-	if err != nil {
-		return errors.Wrap(err, "could not check validity of configuration filenames")
-	}
-	if caseSensitive {
-		return nil
-	}
-
-	actualFilenames, err := fs.ReadActualFilenames(projectRoot, []string{ManifestName, LockName})
-
-	if err != nil {
-		return errors.Wrap(err, "could not check validity of configuration filenames")
-	}
-
-	actualMfName, found := actualFilenames[ManifestName]
-	if !found {
-		// Ideally this part of the code won't ever be executed if it is called after
-		// `findProjectRoot`. But be thorough and handle it anyway.
-		return errProjectNotFound
-	}
-	if actualMfName != ManifestName {
-		return fmt.Errorf("manifest filename %q does not match %q", actualMfName, ManifestName)
-	}
-
-	// If a file is not found, the string map returned by `fs.ReadActualFilenames` will
-	// not have an entry for the given filename. Since the lock file is optional, we
-	// should check for equality only if it was found.
-	actualLfName, found := actualFilenames[LockName]
-	if found && actualLfName != LockName {
-		return fmt.Errorf("lock filename %q does not match %q", actualLfName, LockName)
-	}
-
-	return nil
-}
-
-// A Project holds a Manifest and optional Lock for a project.
-type Project struct {
-	// AbsRoot is the absolute path to the root directory of the project.
-	AbsRoot string
-	// ResolvedAbsRoot is the resolved absolute path to the root directory of the project.
-	// If AbsRoot is not a symlink, then ResolvedAbsRoot should equal AbsRoot.
-	ResolvedAbsRoot string
-	// ImportRoot is the import path of the project's root directory.
-	ImportRoot gps.ProjectRoot
-	// The Manifest, as read from Gopkg.toml on disk.
-	Manifest *Manifest
-	// The Lock, as read from Gopkg.lock on disk.
-	Lock *Lock // Optional
-	// The above Lock, with changes applied to it. There are two possible classes of
-	// changes:
-	//  1. Changes to InputImports
-	//  2. Changes to per-project prune options
-	ChangedLock *Lock
-	// The PackageTree representing the project, with hidden and ignored
-	// packages already trimmed.
-	RootPackageTree pkgtree.PackageTree
-	// Oncer to manage access to initial check of vendor.
-	CheckVendor sync.Once
-	// The result of calling verify.CheckDepTree against the current lock and
-	// vendor dir.
-	VendorStatus map[string]verify.VendorStatus
-	// The error, if any, from checking vendor.
-	CheckVendorErr error
-}
-
-// VerifyVendor checks the vendor directory against the hash digests in
-// Gopkg.lock.
-//
-// This operation is overseen by the sync.Once in CheckVendor. This is intended
-// to facilitate running verification in the background while solving, then
-// having the results ready later.
-func (p *Project) VerifyVendor() (map[string]verify.VendorStatus, error) {
-	p.CheckVendor.Do(func() {
-		p.VendorStatus = make(map[string]verify.VendorStatus)
-		vendorDir := filepath.Join(p.AbsRoot, "vendor")
-
-		var lps []gps.LockedProject
-		if p.Lock != nil {
-			lps = p.Lock.Projects()
-		}
-
-		sums := make(map[string]verify.VersionedDigest)
-		for _, lp := range lps {
-			sums[string(lp.Ident().ProjectRoot)] = lp.(verify.VerifiableProject).Digest
-		}
-
-		p.VendorStatus, p.CheckVendorErr = verify.CheckDepTree(vendorDir, sums)
-	})
-
-	return p.VendorStatus, p.CheckVendorErr
-}
-
-// SetRoot sets the project AbsRoot and ResolvedAbsRoot. If root is not a symlink, ResolvedAbsRoot will be set to root.
-func (p *Project) SetRoot(root string) error {
-	rroot, err := filepath.EvalSymlinks(root)
-	if err != nil {
-		return err
-	}
-
-	p.ResolvedAbsRoot, p.AbsRoot = rroot, root
-	return nil
-}
-
-// MakeParams is a simple helper to create a gps.SolveParameters without setting
-// any nils incorrectly.
-func (p *Project) MakeParams() gps.SolveParameters {
-	params := gps.SolveParameters{
-		RootDir:         p.AbsRoot,
-		ProjectAnalyzer: Analyzer{},
-		RootPackageTree: p.RootPackageTree,
-	}
-
-	if p.Manifest != nil {
-		params.Manifest = p.Manifest
-	}
-
-	// It should be impossible for p.ChangedLock to be nil if p.Lock is non-nil;
-	// we always want to use the former for solving.
-	if p.ChangedLock != nil {
-		params.Lock = p.ChangedLock
-	}
-
-	return params
-}
-
-// parseRootPackageTree analyzes the root project's disk contents to create a
-// PackageTree, trimming out packages that are not relevant for root projects
-// along the way.
-//
-// The resulting tree is cached internally at p.RootPackageTree.
-func (p *Project) parseRootPackageTree() (pkgtree.PackageTree, error) {
-	if p.RootPackageTree.Packages == nil {
-		ptree, err := pkgtree.ListPackages(p.ResolvedAbsRoot, string(p.ImportRoot))
-		if err != nil {
-			return pkgtree.PackageTree{}, errors.Wrap(err, "analysis of current project's packages failed")
-		}
-		// We don't care about (unreachable) hidden packages for the root project,
-		// so drop all of those.
-		var ig *pkgtree.IgnoredRuleset
-		if p.Manifest != nil {
-			ig = p.Manifest.IgnoredPackages()
-		}
-		p.RootPackageTree = ptree.TrimHiddenPackages(true, true, ig)
-	}
-	return p.RootPackageTree, nil
-}
-
-// GetDirectDependencyNames returns the set of unique Project Roots that are the
-// direct dependencies of this Project.
-//
-// A project is considered a direct dependency if at least one of its packages
-// is named in either this Project's required list, or if there is at least one
-// non-ignored import statement from a non-ignored package in the current
-// project's package tree.
-//
-// The returned map of Project Roots contains only boolean true values; this
-// makes a "false" value always indicate an absent key, which makes conditional
-// checks against the map more ergonomic.
-//
-// This function will correctly utilize ignores and requireds from an existing
-// manifest, if one is present, but will also do the right thing without a
-// manifest.
-func (p *Project) GetDirectDependencyNames(sm gps.SourceManager) (map[gps.ProjectRoot]bool, error) {
-	var reach []string
-	if p.ChangedLock != nil {
-		reach = p.ChangedLock.InputImports()
-	} else {
-		ptree, err := p.parseRootPackageTree()
-		if err != nil {
-			return nil, err
-		}
-		reach = externalImportList(ptree, p.Manifest)
-	}
-
-	directDeps := map[gps.ProjectRoot]bool{}
-	for _, ip := range reach {
-		pr, err := sm.DeduceProjectRoot(ip)
-		if err != nil {
-			return nil, err
-		}
-		directDeps[pr] = true
-	}
-
-	return directDeps, nil
-}
-
-// FindIneffectualConstraints looks for constraint rules expressed in the
-// manifest that will have no effect during solving, as they are specified for
-// projects that are not direct dependencies of the Project.
-//
-// "Direct dependency" here is as implemented by GetDirectDependencyNames();
-// it correctly incorporates all "ignored" and "required" rules.
-func (p *Project) FindIneffectualConstraints(sm gps.SourceManager) []gps.ProjectRoot {
-	if p.Manifest == nil {
-		return nil
-	}
-
-	dd, err := p.GetDirectDependencyNames(sm)
-	if err != nil {
-		return nil
-	}
-
-	var ineff []gps.ProjectRoot
-	for pr := range p.Manifest.DependencyConstraints() {
-		if !dd[pr] {
-			ineff = append(ineff, pr)
-		}
-	}
-
-	sort.Slice(ineff, func(i, j int) bool {
-		return ineff[i] < ineff[j]
-	})
-	return ineff
-}
-
-// BackupVendor looks for existing vendor directory and if it's not empty,
-// creates a backup of it to a new directory with the provided suffix.
-func BackupVendor(vpath, suffix string) (string, error) {
-	// Check if there's a non-empty vendor directory
-	vendorExists, err := fs.IsNonEmptyDir(vpath)
-	if err != nil && !os.IsNotExist(err) {
-		return "", err
-	}
-	if vendorExists {
-		// vpath is a full filepath. We need to split it to prefix the backup dir
-		// with an "_"
-		vpathDir, name := filepath.Split(vpath)
-		vendorbak := filepath.Join(vpathDir, "_"+name+"-"+suffix)
-		// Check if a directory with same name exists
-		if _, err = os.Stat(vendorbak); os.IsNotExist(err) {
-			// Copy existing vendor to vendor-{suffix}
-			if err := fs.CopyDir(vpath, vendorbak); err != nil {
-				return "", err
-			}
-			return vendorbak, nil
-		}
-		return "", errVendorBackupFailed
-	}
-
-	return "", nil
-}
diff --git a/vendor/github.com/golang/dep/testdata/analyzer/Gopkg.toml b/vendor/github.com/golang/dep/testdata/analyzer/Gopkg.toml
deleted file mode 100644
index a86104fe527bd533a1dc1d0bf7e14f081fce9b8f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/analyzer/Gopkg.toml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-[[constraint]]
-  name = "github.com/golang/dep"
-  version = ">=0.12.0, <1.0.0"
-
-[[constraint]]
-  name = "github.com/pkg/errors"
-  version = ">=0.8.0, <1.0.0"
diff --git a/vendor/github.com/golang/dep/testdata/lock/error0.toml b/vendor/github.com/golang/dep/testdata/lock/error0.toml
deleted file mode 100644
index 5b6b7f989240ca920029f3a1d47622b93b978698..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/lock/error0.toml
+++ /dev/null
@@ -1,6 +0,0 @@
-[[projects]]
-  name = "github.com/golang/dep"
-  branch = "master"
-  version = "v0.12.0"
-  revision = "d05d5aca9f895d19e9265839bffeadd74a2d2ecb"
-  packages = ["."]
diff --git a/vendor/github.com/golang/dep/testdata/lock/error1.toml b/vendor/github.com/golang/dep/testdata/lock/error1.toml
deleted file mode 100644
index 41ff9ffdbb397c598d56db53ad53117a4d258b89..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/lock/error1.toml
+++ /dev/null
@@ -1,6 +0,0 @@
-[[projects]]
-  name = "github.com/golang/dep"
-  branch = "master"
-  revision = "d05d5aca9f895d19e9265839bffeadd74a2d2ecb"
-  packages = ["."]
-  digest = "1:000aaa2a285ab27944a4d7adcba8dbd03980f59ba652f12db39fa93b927c345593e"
diff --git a/vendor/github.com/golang/dep/testdata/lock/error2.toml b/vendor/github.com/golang/dep/testdata/lock/error2.toml
deleted file mode 100644
index 17b00d104c61895ac7b5ed203f6ee7a4ea4bc293..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/lock/error2.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[[projects]]
-  name = "github.com/golang/dep"
-  packages = ["."]
diff --git a/vendor/github.com/golang/dep/testdata/lock/golden0.toml b/vendor/github.com/golang/dep/testdata/lock/golden0.toml
deleted file mode 100644
index dedbcfaa5c881aa87266c1e1ba40a70e62e8ab96..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/lock/golden0.toml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-[[projects]]
-  branch = "master"
-  digest = "1:666f6f"
-  name = "github.com/golang/dep"
-  packages = ["."]
-  pruneopts = ""
-  revision = "d05d5aca9f895d19e9265839bffeadd74a2d2ecb"
-
-[solve-meta]
-  analyzer-name = ""
-  analyzer-version = 0
-  input-imports = []
-  solver-name = ""
-  solver-version = 0
diff --git a/vendor/github.com/golang/dep/testdata/lock/golden1.toml b/vendor/github.com/golang/dep/testdata/lock/golden1.toml
deleted file mode 100644
index 4ffbce35b9a37aad6a488d29d95c51d37fde960e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/lock/golden1.toml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-[[projects]]
-  digest = "1:666f6f"
-  name = "github.com/golang/dep"
-  packages = ["."]
-  pruneopts = "NUT"
-  revision = "d05d5aca9f895d19e9265839bffeadd74a2d2ecb"
-  version = "0.12.2"
-
-[solve-meta]
-  analyzer-name = ""
-  analyzer-version = 0
-  input-imports = []
-  solver-name = ""
-  solver-version = 0
diff --git a/vendor/github.com/golang/dep/testdata/manifest/error1.toml b/vendor/github.com/golang/dep/testdata/manifest/error1.toml
deleted file mode 100644
index fddf02a2b0a3461e8df27430b080f6814fc1de2e..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/manifest/error1.toml
+++ /dev/null
@@ -1,15 +0,0 @@
-ignored = ["github.com/foo/bar"]
-
-[[constraint]]
-  name = "github.com/golang/dep"
-  branch = "master"
-  revision = "d05d5aca9f895d19e9265839bffeadd74a2d2ecb"
-  version = "^v0.12.0"
-  source = "https://github.com/golang/dep"
-
-[[override]]
-  name = "github.com/golang/dep"
-  branch = "master"
-  revision = "d05d5aca9f895d19e9265839bffeadd74a2d2ecb"
-  version = "^v0.12.0"
-  source = "https://github.com/golang/dep"
diff --git a/vendor/github.com/golang/dep/testdata/manifest/error2.toml b/vendor/github.com/golang/dep/testdata/manifest/error2.toml
deleted file mode 100644
index 6b1408362d991a377ffdaec5fb691160441744b6..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/manifest/error2.toml
+++ /dev/null
@@ -1,9 +0,0 @@
-ignored = ["github.com/foo/bar"]
-
-[[constraint]]
-  name = "github.com/golang/dep"
-  branch = "master"
-
-[[constraint]]
-  name = "github.com/golang/dep"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/testdata/manifest/error3.toml b/vendor/github.com/golang/dep/testdata/manifest/error3.toml
deleted file mode 100644
index 4d96624be0477467e72417281cc451100ea293ed..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/manifest/error3.toml
+++ /dev/null
@@ -1,9 +0,0 @@
-ignored = ["github.com/foo/bar"]
-
-[[override]]
-  name = "github.com/golang/dep"
-  branch = "master"
-
-[[override]]
-  name = "github.com/golang/dep"
-  branch = "master"
diff --git a/vendor/github.com/golang/dep/testdata/manifest/golden.toml b/vendor/github.com/golang/dep/testdata/manifest/golden.toml
deleted file mode 100644
index 62af53fabb75f18b27423c85a3ad4f6e637cc87c..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/manifest/golden.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-ignored = ["github.com/foo/bar"]
-
-[[constraint]]
-  name = "github.com/babble/brook"
-  revision = "d05d5aca9f895d19e9265839bffeadd74a2d2ecb"
-
-[[constraint]]
-  name = "github.com/golang/dep"
-  version = "0.12.0"
-
-[[override]]
-  branch = "master"
-  name = "github.com/golang/dep"
-  source = "https://github.com/golang/dep"
-
-[prune]
-  non-go = true
diff --git a/vendor/github.com/golang/dep/testdata/rootfind/Gopkg.toml b/vendor/github.com/golang/dep/testdata/rootfind/Gopkg.toml
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/testdata/rootfind/subdir/.gitkeep b/vendor/github.com/golang/dep/testdata/rootfind/subdir/.gitkeep
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/testdata/txn_writer/badinput_fileroot b/vendor/github.com/golang/dep/testdata/txn_writer/badinput_fileroot
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/vendor/github.com/golang/dep/testdata/txn_writer/expected_diff_output.txt b/vendor/github.com/golang/dep/testdata/txn_writer/expected_diff_output.txt
deleted file mode 100644
index 7fe4662ccd237549bfc92f95785ca77f21a4f38a..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/txn_writer/expected_diff_output.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-Add:
-[[projects]]
-  name = "github.com/sdboyer/deptest"
-  packages = ["."]
-  revision = "ff2948a2ac8f538c4ecd55962e919d1e13e74baf"
-  version = "v1.0.0"
-
-[[projects]]
-  name = "github.com/stuff/realthing"
-  packages = ["."]
-  revision = "1f02e52d6bac308da54ab84a234c58a98ca82347"
-  version = "2.0.0"
-
-Remove:
-[[projects]]
-  name = "github.com/stuff/placeholder"
-  packages = ["."]
-  revision = "6694017eeb4e20fd277b049bf29dba4895c97234"
-  version = "2.0.0"
-
-Modify:
-[[projects]]
-  branch = "- master"
-  name = "github.com/foo/bar"
-  packages = ["- placeholder","+ thing"]
-  revision = "f24338400f072ef18125ae0fbe6b06fe6d1783e7 -> 2a3a211e171803acb82d1d5d42ceb53228f51751"
-  source = "+ http://github.example.com/foo/bar"
-  version = "+ 1.2.0"
-
diff --git a/vendor/github.com/golang/dep/testdata/txn_writer/expected_lock.toml b/vendor/github.com/golang/dep/testdata/txn_writer/expected_lock.toml
deleted file mode 100644
index 9b21bdbfe6ee58aeacc9d33bed2262484715c7d1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/txn_writer/expected_lock.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-
-[[projects]]
-  digest = "1:c4844614e2b12233bb037afec536831b92a4f58f7b712432b978d34df291e43a"
-  name = "github.com/sdboyer/dep-test"
-  packages = ["."]
-  pruneopts = ""
-  revision = "2a3a211e171803acb82d1d5d42ceb53228f51751"
-  version = "1.0.0"
-
-[solve-meta]
-  analyzer-name = ""
-  analyzer-version = 0
-  input-imports = []
-  solver-name = ""
-  solver-version = 0
diff --git a/vendor/github.com/golang/dep/testdata/txn_writer/expected_manifest.toml b/vendor/github.com/golang/dep/testdata/txn_writer/expected_manifest.toml
deleted file mode 100644
index 560ea5c5aef4f2997e1f343f0f459cf37eb3fa63..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/testdata/txn_writer/expected_manifest.toml
+++ /dev/null
@@ -1,30 +0,0 @@
-# Gopkg.toml example
-#
-# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
-# for detailed Gopkg.toml documentation.
-#
-# required = ["github.com/user/thing/cmd/thing"]
-# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
-#
-# [[constraint]]
-#   name = "github.com/user/project"
-#   version = "1.0.0"
-#
-# [[constraint]]
-#   name = "github.com/user/project2"
-#   branch = "dev"
-#   source = "github.com/myfork/project2"
-#
-# [[override]]
-#   name = "github.com/x/y"
-#   version = "2.4.0"
-#
-# [prune]
-#   non-go = false
-#   go-tests = true
-#   unused-packages = true
-
-
-[[constraint]]
-  name = "github.com/sdboyer/dep-test"
-  version = "1.0.0"
diff --git a/vendor/github.com/golang/dep/txn_writer.go b/vendor/github.com/golang/dep/txn_writer.go
deleted file mode 100644
index 37be463555f73d9d2a69967e0e64d78fdeb903be..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/txn_writer.go
+++ /dev/null
@@ -1,788 +0,0 @@
-// Copyright 2016 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package dep
-
-import (
-	"context"
-	"encoding/hex"
-	"fmt"
-	"io/ioutil"
-	"log"
-	"os"
-	"path/filepath"
-
-	"github.com/golang/dep/gps"
-	"github.com/golang/dep/gps/verify"
-	"github.com/golang/dep/internal/fs"
-	"github.com/pkg/errors"
-)
-
-const (
-	// Helper consts for common diff-checking patterns.
-	anyExceptHash verify.DeltaDimension = verify.AnyChanged & ^verify.HashVersionChanged & ^verify.HashChanged
-)
-
-// Example string to be written to the manifest file
-// if no dependencies are found in the project
-// during `dep init`
-var exampleTOML = []byte(`# Gopkg.toml example
-#
-# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
-# for detailed Gopkg.toml documentation.
-#
-# required = ["github.com/user/thing/cmd/thing"]
-# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
-#
-# [[constraint]]
-#   name = "github.com/user/project"
-#   version = "1.0.0"
-#
-# [[constraint]]
-#   name = "github.com/user/project2"
-#   branch = "dev"
-#   source = "github.com/myfork/project2"
-#
-# [[override]]
-#   name = "github.com/x/y"
-#   version = "2.4.0"
-#
-# [prune]
-#   non-go = false
-#   go-tests = true
-#   unused-packages = true
-
-`)
-
-// String added on top of lock file
-var lockFileComment = []byte(`# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'.
-
-`)
-
-// SafeWriter transactionalizes writes of manifest, lock, and vendor dir, both
-// individually and in any combination, into a pseudo-atomic action with
-// transactional rollback.
-//
-// It is not impervious to errors (writing to disk is hard), but it should
-// guard against non-arcane failure conditions.
-type SafeWriter struct {
-	Manifest     *Manifest
-	lock         *Lock
-	lockDiff     verify.LockDelta
-	writeVendor  bool
-	writeLock    bool
-	pruneOptions gps.CascadingPruneOptions
-}
-
-// NewSafeWriter sets up a SafeWriter to write a set of manifest, lock, and
-// vendor tree.
-//
-// - If manifest is provided, it will be written to the standard manifest file
-// name beneath root.
-//
-// - If newLock is provided, it will be written to the standard lock file
-// name beneath root.
-//
-// - If vendor is VendorAlways, or is VendorOnChanged and the locks are different,
-// the vendor directory will be written beneath root based on newLock.
-//
-// - If oldLock is provided without newLock, error.
-//
-// - If vendor is VendorAlways without a newLock, error.
-func NewSafeWriter(manifest *Manifest, oldLock, newLock *Lock, vendor VendorBehavior, prune gps.CascadingPruneOptions, status map[string]verify.VendorStatus) (*SafeWriter, error) {
-	sw := &SafeWriter{
-		Manifest:     manifest,
-		lock:         newLock,
-		pruneOptions: prune,
-	}
-
-	if oldLock != nil {
-		if newLock == nil {
-			return nil, errors.New("must provide newLock when oldLock is specified")
-		}
-
-		sw.lockDiff = verify.DiffLocks(oldLock, newLock)
-		if sw.lockDiff.Changed(anyExceptHash) {
-			sw.writeLock = true
-		}
-	} else if newLock != nil {
-		sw.writeLock = true
-	}
-
-	switch vendor {
-	case VendorAlways:
-		sw.writeVendor = true
-	case VendorOnChanged:
-		if newLock != nil && oldLock == nil {
-			sw.writeVendor = true
-		} else if sw.lockDiff.Changed(anyExceptHash & ^verify.InputImportsChanged) {
-			sw.writeVendor = true
-		} else {
-			for _, stat := range status {
-				if stat != verify.NoMismatch {
-					sw.writeVendor = true
-					break
-				}
-			}
-		}
-	}
-
-	if sw.writeVendor && newLock == nil {
-		return nil, errors.New("must provide newLock in order to write out vendor")
-	}
-
-	return sw, nil
-}
-
-// HasLock checks if a Lock is present in the SafeWriter
-func (sw *SafeWriter) HasLock() bool {
-	return sw.lock != nil
-}
-
-// HasManifest checks if a Manifest is present in the SafeWriter
-func (sw *SafeWriter) HasManifest() bool {
-	return sw.Manifest != nil
-}
-
-// VendorBehavior defines when the vendor directory should be written.
-type VendorBehavior int
-
-const (
-	// VendorOnChanged indicates that the vendor directory should be written
-	// when the lock is new or changed, or a project in vendor differs from its
-	// intended state.
-	VendorOnChanged VendorBehavior = iota
-	// VendorAlways forces the vendor directory to always be written.
-	VendorAlways
-	// VendorNever indicates the vendor directory should never be written.
-	VendorNever
-)
-
-func (sw SafeWriter) validate(root string, sm gps.SourceManager) error {
-	if root == "" {
-		return errors.New("root path must be non-empty")
-	}
-	if is, err := fs.IsDir(root); !is {
-		if err != nil && !os.IsNotExist(err) {
-			return err
-		}
-		return errors.Errorf("root path %q does not exist", root)
-	}
-
-	if sw.writeVendor && sm == nil {
-		return errors.New("must provide a SourceManager if writing out a vendor dir")
-	}
-
-	return nil
-}
-
-// Write saves some combination of manifest, lock, and a vendor tree. root is
-// the absolute path of root dir in which to write. sm is only required if
-// vendor is being written.
-//
-// It first writes to a temp dir, then moves them in place if and only if all
-// the write operations succeeded. It also does its best to roll back if any
-// moves fail. This mostly guarantees that dep cannot exit with a partial write
-// that would leave an undefined state on disk.
-//
-// If logger is not nil, progress will be logged after each project write.
-func (sw *SafeWriter) Write(root string, sm gps.SourceManager, examples bool, logger *log.Logger) error {
-	err := sw.validate(root, sm)
-	if err != nil {
-		return err
-	}
-
-	if !sw.HasManifest() && !sw.writeLock && !sw.writeVendor {
-		// nothing to do
-		return nil
-	}
-
-	mpath := filepath.Join(root, ManifestName)
-	lpath := filepath.Join(root, LockName)
-	vpath := filepath.Join(root, "vendor")
-
-	td, err := ioutil.TempDir(os.TempDir(), "dep")
-	if err != nil {
-		return errors.Wrap(err, "error while creating temp dir for writing manifest/lock/vendor")
-	}
-	defer os.RemoveAll(td)
-
-	if sw.HasManifest() {
-		// Always write the example text to the bottom of the TOML file.
-		tb, err := sw.Manifest.MarshalTOML()
-		if err != nil {
-			return errors.Wrap(err, "failed to marshal manifest to TOML")
-		}
-
-		var initOutput []byte
-
-		// If examples are enabled, use the example text
-		if examples {
-			initOutput = exampleTOML
-		}
-
-		if err = ioutil.WriteFile(filepath.Join(td, ManifestName), append(initOutput, tb...), 0666); err != nil {
-			return errors.Wrap(err, "failed to write manifest file to temp dir")
-		}
-	}
-
-	if sw.writeVendor {
-		var onWrite func(gps.WriteProgress)
-		if logger != nil {
-			onWrite = func(progress gps.WriteProgress) {
-				logger.Println(progress)
-			}
-		}
-		err = gps.WriteDepTree(filepath.Join(td, "vendor"), sw.lock, sm, sw.pruneOptions, onWrite)
-		if err != nil {
-			return errors.Wrap(err, "error while writing out vendor tree")
-		}
-
-		for k, lp := range sw.lock.Projects() {
-			vp := lp.(verify.VerifiableProject)
-			vp.Digest, err = verify.DigestFromDirectory(filepath.Join(td, "vendor", string(lp.Ident().ProjectRoot)))
-			if err != nil {
-				return errors.Wrapf(err, "error while hashing tree of %s in vendor", lp.Ident().ProjectRoot)
-			}
-			sw.lock.P[k] = vp
-		}
-	}
-
-	if sw.writeLock {
-		l, err := sw.lock.MarshalTOML()
-		if err != nil {
-			return errors.Wrap(err, "failed to marshal lock to TOML")
-		}
-
-		if err = ioutil.WriteFile(filepath.Join(td, LockName), append(lockFileComment, l...), 0666); err != nil {
-			return errors.Wrap(err, "failed to write lock file to temp dir")
-		}
-	}
-
-	// Ensure vendor/.git is preserved if present
-	if hasDotGit(vpath) {
-		err = fs.RenameWithFallback(filepath.Join(vpath, ".git"), filepath.Join(td, "vendor/.git"))
-		if _, ok := err.(*os.LinkError); ok {
-			return errors.Wrap(err, "failed to preserve vendor/.git")
-		}
-	}
-
-	// Move the existing files and dirs to the temp dir while we put the new
-	// ones in, to provide insurance against errors for as long as possible.
-	type pathpair struct {
-		from, to string
-	}
-	var restore []pathpair
-	var failerr error
-	var vendorbak string
-
-	if sw.HasManifest() {
-		if _, err := os.Stat(mpath); err == nil {
-			// Move out the old one.
-			tmploc := filepath.Join(td, ManifestName+".orig")
-			failerr = fs.RenameWithFallback(mpath, tmploc)
-			if failerr != nil {
-				goto fail
-			}
-			restore = append(restore, pathpair{from: tmploc, to: mpath})
-		}
-
-		// Move in the new one.
-		failerr = fs.RenameWithFallback(filepath.Join(td, ManifestName), mpath)
-		if failerr != nil {
-			goto fail
-		}
-	}
-
-	if sw.writeLock {
-		if _, err := os.Stat(lpath); err == nil {
-			// Move out the old one.
-			tmploc := filepath.Join(td, LockName+".orig")
-
-			failerr = fs.RenameWithFallback(lpath, tmploc)
-			if failerr != nil {
-				goto fail
-			}
-			restore = append(restore, pathpair{from: tmploc, to: lpath})
-		}
-
-		// Move in the new one.
-		failerr = fs.RenameWithFallback(filepath.Join(td, LockName), lpath)
-		if failerr != nil {
-			goto fail
-		}
-	}
-
-	if sw.writeVendor {
-		if _, err := os.Stat(vpath); err == nil {
-			// Move out the old vendor dir. just do it into an adjacent dir, to
-			// try to mitigate the possibility of a pointless cross-filesystem
-			// move with a temp directory.
-			vendorbak = vpath + ".orig"
-			if _, err := os.Stat(vendorbak); err == nil {
-				// If the adjacent dir already exists, bite the bullet and move
-				// to a proper tempdir.
-				vendorbak = filepath.Join(td, ".vendor.orig")
-			}
-
-			failerr = fs.RenameWithFallback(vpath, vendorbak)
-			if failerr != nil {
-				goto fail
-			}
-			restore = append(restore, pathpair{from: vendorbak, to: vpath})
-		}
-
-		// Move in the new one.
-		failerr = fs.RenameWithFallback(filepath.Join(td, "vendor"), vpath)
-		if failerr != nil {
-			goto fail
-		}
-	}
-
-	// Renames all went smoothly. The deferred os.RemoveAll will get the temp
-	// dir, but if we wrote vendor, we have to clean that up directly
-	if sw.writeVendor {
-		// Nothing we can really do about an error at this point, so ignore it
-		os.RemoveAll(vendorbak)
-	}
-
-	return nil
-
-fail:
-	// If we failed at any point, move all the things back into place, then bail.
-	for _, pair := range restore {
-		// Nothing we can do on err here, as we're already in recovery mode.
-		fs.RenameWithFallback(pair.from, pair.to)
-	}
-	return failerr
-}
-
-// PrintPreparedActions logs the actions a call to Write would perform.
-func (sw *SafeWriter) PrintPreparedActions(output *log.Logger, verbose bool) error {
-	if output == nil {
-		output = log.New(ioutil.Discard, "", 0)
-	}
-	if sw.HasManifest() {
-		if verbose {
-			m, err := sw.Manifest.MarshalTOML()
-			if err != nil {
-				return errors.Wrap(err, "ensure DryRun cannot serialize manifest")
-			}
-			output.Printf("Would have written the following %s:\n%s\n", ManifestName, string(m))
-		} else {
-			output.Printf("Would have written %s.\n", ManifestName)
-		}
-	}
-
-	if sw.writeLock {
-		if verbose {
-			l, err := sw.lock.MarshalTOML()
-			if err != nil {
-				return errors.Wrap(err, "ensure DryRun cannot serialize lock")
-			}
-			output.Printf("Would have written the following %s:\n%s\n", LockName, string(l))
-		} else {
-			output.Printf("Would have written %s.\n", LockName)
-		}
-	}
-
-	if sw.writeVendor {
-		if verbose {
-			output.Printf("Would have written the following %d projects to the vendor directory:\n", len(sw.lock.Projects()))
-			lps := sw.lock.Projects()
-			for i, p := range lps {
-				output.Printf("(%d/%d) %s@%s\n", i+1, len(lps), p.Ident(), p.Version())
-			}
-		} else {
-			output.Printf("Would have written %d projects to the vendor directory.\n", len(sw.lock.Projects()))
-		}
-	}
-
-	return nil
-}
-
-// hasDotGit checks if a given path has .git file or directory in it.
-func hasDotGit(path string) bool {
-	gitfilepath := filepath.Join(path, ".git")
-	_, err := os.Stat(gitfilepath)
-	return err == nil
-}
-
-// DeltaWriter manages batched writes to populate vendor/ and update Gopkg.lock.
-// Its primary design goal is to minimize writes by only writing things that
-// have changed.
-type DeltaWriter struct {
-	lock      *Lock
-	lockDiff  verify.LockDelta
-	vendorDir string
-	changed   map[gps.ProjectRoot]changeType
-	behavior  VendorBehavior
-}
-
-type changeType uint8
-
-const (
-	hashMismatch changeType = iota + 1
-	hashVersionMismatch
-	hashAbsent
-	noVerify
-	solveChanged
-	pruneOptsChanged
-	missingFromTree
-	projectAdded
-	projectRemoved
-)
-
-// NewDeltaWriter prepares a vendor writer that will construct a vendor
-// directory by writing out only those projects that actually need to be written
-// out - they have changed in some way, or they lack the necessary hash
-// information to be verified.
-func NewDeltaWriter(p *Project, newLock *Lock, behavior VendorBehavior) (TreeWriter, error) {
-	dw := &DeltaWriter{
-		lock:      newLock,
-		vendorDir: filepath.Join(p.AbsRoot, "vendor"),
-		changed:   make(map[gps.ProjectRoot]changeType),
-		behavior:  behavior,
-	}
-
-	if newLock == nil {
-		return nil, errors.New("must provide a non-nil newlock")
-	}
-
-	status, err := p.VerifyVendor()
-	if err != nil {
-		return nil, err
-	}
-
-	_, err = os.Stat(dw.vendorDir)
-	if err != nil {
-		if os.IsNotExist(err) {
-			// Provided dir does not exist, so there's no disk contents to compare
-			// against. Fall back to the old SafeWriter.
-			return NewSafeWriter(nil, p.Lock, newLock, behavior, p.Manifest.PruneOptions, status)
-		}
-		return nil, err
-	}
-
-	dw.lockDiff = verify.DiffLocks(p.Lock, newLock)
-
-	for pr, lpd := range dw.lockDiff.ProjectDeltas {
-		// Hash changes aren't relevant at this point, as they could be empty
-		// in the new lock, and therefore a symptom of a solver change.
-		if lpd.Changed(anyExceptHash) {
-			if lpd.WasAdded() {
-				dw.changed[pr] = projectAdded
-			} else if lpd.WasRemoved() {
-				dw.changed[pr] = projectRemoved
-			} else if lpd.PruneOptsChanged() {
-				dw.changed[pr] = pruneOptsChanged
-			} else {
-				dw.changed[pr] = solveChanged
-			}
-		}
-	}
-
-	for spr, stat := range status {
-		pr := gps.ProjectRoot(spr)
-		// These cases only matter if there was no change already recorded via
-		// the differ.
-		if _, has := dw.changed[pr]; !has {
-			switch stat {
-			case verify.NotInTree:
-				dw.changed[pr] = missingFromTree
-			case verify.NotInLock:
-				dw.changed[pr] = projectRemoved
-			case verify.DigestMismatchInLock:
-				dw.changed[pr] = hashMismatch
-			case verify.HashVersionMismatch:
-				dw.changed[pr] = hashVersionMismatch
-			case verify.EmptyDigestInLock:
-				dw.changed[pr] = hashAbsent
-			}
-		}
-	}
-
-	// Apply noverify last, as it should only supersede changeTypes with lower
-	// values. It is NOT applied if no existing change is registered.
-	for _, spr := range p.Manifest.NoVerify {
-		pr := gps.ProjectRoot(spr)
-		// We don't validate this field elsewhere as it can be difficult to know
-		// at the beginning of a dep ensure command whether or not the noverify
-		// project actually will exist as part of the Lock by the end of the
-		// run. So, only apply if it's in the lockdiff, and isn't a removal.
-		if _, has := dw.lockDiff.ProjectDeltas[pr]; has {
-			if typ, has := dw.changed[pr]; has && typ < noVerify {
-				// Avoid writing noverify projects at all for the lower change
-				// types.
-				delete(dw.changed, pr)
-
-				// Uncomment this if we want to switch to the safer behavior,
-				// where we ALWAYS write noverify projects.
-				//dw.changed[pr] = noVerify
-			}
-		}
-	}
-
-	return dw, nil
-}
-
-// Write executes the planned changes.
-//
-// This writes recreated projects to a new directory, then moves in existing,
-// unchanged projects from the original vendor directory. If any failures occur,
-// reasonable attempts are made to roll back the changes.
-func (dw *DeltaWriter) Write(path string, sm gps.SourceManager, examples bool, logger *log.Logger) error {
-	// TODO(sdboyer) remove path from the signature for this
-	if path != filepath.Dir(dw.vendorDir) {
-		return errors.Errorf("target path (%q) must be the parent of the original vendor path (%q)", path, dw.vendorDir)
-	}
-
-	if logger == nil {
-		logger = log.New(ioutil.Discard, "", 0)
-	}
-
-	lpath := filepath.Join(path, LockName)
-	vpath := dw.vendorDir
-
-	// Write the modified projects to a new adjacent directory. We use an
-	// adjacent directory to minimize the possibility of cross-filesystem renames
-	// becoming expensive copies, and to make removal of unneeded projects implicit
-	// and automatic.
-	vnewpath := filepath.Join(filepath.Dir(vpath), ".vendor-new")
-	if _, err := os.Stat(vnewpath); err == nil {
-		return errors.Errorf("scratch directory %s already exists, please remove it", vnewpath)
-	}
-	err := os.MkdirAll(vnewpath, os.FileMode(0777))
-	if err != nil {
-		return errors.Wrapf(err, "error while creating scratch directory at %s", vnewpath)
-	}
-
-	// Write out all the deltas to the newpath
-	projs := make(map[gps.ProjectRoot]gps.LockedProject)
-	for _, lp := range dw.lock.Projects() {
-		projs[lp.Ident().ProjectRoot] = lp
-	}
-
-	dropped := []gps.ProjectRoot{}
-	i := 0
-	tot := len(dw.changed)
-	if len(dw.changed) > 0 {
-		logger.Println("# Bringing vendor into sync")
-	}
-	for pr, reason := range dw.changed {
-		if reason == projectRemoved {
-			dropped = append(dropped, pr)
-			continue
-		}
-
-		to := filepath.FromSlash(filepath.Join(vnewpath, string(pr)))
-		proj, has := projs[pr]
-		if !has {
-			// This shouldn't be reachable, but it's preferable to print an
-			// error and continue rather than panic. https://github.com/golang/dep/issues/1945
-			// TODO(sdboyer) remove this once we've increased confidence around
-			// this case.
-			fmt.Fprintf(os.Stderr, "Internal error - %s had change code %v but was not in new Gopkg.lock. Re-running dep ensure should fix this. Please file a bug at https://github.com/golang/dep/issues/new!\n", pr, reason)
-			continue
-		}
-		po := proj.(verify.VerifiableProject).PruneOpts
-		if err := sm.ExportPrunedProject(context.TODO(), projs[pr], po, to); err != nil {
-			return errors.Wrapf(err, "failed to export %s", pr)
-		}
-
-		i++
-		lpd := dw.lockDiff.ProjectDeltas[pr]
-		v, id := projs[pr].Version(), projs[pr].Ident()
-
-		// Only print things if we're actually going to leave behind a new
-		// vendor dir.
-		if dw.behavior != VendorNever {
-			logger.Printf("(%d/%d) Wrote %s@%s: %s", i, tot, id, v, changeExplanation(reason, lpd))
-		}
-
-		digest, err := verify.DigestFromDirectory(to)
-		if err != nil {
-			return errors.Wrapf(err, "failed to hash %s", pr)
-		}
-
-		// Update the new Lock with verification information.
-		for k, lp := range dw.lock.P {
-			if lp.Ident().ProjectRoot == pr {
-				vp := lp.(verify.VerifiableProject)
-				vp.Digest = digest
-				dw.lock.P[k] = verify.VerifiableProject{
-					LockedProject: lp,
-					PruneOpts:     po,
-					Digest:        digest,
-				}
-			}
-		}
-	}
-
-	// Write out the lock, now that it's fully updated with digests.
-	l, err := dw.lock.MarshalTOML()
-	if err != nil {
-		return errors.Wrap(err, "failed to marshal lock to TOML")
-	}
-
-	if err = ioutil.WriteFile(lpath, append(lockFileComment, l...), 0666); err != nil {
-		return errors.Wrap(err, "failed to write new lock file")
-	}
-
-	if dw.behavior == VendorNever {
-		return os.RemoveAll(vnewpath)
-	}
-
-	// Changed projects are fully populated. Now, iterate over the lock's
-	// projects and move any remaining ones not in the changed list to vnewpath.
-	for _, lp := range dw.lock.Projects() {
-		pr := lp.Ident().ProjectRoot
-		tgt := filepath.Join(vnewpath, string(pr))
-		err := os.MkdirAll(filepath.Dir(tgt), os.FileMode(0777))
-		if err != nil {
-			return errors.Wrapf(err, "error creating parent directory in vendor for %s", tgt)
-		}
-
-		if _, has := dw.changed[pr]; !has {
-			err = fs.RenameWithFallback(filepath.Join(vpath, string(pr)), tgt)
-			if err != nil {
-				return errors.Wrapf(err, "error moving unchanged project %s into scratch vendor dir", pr)
-			}
-		}
-	}
-
-	for i, pr := range dropped {
-		// Kind of a lie to print this. ¯\_(ツ)_/¯
-		fi, err := os.Stat(filepath.Join(vpath, string(pr)))
-		if err != nil {
-			return errors.Wrap(err, "could not stat file that VerifyVendor claimed existed")
-		}
-
-		if fi.IsDir() {
-			logger.Printf("(%d/%d) Removed unused project %s", tot-(len(dropped)-i-1), tot, pr)
-		} else {
-			logger.Printf("(%d/%d) Removed orphaned file %s", tot-(len(dropped)-i-1), tot, pr)
-		}
-	}
-
-	// Ensure vendor/.git is preserved if present
-	if hasDotGit(vpath) {
-		err = fs.RenameWithFallback(filepath.Join(vpath, ".git"), filepath.Join(vnewpath, "vendor/.git"))
-		if _, ok := err.(*os.LinkError); ok {
-			return errors.Wrap(err, "failed to preserve vendor/.git")
-		}
-	}
-	err = os.RemoveAll(vpath)
-	if err != nil {
-		return errors.Wrap(err, "failed to remove original vendor directory")
-	}
-	err = fs.RenameWithFallback(vnewpath, vpath)
-	if err != nil {
-		return errors.Wrap(err, "failed to put new vendor directory into place")
-	}
-
-	return nil
-}
-
-// changeExplanation outputs a string explaining what changed for each different
-// possible changeType.
-func changeExplanation(c changeType, lpd verify.LockedProjectDelta) string {
-	switch c {
-	case noVerify:
-		return "verification is disabled"
-	case solveChanged:
-		if lpd.SourceChanged() {
-			return fmt.Sprintf("source changed (%s -> %s)", lpd.SourceBefore, lpd.SourceAfter)
-		} else if lpd.VersionChanged() {
-			if lpd.VersionBefore == nil {
-				return fmt.Sprintf("version changed (was a bare revision)")
-			}
-			return fmt.Sprintf("version changed (was %s)", lpd.VersionBefore.String())
-		} else if lpd.RevisionChanged() {
-			return fmt.Sprintf("revision changed (%s -> %s)", trimSHA(lpd.RevisionBefore), trimSHA(lpd.RevisionAfter))
-		} else if lpd.PackagesChanged() {
-			la, lr := len(lpd.PackagesAdded), len(lpd.PackagesRemoved)
-			if la > 0 && lr > 0 {
-				return fmt.Sprintf("packages changed (%v added, %v removed)", la, lr)
-			} else if la > 0 {
-				return fmt.Sprintf("packages changed (%v added)", la)
-			}
-			return fmt.Sprintf("packages changed (%v removed)", lr)
-		}
-	case pruneOptsChanged:
-		// Override what's on the lockdiff with the extra info we have;
-		// this lets us excise PruneNestedVendorDirs and get the real
-		// value from the input param in place.
-		old := lpd.PruneOptsBefore & ^gps.PruneNestedVendorDirs
-		new := lpd.PruneOptsAfter & ^gps.PruneNestedVendorDirs
-		return fmt.Sprintf("prune options changed (%s -> %s)", old, new)
-	case hashMismatch:
-		return "hash of vendored tree didn't match digest in Gopkg.lock"
-	case hashVersionMismatch:
-		return "hashing algorithm mismatch"
-	case hashAbsent:
-		return "hash digest absent from lock"
-	case projectAdded:
-		return "new project"
-	case missingFromTree:
-		return "missing from vendor"
-	default:
-		panic(fmt.Sprintf("unrecognized changeType value %v", c))
-	}
-
-	return ""
-}
-
-// PrintPreparedActions indicates what changes the DeltaWriter plans to make.
-func (dw *DeltaWriter) PrintPreparedActions(output *log.Logger, verbose bool) error {
-	if verbose {
-		l, err := dw.lock.MarshalTOML()
-		if err != nil {
-			return errors.Wrap(err, "ensure DryRun cannot serialize lock")
-		}
-		output.Printf("Would have written the following %s (hash digests may be incorrect):\n%s\n", LockName, string(l))
-	} else {
-		output.Printf("Would have written %s.\n", LockName)
-	}
-
-	projs := make(map[gps.ProjectRoot]gps.LockedProject)
-	for _, lp := range dw.lock.Projects() {
-		projs[lp.Ident().ProjectRoot] = lp
-	}
-
-	tot := len(dw.changed)
-	if tot > 0 {
-		output.Print("Would have updated the following projects in the vendor directory:\n\n")
-		i := 0
-		for pr, reason := range dw.changed {
-			lpd := dw.lockDiff.ProjectDeltas[pr]
-			if reason == projectRemoved {
-				output.Printf("(%d/%d) Would have removed %s", i, tot, pr)
-			} else {
-				output.Printf("(%d/%d) Would have written %s@%s: %s", i, tot, projs[pr].Ident(), projs[pr].Version(), changeExplanation(reason, lpd))
-			}
-		}
-	}
-
-	return nil
-}
-
-// A TreeWriter is responsible for writing important dep states to disk -
-// Gopkg.lock, vendor, and possibly Gopkg.toml.
-type TreeWriter interface {
-	PrintPreparedActions(output *log.Logger, verbose bool) error
-	Write(path string, sm gps.SourceManager, examples bool, logger *log.Logger) error
-}
-
-// trimSHA checks if revision is a valid SHA1 digest and trims to 10 characters.
-func trimSHA(revision gps.Revision) string {
-	if len(revision) == 40 {
-		if _, err := hex.DecodeString(string(revision)); err == nil {
-			// Valid SHA1 digest
-			revision = revision[0:10]
-		}
-	}
-
-	return string(revision)
-}
diff --git a/vendor/github.com/golang/dep/website/.gitignore b/vendor/github.com/golang/dep/website/.gitignore
deleted file mode 100644
index e18da9fca9710339cb678fe31b0ce4d42cab2d6f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/.gitignore
+++ /dev/null
@@ -1,10 +0,0 @@
-.DS_Store
-
-build/
-node_modules/
-
-i18n/*
-!i18n/en.json
-
-lib/core/metadata.js
-lib/core/MetadataBlog.js
diff --git a/vendor/github.com/golang/dep/website/blog/2018-01-23-announce-v0.4.0.md b/vendor/github.com/golang/dep/website/blog/2018-01-23-announce-v0.4.0.md
deleted file mode 100644
index 329671e8fe51774a78af49f267a9eaaa7202725f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/blog/2018-01-23-announce-v0.4.0.md
+++ /dev/null
@@ -1,41 +0,0 @@
----
-title: Announcing dep v0.4.1 (with docs!)
-author: sam boyer
-authorURL: http://twitter.com/sdboyer
----
-
-v0.4.1 of dep has been released - and along with it, this site for documentation and announcements about dep! And, being that it's been nearly six months since [the last dep status update](https://sdboyer.io/dep-status/2017-08-17/) (which are now officially discontinued, in favor of this blog), and the roadmap hasn't been substantially updated in even longer, we'll use this release as an excuse to bring a bunch of things up to speed.
-
-_Note: there was [a significant omission](https://github.com/golang/dep/issues/1561) in v0.4.0's new pruning behavior, so we immediately shipped [v0.4.1](https://github.com/golang/dep/releases/tag/v0.4.1) with a fix._
-
-### A new dep release!
-
-After three months of work, the next version of dep is stable and ready for public use. The big headline changes are:
-
-* `dep prune` no longer exists as a separate command. It has been absorbed into `dep ensure`, and its behavior can now be more granularly controlled by [directives in `Gopkg.toml`](https://golang.github.io/dep/docs/Gopkg.toml.html#prune). Calls to `dep prune` will not fail now, but will in future versions, so update your scripts!
-* Support for govendor and glock have been added; `dep init` can now read their metadata files and attempt to automatically convert projects managed by those tools.
-
-Additional information is available in [the release notes](https://github.com/golang/dep/releases/tag/v0.4.1). The other major addition is this documentation site!
-
-### Docs docs docs
-
-Dep has had a documentation problem for a while. Having a single-command interface helped us get by with having only an FAQ, but as time wore on, it became increasingly clear that we needed a comprehensive set of documentation if people were to really feel comfortable with the tool.
-
-This site, which is automatically generated from the [docs directory](https://github.com/golang/dep/tree/master/docs) within the dep repository by [docusaurus](http://docusaurus.io/), is now that comprehensive source of docs. More so than any individual bit of information, it provides some broader benefits:
-
-* New user guides - reference documentation is not what folks need when starting with a new tool. Step-by-step instructions are. Now [we have that](https://golang.github.io/dep/docs/introduction.html), and it caters to users who are not only new to dep, but also to Go in general.
-* Thematic organization of content - up until now, we were somewhat haphazardly flinging information into the FAQ. The body of documentation here is organized from the ground up, which will hopefully make it both more useful and easier to maintain.
-* Versioning - docusaurus is capable of snapshotting doc versions on each release, and users will be able to select the version of the docs they want to view (though we've not enabled this just quite yet). Ideally, everyone should always be able to use the latest version, but this at least means you're not penalized if that's not feasible for you/your organization.
-* A blog - you're reading it! This is great, as it provides us a canonical place to circulate information about what's happening with the project.
-
-At the same time, the docs aren't quite comprehensive _yet_. There's more reference material and guides to be written. For example, we're still missing a guide for project maintainers on how to make releases that align well with dep's happy path.
-
-Also, now that we have this whole docs apparatus, it would be particularly awesome if someone were to step up to help as a [docs maintainer](https://github.com/golang/dep/issues/629#issuecomment-359922251)! (Also also, the CSS on this site is terrible, [please halp](https://github.com/golang/dep/issues/1558)!)
-
-### The future
-
-Right now, there's two aspects to the future of dep. One is the roadmap of changes and features that make sense for dep as it exists today, in this standalone context. The other is the roadmap for moving dep into the toolchain.
-
-For the former, we have a fair bit of work underway that, now that this release is out the door, we can move on quickly. That includes major performance improvements, solver improvements to pick a sane version more of the time with less manual intervention, allowing the `source` field to work the way [most people expect it to](https://github.com/golang/dep/issues/860), and others. The goal is also to move dep towards a more regular release schedule.
-
-With respect to dep's movement towards the toolchain, discussions have already been ongoing between dep folks and the Go team for months. Movement into the toolchain is not a simple process. Some rules that dep, as a standalone tool, had to accept as law, become negotiable (for example, the semantics of vendor directories). There's also the question of how to best fit dep's commands themselves into the `go` tool. These present both interesting design opportunities and considerable risk. More information and opportunities for comment will be coming as we move into the Go 1.10 cycle. As has always been the plan, though, dep will continue to exist as a standalone tool until the toolchain has evolved sufficiently to supplant it.
diff --git a/vendor/github.com/golang/dep/website/blog/2018-07-25-announce-v0.5.0.md b/vendor/github.com/golang/dep/website/blog/2018-07-25-announce-v0.5.0.md
deleted file mode 100644
index 1b81534c85469e21d9a3d876e3246b98ebc252eb..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/blog/2018-07-25-announce-v0.5.0.md
+++ /dev/null
@@ -1,120 +0,0 @@
----
-title: Announcing dep v0.5.0
-author: sam boyer
-authorURL: http://twitter.com/sdboyer
----
-
-v0.5.0 of dep has been [released](https://github.com/golang/dep/releases/tag/v0.5.0)!
-
-The big theme of this release is performance improvements. dep was designed for safety from the outset, because we knew that foundation would let us speed things up later. Now we have!
-
-**NOTE:** your whole team will need to update at once to this new release, as it results in changes to the structure of `Gopkg.lock` that older versions of dep won't know how to work with.
-
-### Performance Improvements
-
-There are two big aspects to the performance improvements: source metadata caching, and vendor verification.
-
-Source metadata caching is an experimental feature that caches the result of all the parsing and code-backed analysis dep does as part of the solving process: reading in your dependencies' `Gopkg.toml` files, parsing the .go files for `import` statements, etc. All that work, and the `git checkout` necessary to put code on disk to analyze, is what made the solver plod along in the past.
-
-With the caching enabled (managed by [the env var `DEPCACHEAGE`](https://golang.github.io/dep/docs/env-vars.html#depcacheage)), any combination of version and project that was already visited is retrieved from a persistent cache. Time per solving step drops to the (sub-)millisecond range; previously it was on the order of hundreds of milliseconds or seconds.
-
-Vendor verification is the notion that `Gopkg.lock` should contain enough information to be able to verify whether the _current_ contents of `vendor/` are exactly as they should be, including whatever [pruning options](https://golang.github.io/dep/docs/Gopkg.toml.html#prune) you've set. We've now done this, by adding the [`digest`](https://golang.github.io/dep/docs/Gopkg.lock.html#digest) and [`pruneopts`](https://golang.github.io/dep/docs/Gopkg.lock.html#pruneopts) fields to each `[[project]]` stanza in `Gopkg.lock`.
-
-The performance impact of all this is that it is no longer necessary for dep to rewrite the entirety of `vendor/` on every `dep ensure` run. Instead, dep selectively writes out or removes only the files necessary to bring `vendor/` back in line with `Gopkg.lock`. With `-v`, it'll also tell you why change was made:
-
-```
-# Bringing vendor into sync
-(1/4) Wrote github.com/eapache/go-resiliency@v1.1.0: version changed (was v1.0.0)
-(2/4) Wrote github.com/gregjones/httpcache@master: revision changed (2bcd89a174 -> 9cad4c3443)
-(3/4) Wrote github.com/prometheus/common@master: prune options changed (UT -> NUT)
-(4/4) Removed unused project github.com/kr/pretty
-```
-
-While the improvements affect different workflows in different ways, a representative `dep ensure -v` run (including both a solve and updating `vendor/`) for CockroachDB dropped from 120s to 4s in local benchmarking.
-
-### Improved feedback
-
-Vendor verification has implications beyond just performance. With it complete, we fixed dep's final blind spot on whether all of the dependency-relevant information in your project - `import`s in code, `Gopkg.toml`, `Gopkg.lock`, and `vendor/` - are [in sync](https://golang.github.io/dep/docs/ensure-mechanics.html#staying-in-sync). That enables not only the granular feedback about `vendor/` changes above, but it also lets us tell you exactly what changed in your project that pushed it out of sync, causing a solve.
-
-dep informed you of this in the past, but it was kinda useless:
-
-```
-$ dep ensure -update -v
-Warning: Gopkg.lock is out of sync with Gopkg.toml or the project's imports.
-```
-
-Not very helpful.
-
-Now, though, if `dep ensure -v` sees your project is out of sync in a way that entails re-solving the graph, it will tell you exactly why:
-
-```
-$ dep ensure -v
-# Gopkg.lock is out of sync
-github.com/kr/pretty: imported or required, but missing from Gopkg.lock's input-imports
-github.com/aws-sdk-go/aws/awserr: in Gopkg.lock's input-imports, but neither imported nor required
-github.com/pkg/errors@v0.7.0: not allowed by constraint ^0.8.0
-```
-
-Of course, what if you just want to know what's out of sync, without actually changing anything? We have a new subcommand for that!
-
-### `dep check`
-
-This release introduces a new subcommand, `dep check`, which reports all the ways that your project is out of sync. This includes the output of `dep ensure -v`, but also looks for any issues in `vendor`:
-
-```
-$ dep check
-# Gopkg.lock is out of sync
-github.com/kr/pretty: imported or required, but missing from Gopkg.lock's input-imports
-github.com/aws-sdk-go/aws/awserr: in Gopkg.lock's input-imports, but neither imported nor required
-github.com/pkg/errors@v0.7.0: not allowed by constraint ^0.8.0
-
-# vendor is out of sync
-github.com/pkg/errors: missing from vendor
-github.com/aws-sdk-go/aws: hash of vendored tree not equal to digest in Gopkg.lock
-```
-
-`dep check` is also designed for use in automated tooling: 
-
-* If any of its checks fail, it will exit 1. Passing `-q` will suppress any output, for maximum automated utility.
-* It's very fast; the checks it performs by default cannot hit the network. With a warm disk cache, it'll complete in seconds even on enormous projects. 
-*  cannot hit the network, which makes it very fast. Even a large project could use it as a git pre-commit hook:
-
-You can use it as a git pre-commit hook, to keep you from committing an out-of-sync project. This will set it up:
-
-```
-cat >.git/hooks/pre-commit <<EOL
-#!/bin/bash
-dep check
-EOL
-chmod +x .git/hooks/pre-commit
-```
-
-It's also strongly recommended for use in CI. In dep itself, we [replaced a hacky, slow and underinformative script with a single call to `dep check`](https://github.com/golang/dep/commit/e3ceae31d79d80a5fd7062facbc1a987e547a7bd#diff-4ab86a5e2bf55eef644d42b3c081c433).
-
-### `noverify`
-
-Unfortunately, there are cases where you absolutely need to make modifications to certain projects in vendor, and getting the upstream project to change their ways just isn't practical. Code generation is probably the most common case.
-
-In previous versions of dep, this was possible to do by wrapping `dep ensure` with a script that automatically re-applied your modifications afterwards. With vendor verification in place, though, dep will identify this as an aberrant state, `dep ensure` will always try to fix it, and `dep check` will always fail.
-
-To address this, we have added [`noverify`](https://golang.github.io/dep/docs/Gopkg.toml.html#noverify) to `Gopkg.toml`, where you can provide a list of project roots (_not_ packages) for which vendor verification should be skipped. Projects marked as such will not be rewritten for hash mismatches (though they still will if the solver picks a new version). `dep check` will still print a message about such issues so that you can still keep track of whether you actually are out of sync:
-
-```
-github.com/aws-sdk-go/aws: hash of vendored tree not equal to digest in Gopkg.lock (CHECK IGNORED: marked noverify in Gopkg.toml)
-```
-
-but if these "ignored" problems are the only ones `dep check` finds, it will exit 0.
-
-### dep, vgo/modules, and beyond
-
-Modules, née vgo, which have been merged into the `go` command (behind experimental flags), and will be present in the release of Go1.11. The Go team believes this obviates the need for dep.
-
-On the one hand, we're very glad that the Go team is finally taking dependency management problems seriously. And there are some profoundly useful ideas in vgo - significant contributions to the dependency management problem space, and ones that our future plans will certainly benefit from.
-
-However, we believe that vgo pushes the line too far. In pursuit of algorithmic simplicity, it establishes rules that ask people to prioritize the ecosystem above their own goals, and push unnecessary work on [already-stretched maintainers](https://pbs.twimg.com/media/DXyRLygX0AIAsE-.jpg). These designs are so deeply baked into the toolchain that it will be impossible to use `go` without acquiescing to these rules.
-
-That means there's no choosing between "vgo/modules or dep." It'll be "vgo, or [another language](https://twitter.com/_rsc/status/1022149148374650880)."
-
-This is a complicated topic. [These writings](https://sdboyer.io/vgo) look at the problems in depth, but are a lot to absorb. We are working to produce content that explain the problems in a more easily digestible way.
-
-As we believe that the current incarnation of modules will be harmful to the Go community, we intend to continue with dep's development, moving towards an alternative prototype for the versioning behavior that currently undergirds the modules system. To that end, the primary focus in dep's next release will be changing the "get the newest version for transitive dependencies" problem. This issue is a [cornerstone](https://research.swtch.com/cargo-newest.html) of the criticisms of dep; and it has been a goal of ours since before dep was first released.
\ No newline at end of file
diff --git a/vendor/github.com/golang/dep/website/core/Footer.js b/vendor/github.com/golang/dep/website/core/Footer.js
deleted file mode 100644
index 98956ad5ec7d09c4081ba293906a7e9fde70b663..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/core/Footer.js
+++ /dev/null
@@ -1,29 +0,0 @@
-const React = require('react');
-
-const siteConfig = require(process.cwd() + '/siteConfig.js');
-
-class Footer extends React.Component {
-  render() {
-    const currentYear = new Date().getFullYear();
-    return (
-      <footer className="nav-footer" id="footer">
-        <section className="copyright">
-          {siteConfig.copyright}
-        </section>
-        <section className="footer-logo">
-          <a href={this.props.config.baseUrl} className="nav-home">
-          {this.props.config.footerIcon && (
-            <img
-            src={this.props.config.baseUrl + this.props.config.footerIcon}
-            alt={this.props.config.title}
-            width="75"
-            />
-          )}
-          </a>
-        </section>
-      </footer>
-    );
-  }
-}
-
-module.exports = Footer;
diff --git a/vendor/github.com/golang/dep/website/i18n/en.json b/vendor/github.com/golang/dep/website/i18n/en.json
deleted file mode 100644
index fd7d0be79dea737ddb03198880c78674a12e02f5..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/i18n/en.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
-  "_comment": "This file is auto-generated by write-translations.js",
-  "localized-strings": {
-    "next": "Next",
-    "previous": "Previous",
-    "tagline": "Dependency management for Go",
-    "daily-dep": "Daily Dep",
-    "deduction": "Import Path Deduction",
-    "ensure-mechanics": "Models and Mechanisms",
-    "env-vars": "Environment Variables",
-    "failure-modes": "Failure Modes",
-    "FAQ": "FAQ",
-    "glossary": "Glossary",
-    "Gopkg.lock": "Gopkg.lock",
-    "Gopkg.toml": "Gopkg.toml",
-    "installation": "Installation",
-    "introduction": "Getting Started",
-    "migrating": "Migrating to Dep",
-    "new-project": "Creating a New Project",
-    "the-solver": "The Solver",
-    "Documentation": "Documentation",
-    "Blog": "Blog",
-    "Guides": "Guides",
-    "References": "References"
-  },
-  "pages-strings": {
-    "Help Translate|recruit community translators for your project": "Help Translate",
-    "Edit this Doc|recruitment message asking to edit the doc source": "Edit",
-    "Translate this Doc|recruitment message asking to translate the docs": "Translate"
-  }
-}
diff --git a/vendor/github.com/golang/dep/website/package-lock.json b/vendor/github.com/golang/dep/website/package-lock.json
deleted file mode 100644
index 1b54b987e1f634578f3a751cdf577cb4f3b87b55..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/package-lock.json
+++ /dev/null
@@ -1,2437 +0,0 @@
-{
-  "requires": true,
-  "lockfileVersion": 1,
-  "dependencies": {
-    "accepts": {
-      "version": "1.3.4",
-      "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz",
-      "integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=",
-      "dev": true,
-      "requires": {
-        "mime-types": "2.1.17",
-        "negotiator": "0.6.1"
-      }
-    },
-    "ajv": {
-      "version": "5.5.2",
-      "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz",
-      "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=",
-      "dev": true,
-      "requires": {
-        "co": "4.6.0",
-        "fast-deep-equal": "1.0.0",
-        "fast-json-stable-stringify": "2.0.0",
-        "json-schema-traverse": "0.3.1"
-      }
-    },
-    "ansi-regex": {
-      "version": "2.1.1",
-      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
-      "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
-      "dev": true
-    },
-    "ansi-styles": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
-      "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
-      "dev": true
-    },
-    "argparse": {
-      "version": "1.0.9",
-      "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
-      "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
-      "dev": true,
-      "requires": {
-        "sprintf-js": "1.0.3"
-      }
-    },
-    "array-flatten": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
-      "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
-      "dev": true
-    },
-    "asap": {
-      "version": "2.0.6",
-      "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
-      "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
-      "dev": true
-    },
-    "asn1": {
-      "version": "0.2.3",
-      "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
-      "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=",
-      "dev": true
-    },
-    "assert-plus": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
-      "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
-      "dev": true
-    },
-    "asynckit": {
-      "version": "0.4.0",
-      "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
-      "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
-      "dev": true
-    },
-    "autolinker": {
-      "version": "0.15.3",
-      "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.15.3.tgz",
-      "integrity": "sha1-NCQX2PLzRhsUzwkIjV7fh5HcmDI=",
-      "dev": true
-    },
-    "aws-sign2": {
-      "version": "0.7.0",
-      "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
-      "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
-      "dev": true
-    },
-    "aws4": {
-      "version": "1.6.0",
-      "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz",
-      "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=",
-      "dev": true
-    },
-    "babel-code-frame": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
-      "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
-      "dev": true,
-      "requires": {
-        "chalk": "1.1.3",
-        "esutils": "2.0.2",
-        "js-tokens": "3.0.2"
-      },
-      "dependencies": {
-        "chalk": {
-          "version": "1.1.3",
-          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
-          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
-          "dev": true,
-          "requires": {
-            "ansi-styles": "2.2.1",
-            "escape-string-regexp": "1.0.5",
-            "has-ansi": "2.0.0",
-            "strip-ansi": "3.0.1",
-            "supports-color": "2.0.0"
-          }
-        }
-      }
-    },
-    "babel-core": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz",
-      "integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=",
-      "dev": true,
-      "requires": {
-        "babel-code-frame": "6.26.0",
-        "babel-generator": "6.26.1",
-        "babel-helpers": "6.24.1",
-        "babel-messages": "6.23.0",
-        "babel-register": "6.26.0",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0",
-        "babylon": "6.18.0",
-        "convert-source-map": "1.5.1",
-        "debug": "2.6.9",
-        "json5": "0.5.1",
-        "lodash": "4.17.5",
-        "minimatch": "3.0.4",
-        "path-is-absolute": "1.0.1",
-        "private": "0.1.8",
-        "slash": "1.0.0",
-        "source-map": "0.5.7"
-      }
-    },
-    "babel-generator": {
-      "version": "6.26.1",
-      "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
-      "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
-      "dev": true,
-      "requires": {
-        "babel-messages": "6.23.0",
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0",
-        "detect-indent": "4.0.0",
-        "jsesc": "1.3.0",
-        "lodash": "4.17.5",
-        "source-map": "0.5.7",
-        "trim-right": "1.0.1"
-      },
-      "dependencies": {
-        "jsesc": {
-          "version": "1.3.0",
-          "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
-          "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=",
-          "dev": true
-        }
-      }
-    },
-    "babel-helper-builder-binary-assignment-operator-visitor": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz",
-      "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=",
-      "dev": true,
-      "requires": {
-        "babel-helper-explode-assignable-expression": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-helper-builder-react-jsx": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz",
-      "integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0",
-        "esutils": "2.0.2"
-      }
-    },
-    "babel-helper-call-delegate": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
-      "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
-      "dev": true,
-      "requires": {
-        "babel-helper-hoist-variables": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-helper-define-map": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz",
-      "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=",
-      "dev": true,
-      "requires": {
-        "babel-helper-function-name": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0",
-        "lodash": "4.17.5"
-      }
-    },
-    "babel-helper-explode-assignable-expression": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz",
-      "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-helper-function-name": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
-      "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
-      "dev": true,
-      "requires": {
-        "babel-helper-get-function-arity": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-helper-get-function-arity": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
-      "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-helper-hoist-variables": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
-      "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-helper-optimise-call-expression": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
-      "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-helper-regex": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz",
-      "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0",
-        "lodash": "4.17.5"
-      }
-    },
-    "babel-helper-remap-async-to-generator": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz",
-      "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=",
-      "dev": true,
-      "requires": {
-        "babel-helper-function-name": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-helper-replace-supers": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
-      "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
-      "dev": true,
-      "requires": {
-        "babel-helper-optimise-call-expression": "6.24.1",
-        "babel-messages": "6.23.0",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-helpers": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
-      "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0"
-      }
-    },
-    "babel-messages": {
-      "version": "6.23.0",
-      "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
-      "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-check-es2015-constants": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
-      "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-syntax-async-functions": {
-      "version": "6.13.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
-      "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=",
-      "dev": true
-    },
-    "babel-plugin-syntax-exponentiation-operator": {
-      "version": "6.13.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz",
-      "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=",
-      "dev": true
-    },
-    "babel-plugin-syntax-flow": {
-      "version": "6.18.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz",
-      "integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=",
-      "dev": true
-    },
-    "babel-plugin-syntax-jsx": {
-      "version": "6.18.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
-      "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=",
-      "dev": true
-    },
-    "babel-plugin-syntax-trailing-function-commas": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
-      "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=",
-      "dev": true
-    },
-    "babel-plugin-transform-async-to-generator": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz",
-      "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=",
-      "dev": true,
-      "requires": {
-        "babel-helper-remap-async-to-generator": "6.24.1",
-        "babel-plugin-syntax-async-functions": "6.13.0",
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-arrow-functions": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
-      "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-block-scoped-functions": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz",
-      "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-block-scoping": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz",
-      "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0",
-        "lodash": "4.17.5"
-      }
-    },
-    "babel-plugin-transform-es2015-classes": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
-      "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
-      "dev": true,
-      "requires": {
-        "babel-helper-define-map": "6.26.0",
-        "babel-helper-function-name": "6.24.1",
-        "babel-helper-optimise-call-expression": "6.24.1",
-        "babel-helper-replace-supers": "6.24.1",
-        "babel-messages": "6.23.0",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-computed-properties": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
-      "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-destructuring": {
-      "version": "6.23.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
-      "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-duplicate-keys": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz",
-      "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-for-of": {
-      "version": "6.23.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
-      "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-function-name": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
-      "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
-      "dev": true,
-      "requires": {
-        "babel-helper-function-name": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-literals": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
-      "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-modules-amd": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz",
-      "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=",
-      "dev": true,
-      "requires": {
-        "babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-modules-commonjs": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz",
-      "integrity": "sha1-DYOUApt9xqvhqX7xgeAHWN0uXYo=",
-      "dev": true,
-      "requires": {
-        "babel-plugin-transform-strict-mode": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-modules-systemjs": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz",
-      "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=",
-      "dev": true,
-      "requires": {
-        "babel-helper-hoist-variables": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-modules-umd": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz",
-      "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=",
-      "dev": true,
-      "requires": {
-        "babel-plugin-transform-es2015-modules-amd": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-object-super": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
-      "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=",
-      "dev": true,
-      "requires": {
-        "babel-helper-replace-supers": "6.24.1",
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-parameters": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
-      "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
-      "dev": true,
-      "requires": {
-        "babel-helper-call-delegate": "6.24.1",
-        "babel-helper-get-function-arity": "6.24.1",
-        "babel-runtime": "6.26.0",
-        "babel-template": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-shorthand-properties": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
-      "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-spread": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
-      "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-sticky-regex": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
-      "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
-      "dev": true,
-      "requires": {
-        "babel-helper-regex": "6.26.0",
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-template-literals": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
-      "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-typeof-symbol": {
-      "version": "6.23.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz",
-      "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-es2015-unicode-regex": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
-      "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
-      "dev": true,
-      "requires": {
-        "babel-helper-regex": "6.26.0",
-        "babel-runtime": "6.26.0",
-        "regexpu-core": "2.0.0"
-      }
-    },
-    "babel-plugin-transform-exponentiation-operator": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz",
-      "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=",
-      "dev": true,
-      "requires": {
-        "babel-helper-builder-binary-assignment-operator-visitor": "6.24.1",
-        "babel-plugin-syntax-exponentiation-operator": "6.13.0",
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-flow-strip-types": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz",
-      "integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=",
-      "dev": true,
-      "requires": {
-        "babel-plugin-syntax-flow": "6.18.0",
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-react-display-name": {
-      "version": "6.25.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz",
-      "integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-react-jsx": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz",
-      "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=",
-      "dev": true,
-      "requires": {
-        "babel-helper-builder-react-jsx": "6.26.0",
-        "babel-plugin-syntax-jsx": "6.18.0",
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-react-jsx-self": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz",
-      "integrity": "sha1-322AqdomEqEh5t3XVYvL7PBuY24=",
-      "dev": true,
-      "requires": {
-        "babel-plugin-syntax-jsx": "6.18.0",
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-react-jsx-source": {
-      "version": "6.22.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz",
-      "integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=",
-      "dev": true,
-      "requires": {
-        "babel-plugin-syntax-jsx": "6.18.0",
-        "babel-runtime": "6.26.0"
-      }
-    },
-    "babel-plugin-transform-regenerator": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz",
-      "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=",
-      "dev": true,
-      "requires": {
-        "regenerator-transform": "0.10.1"
-      }
-    },
-    "babel-plugin-transform-strict-mode": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
-      "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0"
-      }
-    },
-    "babel-preset-env": {
-      "version": "1.6.1",
-      "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.1.tgz",
-      "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==",
-      "dev": true,
-      "requires": {
-        "babel-plugin-check-es2015-constants": "6.22.0",
-        "babel-plugin-syntax-trailing-function-commas": "6.22.0",
-        "babel-plugin-transform-async-to-generator": "6.24.1",
-        "babel-plugin-transform-es2015-arrow-functions": "6.22.0",
-        "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
-        "babel-plugin-transform-es2015-block-scoping": "6.26.0",
-        "babel-plugin-transform-es2015-classes": "6.24.1",
-        "babel-plugin-transform-es2015-computed-properties": "6.24.1",
-        "babel-plugin-transform-es2015-destructuring": "6.23.0",
-        "babel-plugin-transform-es2015-duplicate-keys": "6.24.1",
-        "babel-plugin-transform-es2015-for-of": "6.23.0",
-        "babel-plugin-transform-es2015-function-name": "6.24.1",
-        "babel-plugin-transform-es2015-literals": "6.22.0",
-        "babel-plugin-transform-es2015-modules-amd": "6.24.1",
-        "babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
-        "babel-plugin-transform-es2015-modules-systemjs": "6.24.1",
-        "babel-plugin-transform-es2015-modules-umd": "6.24.1",
-        "babel-plugin-transform-es2015-object-super": "6.24.1",
-        "babel-plugin-transform-es2015-parameters": "6.24.1",
-        "babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
-        "babel-plugin-transform-es2015-spread": "6.22.0",
-        "babel-plugin-transform-es2015-sticky-regex": "6.24.1",
-        "babel-plugin-transform-es2015-template-literals": "6.22.0",
-        "babel-plugin-transform-es2015-typeof-symbol": "6.23.0",
-        "babel-plugin-transform-es2015-unicode-regex": "6.24.1",
-        "babel-plugin-transform-exponentiation-operator": "6.24.1",
-        "babel-plugin-transform-regenerator": "6.26.0",
-        "browserslist": "2.11.3",
-        "invariant": "2.2.2",
-        "semver": "5.5.0"
-      }
-    },
-    "babel-preset-flow": {
-      "version": "6.23.0",
-      "resolved": "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz",
-      "integrity": "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=",
-      "dev": true,
-      "requires": {
-        "babel-plugin-transform-flow-strip-types": "6.22.0"
-      }
-    },
-    "babel-preset-react": {
-      "version": "6.24.1",
-      "resolved": "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz",
-      "integrity": "sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=",
-      "dev": true,
-      "requires": {
-        "babel-plugin-syntax-jsx": "6.18.0",
-        "babel-plugin-transform-react-display-name": "6.25.0",
-        "babel-plugin-transform-react-jsx": "6.24.1",
-        "babel-plugin-transform-react-jsx-self": "6.22.0",
-        "babel-plugin-transform-react-jsx-source": "6.22.0",
-        "babel-preset-flow": "6.23.0"
-      }
-    },
-    "babel-register": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz",
-      "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=",
-      "dev": true,
-      "requires": {
-        "babel-core": "6.26.0",
-        "babel-runtime": "6.26.0",
-        "core-js": "2.5.3",
-        "home-or-tmp": "2.0.0",
-        "lodash": "4.17.5",
-        "mkdirp": "0.5.1",
-        "source-map-support": "0.4.18"
-      }
-    },
-    "babel-runtime": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
-      "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
-      "dev": true,
-      "requires": {
-        "core-js": "2.5.3",
-        "regenerator-runtime": "0.11.1"
-      }
-    },
-    "babel-template": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz",
-      "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babel-types": "6.26.0",
-        "babylon": "6.18.0",
-        "lodash": "4.17.5"
-      }
-    },
-    "babel-traverse": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz",
-      "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
-      "dev": true,
-      "requires": {
-        "babel-code-frame": "6.26.0",
-        "babel-messages": "6.23.0",
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0",
-        "babylon": "6.18.0",
-        "debug": "2.6.9",
-        "globals": "9.18.0",
-        "invariant": "2.2.2",
-        "lodash": "4.17.5"
-      }
-    },
-    "babel-types": {
-      "version": "6.26.0",
-      "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
-      "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "esutils": "2.0.2",
-        "lodash": "4.17.5",
-        "to-fast-properties": "1.0.3"
-      }
-    },
-    "babylon": {
-      "version": "6.18.0",
-      "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
-      "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
-      "dev": true
-    },
-    "balanced-match": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
-      "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
-      "dev": true
-    },
-    "bcrypt-pbkdf": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
-      "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=",
-      "dev": true,
-      "optional": true,
-      "requires": {
-        "tweetnacl": "0.14.5"
-      }
-    },
-    "body-parser": {
-      "version": "1.18.2",
-      "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz",
-      "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=",
-      "dev": true,
-      "requires": {
-        "bytes": "3.0.0",
-        "content-type": "1.0.4",
-        "debug": "2.6.9",
-        "depd": "1.1.2",
-        "http-errors": "1.6.2",
-        "iconv-lite": "0.4.19",
-        "on-finished": "2.3.0",
-        "qs": "6.5.1",
-        "raw-body": "2.3.2",
-        "type-is": "1.6.15"
-      }
-    },
-    "boom": {
-      "version": "4.3.1",
-      "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz",
-      "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=",
-      "dev": true,
-      "requires": {
-        "hoek": "4.2.0"
-      }
-    },
-    "brace-expansion": {
-      "version": "1.1.11",
-      "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
-      "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
-      "dev": true,
-      "requires": {
-        "balanced-match": "1.0.0",
-        "concat-map": "0.0.1"
-      }
-    },
-    "browserslist": {
-      "version": "2.11.3",
-      "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz",
-      "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==",
-      "dev": true,
-      "requires": {
-        "caniuse-lite": "1.0.30000808",
-        "electron-to-chromium": "1.3.33"
-      }
-    },
-    "bytes": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
-      "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=",
-      "dev": true
-    },
-    "caniuse-lite": {
-      "version": "1.0.30000808",
-      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000808.tgz",
-      "integrity": "sha512-vT0JLmHdvq1UVbYXioxCXHYdNw55tyvi+IUWyX0Zeh1OFQi2IllYtm38IJnSgHWCv/zUnX1hdhy3vMJvuTNSqw==",
-      "dev": true
-    },
-    "caseless": {
-      "version": "0.12.0",
-      "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
-      "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
-      "dev": true
-    },
-    "chalk": {
-      "version": "2.3.1",
-      "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.1.tgz",
-      "integrity": "sha512-QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g==",
-      "dev": true,
-      "requires": {
-        "ansi-styles": "3.2.0",
-        "escape-string-regexp": "1.0.5",
-        "supports-color": "5.2.0"
-      },
-      "dependencies": {
-        "ansi-styles": {
-          "version": "3.2.0",
-          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
-          "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
-          "dev": true,
-          "requires": {
-            "color-convert": "1.9.1"
-          }
-        },
-        "supports-color": {
-          "version": "5.2.0",
-          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.2.0.tgz",
-          "integrity": "sha512-F39vS48la4YvTZUPVeTqsjsFNrvcMwrV3RLZINsmHo+7djCvuUzSIeXOnZ5hmjef4bajL1dNccN+tg5XAliO5Q==",
-          "dev": true,
-          "requires": {
-            "has-flag": "3.0.0"
-          }
-        }
-      }
-    },
-    "classnames": {
-      "version": "2.2.5",
-      "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.5.tgz",
-      "integrity": "sha1-+zgB1FNGdknvNgPH1hoCvRKb3m0=",
-      "dev": true
-    },
-    "co": {
-      "version": "4.6.0",
-      "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
-      "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
-      "dev": true
-    },
-    "color": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/color/-/color-2.0.1.tgz",
-      "integrity": "sha512-ubUCVVKfT7r2w2D3qtHakj8mbmKms+tThR8gI8zEYCbUBl8/voqFGt3kgBqGwXAopgXybnkuOq+qMYCRrp4cXw==",
-      "dev": true,
-      "requires": {
-        "color-convert": "1.9.1",
-        "color-string": "1.5.2"
-      }
-    },
-    "color-convert": {
-      "version": "1.9.1",
-      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz",
-      "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==",
-      "dev": true,
-      "requires": {
-        "color-name": "1.1.3"
-      }
-    },
-    "color-name": {
-      "version": "1.1.3",
-      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
-      "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
-      "dev": true
-    },
-    "color-string": {
-      "version": "1.5.2",
-      "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.2.tgz",
-      "integrity": "sha1-JuRYFLw8mny9Z1FkikFDRRSnc6k=",
-      "dev": true,
-      "requires": {
-        "color-name": "1.1.3",
-        "simple-swizzle": "0.2.2"
-      }
-    },
-    "combined-stream": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
-      "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
-      "dev": true,
-      "requires": {
-        "delayed-stream": "1.0.0"
-      }
-    },
-    "commander": {
-      "version": "2.14.1",
-      "resolved": "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz",
-      "integrity": "sha512-+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw==",
-      "dev": true
-    },
-    "concat-map": {
-      "version": "0.0.1",
-      "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
-      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
-      "dev": true
-    },
-    "content-disposition": {
-      "version": "0.5.2",
-      "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz",
-      "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=",
-      "dev": true
-    },
-    "content-type": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
-      "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
-      "dev": true
-    },
-    "convert-source-map": {
-      "version": "1.5.1",
-      "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz",
-      "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=",
-      "dev": true
-    },
-    "cookie": {
-      "version": "0.3.1",
-      "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz",
-      "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=",
-      "dev": true
-    },
-    "cookie-signature": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
-      "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=",
-      "dev": true
-    },
-    "core-js": {
-      "version": "2.5.3",
-      "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz",
-      "integrity": "sha1-isw4NFgk8W2DZbfJtCWRaOjtYD4=",
-      "dev": true
-    },
-    "core-util-is": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
-      "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
-      "dev": true
-    },
-    "create-react-class": {
-      "version": "15.6.3",
-      "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.3.tgz",
-      "integrity": "sha512-M+/3Q6E6DLO6Yx3OwrWjwHBnvfXXYA7W+dFjt/ZDBemHO1DDZhsalX/NUtnTYclN6GfnBDRh4qRHjcDHmlJBJg==",
-      "dev": true,
-      "requires": {
-        "fbjs": "0.8.16",
-        "loose-envify": "1.3.1",
-        "object-assign": "4.1.1"
-      }
-    },
-    "crowdin-cli": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/crowdin-cli/-/crowdin-cli-0.3.0.tgz",
-      "integrity": "sha1-6smYmm/n/qrzMJA5evwYfGe0YZE=",
-      "dev": true,
-      "requires": {
-        "request": "2.83.0",
-        "yamljs": "0.2.10",
-        "yargs": "2.3.0"
-      }
-    },
-    "cryptiles": {
-      "version": "3.1.2",
-      "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz",
-      "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=",
-      "dev": true,
-      "requires": {
-        "boom": "5.2.0"
-      },
-      "dependencies": {
-        "boom": {
-          "version": "5.2.0",
-          "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz",
-          "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==",
-          "dev": true,
-          "requires": {
-            "hoek": "4.2.0"
-          }
-        }
-      }
-    },
-    "dashdash": {
-      "version": "1.14.1",
-      "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
-      "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "1.0.0"
-      }
-    },
-    "debug": {
-      "version": "2.6.9",
-      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-      "dev": true,
-      "requires": {
-        "ms": "2.0.0"
-      }
-    },
-    "deep-is": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.2.tgz",
-      "integrity": "sha1-nO1l6gvAsJ9CptecGxkD+dkTzBg=",
-      "dev": true
-    },
-    "delayed-stream": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
-      "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
-      "dev": true
-    },
-    "depd": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
-      "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
-      "dev": true
-    },
-    "destroy": {
-      "version": "1.0.4",
-      "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
-      "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
-      "dev": true
-    },
-    "detect-indent": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
-      "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=",
-      "dev": true,
-      "requires": {
-        "repeating": "2.0.1"
-      }
-    },
-    "docusaurus": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/docusaurus/-/docusaurus-1.0.5.tgz",
-      "integrity": "sha512-mywZXQq/fiepVxpD4DLFZXZ8TV7VQd43nmicJZ2GnRfySj3XHqxEzBxpJss/waa76LNCdkDgRmkAEJ7JZSVY/g==",
-      "dev": true,
-      "requires": {
-        "babel-preset-env": "1.6.1",
-        "babel-preset-react": "6.24.1",
-        "babel-register": "6.26.0",
-        "babel-traverse": "6.26.0",
-        "babylon": "6.18.0",
-        "chalk": "2.3.1",
-        "classnames": "2.2.5",
-        "color": "2.0.1",
-        "commander": "2.14.1",
-        "crowdin-cli": "0.3.0",
-        "escape-string-regexp": "1.0.5",
-        "express": "4.16.2",
-        "feed": "1.1.1",
-        "fs-extra": "5.0.0",
-        "glob": "7.1.2",
-        "highlight.js": "9.12.0",
-        "react": "15.6.2",
-        "react-dom": "15.6.2",
-        "react-dom-factories": "1.0.2",
-        "remarkable": "1.7.1",
-        "request": "2.83.0",
-        "shelljs": "0.7.8",
-        "sitemap": "1.13.0",
-        "tcp-port-used": "0.1.2"
-      }
-    },
-    "ecc-jsbn": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
-      "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
-      "dev": true,
-      "optional": true,
-      "requires": {
-        "jsbn": "0.1.1"
-      }
-    },
-    "ee-first": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
-      "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
-      "dev": true
-    },
-    "electron-to-chromium": {
-      "version": "1.3.33",
-      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.33.tgz",
-      "integrity": "sha1-vwBwPWKnxlI4E2V4w1LWxcBCpUU=",
-      "dev": true
-    },
-    "encodeurl": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
-      "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
-      "dev": true
-    },
-    "encoding": {
-      "version": "0.1.12",
-      "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
-      "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=",
-      "dev": true,
-      "requires": {
-        "iconv-lite": "0.4.19"
-      }
-    },
-    "escape-html": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
-      "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
-      "dev": true
-    },
-    "escape-string-regexp": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
-      "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
-      "dev": true
-    },
-    "esutils": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
-      "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
-      "dev": true
-    },
-    "etag": {
-      "version": "1.8.1",
-      "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
-      "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
-      "dev": true
-    },
-    "express": {
-      "version": "4.16.2",
-      "resolved": "https://registry.npmjs.org/express/-/express-4.16.2.tgz",
-      "integrity": "sha1-41xt/i1kt9ygpc1PIXgb4ymeB2w=",
-      "dev": true,
-      "requires": {
-        "accepts": "1.3.4",
-        "array-flatten": "1.1.1",
-        "body-parser": "1.18.2",
-        "content-disposition": "0.5.2",
-        "content-type": "1.0.4",
-        "cookie": "0.3.1",
-        "cookie-signature": "1.0.6",
-        "debug": "2.6.9",
-        "depd": "1.1.2",
-        "encodeurl": "1.0.2",
-        "escape-html": "1.0.3",
-        "etag": "1.8.1",
-        "finalhandler": "1.1.0",
-        "fresh": "0.5.2",
-        "merge-descriptors": "1.0.1",
-        "methods": "1.1.2",
-        "on-finished": "2.3.0",
-        "parseurl": "1.3.2",
-        "path-to-regexp": "0.1.7",
-        "proxy-addr": "2.0.2",
-        "qs": "6.5.1",
-        "range-parser": "1.2.0",
-        "safe-buffer": "5.1.1",
-        "send": "0.16.1",
-        "serve-static": "1.13.1",
-        "setprototypeof": "1.1.0",
-        "statuses": "1.3.1",
-        "type-is": "1.6.15",
-        "utils-merge": "1.0.1",
-        "vary": "1.1.2"
-      }
-    },
-    "extend": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz",
-      "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=",
-      "dev": true
-    },
-    "extsprintf": {
-      "version": "1.3.0",
-      "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
-      "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
-      "dev": true
-    },
-    "fast-deep-equal": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz",
-      "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=",
-      "dev": true
-    },
-    "fast-json-stable-stringify": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
-      "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=",
-      "dev": true
-    },
-    "fbjs": {
-      "version": "0.8.16",
-      "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz",
-      "integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=",
-      "dev": true,
-      "requires": {
-        "core-js": "1.2.7",
-        "isomorphic-fetch": "2.2.1",
-        "loose-envify": "1.3.1",
-        "object-assign": "4.1.1",
-        "promise": "7.3.1",
-        "setimmediate": "1.0.5",
-        "ua-parser-js": "0.7.17"
-      },
-      "dependencies": {
-        "core-js": {
-          "version": "1.2.7",
-          "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
-          "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=",
-          "dev": true
-        }
-      }
-    },
-    "feed": {
-      "version": "1.1.1",
-      "resolved": "https://registry.npmjs.org/feed/-/feed-1.1.1.tgz",
-      "integrity": "sha1-kUiXUX6U+jJ8xvc7tYWkfEqe0yE=",
-      "dev": true,
-      "requires": {
-        "xml": "1.0.1"
-      }
-    },
-    "finalhandler": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz",
-      "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=",
-      "dev": true,
-      "requires": {
-        "debug": "2.6.9",
-        "encodeurl": "1.0.2",
-        "escape-html": "1.0.3",
-        "on-finished": "2.3.0",
-        "parseurl": "1.3.2",
-        "statuses": "1.3.1",
-        "unpipe": "1.0.0"
-      }
-    },
-    "forever-agent": {
-      "version": "0.6.1",
-      "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
-      "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
-      "dev": true
-    },
-    "form-data": {
-      "version": "2.3.1",
-      "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz",
-      "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=",
-      "dev": true,
-      "requires": {
-        "asynckit": "0.4.0",
-        "combined-stream": "1.0.5",
-        "mime-types": "2.1.17"
-      }
-    },
-    "forwarded": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
-      "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=",
-      "dev": true
-    },
-    "fresh": {
-      "version": "0.5.2",
-      "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
-      "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
-      "dev": true
-    },
-    "fs-extra": {
-      "version": "5.0.0",
-      "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz",
-      "integrity": "sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "4.1.11",
-        "jsonfile": "4.0.0",
-        "universalify": "0.1.1"
-      }
-    },
-    "fs.realpath": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
-      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
-      "dev": true
-    },
-    "getpass": {
-      "version": "0.1.7",
-      "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
-      "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "1.0.0"
-      }
-    },
-    "glob": {
-      "version": "7.1.2",
-      "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
-      "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
-      "dev": true,
-      "requires": {
-        "fs.realpath": "1.0.0",
-        "inflight": "1.0.6",
-        "inherits": "2.0.3",
-        "minimatch": "3.0.4",
-        "once": "1.4.0",
-        "path-is-absolute": "1.0.1"
-      }
-    },
-    "globals": {
-      "version": "9.18.0",
-      "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
-      "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
-      "dev": true
-    },
-    "graceful-fs": {
-      "version": "4.1.11",
-      "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
-      "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=",
-      "dev": true
-    },
-    "har-schema": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
-      "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
-      "dev": true
-    },
-    "har-validator": {
-      "version": "5.0.3",
-      "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz",
-      "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=",
-      "dev": true,
-      "requires": {
-        "ajv": "5.5.2",
-        "har-schema": "2.0.0"
-      }
-    },
-    "has-ansi": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
-      "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
-      "dev": true,
-      "requires": {
-        "ansi-regex": "2.1.1"
-      }
-    },
-    "has-flag": {
-      "version": "3.0.0",
-      "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
-      "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
-      "dev": true
-    },
-    "hawk": {
-      "version": "6.0.2",
-      "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz",
-      "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==",
-      "dev": true,
-      "requires": {
-        "boom": "4.3.1",
-        "cryptiles": "3.1.2",
-        "hoek": "4.2.0",
-        "sntp": "2.1.0"
-      }
-    },
-    "highlight.js": {
-      "version": "9.12.0",
-      "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.12.0.tgz",
-      "integrity": "sha1-5tnb5Xy+/mB1HwKvM2GVhwyQwB4=",
-      "dev": true
-    },
-    "hoek": {
-      "version": "4.2.0",
-      "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz",
-      "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==",
-      "dev": true
-    },
-    "home-or-tmp": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz",
-      "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=",
-      "dev": true,
-      "requires": {
-        "os-homedir": "1.0.2",
-        "os-tmpdir": "1.0.2"
-      }
-    },
-    "http-errors": {
-      "version": "1.6.2",
-      "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz",
-      "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=",
-      "dev": true,
-      "requires": {
-        "depd": "1.1.1",
-        "inherits": "2.0.3",
-        "setprototypeof": "1.0.3",
-        "statuses": "1.3.1"
-      },
-      "dependencies": {
-        "depd": {
-          "version": "1.1.1",
-          "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz",
-          "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=",
-          "dev": true
-        },
-        "setprototypeof": {
-          "version": "1.0.3",
-          "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz",
-          "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=",
-          "dev": true
-        }
-      }
-    },
-    "http-signature": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
-      "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "1.0.0",
-        "jsprim": "1.4.1",
-        "sshpk": "1.13.1"
-      }
-    },
-    "iconv-lite": {
-      "version": "0.4.19",
-      "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz",
-      "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==",
-      "dev": true
-    },
-    "inflight": {
-      "version": "1.0.6",
-      "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
-      "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
-      "dev": true,
-      "requires": {
-        "once": "1.4.0",
-        "wrappy": "1.0.2"
-      }
-    },
-    "inherits": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
-      "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
-      "dev": true
-    },
-    "interpret": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz",
-      "integrity": "sha1-ftGxQQxqDg94z5XTuEQMY/eLhhQ=",
-      "dev": true
-    },
-    "invariant": {
-      "version": "2.2.2",
-      "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz",
-      "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=",
-      "dev": true,
-      "requires": {
-        "loose-envify": "1.3.1"
-      }
-    },
-    "ipaddr.js": {
-      "version": "1.5.2",
-      "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz",
-      "integrity": "sha1-1LUFvemUaYfM8PxY2QEP+WB+P6A=",
-      "dev": true
-    },
-    "is-arrayish": {
-      "version": "0.3.1",
-      "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.1.tgz",
-      "integrity": "sha1-wt/DhquqDD4zxI2z/ocFnmkGXv0=",
-      "dev": true
-    },
-    "is-finite": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz",
-      "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=",
-      "dev": true,
-      "requires": {
-        "number-is-nan": "1.0.1"
-      }
-    },
-    "is-stream": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
-      "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
-      "dev": true
-    },
-    "is-typedarray": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
-      "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
-      "dev": true
-    },
-    "is2": {
-      "version": "0.0.9",
-      "resolved": "https://registry.npmjs.org/is2/-/is2-0.0.9.tgz",
-      "integrity": "sha1-EZVW0dFlGkG6EFr4AyZ8gLKZ9ik=",
-      "dev": true,
-      "requires": {
-        "deep-is": "0.1.2"
-      }
-    },
-    "isomorphic-fetch": {
-      "version": "2.2.1",
-      "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
-      "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=",
-      "dev": true,
-      "requires": {
-        "node-fetch": "1.7.3",
-        "whatwg-fetch": "2.0.3"
-      }
-    },
-    "isstream": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
-      "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
-      "dev": true
-    },
-    "js-tokens": {
-      "version": "3.0.2",
-      "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
-      "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=",
-      "dev": true
-    },
-    "jsbn": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
-      "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
-      "dev": true,
-      "optional": true
-    },
-    "jsesc": {
-      "version": "0.5.0",
-      "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
-      "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
-      "dev": true
-    },
-    "json-schema": {
-      "version": "0.2.3",
-      "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
-      "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
-      "dev": true
-    },
-    "json-schema-traverse": {
-      "version": "0.3.1",
-      "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz",
-      "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=",
-      "dev": true
-    },
-    "json-stringify-safe": {
-      "version": "5.0.1",
-      "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
-      "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
-      "dev": true
-    },
-    "json5": {
-      "version": "0.5.1",
-      "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
-      "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
-      "dev": true
-    },
-    "jsonfile": {
-      "version": "4.0.0",
-      "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
-      "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
-      "dev": true,
-      "requires": {
-        "graceful-fs": "4.1.11"
-      }
-    },
-    "jsprim": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
-      "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "1.0.0",
-        "extsprintf": "1.3.0",
-        "json-schema": "0.2.3",
-        "verror": "1.10.0"
-      }
-    },
-    "lodash": {
-      "version": "4.17.5",
-      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz",
-      "integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==",
-      "dev": true
-    },
-    "loose-envify": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz",
-      "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=",
-      "dev": true,
-      "requires": {
-        "js-tokens": "3.0.2"
-      }
-    },
-    "media-typer": {
-      "version": "0.3.0",
-      "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
-      "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=",
-      "dev": true
-    },
-    "merge-descriptors": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
-      "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=",
-      "dev": true
-    },
-    "methods": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
-      "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
-      "dev": true
-    },
-    "mime": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz",
-      "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==",
-      "dev": true
-    },
-    "mime-db": {
-      "version": "1.30.0",
-      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz",
-      "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=",
-      "dev": true
-    },
-    "mime-types": {
-      "version": "2.1.17",
-      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz",
-      "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=",
-      "dev": true,
-      "requires": {
-        "mime-db": "1.30.0"
-      }
-    },
-    "minimatch": {
-      "version": "3.0.4",
-      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
-      "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
-      "dev": true,
-      "requires": {
-        "brace-expansion": "1.1.11"
-      }
-    },
-    "minimist": {
-      "version": "0.0.8",
-      "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
-      "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
-      "dev": true
-    },
-    "mkdirp": {
-      "version": "0.5.1",
-      "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
-      "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
-      "dev": true,
-      "requires": {
-        "minimist": "0.0.8"
-      }
-    },
-    "ms": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
-      "dev": true
-    },
-    "negotiator": {
-      "version": "0.6.1",
-      "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz",
-      "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=",
-      "dev": true
-    },
-    "node-fetch": {
-      "version": "1.7.3",
-      "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
-      "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
-      "dev": true,
-      "requires": {
-        "encoding": "0.1.12",
-        "is-stream": "1.1.0"
-      }
-    },
-    "number-is-nan": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
-      "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
-      "dev": true
-    },
-    "oauth-sign": {
-      "version": "0.8.2",
-      "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz",
-      "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=",
-      "dev": true
-    },
-    "object-assign": {
-      "version": "4.1.1",
-      "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
-      "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
-      "dev": true
-    },
-    "on-finished": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
-      "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
-      "dev": true,
-      "requires": {
-        "ee-first": "1.1.1"
-      }
-    },
-    "once": {
-      "version": "1.4.0",
-      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
-      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
-      "dev": true,
-      "requires": {
-        "wrappy": "1.0.2"
-      }
-    },
-    "os-homedir": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
-      "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=",
-      "dev": true
-    },
-    "os-tmpdir": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
-      "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
-      "dev": true
-    },
-    "parseurl": {
-      "version": "1.3.2",
-      "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz",
-      "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=",
-      "dev": true
-    },
-    "path-is-absolute": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
-      "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
-      "dev": true
-    },
-    "path-parse": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz",
-      "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=",
-      "dev": true
-    },
-    "path-to-regexp": {
-      "version": "0.1.7",
-      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
-      "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=",
-      "dev": true
-    },
-    "performance-now": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
-      "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
-      "dev": true
-    },
-    "private": {
-      "version": "0.1.8",
-      "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
-      "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==",
-      "dev": true
-    },
-    "promise": {
-      "version": "7.3.1",
-      "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
-      "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
-      "dev": true,
-      "requires": {
-        "asap": "2.0.6"
-      }
-    },
-    "prop-types": {
-      "version": "15.6.0",
-      "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.0.tgz",
-      "integrity": "sha1-zq8IMCL8RrSjX2nhPvda7Q1jmFY=",
-      "dev": true,
-      "requires": {
-        "fbjs": "0.8.16",
-        "loose-envify": "1.3.1",
-        "object-assign": "4.1.1"
-      }
-    },
-    "proxy-addr": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz",
-      "integrity": "sha1-ZXFQT0e7mI7IGAJT+F3X4UlSvew=",
-      "dev": true,
-      "requires": {
-        "forwarded": "0.1.2",
-        "ipaddr.js": "1.5.2"
-      }
-    },
-    "punycode": {
-      "version": "1.4.1",
-      "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
-      "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
-      "dev": true
-    },
-    "q": {
-      "version": "0.9.7",
-      "resolved": "https://registry.npmjs.org/q/-/q-0.9.7.tgz",
-      "integrity": "sha1-TeLmyzspCIyeTLwDv51C+5bOL3U=",
-      "dev": true
-    },
-    "qs": {
-      "version": "6.5.1",
-      "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
-      "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==",
-      "dev": true
-    },
-    "range-parser": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz",
-      "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=",
-      "dev": true
-    },
-    "raw-body": {
-      "version": "2.3.2",
-      "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz",
-      "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=",
-      "dev": true,
-      "requires": {
-        "bytes": "3.0.0",
-        "http-errors": "1.6.2",
-        "iconv-lite": "0.4.19",
-        "unpipe": "1.0.0"
-      }
-    },
-    "react": {
-      "version": "15.6.2",
-      "resolved": "https://registry.npmjs.org/react/-/react-15.6.2.tgz",
-      "integrity": "sha1-26BDSrQ5z+gvEI8PURZjkIF5qnI=",
-      "dev": true,
-      "requires": {
-        "create-react-class": "15.6.3",
-        "fbjs": "0.8.16",
-        "loose-envify": "1.3.1",
-        "object-assign": "4.1.1",
-        "prop-types": "15.6.0"
-      }
-    },
-    "react-dom": {
-      "version": "15.6.2",
-      "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-15.6.2.tgz",
-      "integrity": "sha1-Qc+t9pO3V/rycIRDodH9WgK+9zA=",
-      "dev": true,
-      "requires": {
-        "fbjs": "0.8.16",
-        "loose-envify": "1.3.1",
-        "object-assign": "4.1.1",
-        "prop-types": "15.6.0"
-      }
-    },
-    "react-dom-factories": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/react-dom-factories/-/react-dom-factories-1.0.2.tgz",
-      "integrity": "sha1-63cFxNs2+1AbOqOP91lhaqD/luA=",
-      "dev": true
-    },
-    "rechoir": {
-      "version": "0.6.2",
-      "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz",
-      "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=",
-      "dev": true,
-      "requires": {
-        "resolve": "1.5.0"
-      }
-    },
-    "regenerate": {
-      "version": "1.3.3",
-      "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz",
-      "integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==",
-      "dev": true
-    },
-    "regenerator-runtime": {
-      "version": "0.11.1",
-      "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
-      "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
-      "dev": true
-    },
-    "regenerator-transform": {
-      "version": "0.10.1",
-      "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
-      "integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
-      "dev": true,
-      "requires": {
-        "babel-runtime": "6.26.0",
-        "babel-types": "6.26.0",
-        "private": "0.1.8"
-      }
-    },
-    "regexpu-core": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz",
-      "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=",
-      "dev": true,
-      "requires": {
-        "regenerate": "1.3.3",
-        "regjsgen": "0.2.0",
-        "regjsparser": "0.1.5"
-      }
-    },
-    "regjsgen": {
-      "version": "0.2.0",
-      "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz",
-      "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=",
-      "dev": true
-    },
-    "regjsparser": {
-      "version": "0.1.5",
-      "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
-      "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
-      "dev": true,
-      "requires": {
-        "jsesc": "0.5.0"
-      }
-    },
-    "remarkable": {
-      "version": "1.7.1",
-      "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.1.tgz",
-      "integrity": "sha1-qspJchALZqZCpjoQIcpLrBvjv/Y=",
-      "dev": true,
-      "requires": {
-        "argparse": "0.1.16",
-        "autolinker": "0.15.3"
-      },
-      "dependencies": {
-        "argparse": {
-          "version": "0.1.16",
-          "resolved": "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz",
-          "integrity": "sha1-z9AeD7uj1srtBJ+9dY1A9lGW9Xw=",
-          "dev": true,
-          "requires": {
-            "underscore": "1.7.0",
-            "underscore.string": "2.4.0"
-          }
-        }
-      }
-    },
-    "repeating": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
-      "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
-      "dev": true,
-      "requires": {
-        "is-finite": "1.0.2"
-      }
-    },
-    "request": {
-      "version": "2.83.0",
-      "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz",
-      "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==",
-      "dev": true,
-      "requires": {
-        "aws-sign2": "0.7.0",
-        "aws4": "1.6.0",
-        "caseless": "0.12.0",
-        "combined-stream": "1.0.5",
-        "extend": "3.0.1",
-        "forever-agent": "0.6.1",
-        "form-data": "2.3.1",
-        "har-validator": "5.0.3",
-        "hawk": "6.0.2",
-        "http-signature": "1.2.0",
-        "is-typedarray": "1.0.0",
-        "isstream": "0.1.2",
-        "json-stringify-safe": "5.0.1",
-        "mime-types": "2.1.17",
-        "oauth-sign": "0.8.2",
-        "performance-now": "2.1.0",
-        "qs": "6.5.1",
-        "safe-buffer": "5.1.1",
-        "stringstream": "0.0.5",
-        "tough-cookie": "2.3.3",
-        "tunnel-agent": "0.6.0",
-        "uuid": "3.2.1"
-      }
-    },
-    "resolve": {
-      "version": "1.5.0",
-      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz",
-      "integrity": "sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==",
-      "dev": true,
-      "requires": {
-        "path-parse": "1.0.5"
-      }
-    },
-    "safe-buffer": {
-      "version": "5.1.1",
-      "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
-      "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==",
-      "dev": true
-    },
-    "semver": {
-      "version": "5.5.0",
-      "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
-      "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==",
-      "dev": true
-    },
-    "send": {
-      "version": "0.16.1",
-      "resolved": "https://registry.npmjs.org/send/-/send-0.16.1.tgz",
-      "integrity": "sha512-ElCLJdJIKPk6ux/Hocwhk7NFHpI3pVm/IZOYWqUmoxcgeyM+MpxHHKhb8QmlJDX1pU6WrgaHBkVNm73Sv7uc2A==",
-      "dev": true,
-      "requires": {
-        "debug": "2.6.9",
-        "depd": "1.1.2",
-        "destroy": "1.0.4",
-        "encodeurl": "1.0.2",
-        "escape-html": "1.0.3",
-        "etag": "1.8.1",
-        "fresh": "0.5.2",
-        "http-errors": "1.6.2",
-        "mime": "1.4.1",
-        "ms": "2.0.0",
-        "on-finished": "2.3.0",
-        "range-parser": "1.2.0",
-        "statuses": "1.3.1"
-      }
-    },
-    "serve-static": {
-      "version": "1.13.1",
-      "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz",
-      "integrity": "sha512-hSMUZrsPa/I09VYFJwa627JJkNs0NrfL1Uzuup+GqHfToR2KcsXFymXSV90hoyw3M+msjFuQly+YzIH/q0MGlQ==",
-      "dev": true,
-      "requires": {
-        "encodeurl": "1.0.2",
-        "escape-html": "1.0.3",
-        "parseurl": "1.3.2",
-        "send": "0.16.1"
-      }
-    },
-    "setimmediate": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
-      "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
-      "dev": true
-    },
-    "setprototypeof": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
-      "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
-      "dev": true
-    },
-    "shelljs": {
-      "version": "0.7.8",
-      "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz",
-      "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=",
-      "dev": true,
-      "requires": {
-        "glob": "7.1.2",
-        "interpret": "1.1.0",
-        "rechoir": "0.6.2"
-      }
-    },
-    "simple-swizzle": {
-      "version": "0.2.2",
-      "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
-      "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=",
-      "dev": true,
-      "requires": {
-        "is-arrayish": "0.3.1"
-      }
-    },
-    "sitemap": {
-      "version": "1.13.0",
-      "resolved": "https://registry.npmjs.org/sitemap/-/sitemap-1.13.0.tgz",
-      "integrity": "sha1-Vpy+IYAgKSamKiZs094Jyc60P4M=",
-      "dev": true,
-      "requires": {
-        "underscore": "1.7.0",
-        "url-join": "1.1.0"
-      }
-    },
-    "slash": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
-      "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=",
-      "dev": true
-    },
-    "sntp": {
-      "version": "2.1.0",
-      "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz",
-      "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==",
-      "dev": true,
-      "requires": {
-        "hoek": "4.2.0"
-      }
-    },
-    "source-map": {
-      "version": "0.5.7",
-      "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
-      "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
-      "dev": true
-    },
-    "source-map-support": {
-      "version": "0.4.18",
-      "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz",
-      "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==",
-      "dev": true,
-      "requires": {
-        "source-map": "0.5.7"
-      }
-    },
-    "sprintf-js": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
-      "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
-      "dev": true
-    },
-    "sshpk": {
-      "version": "1.13.1",
-      "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz",
-      "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=",
-      "dev": true,
-      "requires": {
-        "asn1": "0.2.3",
-        "assert-plus": "1.0.0",
-        "bcrypt-pbkdf": "1.0.1",
-        "dashdash": "1.14.1",
-        "ecc-jsbn": "0.1.1",
-        "getpass": "0.1.7",
-        "jsbn": "0.1.1",
-        "tweetnacl": "0.14.5"
-      }
-    },
-    "statuses": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz",
-      "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=",
-      "dev": true
-    },
-    "stringstream": {
-      "version": "0.0.5",
-      "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz",
-      "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=",
-      "dev": true
-    },
-    "strip-ansi": {
-      "version": "3.0.1",
-      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
-      "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
-      "dev": true,
-      "requires": {
-        "ansi-regex": "2.1.1"
-      }
-    },
-    "supports-color": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
-      "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
-      "dev": true
-    },
-    "tcp-port-used": {
-      "version": "0.1.2",
-      "resolved": "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-0.1.2.tgz",
-      "integrity": "sha1-lFDodoyDtBb9TRpqlEnuzL9JbCk=",
-      "dev": true,
-      "requires": {
-        "debug": "0.7.4",
-        "is2": "0.0.9",
-        "q": "0.9.7"
-      },
-      "dependencies": {
-        "debug": {
-          "version": "0.7.4",
-          "resolved": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz",
-          "integrity": "sha1-BuHqgILCyxTjmAbiLi9vdX+Srzk=",
-          "dev": true
-        }
-      }
-    },
-    "to-fast-properties": {
-      "version": "1.0.3",
-      "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
-      "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=",
-      "dev": true
-    },
-    "tough-cookie": {
-      "version": "2.3.3",
-      "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz",
-      "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=",
-      "dev": true,
-      "requires": {
-        "punycode": "1.4.1"
-      }
-    },
-    "trim-right": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
-      "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=",
-      "dev": true
-    },
-    "tunnel-agent": {
-      "version": "0.6.0",
-      "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
-      "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
-      "dev": true,
-      "requires": {
-        "safe-buffer": "5.1.1"
-      }
-    },
-    "tweetnacl": {
-      "version": "0.14.5",
-      "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
-      "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
-      "dev": true,
-      "optional": true
-    },
-    "type-is": {
-      "version": "1.6.15",
-      "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz",
-      "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=",
-      "dev": true,
-      "requires": {
-        "media-typer": "0.3.0",
-        "mime-types": "2.1.17"
-      }
-    },
-    "ua-parser-js": {
-      "version": "0.7.17",
-      "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz",
-      "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==",
-      "dev": true
-    },
-    "underscore": {
-      "version": "1.7.0",
-      "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz",
-      "integrity": "sha1-a7rwh3UA02vjTsqlhODbn+8DUgk=",
-      "dev": true
-    },
-    "underscore.string": {
-      "version": "2.4.0",
-      "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz",
-      "integrity": "sha1-jN2PusTi0uoefi6Al8QvRCKA+Fs=",
-      "dev": true
-    },
-    "universalify": {
-      "version": "0.1.1",
-      "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz",
-      "integrity": "sha1-+nG63UQ3r0wUiEHjs7Fl+enlkLc=",
-      "dev": true
-    },
-    "unpipe": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
-      "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
-      "dev": true
-    },
-    "url-join": {
-      "version": "1.1.0",
-      "resolved": "https://registry.npmjs.org/url-join/-/url-join-1.1.0.tgz",
-      "integrity": "sha1-dBxsL0WWxIMNZxhGCSDQySIC3Hg=",
-      "dev": true
-    },
-    "utils-merge": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
-      "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
-      "dev": true
-    },
-    "uuid": {
-      "version": "3.2.1",
-      "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
-      "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==",
-      "dev": true
-    },
-    "vary": {
-      "version": "1.1.2",
-      "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
-      "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=",
-      "dev": true
-    },
-    "verror": {
-      "version": "1.10.0",
-      "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
-      "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
-      "dev": true,
-      "requires": {
-        "assert-plus": "1.0.0",
-        "core-util-is": "1.0.2",
-        "extsprintf": "1.3.0"
-      }
-    },
-    "whatwg-fetch": {
-      "version": "2.0.3",
-      "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz",
-      "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=",
-      "dev": true
-    },
-    "wordwrap": {
-      "version": "0.0.2",
-      "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
-      "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=",
-      "dev": true
-    },
-    "wrappy": {
-      "version": "1.0.2",
-      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
-      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
-      "dev": true
-    },
-    "xml": {
-      "version": "1.0.1",
-      "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz",
-      "integrity": "sha1-eLpyAgApxbyHuKgaPPzXS0ovweU=",
-      "dev": true
-    },
-    "yamljs": {
-      "version": "0.2.10",
-      "resolved": "https://registry.npmjs.org/yamljs/-/yamljs-0.2.10.tgz",
-      "integrity": "sha1-SBzHwlynOvWfWR8MluPOVsdXpA8=",
-      "dev": true,
-      "requires": {
-        "argparse": "1.0.9",
-        "glob": "7.1.2"
-      }
-    },
-    "yargs": {
-      "version": "2.3.0",
-      "resolved": "https://registry.npmjs.org/yargs/-/yargs-2.3.0.tgz",
-      "integrity": "sha1-6QDIclDsXNCA22AJ/j3WMVbx1/s=",
-      "dev": true,
-      "requires": {
-        "wordwrap": "0.0.2"
-      }
-    }
-  }
-}
diff --git a/vendor/github.com/golang/dep/website/package.json b/vendor/github.com/golang/dep/website/package.json
deleted file mode 100644
index 64af166cb93e5c1fb50978a2f6d0bf6466345809..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/package.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
-  "scripts": {
-    "examples": "docusaurus-examples",
-    "start": "docusaurus-start",
-    "build": "docusaurus-build",
-    "publish-gh-pages": "docusaurus-publish",
-    "write-translations": "docusaurus-write-translations",
-    "version": "docusaurus-version",
-    "rename-version": "docusaurus-rename-version"
-  },
-  "devDependencies": {
-    "docusaurus": "^1.0.5",
-    "babel-preset-env": "^1.6.1",
-    "babel-preset-react": "^6.24.1",
-    "react": "^15.6.2"
-  }
-}
diff --git a/vendor/github.com/golang/dep/website/pages/en/help.js b/vendor/github.com/golang/dep/website/pages/en/help.js
deleted file mode 100755
index 0a63c19e4990832652c8204501b947e8f852564d..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/pages/en/help.js
+++ /dev/null
@@ -1,43 +0,0 @@
-const React = require('react');
-
-const CompLibrary = require('../../core/CompLibrary.js');
-const Container = CompLibrary.Container;
-const GridBlock = CompLibrary.GridBlock;
-
-const siteConfig = require(process.cwd() + '/siteConfig.js');
-
-class Help extends React.Component {
-  render() {
-    const supportLinks = [
-      {
-        content:
-          'Learn more using the [documentation on this site.](/test-site/docs/en/doc1.html)',
-        title: 'Browse Docs',
-      },
-      {
-        content: 'Ask questions about the documentation and project',
-        title: 'Join the community',
-      },
-      {
-        content: "Find out what's new with this project",
-        title: 'Stay up to date',
-      },
-    ];
-
-    return (
-      <div className="docMainWrapper wrapper">
-        <Container className="mainContainer documentContainer postContainer">
-          <div className="post">
-            <header className="postHeader">
-              <h2>Need help?</h2>
-            </header>
-            <p>This project is maintained by a dedicated group of people.</p>
-            <GridBlock contents={supportLinks} layout="threeColumn" />
-          </div>
-        </Container>
-      </div>
-    );
-  }
-}
-
-module.exports = Help;
diff --git a/vendor/github.com/golang/dep/website/pages/en/index.js b/vendor/github.com/golang/dep/website/pages/en/index.js
deleted file mode 100755
index 11437ae9af57df47902e9d0fd1564018fce54cff..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/pages/en/index.js
+++ /dev/null
@@ -1,92 +0,0 @@
-const React = require('react');
-
-const CompLibrary = require('../../core/CompLibrary.js');
-const MarkdownBlock = CompLibrary.MarkdownBlock; /* Used to read markdown */
-const Container = CompLibrary.Container;
-const GridBlock = CompLibrary.GridBlock;
-
-const siteConfig = require(process.cwd() + '/siteConfig.js');
-
-class Button extends React.Component {
-  render() {
-    return (
-      <div className="pluginWrapper buttonWrapper">
-        <a className="button" href={this.props.href} target={this.props.target}>
-          {this.props.children}
-        </a>
-      </div>
-    );
-  }
-}
-
-function assetUrl(img) {
-  return siteConfig.baseUrl + 'docs/assets/' + img;
-}
-
-function docUrl(doc, language) {
-  return siteConfig.baseUrl + 'docs/' + (language ? language + '/' : '') + doc;
-}
-
-Button.defaultProps = {
-  target: '_self',
-};
-
-const SplashContainer = props => (
-  <div className="homeContainer">
-    <div className="homeSplashFade">
-      <div className="wrapper homeWrapper">{props.children}</div>
-    </div>
-  </div>
-);
-
-const Logo = props => (
-  <div className="projectLogo">
-    <img src={props.img_src} />
-  </div>
-);
-
-const ProjectTitle = props => (
-  <h2 className="projectTitle">
-    {siteConfig.title}
-    <small>{siteConfig.tagline}</small>
-  </h2>
-);
-
-const PromoSection = props => (
-  <div className="section promoSection">
-    <div className="promoRow">
-      <div className="pluginRowBlock">{props.children}</div>
-    </div>
-  </div>
-);
-
-class HomeSplash extends React.Component {
-  render() {
-    let language = this.props.language || '';
-    return (
-      <SplashContainer>
-        <Logo img_src={assetUrl('DigbyShadows.svg')} />
-        <div className="inner">
-          <ProjectTitle />
-          <PromoSection>
-            <Button href={docUrl('introduction.html', language)}>Docs</Button>
-            <Button href={siteConfig.baseUrl + 'blog'}>Blog</Button>
-            <Button href='https://github.com/golang/dep'>Code</Button>
-          </PromoSection>
-        </div>
-      </SplashContainer>
-    );
-  }
-}
-
-class Index extends React.Component {
-  render() {
-    let language = this.props.language || '';
-
-    return (
-        <HomeSplash language={language} />
-    );
-  }
-}
-
-module.exports = Index;
diff --git a/vendor/github.com/golang/dep/website/pages/en/users.js b/vendor/github.com/golang/dep/website/pages/en/users.js
deleted file mode 100644
index b94c4bc6e8c7937e6b28c416580184d002cf32c1..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/pages/en/users.js
+++ /dev/null
@@ -1,40 +0,0 @@
-const React = require('react');
-
-const CompLibrary = require('../../core/CompLibrary.js');
-const Container = CompLibrary.Container;
-
-const siteConfig = require(process.cwd() + '/siteConfig.js');
-
-class Users extends React.Component {
-  render() {
-    const showcase = siteConfig.users.map((user, i) => {
-      return (
-        <a href={user.infoLink} key={i}>
-          <img src={user.image} title={user.caption} />
-        </a>
-      );
-    });
-
-    return (
-      <div className="mainContainer">
-        <Container padding={['bottom', 'top']}>
-          <div className="showcaseSection">
-            <div className="prose">
-              <h1>Who's Using This?</h1>
-              <p>This project is used by many folks</p>
-            </div>
-            <div className="logos">{showcase}</div>
-            <p>Are you using this project?</p>
-            <a
-              href="https://github.com/golang/dep/edit/master/website/siteConfig.js"
-              className="button">
-              Add your company
-            </a>
-          </div>
-        </Container>
-      </div>
-    );
-  }
-}
-
-module.exports = Users;
diff --git a/vendor/github.com/golang/dep/website/sidebars.json b/vendor/github.com/golang/dep/website/sidebars.json
deleted file mode 100644
index 8ed31d65928344904c8421a9d0b7ce9558615897..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/sidebars.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
-  "docs": {
-    "Guides": ["introduction", "installation", "new-project", "migrating", "daily-dep", "uninstalling"],
-    "References": ["ensure-mechanics", "failure-modes", "the-solver", "deduction", "Gopkg.toml", "Gopkg.lock", "FAQ", "env-vars", "glossary"]
-  }
-}
diff --git a/vendor/github.com/golang/dep/website/siteConfig.js b/vendor/github.com/golang/dep/website/siteConfig.js
deleted file mode 100644
index 4cd125004a29bf4d5fb038ad3d6fc4e6c3dedc1f..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/siteConfig.js
+++ /dev/null
@@ -1,46 +0,0 @@
-/* List of projects/orgs using your project for the users page */
-const users = [
-];
-
-const siteConfig = {
-  title: 'dep' /* title for your website */,
-  tagline: 'Dependency management for Go',
-  url: 'https://golang.github.io' /* your website url */,
-  baseUrl: '/dep/' /* base url for your project */,
-  editUrl: 'https://github.com/golang/dep/edit/master/docs/',
-  projectName: 'dep',
-  headerLinks: [
-    {doc: 'introduction', label: 'Documentation'},
-    {blog: true, label: 'Blog'},
-  ],
-  users,
-  /* path to images for header/footer */
-  headerIcon: 'docs/assets/DigbyFlat.svg',
-  footerIcon: 'docs/assets/DigbyShadowsScene2.svg',
-  favicon: 'docs/assets/DigbyScene2Flat.png',
-  /* colors for website */
-  colors: {
-    secondaryColor: '#243f75',
-    primaryColor: '#375eab',
-  },
-  algolia: {
-    apiKey: "0b4cdbc6bb41efe17ed7176afcb23441",
-    indexName: "golang_dep"
-  },
-  // This copyright info is used in /core/Footer.js and blog rss/atom feeds.
-  copyright:
-    'Copyright © ' +
-    new Date().getFullYear() +
-    ' The Go Authors',
-   organizationName: 'golang', // or set an env variable ORGANIZATION_NAME
-   projectName: 'dep', // or set an env variable PROJECT_NAME
-  highlight: {
-    // Highlight.js theme to use for syntax highlighting in code blocks
-    theme: 'default',
-  },
-  scripts: ['https://buttons.github.io/buttons.js'],
-  // You may provide arbitrary config keys to be used as needed by your template.
-  repoUrl: 'https://github.com/golang/dep',
-};
-
-module.exports = siteConfig;
diff --git a/vendor/github.com/golang/dep/website/static/css/custom.css b/vendor/github.com/golang/dep/website/static/css/custom.css
deleted file mode 100644
index 6359d6ababe82e1d84fde5ebae8d6cae95c3835b..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/static/css/custom.css
+++ /dev/null
@@ -1,124 +0,0 @@
-/* 
-Contains custom styles for whole site.
-*/
-
-html {
-    box-sizing: border-box;
-}
-
-*, *:before, *:after {
-    box-sizing: inherit;
-}
-
-body {
-    min-height: 100vh;
-}
-
-.navPusher {
-    display: flex;
-    flex-direction: column;
-    box-sizing: border-box;
-    justify-content: space-between;
-    min-height: 100%;
-    /* Resets default height: 100% */
-    height: auto;
-}
-
-.footer-logo {
-    padding-top: 1em;
-    display: flex;
-    justify-content: center;
-}
-
-/* Reset .navToggle box-sizing */
-.navToggle {
-    box-sizing: content-box;
-}
-
-
-/* HOME _____________________________________________________________________________________________________________ */
-
-.homeContainer {
-    flex: 1 0 auto;
-    padding-bottom: 1em;
-}
-
-.homeContainer .homeWrapper .projectLogo {
-    justify-content: center;
-    position: relative;
-    padding: 2em;
-}
-
-.homeContainer .homeWrapper .projectLogo img {
-    max-height: 360px;
-}
-
-
-/* DOCS _____________________________________________________________________________________________________________ */
-
-.docMainWrapper {
-    width: 100%;
-}
-
-
-/* HEADINGS _________________________________________________________________________________________________________ */
-
-.mainContainer .wrapper .post h2,
-.mainContainer .wrapper .post h3,
-.mainContainer .wrapper .post h4,
-.mainContainer .wrapper .post h5,
-.mainContainer .wrapper .post h6 {
-    margin-top: 2.5rem;
-}
-
-.mainContainer .wrapper .post .postHeader h1 {
-    font-size: 2.909rem;
-}
-
-.mainContainer .wrapper .post h2 {
-    font-size: 2.218rem;
-}
-
-.mainContainer .wrapper .post h3 {
-    font-size: 1.798rem;
-    color: #a6a6a6;
-}
-
-.mainContainer .wrapper .post h4 {
-    font-size: 1.618rem;
-    color: #a6a6a6;
-    font-weight: 300;
-    line-height: 1.5;
-    padding: 10px 0;
-}
-
-.mainContainer .wrapper .post h5 {
-    font-size: 1.111rem;
-    color: #a6a6a6;
-    font-weight: 300;
-    line-height: 1.5;
-    padding: 10px 0;
-}
-
-.mainContainer .wrapper .post h6 {
-    font-size: 1rem;
-    color: #a6a6a6;
-    font-weight: 300;
-    line-height: 1.5;
-    padding: 10px 0;
-}
-
-@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
-}
-
-@media only screen and (min-width: 1024px) {
-}
-
-@media only screen and (max-width: 1023px) {
-}
-
-@media only screen and (min-width: 1400px) {
-}
-
-@media only screen and (min-width: 1500px) {
-}
diff --git a/vendor/github.com/golang/dep/website/yarn.lock b/vendor/github.com/golang/dep/website/yarn.lock
deleted file mode 100644
index ca7f166878aec115d30077373f1b8c5618e51934..0000000000000000000000000000000000000000
--- a/vendor/github.com/golang/dep/website/yarn.lock
+++ /dev/null
@@ -1,1739 +0,0 @@
-# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-# yarn lockfile v1
-
-
-accepts@~1.3.4:
-  version "1.3.4"
-  resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.4.tgz#86246758c7dd6d21a6474ff084a4740ec05eb21f"
-  dependencies:
-    mime-types "~2.1.16"
-    negotiator "0.6.1"
-
-ajv@^5.1.0:
-  version "5.5.2"
-  resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
-  dependencies:
-    co "^4.6.0"
-    fast-deep-equal "^1.0.0"
-    fast-json-stable-stringify "^2.0.0"
-    json-schema-traverse "^0.3.0"
-
-ansi-regex@^2.0.0:
-  version "2.1.1"
-  resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
-
-ansi-styles@^2.2.1:
-  version "2.2.1"
-  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
-
-ansi-styles@^3.1.0:
-  version "3.2.0"
-  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
-  dependencies:
-    color-convert "^1.9.0"
-
-argparse@^1.0.7:
-  version "1.0.9"
-  resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
-  dependencies:
-    sprintf-js "~1.0.2"
-
-argparse@~0.1.15:
-  version "0.1.16"
-  resolved "https://registry.yarnpkg.com/argparse/-/argparse-0.1.16.tgz#cfd01e0fbba3d6caed049fbd758d40f65196f57c"
-  dependencies:
-    underscore "~1.7.0"
-    underscore.string "~2.4.0"
-
-array-flatten@1.1.1:
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
-
-asap@~2.0.3:
-  version "2.0.6"
-  resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
-
-asn1@~0.2.3:
-  version "0.2.3"
-  resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
-
-assert-plus@1.0.0, assert-plus@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
-
-asynckit@^0.4.0:
-  version "0.4.0"
-  resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
-
-autolinker@~0.15.0:
-  version "0.15.3"
-  resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-0.15.3.tgz#342417d8f2f3461b14cf09088d5edf8791dc9832"
-
-aws-sign2@~0.7.0:
-  version "0.7.0"
-  resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
-
-aws4@^1.6.0:
-  version "1.6.0"
-  resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
-
-babel-code-frame@^6.26.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
-  dependencies:
-    chalk "^1.1.3"
-    esutils "^2.0.2"
-    js-tokens "^3.0.2"
-
-babel-core@^6.26.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
-  dependencies:
-    babel-code-frame "^6.26.0"
-    babel-generator "^6.26.0"
-    babel-helpers "^6.24.1"
-    babel-messages "^6.23.0"
-    babel-register "^6.26.0"
-    babel-runtime "^6.26.0"
-    babel-template "^6.26.0"
-    babel-traverse "^6.26.0"
-    babel-types "^6.26.0"
-    babylon "^6.18.0"
-    convert-source-map "^1.5.0"
-    debug "^2.6.8"
-    json5 "^0.5.1"
-    lodash "^4.17.4"
-    minimatch "^3.0.4"
-    path-is-absolute "^1.0.1"
-    private "^0.1.7"
-    slash "^1.0.0"
-    source-map "^0.5.6"
-
-babel-generator@^6.26.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
-  dependencies:
-    babel-messages "^6.23.0"
-    babel-runtime "^6.26.0"
-    babel-types "^6.26.0"
-    detect-indent "^4.0.0"
-    jsesc "^1.3.0"
-    lodash "^4.17.4"
-    source-map "^0.5.6"
-    trim-right "^1.0.1"
-
-babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
-  dependencies:
-    babel-helper-explode-assignable-expression "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-types "^6.24.1"
-
-babel-helper-builder-react-jsx@^6.24.1:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
-  dependencies:
-    babel-runtime "^6.26.0"
-    babel-types "^6.26.0"
-    esutils "^2.0.2"
-
-babel-helper-call-delegate@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
-  dependencies:
-    babel-helper-hoist-variables "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-traverse "^6.24.1"
-    babel-types "^6.24.1"
-
-babel-helper-define-map@^6.24.1:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
-  dependencies:
-    babel-helper-function-name "^6.24.1"
-    babel-runtime "^6.26.0"
-    babel-types "^6.26.0"
-    lodash "^4.17.4"
-
-babel-helper-explode-assignable-expression@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
-  dependencies:
-    babel-runtime "^6.22.0"
-    babel-traverse "^6.24.1"
-    babel-types "^6.24.1"
-
-babel-helper-function-name@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
-  dependencies:
-    babel-helper-get-function-arity "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-    babel-traverse "^6.24.1"
-    babel-types "^6.24.1"
-
-babel-helper-get-function-arity@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
-  dependencies:
-    babel-runtime "^6.22.0"
-    babel-types "^6.24.1"
-
-babel-helper-hoist-variables@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
-  dependencies:
-    babel-runtime "^6.22.0"
-    babel-types "^6.24.1"
-
-babel-helper-optimise-call-expression@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
-  dependencies:
-    babel-runtime "^6.22.0"
-    babel-types "^6.24.1"
-
-babel-helper-regex@^6.24.1:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
-  dependencies:
-    babel-runtime "^6.26.0"
-    babel-types "^6.26.0"
-    lodash "^4.17.4"
-
-babel-helper-remap-async-to-generator@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
-  dependencies:
-    babel-helper-function-name "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-    babel-traverse "^6.24.1"
-    babel-types "^6.24.1"
-
-babel-helper-replace-supers@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
-  dependencies:
-    babel-helper-optimise-call-expression "^6.24.1"
-    babel-messages "^6.23.0"
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-    babel-traverse "^6.24.1"
-    babel-types "^6.24.1"
-
-babel-helpers@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
-  dependencies:
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-
-babel-messages@^6.23.0:
-  version "6.23.0"
-  resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-check-es2015-constants@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-syntax-async-functions@^6.8.0:
-  version "6.13.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
-
-babel-plugin-syntax-exponentiation-operator@^6.8.0:
-  version "6.13.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
-
-babel-plugin-syntax-flow@^6.18.0:
-  version "6.18.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
-
-babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
-  version "6.18.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
-
-babel-plugin-syntax-trailing-function-commas@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
-
-babel-plugin-transform-async-to-generator@^6.22.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
-  dependencies:
-    babel-helper-remap-async-to-generator "^6.24.1"
-    babel-plugin-syntax-async-functions "^6.8.0"
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-arrow-functions@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-block-scoping@^6.23.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
-  dependencies:
-    babel-runtime "^6.26.0"
-    babel-template "^6.26.0"
-    babel-traverse "^6.26.0"
-    babel-types "^6.26.0"
-    lodash "^4.17.4"
-
-babel-plugin-transform-es2015-classes@^6.23.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
-  dependencies:
-    babel-helper-define-map "^6.24.1"
-    babel-helper-function-name "^6.24.1"
-    babel-helper-optimise-call-expression "^6.24.1"
-    babel-helper-replace-supers "^6.24.1"
-    babel-messages "^6.23.0"
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-    babel-traverse "^6.24.1"
-    babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-computed-properties@^6.22.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
-  dependencies:
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-
-babel-plugin-transform-es2015-destructuring@^6.23.0:
-  version "6.23.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
-  dependencies:
-    babel-runtime "^6.22.0"
-    babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-for-of@^6.23.0:
-  version "6.23.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-function-name@^6.22.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
-  dependencies:
-    babel-helper-function-name "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-literals@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
-  dependencies:
-    babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-
-babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz#0d8394029b7dc6abe1a97ef181e00758dd2e5d8a"
-  dependencies:
-    babel-plugin-transform-strict-mode "^6.24.1"
-    babel-runtime "^6.26.0"
-    babel-template "^6.26.0"
-    babel-types "^6.26.0"
-
-babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
-  dependencies:
-    babel-helper-hoist-variables "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-
-babel-plugin-transform-es2015-modules-umd@^6.23.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
-  dependencies:
-    babel-plugin-transform-es2015-modules-amd "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-
-babel-plugin-transform-es2015-object-super@^6.22.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
-  dependencies:
-    babel-helper-replace-supers "^6.24.1"
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-parameters@^6.23.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
-  dependencies:
-    babel-helper-call-delegate "^6.24.1"
-    babel-helper-get-function-arity "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-template "^6.24.1"
-    babel-traverse "^6.24.1"
-    babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
-  dependencies:
-    babel-runtime "^6.22.0"
-    babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-spread@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-sticky-regex@^6.22.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
-  dependencies:
-    babel-helper-regex "^6.24.1"
-    babel-runtime "^6.22.0"
-    babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-template-literals@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
-  version "6.23.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-unicode-regex@^6.22.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
-  dependencies:
-    babel-helper-regex "^6.24.1"
-    babel-runtime "^6.22.0"
-    regexpu-core "^2.0.0"
-
-babel-plugin-transform-exponentiation-operator@^6.22.0:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
-  dependencies:
-    babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
-    babel-plugin-syntax-exponentiation-operator "^6.8.0"
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-flow-strip-types@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
-  dependencies:
-    babel-plugin-syntax-flow "^6.18.0"
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-react-display-name@^6.23.0:
-  version "6.25.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
-  dependencies:
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-react-jsx-self@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
-  dependencies:
-    babel-plugin-syntax-jsx "^6.8.0"
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-react-jsx-source@^6.22.0:
-  version "6.22.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
-  dependencies:
-    babel-plugin-syntax-jsx "^6.8.0"
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-react-jsx@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
-  dependencies:
-    babel-helper-builder-react-jsx "^6.24.1"
-    babel-plugin-syntax-jsx "^6.8.0"
-    babel-runtime "^6.22.0"
-
-babel-plugin-transform-regenerator@^6.22.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
-  dependencies:
-    regenerator-transform "^0.10.0"
-
-babel-plugin-transform-strict-mode@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
-  dependencies:
-    babel-runtime "^6.22.0"
-    babel-types "^6.24.1"
-
-babel-preset-env@^1.6.0, babel-preset-env@^1.6.1:
-  version "1.6.1"
-  resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48"
-  dependencies:
-    babel-plugin-check-es2015-constants "^6.22.0"
-    babel-plugin-syntax-trailing-function-commas "^6.22.0"
-    babel-plugin-transform-async-to-generator "^6.22.0"
-    babel-plugin-transform-es2015-arrow-functions "^6.22.0"
-    babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
-    babel-plugin-transform-es2015-block-scoping "^6.23.0"
-    babel-plugin-transform-es2015-classes "^6.23.0"
-    babel-plugin-transform-es2015-computed-properties "^6.22.0"
-    babel-plugin-transform-es2015-destructuring "^6.23.0"
-    babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
-    babel-plugin-transform-es2015-for-of "^6.23.0"
-    babel-plugin-transform-es2015-function-name "^6.22.0"
-    babel-plugin-transform-es2015-literals "^6.22.0"
-    babel-plugin-transform-es2015-modules-amd "^6.22.0"
-    babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
-    babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
-    babel-plugin-transform-es2015-modules-umd "^6.23.0"
-    babel-plugin-transform-es2015-object-super "^6.22.0"
-    babel-plugin-transform-es2015-parameters "^6.23.0"
-    babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
-    babel-plugin-transform-es2015-spread "^6.22.0"
-    babel-plugin-transform-es2015-sticky-regex "^6.22.0"
-    babel-plugin-transform-es2015-template-literals "^6.22.0"
-    babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
-    babel-plugin-transform-es2015-unicode-regex "^6.22.0"
-    babel-plugin-transform-exponentiation-operator "^6.22.0"
-    babel-plugin-transform-regenerator "^6.22.0"
-    browserslist "^2.1.2"
-    invariant "^2.2.2"
-    semver "^5.3.0"
-
-babel-preset-flow@^6.23.0:
-  version "6.23.0"
-  resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
-  dependencies:
-    babel-plugin-transform-flow-strip-types "^6.22.0"
-
-babel-preset-react@^6.24.1:
-  version "6.24.1"
-  resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380"
-  dependencies:
-    babel-plugin-syntax-jsx "^6.3.13"
-    babel-plugin-transform-react-display-name "^6.23.0"
-    babel-plugin-transform-react-jsx "^6.24.1"
-    babel-plugin-transform-react-jsx-self "^6.22.0"
-    babel-plugin-transform-react-jsx-source "^6.22.0"
-    babel-preset-flow "^6.23.0"
-
-babel-register@^6.24.1, babel-register@^6.26.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
-  dependencies:
-    babel-core "^6.26.0"
-    babel-runtime "^6.26.0"
-    core-js "^2.5.0"
-    home-or-tmp "^2.0.0"
-    lodash "^4.17.4"
-    mkdirp "^0.5.1"
-    source-map-support "^0.4.15"
-
-babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
-  dependencies:
-    core-js "^2.4.0"
-    regenerator-runtime "^0.11.0"
-
-babel-template@^6.24.1, babel-template@^6.26.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
-  dependencies:
-    babel-runtime "^6.26.0"
-    babel-traverse "^6.26.0"
-    babel-types "^6.26.0"
-    babylon "^6.18.0"
-    lodash "^4.17.4"
-
-babel-traverse@^6.24.1, babel-traverse@^6.25.0, babel-traverse@^6.26.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
-  dependencies:
-    babel-code-frame "^6.26.0"
-    babel-messages "^6.23.0"
-    babel-runtime "^6.26.0"
-    babel-types "^6.26.0"
-    babylon "^6.18.0"
-    debug "^2.6.8"
-    globals "^9.18.0"
-    invariant "^2.2.2"
-    lodash "^4.17.4"
-
-babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
-  version "6.26.0"
-  resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
-  dependencies:
-    babel-runtime "^6.26.0"
-    esutils "^2.0.2"
-    lodash "^4.17.4"
-    to-fast-properties "^1.0.3"
-
-babylon@^6.17.4, babylon@^6.18.0:
-  version "6.18.0"
-  resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
-
-balanced-match@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
-
-bcrypt-pbkdf@^1.0.0:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
-  dependencies:
-    tweetnacl "^0.14.3"
-
-body-parser@1.18.2:
-  version "1.18.2"
-  resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
-  dependencies:
-    bytes "3.0.0"
-    content-type "~1.0.4"
-    debug "2.6.9"
-    depd "~1.1.1"
-    http-errors "~1.6.2"
-    iconv-lite "0.4.19"
-    on-finished "~2.3.0"
-    qs "6.5.1"
-    raw-body "2.3.2"
-    type-is "~1.6.15"
-
-boom@4.x.x:
-  version "4.3.1"
-  resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
-  dependencies:
-    hoek "4.x.x"
-
-boom@5.x.x:
-  version "5.2.0"
-  resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02"
-  dependencies:
-    hoek "4.x.x"
-
-brace-expansion@^1.1.7:
-  version "1.1.8"
-  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
-  dependencies:
-    balanced-match "^1.0.0"
-    concat-map "0.0.1"
-
-browserslist@^2.1.2:
-  version "2.11.3"
-  resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.11.3.tgz#fe36167aed1bbcde4827ebfe71347a2cc70b99b2"
-  dependencies:
-    caniuse-lite "^1.0.30000792"
-    electron-to-chromium "^1.3.30"
-
-bytes@3.0.0:
-  version "3.0.0"
-  resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
-
-caniuse-lite@^1.0.30000792:
-  version "1.0.30000792"
-  resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000792.tgz#d0cea981f8118f3961471afbb43c9a1e5bbf0332"
-
-caseless@~0.12.0:
-  version "0.12.0"
-  resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
-
-chalk@^1.1.3:
-  version "1.1.3"
-  resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
-  dependencies:
-    ansi-styles "^2.2.1"
-    escape-string-regexp "^1.0.2"
-    has-ansi "^2.0.0"
-    strip-ansi "^3.0.0"
-    supports-color "^2.0.0"
-
-chalk@^2.1.0:
-  version "2.3.0"
-  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"
-  dependencies:
-    ansi-styles "^3.1.0"
-    escape-string-regexp "^1.0.5"
-    supports-color "^4.0.0"
-
-classnames@^2.2.5:
-  version "2.2.5"
-  resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.5.tgz#fb3801d453467649ef3603c7d61a02bd129bde6d"
-
-co@^4.6.0:
-  version "4.6.0"
-  resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
-
-color-convert@^1.9.0, color-convert@^1.9.1:
-  version "1.9.1"
-  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed"
-  dependencies:
-    color-name "^1.1.1"
-
-color-name@^1.0.0, color-name@^1.1.1:
-  version "1.1.3"
-  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
-
-color-string@^1.5.2:
-  version "1.5.2"
-  resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.2.tgz#26e45814bc3c9a7cbd6751648a41434514a773a9"
-  dependencies:
-    color-name "^1.0.0"
-    simple-swizzle "^0.2.2"
-
-color@^2.0.1:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/color/-/color-2.0.1.tgz#e4ed78a3c4603d0891eba5430b04b86314f4c839"
-  dependencies:
-    color-convert "^1.9.1"
-    color-string "^1.5.2"
-
-combined-stream@^1.0.5, combined-stream@~1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
-  dependencies:
-    delayed-stream "~1.0.0"
-
-commander@^2.11.0:
-  version "2.13.0"
-  resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
-
-concat-map@0.0.1:
-  version "0.0.1"
-  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
-
-content-disposition@0.5.2:
-  version "0.5.2"
-  resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
-
-content-type@~1.0.4:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
-
-convert-source-map@^1.5.0:
-  version "1.5.1"
-  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
-
-cookie-signature@1.0.6:
-  version "1.0.6"
-  resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
-
-cookie@0.3.1:
-  version "0.3.1"
-  resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
-
-core-js@^1.0.0:
-  version "1.2.7"
-  resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
-
-core-js@^2.4.0, core-js@^2.5.0:
-  version "2.5.3"
-  resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.3.tgz#8acc38345824f16d8365b7c9b4259168e8ed603e"
-
-core-util-is@1.0.2:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
-
-create-react-class@^15.6.0:
-  version "15.6.2"
-  resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.2.tgz#cf1ed15f12aad7f14ef5f2dfe05e6c42f91ef02a"
-  dependencies:
-    fbjs "^0.8.9"
-    loose-envify "^1.3.1"
-    object-assign "^4.1.1"
-
-crowdin-cli@^0.3.0:
-  version "0.3.0"
-  resolved "https://registry.yarnpkg.com/crowdin-cli/-/crowdin-cli-0.3.0.tgz#eac9989a6fe7feaaf33090397afc187c67b46191"
-  dependencies:
-    request "^2.53.0"
-    yamljs "^0.2.1"
-    yargs "^2.3.0"
-
-cryptiles@3.x.x:
-  version "3.1.2"
-  resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"
-  dependencies:
-    boom "5.x.x"
-
-dashdash@^1.12.0:
-  version "1.14.1"
-  resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
-  dependencies:
-    assert-plus "^1.0.0"
-
-debug@0.7.4:
-  version "0.7.4"
-  resolved "https://registry.yarnpkg.com/debug/-/debug-0.7.4.tgz#06e1ea8082c2cb14e39806e22e2f6f757f92af39"
-
-debug@2.6.9, debug@^2.6.8:
-  version "2.6.9"
-  resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
-  dependencies:
-    ms "2.0.0"
-
-deep-is@0.1.2:
-  version "0.1.2"
-  resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.2.tgz#9ced65ea0bc0b09f42a6d79c1b1903f9d913cc18"
-
-delayed-stream@~1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
-
-depd@1.1.1:
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
-
-depd@~1.1.1:
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
-
-destroy@~1.0.4:
-  version "1.0.4"
-  resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
-
-detect-indent@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
-  dependencies:
-    repeating "^2.0.0"
-
-docusaurus@^1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/docusaurus/-/docusaurus-1.0.5.tgz#a2d75690e8dde50987a44cc836d6375b6130c8b7"
-  dependencies:
-    babel-preset-env "^1.6.0"
-    babel-preset-react "^6.24.1"
-    babel-register "^6.24.1"
-    babel-traverse "^6.25.0"
-    babylon "^6.17.4"
-    chalk "^2.1.0"
-    classnames "^2.2.5"
-    color "^2.0.1"
-    commander "^2.11.0"
-    crowdin-cli "^0.3.0"
-    escape-string-regexp "^1.0.5"
-    express "^4.15.3"
-    feed "^1.1.0"
-    fs-extra "^5.0.0"
-    glob "^7.1.2"
-    highlight.js "^9.12.0"
-    react "^15.5.4"
-    react-dom "^15.5.4"
-    react-dom-factories "^1.0.1"
-    remarkable "^1.7.1"
-    request "^2.81.0"
-    shelljs "^0.7.8"
-    sitemap "^1.13.0"
-    tcp-port-used "^0.1.2"
-
-ecc-jsbn@~0.1.1:
-  version "0.1.1"
-  resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505"
-  dependencies:
-    jsbn "~0.1.0"
-
-ee-first@1.1.1:
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
-
-electron-to-chromium@^1.3.30:
-  version "1.3.31"
-  resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.31.tgz#00d832cba9fe2358652b0c48a8816c8e3a037e9f"
-
-encodeurl@~1.0.1:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
-
-encoding@^0.1.11:
-  version "0.1.12"
-  resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
-  dependencies:
-    iconv-lite "~0.4.13"
-
-escape-html@~1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
-
-escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
-
-esutils@^2.0.2:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
-
-etag@~1.8.1:
-  version "1.8.1"
-  resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
-
-express@^4.15.3:
-  version "4.16.2"
-  resolved "https://registry.yarnpkg.com/express/-/express-4.16.2.tgz#e35c6dfe2d64b7dca0a5cd4f21781be3299e076c"
-  dependencies:
-    accepts "~1.3.4"
-    array-flatten "1.1.1"
-    body-parser "1.18.2"
-    content-disposition "0.5.2"
-    content-type "~1.0.4"
-    cookie "0.3.1"
-    cookie-signature "1.0.6"
-    debug "2.6.9"
-    depd "~1.1.1"
-    encodeurl "~1.0.1"
-    escape-html "~1.0.3"
-    etag "~1.8.1"
-    finalhandler "1.1.0"
-    fresh "0.5.2"
-    merge-descriptors "1.0.1"
-    methods "~1.1.2"
-    on-finished "~2.3.0"
-    parseurl "~1.3.2"
-    path-to-regexp "0.1.7"
-    proxy-addr "~2.0.2"
-    qs "6.5.1"
-    range-parser "~1.2.0"
-    safe-buffer "5.1.1"
-    send "0.16.1"
-    serve-static "1.13.1"
-    setprototypeof "1.1.0"
-    statuses "~1.3.1"
-    type-is "~1.6.15"
-    utils-merge "1.0.1"
-    vary "~1.1.2"
-
-extend@~3.0.1:
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
-
-extsprintf@1.3.0:
-  version "1.3.0"
-  resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
-
-extsprintf@^1.2.0:
-  version "1.4.0"
-  resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
-
-fast-deep-equal@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
-
-fast-json-stable-stringify@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
-
-fbjs@^0.8.16, fbjs@^0.8.9:
-  version "0.8.16"
-  resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db"
-  dependencies:
-    core-js "^1.0.0"
-    isomorphic-fetch "^2.1.1"
-    loose-envify "^1.0.0"
-    object-assign "^4.1.0"
-    promise "^7.1.1"
-    setimmediate "^1.0.5"
-    ua-parser-js "^0.7.9"
-
-feed@^1.1.0:
-  version "1.1.1"
-  resolved "https://registry.yarnpkg.com/feed/-/feed-1.1.1.tgz#914897517e94fa327cc6f73bb585a47c4a9ed321"
-  dependencies:
-    xml "^1.0.1"
-
-finalhandler@1.1.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz#ce0b6855b45853e791b2fcc680046d88253dd7f5"
-  dependencies:
-    debug "2.6.9"
-    encodeurl "~1.0.1"
-    escape-html "~1.0.3"
-    on-finished "~2.3.0"
-    parseurl "~1.3.2"
-    statuses "~1.3.1"
-    unpipe "~1.0.0"
-
-forever-agent@~0.6.1:
-  version "0.6.1"
-  resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
-
-form-data@~2.3.1:
-  version "2.3.1"
-  resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf"
-  dependencies:
-    asynckit "^0.4.0"
-    combined-stream "^1.0.5"
-    mime-types "^2.1.12"
-
-forwarded@~0.1.2:
-  version "0.1.2"
-  resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
-
-fresh@0.5.2:
-  version "0.5.2"
-  resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
-
-fs-extra@^5.0.0:
-  version "5.0.0"
-  resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-5.0.0.tgz#414d0110cdd06705734d055652c5411260c31abd"
-  dependencies:
-    graceful-fs "^4.1.2"
-    jsonfile "^4.0.0"
-    universalify "^0.1.0"
-
-fs.realpath@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
-
-getpass@^0.1.1:
-  version "0.1.7"
-  resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
-  dependencies:
-    assert-plus "^1.0.0"
-
-glob@^7.0.0, glob@^7.0.5, glob@^7.1.2:
-  version "7.1.2"
-  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
-  dependencies:
-    fs.realpath "^1.0.0"
-    inflight "^1.0.4"
-    inherits "2"
-    minimatch "^3.0.4"
-    once "^1.3.0"
-    path-is-absolute "^1.0.0"
-
-globals@^9.18.0:
-  version "9.18.0"
-  resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
-
-graceful-fs@^4.1.2, graceful-fs@^4.1.6:
-  version "4.1.11"
-  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
-
-har-schema@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
-
-har-validator@~5.0.3:
-  version "5.0.3"
-  resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd"
-  dependencies:
-    ajv "^5.1.0"
-    har-schema "^2.0.0"
-
-has-ansi@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
-  dependencies:
-    ansi-regex "^2.0.0"
-
-has-flag@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
-
-hawk@~6.0.2:
-  version "6.0.2"
-  resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038"
-  dependencies:
-    boom "4.x.x"
-    cryptiles "3.x.x"
-    hoek "4.x.x"
-    sntp "2.x.x"
-
-highlight.js@^9.12.0:
-  version "9.12.0"
-  resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.12.0.tgz#e6d9dbe57cbefe60751f02af336195870c90c01e"
-
-hoek@4.x.x:
-  version "4.2.0"
-  resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d"
-
-home-or-tmp@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
-  dependencies:
-    os-homedir "^1.0.0"
-    os-tmpdir "^1.0.1"
-
-http-errors@1.6.2, http-errors@~1.6.2:
-  version "1.6.2"
-  resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736"
-  dependencies:
-    depd "1.1.1"
-    inherits "2.0.3"
-    setprototypeof "1.0.3"
-    statuses ">= 1.3.1 < 2"
-
-http-signature@~1.2.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
-  dependencies:
-    assert-plus "^1.0.0"
-    jsprim "^1.2.2"
-    sshpk "^1.7.0"
-
-iconv-lite@0.4.19, iconv-lite@~0.4.13:
-  version "0.4.19"
-  resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
-
-inflight@^1.0.4:
-  version "1.0.6"
-  resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
-  dependencies:
-    once "^1.3.0"
-    wrappy "1"
-
-inherits@2, inherits@2.0.3:
-  version "2.0.3"
-  resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
-
-interpret@^1.0.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.1.0.tgz#7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"
-
-invariant@^2.2.2:
-  version "2.2.2"
-  resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360"
-  dependencies:
-    loose-envify "^1.0.0"
-
-ipaddr.js@1.5.2:
-  version "1.5.2"
-  resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.5.2.tgz#d4b505bde9946987ccf0fc58d9010ff9607e3fa0"
-
-is-arrayish@^0.3.1:
-  version "0.3.1"
-  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.1.tgz#c2dfc386abaa0c3e33c48db3fe87059e69065efd"
-
-is-finite@^1.0.0:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
-  dependencies:
-    number-is-nan "^1.0.0"
-
-is-stream@^1.0.1:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
-
-is-typedarray@~1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
-
-is2@0.0.9:
-  version "0.0.9"
-  resolved "https://registry.yarnpkg.com/is2/-/is2-0.0.9.tgz#119556d1d1651a41ba105af803267c80b299f629"
-  dependencies:
-    deep-is "0.1.2"
-
-isomorphic-fetch@^2.1.1:
-  version "2.2.1"
-  resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
-  dependencies:
-    node-fetch "^1.0.1"
-    whatwg-fetch ">=0.10.0"
-
-isstream@~0.1.2:
-  version "0.1.2"
-  resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
-
-js-tokens@^3.0.0, js-tokens@^3.0.2:
-  version "3.0.2"
-  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
-
-jsbn@~0.1.0:
-  version "0.1.1"
-  resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
-
-jsesc@^1.3.0:
-  version "1.3.0"
-  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
-
-jsesc@~0.5.0:
-  version "0.5.0"
-  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
-
-json-schema-traverse@^0.3.0:
-  version "0.3.1"
-  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
-
-json-schema@0.2.3:
-  version "0.2.3"
-  resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
-
-json-stringify-safe@~5.0.1:
-  version "5.0.1"
-  resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
-
-json5@^0.5.1:
-  version "0.5.1"
-  resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
-
-jsonfile@^4.0.0:
-  version "4.0.0"
-  resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
-  optionalDependencies:
-    graceful-fs "^4.1.6"
-
-jsprim@^1.2.2:
-  version "1.4.1"
-  resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
-  dependencies:
-    assert-plus "1.0.0"
-    extsprintf "1.3.0"
-    json-schema "0.2.3"
-    verror "1.10.0"
-
-lodash@^4.17.4:
-  version "4.17.4"
-  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
-
-loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1:
-  version "1.3.1"
-  resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
-  dependencies:
-    js-tokens "^3.0.0"
-
-media-typer@0.3.0:
-  version "0.3.0"
-  resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
-
-merge-descriptors@1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
-
-methods@~1.1.2:
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
-
-mime-db@~1.30.0:
-  version "1.30.0"
-  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
-
-mime-types@^2.1.12, mime-types@~2.1.15, mime-types@~2.1.16, mime-types@~2.1.17:
-  version "2.1.17"
-  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
-  dependencies:
-    mime-db "~1.30.0"
-
-mime@1.4.1:
-  version "1.4.1"
-  resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
-
-minimatch@^3.0.4:
-  version "3.0.4"
-  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
-  dependencies:
-    brace-expansion "^1.1.7"
-
-minimist@0.0.8:
-  version "0.0.8"
-  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
-
-mkdirp@^0.5.1:
-  version "0.5.1"
-  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
-  dependencies:
-    minimist "0.0.8"
-
-ms@2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
-
-negotiator@0.6.1:
-  version "0.6.1"
-  resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
-
-node-fetch@^1.0.1:
-  version "1.7.3"
-  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
-  dependencies:
-    encoding "^0.1.11"
-    is-stream "^1.0.1"
-
-number-is-nan@^1.0.0:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
-
-oauth-sign@~0.8.2:
-  version "0.8.2"
-  resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"
-
-object-assign@^4.1.0, object-assign@^4.1.1:
-  version "4.1.1"
-  resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
-
-on-finished@~2.3.0:
-  version "2.3.0"
-  resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
-  dependencies:
-    ee-first "1.1.1"
-
-once@^1.3.0:
-  version "1.4.0"
-  resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
-  dependencies:
-    wrappy "1"
-
-os-homedir@^1.0.0:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
-
-os-tmpdir@^1.0.1:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
-
-parseurl@~1.3.2:
-  version "1.3.2"
-  resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
-
-path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
-
-path-parse@^1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
-
-path-to-regexp@0.1.7:
-  version "0.1.7"
-  resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
-
-performance-now@^2.1.0:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
-
-private@^0.1.6, private@^0.1.7:
-  version "0.1.8"
-  resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
-
-promise@^7.1.1:
-  version "7.3.1"
-  resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
-  dependencies:
-    asap "~2.0.3"
-
-prop-types@^15.5.10:
-  version "15.6.0"
-  resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856"
-  dependencies:
-    fbjs "^0.8.16"
-    loose-envify "^1.3.1"
-    object-assign "^4.1.1"
-
-proxy-addr@~2.0.2:
-  version "2.0.2"
-  resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.2.tgz#6571504f47bb988ec8180253f85dd7e14952bdec"
-  dependencies:
-    forwarded "~0.1.2"
-    ipaddr.js "1.5.2"
-
-punycode@^1.4.1:
-  version "1.4.1"
-  resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
-
-q@0.9.7:
-  version "0.9.7"
-  resolved "https://registry.yarnpkg.com/q/-/q-0.9.7.tgz#4de2e6cb3b29088c9e4cbc03bf9d42fb96ce2f75"
-
-qs@6.5.1, qs@~6.5.1:
-  version "6.5.1"
-  resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
-
-range-parser@~1.2.0:
-  version "1.2.0"
-  resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
-
-raw-body@2.3.2:
-  version "2.3.2"
-  resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89"
-  dependencies:
-    bytes "3.0.0"
-    http-errors "1.6.2"
-    iconv-lite "0.4.19"
-    unpipe "1.0.0"
-
-react-dom-factories@^1.0.1:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/react-dom-factories/-/react-dom-factories-1.0.2.tgz#eb7705c4db36fb501b3aa38ff759616aa0ff96e0"
-
-react-dom@^15.5.4:
-  version "15.6.2"
-  resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.6.2.tgz#41cfadf693b757faf2708443a1d1fd5a02bef730"
-  dependencies:
-    fbjs "^0.8.9"
-    loose-envify "^1.1.0"
-    object-assign "^4.1.0"
-    prop-types "^15.5.10"
-
-react@^15.5.4, react@^15.6.2:
-  version "15.6.2"
-  resolved "https://registry.yarnpkg.com/react/-/react-15.6.2.tgz#dba0434ab439cfe82f108f0f511663908179aa72"
-  dependencies:
-    create-react-class "^15.6.0"
-    fbjs "^0.8.9"
-    loose-envify "^1.1.0"
-    object-assign "^4.1.0"
-    prop-types "^15.5.10"
-
-rechoir@^0.6.2:
-  version "0.6.2"
-  resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
-  dependencies:
-    resolve "^1.1.6"
-
-regenerate@^1.2.1:
-  version "1.3.3"
-  resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.3.tgz#0c336d3980553d755c39b586ae3b20aa49c82b7f"
-
-regenerator-runtime@^0.11.0:
-  version "0.11.1"
-  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
-
-regenerator-transform@^0.10.0:
-  version "0.10.1"
-  resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
-  dependencies:
-    babel-runtime "^6.18.0"
-    babel-types "^6.19.0"
-    private "^0.1.6"
-
-regexpu-core@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
-  dependencies:
-    regenerate "^1.2.1"
-    regjsgen "^0.2.0"
-    regjsparser "^0.1.4"
-
-regjsgen@^0.2.0:
-  version "0.2.0"
-  resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
-
-regjsparser@^0.1.4:
-  version "0.1.5"
-  resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
-  dependencies:
-    jsesc "~0.5.0"
-
-remarkable@^1.7.1:
-  version "1.7.1"
-  resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-1.7.1.tgz#aaca4972100b66a642a63a1021ca4bac1be3bff6"
-  dependencies:
-    argparse "~0.1.15"
-    autolinker "~0.15.0"
-
-repeating@^2.0.0:
-  version "2.0.1"
-  resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
-  dependencies:
-    is-finite "^1.0.0"
-
-request@^2.53.0, request@^2.81.0:
-  version "2.83.0"
-  resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356"
-  dependencies:
-    aws-sign2 "~0.7.0"
-    aws4 "^1.6.0"
-    caseless "~0.12.0"
-    combined-stream "~1.0.5"
-    extend "~3.0.1"
-    forever-agent "~0.6.1"
-    form-data "~2.3.1"
-    har-validator "~5.0.3"
-    hawk "~6.0.2"
-    http-signature "~1.2.0"
-    is-typedarray "~1.0.0"
-    isstream "~0.1.2"
-    json-stringify-safe "~5.0.1"
-    mime-types "~2.1.17"
-    oauth-sign "~0.8.2"
-    performance-now "^2.1.0"
-    qs "~6.5.1"
-    safe-buffer "^5.1.1"
-    stringstream "~0.0.5"
-    tough-cookie "~2.3.3"
-    tunnel-agent "^0.6.0"
-    uuid "^3.1.0"
-
-resolve@^1.1.6:
-  version "1.5.0"
-  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36"
-  dependencies:
-    path-parse "^1.0.5"
-
-safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.1:
-  version "5.1.1"
-  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
-
-semver@^5.3.0:
-  version "5.5.0"
-  resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
-
-send@0.16.1:
-  version "0.16.1"
-  resolved "https://registry.yarnpkg.com/send/-/send-0.16.1.tgz#a70e1ca21d1382c11d0d9f6231deb281080d7ab3"
-  dependencies:
-    debug "2.6.9"
-    depd "~1.1.1"
-    destroy "~1.0.4"
-    encodeurl "~1.0.1"
-    escape-html "~1.0.3"
-    etag "~1.8.1"
-    fresh "0.5.2"
-    http-errors "~1.6.2"
-    mime "1.4.1"
-    ms "2.0.0"
-    on-finished "~2.3.0"
-    range-parser "~1.2.0"
-    statuses "~1.3.1"
-
-serve-static@1.13.1:
-  version "1.13.1"
-  resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.1.tgz#4c57d53404a761d8f2e7c1e8a18a47dbf278a719"
-  dependencies:
-    encodeurl "~1.0.1"
-    escape-html "~1.0.3"
-    parseurl "~1.3.2"
-    send "0.16.1"
-
-setimmediate@^1.0.5:
-  version "1.0.5"
-  resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
-
-setprototypeof@1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
-
-setprototypeof@1.1.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
-
-shelljs@^0.7.8:
-  version "0.7.8"
-  resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3"
-  dependencies:
-    glob "^7.0.0"
-    interpret "^1.0.0"
-    rechoir "^0.6.2"
-
-simple-swizzle@^0.2.2:
-  version "0.2.2"
-  resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
-  dependencies:
-    is-arrayish "^0.3.1"
-
-sitemap@^1.13.0:
-  version "1.13.0"
-  resolved "https://registry.yarnpkg.com/sitemap/-/sitemap-1.13.0.tgz#569cbe2180202926a62a266cd3de09c9ceb43f83"
-  dependencies:
-    underscore "^1.7.0"
-    url-join "^1.1.0"
-
-slash@^1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
-
-sntp@2.x.x:
-  version "2.1.0"
-  resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8"
-  dependencies:
-    hoek "4.x.x"
-
-source-map-support@^0.4.15:
-  version "0.4.18"
-  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
-  dependencies:
-    source-map "^0.5.6"
-
-source-map@^0.5.6:
-  version "0.5.7"
-  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
-
-sprintf-js@~1.0.2:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
-
-sshpk@^1.7.0:
-  version "1.13.1"
-  resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3"
-  dependencies:
-    asn1 "~0.2.3"
-    assert-plus "^1.0.0"
-    dashdash "^1.12.0"
-    getpass "^0.1.1"
-  optionalDependencies:
-    bcrypt-pbkdf "^1.0.0"
-    ecc-jsbn "~0.1.1"
-    jsbn "~0.1.0"
-    tweetnacl "~0.14.0"
-
-"statuses@>= 1.3.1 < 2":
-  version "1.4.0"
-  resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
-
-statuses@~1.3.1:
-  version "1.3.1"
-  resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"
-
-stringstream@~0.0.5:
-  version "0.0.5"
-  resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878"
-
-strip-ansi@^3.0.0:
-  version "3.0.1"
-  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
-  dependencies:
-    ansi-regex "^2.0.0"
-
-supports-color@^2.0.0:
-  version "2.0.0"
-  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
-
-supports-color@^4.0.0:
-  version "4.5.0"
-  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
-  dependencies:
-    has-flag "^2.0.0"
-
-tcp-port-used@^0.1.2:
-  version "0.1.2"
-  resolved "https://registry.yarnpkg.com/tcp-port-used/-/tcp-port-used-0.1.2.tgz#9450e8768c83b416fd4d1a6a9449eeccbf496c29"
-  dependencies:
-    debug "0.7.4"
-    is2 "0.0.9"
-    q "0.9.7"
-
-to-fast-properties@^1.0.3:
-  version "1.0.3"
-  resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
-
-tough-cookie@~2.3.3:
-  version "2.3.3"
-  resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
-  dependencies:
-    punycode "^1.4.1"
-
-trim-right@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
-
-tunnel-agent@^0.6.0:
-  version "0.6.0"
-  resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
-  dependencies:
-    safe-buffer "^5.0.1"
-
-tweetnacl@^0.14.3, tweetnacl@~0.14.0:
-  version "0.14.5"
-  resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
-
-type-is@~1.6.15:
-  version "1.6.15"
-  resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410"
-  dependencies:
-    media-typer "0.3.0"
-    mime-types "~2.1.15"
-
-ua-parser-js@^0.7.9:
-  version "0.7.17"
-  resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac"
-
-underscore.string@~2.4.0:
-  version "2.4.0"
-  resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.4.0.tgz#8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"
-
-underscore@^1.7.0:
-  version "1.8.3"
-  resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"
-
-underscore@~1.7.0:
-  version "1.7.0"
-  resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209"
-
-universalify@^0.1.0:
-  version "0.1.1"
-  resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7"
-
-unpipe@1.0.0, unpipe@~1.0.0:
-  version "1.0.0"
-  resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
-
-url-join@^1.1.0:
-  version "1.1.0"
-  resolved "https://registry.yarnpkg.com/url-join/-/url-join-1.1.0.tgz#741c6c2f4596c4830d6718460920d0c92202dc78"
-
-utils-merge@1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
-
-uuid@^3.1.0:
-  version "3.2.1"
-  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
-
-vary@~1.1.2:
-  version "1.1.2"
-  resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
-
-verror@1.10.0:
-  version "1.10.0"
-  resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
-  dependencies:
-    assert-plus "^1.0.0"
-    core-util-is "1.0.2"
-    extsprintf "^1.2.0"
-
-whatwg-fetch@>=0.10.0:
-  version "2.0.3"
-  resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
-
-wordwrap@0.0.2:
-  version "0.0.2"
-  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
-
-wrappy@1:
-  version "1.0.2"
-  resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
-
-xml@^1.0.1:
-  version "1.0.1"
-  resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"
-
-yamljs@^0.2.1:
-  version "0.2.10"
-  resolved "https://registry.yarnpkg.com/yamljs/-/yamljs-0.2.10.tgz#481cc7c25ca73af59f591f0c96e3ce56c757a40f"
-  dependencies:
-    argparse "^1.0.7"
-    glob "^7.0.5"
-
-yargs@^2.3.0:
-  version "2.3.0"
-  resolved "https://registry.yarnpkg.com/yargs/-/yargs-2.3.0.tgz#e900c87250ec5cd080db6009fe3dd63156f1d7fb"
-  dependencies:
-    wordwrap "0.0.2"
diff --git a/vendor/github.com/golang/protobuf/proto/BUILD.bazel b/vendor/github.com/golang/protobuf/proto/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..9d5aafd83380464a9f48c492698a8a01d0f5f8d6
--- /dev/null
+++ b/vendor/github.com/golang/protobuf/proto/BUILD.bazel
@@ -0,0 +1,25 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "clone.go",
+        "decode.go",
+        "discard.go",
+        "encode.go",
+        "equal.go",
+        "extensions.go",
+        "lib.go",
+        "message_set.go",
+        "pointer_unsafe.go",
+        "properties.go",
+        "table_marshal.go",
+        "table_merge.go",
+        "table_unmarshal.go",
+        "text.go",
+        "text_parser.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/golang/protobuf/proto",
+    importpath = "github.com/golang/protobuf/proto",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/jmank88/nuts/BUILD.bazel b/vendor/github.com/jmank88/nuts/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..72db5e47f7dcd7c8f03d5c429368e22ca71631be
--- /dev/null
+++ b/vendor/github.com/jmank88/nuts/BUILD.bazel
@@ -0,0 +1,15 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "key.go",
+        "nuts.go",
+        "paths.go",
+        "types.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/jmank88/nuts",
+    importpath = "github.com/jmank88/nuts",
+    visibility = ["//visibility:public"],
+    deps = ["//vendor/github.com/boltdb/bolt:go_default_library"],
+)
diff --git a/vendor/github.com/konsorten/go-windows-terminal-sequences/BUILD.bazel b/vendor/github.com/konsorten/go-windows-terminal-sequences/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..70328e9c3ffbdb2338dcb98e6cd84680445f6292
--- /dev/null
+++ b/vendor/github.com/konsorten/go-windows-terminal-sequences/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = ["sequences.go"],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/konsorten/go-windows-terminal-sequences",
+    importpath = "github.com/konsorten/go-windows-terminal-sequences",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/nightlyone/lockfile/BUILD.bazel b/vendor/github.com/nightlyone/lockfile/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..8b1c688bca89ed5bb9caae81fdab35cd1c912209
--- /dev/null
+++ b/vendor/github.com/nightlyone/lockfile/BUILD.bazel
@@ -0,0 +1,13 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "lockfile.go",
+        "lockfile_unix.go",
+        "lockfile_windows.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/nightlyone/lockfile",
+    importpath = "github.com/nightlyone/lockfile",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/pelletier/go-toml/BUILD.bazel b/vendor/github.com/pelletier/go-toml/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..8130328c049d880232a298fb7213cc55e10e50d7
--- /dev/null
+++ b/vendor/github.com/pelletier/go-toml/BUILD.bazel
@@ -0,0 +1,20 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "doc.go",
+        "keysparsing.go",
+        "lexer.go",
+        "marshal.go",
+        "parser.go",
+        "position.go",
+        "token.go",
+        "toml.go",
+        "tomltree_create.go",
+        "tomltree_write.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/pelletier/go-toml",
+    importpath = "github.com/pelletier/go-toml",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/pkg/errors/BUILD.bazel b/vendor/github.com/pkg/errors/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..b1eb9941074b0da6982111f122d750abafa7b994
--- /dev/null
+++ b/vendor/github.com/pkg/errors/BUILD.bazel
@@ -0,0 +1,12 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "errors.go",
+        "stack.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/pkg/errors",
+    importpath = "github.com/pkg/errors",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/pmezard/go-difflib/difflib/BUILD.bazel b/vendor/github.com/pmezard/go-difflib/difflib/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..8a8fca20454989179efb5cfa46a8542fc30c5845
--- /dev/null
+++ b/vendor/github.com/pmezard/go-difflib/difflib/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = ["difflib.go"],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/pmezard/go-difflib/difflib",
+    importpath = "github.com/pmezard/go-difflib/difflib",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/q3k/goveralls/BUILD.bazel b/vendor/github.com/q3k/goveralls/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..df180746db3e3d43e3b4692f17747a679186c80b
--- /dev/null
+++ b/vendor/github.com/q3k/goveralls/BUILD.bazel
@@ -0,0 +1,20 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "gitinfo.go",
+        "gocover.go",
+        "goveralls.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/q3k/goveralls",
+    importpath = "github.com/q3k/goveralls",
+    visibility = ["//visibility:private"],
+    deps = ["//vendor/golang.org/x/tools/cover:go_default_library"],
+)
+
+go_binary(
+    name = "goveralls",
+    embed = [":go_default_library"],
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/sdboyer/constext/BUILD.bazel b/vendor/github.com/sdboyer/constext/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..effb8ca864561db47f40692afd71632eddebf5d5
--- /dev/null
+++ b/vendor/github.com/sdboyer/constext/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = ["constext.go"],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/sdboyer/constext",
+    importpath = "github.com/sdboyer/constext",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/github.com/sirupsen/logrus/BUILD.bazel b/vendor/github.com/sirupsen/logrus/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..2364024026a58682e58c5623f86c6f7e696227cf
--- /dev/null
+++ b/vendor/github.com/sirupsen/logrus/BUILD.bazel
@@ -0,0 +1,68 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "alt_exit.go",
+        "doc.go",
+        "entry.go",
+        "exported.go",
+        "formatter.go",
+        "hooks.go",
+        "json_formatter.go",
+        "logger.go",
+        "logrus.go",
+        "terminal_bsd.go",
+        "terminal_check_notappengine.go",
+        "terminal_check_windows.go",
+        "terminal_linux.go",
+        "terminal_windows.go",
+        "text_formatter.go",
+        "writer.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/sirupsen/logrus",
+    importpath = "github.com/sirupsen/logrus",
+    visibility = ["//visibility:public"],
+    deps = select({
+        "@io_bazel_rules_go//go/platform:android": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:darwin": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:dragonfly": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:freebsd": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:linux": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:nacl": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:netbsd": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:openbsd": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:plan9": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:solaris": [
+            "//vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:windows": [
+            "//vendor/github.com/konsorten/go-windows-terminal-sequences:go_default_library",
+        ],
+        "//conditions:default": [],
+    }),
+)
diff --git a/vendor/github.com/stretchr/testify/assert/BUILD.bazel b/vendor/github.com/stretchr/testify/assert/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..5fc04335b69097cb28abf6363cbc53e98a917aa6
--- /dev/null
+++ b/vendor/github.com/stretchr/testify/assert/BUILD.bazel
@@ -0,0 +1,21 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "assertion_format.go",
+        "assertion_forward.go",
+        "assertions.go",
+        "doc.go",
+        "errors.go",
+        "forward_assertions.go",
+        "http_assertions.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/stretchr/testify/assert",
+    importpath = "github.com/stretchr/testify/assert",
+    visibility = ["//visibility:public"],
+    deps = [
+        "//vendor/github.com/davecgh/go-spew/spew:go_default_library",
+        "//vendor/github.com/pmezard/go-difflib/difflib:go_default_library",
+    ],
+)
diff --git a/vendor/github.com/taktv6/tflow2/convert/BUILD.bazel b/vendor/github.com/taktv6/tflow2/convert/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..5506643341e1e3a4ea891167b92208d92d0931cb
--- /dev/null
+++ b/vendor/github.com/taktv6/tflow2/convert/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = ["convert.go"],
+    importmap = "github.com/bio-routing/bio-rd/vendor/github.com/taktv6/tflow2/convert",
+    importpath = "github.com/taktv6/tflow2/convert",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/golang.org/x/crypto/ssh/terminal/BUILD.bazel b/vendor/golang.org/x/crypto/ssh/terminal/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..f1dbddae821cfbbdda8f70941472708f75ddf41d
--- /dev/null
+++ b/vendor/golang.org/x/crypto/ssh/terminal/BUILD.bazel
@@ -0,0 +1,44 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "terminal.go",
+        "util.go",
+        "util_bsd.go",
+        "util_linux.go",
+        "util_plan9.go",
+        "util_solaris.go",
+        "util_windows.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/golang.org/x/crypto/ssh/terminal",
+    importpath = "golang.org/x/crypto/ssh/terminal",
+    visibility = ["//visibility:public"],
+    deps = select({
+        "@io_bazel_rules_go//go/platform:darwin": [
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:dragonfly": [
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:freebsd": [
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:linux": [
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:netbsd": [
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:openbsd": [
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:solaris": [
+            "//vendor/golang.org/x/sys/unix:go_default_library",
+        ],
+        "@io_bazel_rules_go//go/platform:windows": [
+            "//vendor/golang.org/x/sys/windows:go_default_library",
+        ],
+        "//conditions:default": [],
+    }),
+)
diff --git a/vendor/golang.org/x/net/context/BUILD.bazel b/vendor/golang.org/x/net/context/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..8a09a3615ea3ef3a023ed3ca7a5dc82d3b7ca79d
--- /dev/null
+++ b/vendor/golang.org/x/net/context/BUILD.bazel
@@ -0,0 +1,15 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "context.go",
+        "go17.go",
+        "go19.go",
+        "pre_go17.go",
+        "pre_go19.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/golang.org/x/net/context",
+    importpath = "golang.org/x/net/context",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/golang.org/x/sync/errgroup/BUILD.bazel b/vendor/golang.org/x/sync/errgroup/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..9090cd0a8fb216e140ee77e5f9410f28874be014
--- /dev/null
+++ b/vendor/golang.org/x/sync/errgroup/BUILD.bazel
@@ -0,0 +1,10 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = ["errgroup.go"],
+    importmap = "github.com/bio-routing/bio-rd/vendor/golang.org/x/sync/errgroup",
+    importpath = "golang.org/x/sync/errgroup",
+    visibility = ["//visibility:public"],
+    deps = ["//vendor/golang.org/x/net/context:go_default_library"],
+)
diff --git a/vendor/golang.org/x/sys/unix/BUILD.bazel b/vendor/golang.org/x/sys/unix/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..48a8509117d6f6ca6a4a912201377541cdd8a690
--- /dev/null
+++ b/vendor/golang.org/x/sys/unix/BUILD.bazel
@@ -0,0 +1,210 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "affinity_linux.go",
+        "aliases.go",
+        "asm_darwin_386.s",
+        "asm_darwin_amd64.s",
+        "asm_darwin_arm.s",
+        "asm_darwin_arm64.s",
+        "asm_dragonfly_amd64.s",
+        "asm_freebsd_386.s",
+        "asm_freebsd_amd64.s",
+        "asm_freebsd_arm.s",
+        "asm_linux_386.s",
+        "asm_linux_amd64.s",
+        "asm_linux_arm.s",
+        "asm_linux_arm64.s",
+        "asm_linux_mips64x.s",
+        "asm_linux_mipsx.s",
+        "asm_linux_ppc64x.s",
+        "asm_linux_s390x.s",
+        "asm_netbsd_386.s",
+        "asm_netbsd_amd64.s",
+        "asm_netbsd_arm.s",
+        "asm_openbsd_386.s",
+        "asm_openbsd_amd64.s",
+        "asm_openbsd_arm.s",
+        "asm_solaris_amd64.s",
+        "bluetooth_linux.go",
+        "cap_freebsd.go",
+        "constants.go",
+        "dev_darwin.go",
+        "dev_dragonfly.go",
+        "dev_freebsd.go",
+        "dev_linux.go",
+        "dev_netbsd.go",
+        "dev_openbsd.go",
+        "dirent.go",
+        "endian_big.go",
+        "endian_little.go",
+        "env_unix.go",
+        "errors_freebsd_386.go",
+        "errors_freebsd_amd64.go",
+        "errors_freebsd_arm.go",
+        "fcntl.go",
+        "fcntl_linux_32bit.go",
+        "ioctl.go",
+        "openbsd_pledge.go",
+        "pagesize_unix.go",
+        "race0.go",
+        "sockcmsg_linux.go",
+        "sockcmsg_unix.go",
+        "str.go",
+        "syscall.go",
+        "syscall_bsd.go",
+        "syscall_darwin.go",
+        "syscall_darwin_386.go",
+        "syscall_darwin_amd64.go",
+        "syscall_darwin_arm.go",
+        "syscall_darwin_arm64.go",
+        "syscall_dragonfly.go",
+        "syscall_dragonfly_amd64.go",
+        "syscall_freebsd.go",
+        "syscall_freebsd_386.go",
+        "syscall_freebsd_amd64.go",
+        "syscall_freebsd_arm.go",
+        "syscall_linux.go",
+        "syscall_linux_386.go",
+        "syscall_linux_amd64.go",
+        "syscall_linux_amd64_gc.go",
+        "syscall_linux_arm.go",
+        "syscall_linux_arm64.go",
+        "syscall_linux_gc.go",
+        "syscall_linux_gc_386.go",
+        "syscall_linux_mips64x.go",
+        "syscall_linux_mipsx.go",
+        "syscall_linux_ppc64x.go",
+        "syscall_linux_s390x.go",
+        "syscall_netbsd.go",
+        "syscall_netbsd_386.go",
+        "syscall_netbsd_amd64.go",
+        "syscall_netbsd_arm.go",
+        "syscall_openbsd.go",
+        "syscall_openbsd_386.go",
+        "syscall_openbsd_amd64.go",
+        "syscall_openbsd_arm.go",
+        "syscall_solaris.go",
+        "syscall_solaris_amd64.go",
+        "syscall_unix.go",
+        "syscall_unix_gc.go",
+        "timestruct.go",
+        "xattr_bsd.go",
+        "zerrors_darwin_386.go",
+        "zerrors_darwin_amd64.go",
+        "zerrors_darwin_arm.go",
+        "zerrors_darwin_arm64.go",
+        "zerrors_dragonfly_amd64.go",
+        "zerrors_freebsd_386.go",
+        "zerrors_freebsd_amd64.go",
+        "zerrors_freebsd_arm.go",
+        "zerrors_linux_386.go",
+        "zerrors_linux_amd64.go",
+        "zerrors_linux_arm.go",
+        "zerrors_linux_arm64.go",
+        "zerrors_linux_mips.go",
+        "zerrors_linux_mips64.go",
+        "zerrors_linux_mips64le.go",
+        "zerrors_linux_mipsle.go",
+        "zerrors_linux_ppc64.go",
+        "zerrors_linux_ppc64le.go",
+        "zerrors_linux_s390x.go",
+        "zerrors_netbsd_386.go",
+        "zerrors_netbsd_amd64.go",
+        "zerrors_netbsd_arm.go",
+        "zerrors_openbsd_386.go",
+        "zerrors_openbsd_amd64.go",
+        "zerrors_openbsd_arm.go",
+        "zerrors_solaris_amd64.go",
+        "zptrace386_linux.go",
+        "zptracearm_linux.go",
+        "zptracemips_linux.go",
+        "zptracemipsle_linux.go",
+        "zsyscall_darwin_386.go",
+        "zsyscall_darwin_amd64.go",
+        "zsyscall_darwin_arm.go",
+        "zsyscall_darwin_arm64.go",
+        "zsyscall_dragonfly_amd64.go",
+        "zsyscall_freebsd_386.go",
+        "zsyscall_freebsd_amd64.go",
+        "zsyscall_freebsd_arm.go",
+        "zsyscall_linux_386.go",
+        "zsyscall_linux_amd64.go",
+        "zsyscall_linux_arm.go",
+        "zsyscall_linux_arm64.go",
+        "zsyscall_linux_mips.go",
+        "zsyscall_linux_mips64.go",
+        "zsyscall_linux_mips64le.go",
+        "zsyscall_linux_mipsle.go",
+        "zsyscall_linux_ppc64.go",
+        "zsyscall_linux_ppc64le.go",
+        "zsyscall_linux_s390x.go",
+        "zsyscall_netbsd_386.go",
+        "zsyscall_netbsd_amd64.go",
+        "zsyscall_netbsd_arm.go",
+        "zsyscall_openbsd_386.go",
+        "zsyscall_openbsd_amd64.go",
+        "zsyscall_openbsd_arm.go",
+        "zsyscall_solaris_amd64.go",
+        "zsysctl_openbsd_386.go",
+        "zsysctl_openbsd_amd64.go",
+        "zsysctl_openbsd_arm.go",
+        "zsysnum_darwin_386.go",
+        "zsysnum_darwin_amd64.go",
+        "zsysnum_darwin_arm.go",
+        "zsysnum_darwin_arm64.go",
+        "zsysnum_dragonfly_amd64.go",
+        "zsysnum_freebsd_386.go",
+        "zsysnum_freebsd_amd64.go",
+        "zsysnum_freebsd_arm.go",
+        "zsysnum_linux_386.go",
+        "zsysnum_linux_amd64.go",
+        "zsysnum_linux_arm.go",
+        "zsysnum_linux_arm64.go",
+        "zsysnum_linux_mips.go",
+        "zsysnum_linux_mips64.go",
+        "zsysnum_linux_mips64le.go",
+        "zsysnum_linux_mipsle.go",
+        "zsysnum_linux_ppc64.go",
+        "zsysnum_linux_ppc64le.go",
+        "zsysnum_linux_s390x.go",
+        "zsysnum_netbsd_386.go",
+        "zsysnum_netbsd_amd64.go",
+        "zsysnum_netbsd_arm.go",
+        "zsysnum_openbsd_386.go",
+        "zsysnum_openbsd_amd64.go",
+        "zsysnum_openbsd_arm.go",
+        "ztypes_darwin_386.go",
+        "ztypes_darwin_amd64.go",
+        "ztypes_darwin_arm.go",
+        "ztypes_darwin_arm64.go",
+        "ztypes_dragonfly_amd64.go",
+        "ztypes_freebsd_386.go",
+        "ztypes_freebsd_amd64.go",
+        "ztypes_freebsd_arm.go",
+        "ztypes_linux_386.go",
+        "ztypes_linux_amd64.go",
+        "ztypes_linux_arm.go",
+        "ztypes_linux_arm64.go",
+        "ztypes_linux_mips.go",
+        "ztypes_linux_mips64.go",
+        "ztypes_linux_mips64le.go",
+        "ztypes_linux_mipsle.go",
+        "ztypes_linux_ppc64.go",
+        "ztypes_linux_ppc64le.go",
+        "ztypes_linux_s390x.go",
+        "ztypes_netbsd_386.go",
+        "ztypes_netbsd_amd64.go",
+        "ztypes_netbsd_arm.go",
+        "ztypes_openbsd_386.go",
+        "ztypes_openbsd_amd64.go",
+        "ztypes_openbsd_arm.go",
+        "ztypes_solaris_amd64.go",
+    ],
+    cgo = True,
+    importmap = "github.com/bio-routing/bio-rd/vendor/golang.org/x/sys/unix",
+    importpath = "golang.org/x/sys/unix",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/golang.org/x/sys/windows/BUILD.bazel b/vendor/golang.org/x/sys/windows/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..846dfeb4fdc916e7290b99707565ca2b4e80c236
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/BUILD.bazel
@@ -0,0 +1,29 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = [
+        "aliases.go",
+        "asm_windows_386.s",
+        "asm_windows_amd64.s",
+        "dll_windows.go",
+        "env_windows.go",
+        "eventlog.go",
+        "exec_windows.go",
+        "memory_windows.go",
+        "mksyscall.go",
+        "race0.go",
+        "security_windows.go",
+        "service.go",
+        "str.go",
+        "syscall.go",
+        "syscall_windows.go",
+        "types_windows.go",
+        "types_windows_386.go",
+        "types_windows_amd64.go",
+        "zsyscall_windows.go",
+    ],
+    importmap = "github.com/bio-routing/bio-rd/vendor/golang.org/x/sys/windows",
+    importpath = "golang.org/x/sys/windows",
+    visibility = ["//visibility:public"],
+)
diff --git a/vendor/golang.org/x/tools/cover/BUILD.bazel b/vendor/golang.org/x/tools/cover/BUILD.bazel
new file mode 100644
index 0000000000000000000000000000000000000000..85feea167867389c8dcfe6a82669ea915359276f
--- /dev/null
+++ b/vendor/golang.org/x/tools/cover/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "go_default_library",
+    srcs = ["profile.go"],
+    importmap = "github.com/bio-routing/bio-rd/vendor/golang.org/x/tools/cover",
+    importpath = "golang.org/x/tools/cover",
+    visibility = ["//visibility:public"],
+)