From 0c0d219dfb44695b2186927791dade8005ee3c4a Mon Sep 17 00:00:00 2001
From: Gitlab CI <>
Date: Sat, 28 Sep 2024 20:16:03 +0200
Subject: [PATCH] fix: move to flake.nix

---
 .../github.com/fsnotify/fsnotify/LICENSE      |  25 --
 .../licenses/github.com/imdario/mergo/LICENSE |  28 --
 .../magiconair/properties/LICENSE.md          |  24 -
 .../github.com/pelletier/go-toml/v2/LICENSE   |  22 -
 .../github.com/r3labs/diff/v3/.gitignore      |  17 -
 .../github.com/r3labs/diff/v3/CONTRIBUTING.md |  80 ----
 .../github.com/r3labs/diff/v3/LICENSE         | 373 ----------------
 .../github.com/r3labs/diff/v3/Makefile        |  11 -
 .../github.com/r3labs/diff/v3/README.md       | 327 --------------
 .../github.com/r3labs/diff/v3/change_value.go | 210 ---------
 .../github.com/r3labs/diff/v3/comparative.go  |  44 --
 .../github.com/r3labs/diff/v3/diff.go         | 417 ------------------
 .../github.com/r3labs/diff/v3/diff_bool.go    |  29 --
 .../r3labs/diff/v3/diff_comparative.go        |  62 ---
 .../github.com/r3labs/diff/v3/diff_float.go   |  35 --
 .../github.com/r3labs/diff/v3/diff_int.go     |  35 --
 .../r3labs/diff/v3/diff_interface.go          |  39 --
 .../github.com/r3labs/diff/v3/diff_map.go     |  81 ----
 .../github.com/r3labs/diff/v3/diff_pointer.go |  60 ---
 .../github.com/r3labs/diff/v3/diff_slice.go   | 141 ------
 .../github.com/r3labs/diff/v3/diff_string.go  |  34 --
 .../github.com/r3labs/diff/v3/diff_struct.go  | 123 ------
 .../github.com/r3labs/diff/v3/diff_time.go    |  36 --
 .../github.com/r3labs/diff/v3/diff_uint.go    |  35 --
 .../github.com/r3labs/diff/v3/error.go        |  74 ----
 .../github.com/r3labs/diff/v3/filter.go       |  22 -
 .../github.com/r3labs/diff/v3/options.go      |  93 ----
 .../github.com/r3labs/diff/v3/patch.go        | 240 ----------
 .../github.com/r3labs/diff/v3/patch_map.go    | 106 -----
 .../github.com/r3labs/diff/v3/patch_slice.go  |  79 ----
 .../github.com/r3labs/diff/v3/patch_struct.go |  66 ---
 .../github.com/vmihailenco/msgpack/v5/LICENSE |  25 --
 .../vmihailenco/tagparser/v2/LICENSE          |  25 --
 .../licenses/golang.org/x/exp/LICENSE         |  27 --
 .../licenses/golang.org/x/sys/unix/LICENSE    |  27 --
 .../licenses/gopkg.in/yaml.v3/LICENSE         |  50 ---
 .../licenses/gopkg.in/yaml.v3/NOTICE          |  13 -
 find.go                                       |   3 +
 find_test.go                                  |   3 +
 go.mod                                        |   9 +-
 go.sum                                        |   5 +-
 issue_14_test.go                              |   3 +
 issue_7_test.go                               |   3 +
 nix/config/release.nix                        |   2 +-
 44 files changed, 19 insertions(+), 3144 deletions(-)
 delete mode 100644 documentation/licenses/github.com/fsnotify/fsnotify/LICENSE
 delete mode 100644 documentation/licenses/github.com/imdario/mergo/LICENSE
 delete mode 100644 documentation/licenses/github.com/magiconair/properties/LICENSE.md
 delete mode 100644 documentation/licenses/github.com/pelletier/go-toml/v2/LICENSE
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/.gitignore
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/CONTRIBUTING.md
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/LICENSE
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/Makefile
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/README.md
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/change_value.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/comparative.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_bool.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_comparative.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_float.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_int.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_interface.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_map.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_pointer.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_slice.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_string.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_struct.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_time.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/diff_uint.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/error.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/filter.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/options.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/patch.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/patch_map.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/patch_slice.go
 delete mode 100644 documentation/licenses/github.com/r3labs/diff/v3/patch_struct.go
 delete mode 100644 documentation/licenses/github.com/vmihailenco/msgpack/v5/LICENSE
 delete mode 100644 documentation/licenses/github.com/vmihailenco/tagparser/v2/LICENSE
 delete mode 100644 documentation/licenses/golang.org/x/exp/LICENSE
 delete mode 100644 documentation/licenses/golang.org/x/sys/unix/LICENSE
 delete mode 100644 documentation/licenses/gopkg.in/yaml.v3/LICENSE
 delete mode 100644 documentation/licenses/gopkg.in/yaml.v3/NOTICE

diff --git a/documentation/licenses/github.com/fsnotify/fsnotify/LICENSE b/documentation/licenses/github.com/fsnotify/fsnotify/LICENSE
deleted file mode 100644
index fb03ade..0000000
--- a/documentation/licenses/github.com/fsnotify/fsnotify/LICENSE
+++ /dev/null
@@ -1,25 +0,0 @@
-Copyright © 2012 The Go Authors. All rights reserved.
-Copyright © fsnotify 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/documentation/licenses/github.com/imdario/mergo/LICENSE b/documentation/licenses/github.com/imdario/mergo/LICENSE
deleted file mode 100644
index 6866802..0000000
--- a/documentation/licenses/github.com/imdario/mergo/LICENSE
+++ /dev/null
@@ -1,28 +0,0 @@
-Copyright (c) 2013 Dario Castañé. All rights reserved.
-Copyright (c) 2012 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/documentation/licenses/github.com/magiconair/properties/LICENSE.md b/documentation/licenses/github.com/magiconair/properties/LICENSE.md
deleted file mode 100644
index 79c87e3..0000000
--- a/documentation/licenses/github.com/magiconair/properties/LICENSE.md
+++ /dev/null
@@ -1,24 +0,0 @@
-Copyright (c) 2013-2020, Frank Schroeder
-
-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.
-
-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/documentation/licenses/github.com/pelletier/go-toml/v2/LICENSE b/documentation/licenses/github.com/pelletier/go-toml/v2/LICENSE
deleted file mode 100644
index 991e2ae..0000000
--- a/documentation/licenses/github.com/pelletier/go-toml/v2/LICENSE
+++ /dev/null
@@ -1,22 +0,0 @@
-The MIT License (MIT)
-
-go-toml v2
-Copyright (c) 2021 - 2023 Thomas Pelletier
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/.gitignore b/documentation/licenses/github.com/r3labs/diff/v3/.gitignore
deleted file mode 100644
index e04e61e..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/.gitignore
+++ /dev/null
@@ -1,17 +0,0 @@
-# Binaries for programs and plugins
-*.exe
-*.dll
-*.so
-*.dylib
-
-# Test binary, build with `go test -c`
-*.test
-
-# Output of the go coverage tool, specifically when used with LiteIDE
-*.out
-
-# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
-.glide/
-.idea/
-
-patchflags_string.go
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/CONTRIBUTING.md b/documentation/licenses/github.com/r3labs/diff/v3/CONTRIBUTING.md
deleted file mode 100644
index 3c00b27..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/CONTRIBUTING.md
+++ /dev/null
@@ -1,80 +0,0 @@
-# Contributing guidelines
-
-Looking to contribute something to this project? Here's how you can help:
-
-Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
-
-Following these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue or assessing patches and features.
-
-We also have a [code of conduct](https://ernest.io/conduct).
-
-## Using the issue tracker
-
-The issue tracker is the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests) and [submitting pull requests](#pull-requests), but please respect the following restrictions:
-
-* Please **do not** use the issue tracker for personal support requests.
-
-* Please **do not** derail issues. Keep the discussion on topic and
-  respect the opinions of others.
-
-<a name="bugs"></a>
-## Bug reports
-
-A bug is a _demonstrable problem_ that is caused by the code in the repository.
-Good bug reports are extremely helpful - thank you!
-
-Guidelines for bug reports:
-
-1. **Use the GitHub issue search** &mdash; check if the issue has already been
-   reported.
-
-2. **Check if the issue has been fixed** &mdash; try to reproduce it using the
-   latest `master` or `develop` branch in the repository.
-
-3. **Isolate the problem** &mdash; create a reduced test case and a live example.
-
-A good bug report shouldn't leave others needing to chase you up for more
-information. Please try to be as detailed as possible in your report. What is
-your environment? What steps will reproduce the issue? Which environment experience the problem? What would you expect to be the outcome? All these
-details will help people to fix any potential bugs.
-
-Example:
-
-> Short and descriptive example bug report title
->
-> A summary of the issue and the environment in which it occurs. If
-> suitable, include the steps required to reproduce the bug.
->
-> 1. This is the first step
-> 2. This is the second step
-> 3. Further steps, etc.
->
-> `<url>` - a link to the reduced test case
->
-> Any other information you want to share that is relevant to the issue being
-> reported. This might include the lines of code that you have identified as
-> causing the bug, and potential solutions (and your opinions on their
-> merits).
-
-<a name="features"></a>
-## Feature requests
-
-Feature requests are welcome. But take a moment to find out whether your idea
-fits with the scope and aims of the project. It's up to *you* to make a strong
-case to convince the project's developers of the merits of this feature. Please
-provide as much detail and context as possible.
-
-<a name="pull-requests"></a>
-## Pull requests
-
-Good pull requests - patches, improvements, new features - are a fantastic
-help. They should remain focused in scope and avoid containing unrelated
-commits.
-
-[**Please ask first**](https://ernest.io/community) before embarking on any significant pull request (e.g.
-implementing features, refactoring code, porting to a different language),
-otherwise you risk spending a lot of time working on something that the
-project's developers might not want to merge into the project.
-
-Please adhere to the coding conventions used throughout a project (indentation,
-accurate comments, etc.) and any other requirements (such as test coverage).
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/LICENSE b/documentation/licenses/github.com/r3labs/diff/v3/LICENSE
deleted file mode 100644
index a612ad9..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/LICENSE
+++ /dev/null
@@ -1,373 +0,0 @@
-Mozilla Public License Version 2.0
-==================================
-
-1. Definitions
---------------
-
-1.1. "Contributor"
-    means each individual or legal entity that creates, contributes to
-    the creation of, or owns Covered Software.
-
-1.2. "Contributor Version"
-    means the combination of the Contributions of others (if any) used
-    by a Contributor and that particular Contributor's Contribution.
-
-1.3. "Contribution"
-    means Covered Software of a particular Contributor.
-
-1.4. "Covered Software"
-    means Source Code Form to which the initial Contributor has attached
-    the notice in Exhibit A, the Executable Form of such Source Code
-    Form, and Modifications of such Source Code Form, in each case
-    including portions thereof.
-
-1.5. "Incompatible With Secondary Licenses"
-    means
-
-    (a) that the initial Contributor has attached the notice described
-        in Exhibit B to the Covered Software; or
-
-    (b) that the Covered Software was made available under the terms of
-        version 1.1 or earlier of the License, but not also under the
-        terms of a Secondary License.
-
-1.6. "Executable Form"
-    means any form of the work other than Source Code Form.
-
-1.7. "Larger Work"
-    means a work that combines Covered Software with other material, in
-    a separate file or files, that is not Covered Software.
-
-1.8. "License"
-    means this document.
-
-1.9. "Licensable"
-    means having the right to grant, to the maximum extent possible,
-    whether at the time of the initial grant or subsequently, any and
-    all of the rights conveyed by this License.
-
-1.10. "Modifications"
-    means any of the following:
-
-    (a) any file in Source Code Form that results from an addition to,
-        deletion from, or modification of the contents of Covered
-        Software; or
-
-    (b) any new file in Source Code Form that contains any Covered
-        Software.
-
-1.11. "Patent Claims" of a Contributor
-    means any patent claim(s), including without limitation, method,
-    process, and apparatus claims, in any patent Licensable by such
-    Contributor that would be infringed, but for the grant of the
-    License, by the making, using, selling, offering for sale, having
-    made, import, or transfer of either its Contributions or its
-    Contributor Version.
-
-1.12. "Secondary License"
-    means either the GNU General Public License, Version 2.0, the GNU
-    Lesser General Public License, Version 2.1, the GNU Affero General
-    Public License, Version 3.0, or any later versions of those
-    licenses.
-
-1.13. "Source Code Form"
-    means the form of the work preferred for making modifications.
-
-1.14. "You" (or "Your")
-    means an individual or a legal entity exercising rights under this
-    License. For legal entities, "You" includes any entity that
-    controls, is controlled by, or is under common control with You. For
-    purposes of this definition, "control" means (a) the power, direct
-    or indirect, to cause the direction or management of such entity,
-    whether by contract or otherwise, or (b) ownership of more than
-    fifty percent (50%) of the outstanding shares or beneficial
-    ownership of such entity.
-
-2. License Grants and Conditions
---------------------------------
-
-2.1. Grants
-
-Each Contributor hereby grants You a world-wide, royalty-free,
-non-exclusive license:
-
-(a) under intellectual property rights (other than patent or trademark)
-    Licensable by such Contributor to use, reproduce, make available,
-    modify, display, perform, distribute, and otherwise exploit its
-    Contributions, either on an unmodified basis, with Modifications, or
-    as part of a Larger Work; and
-
-(b) under Patent Claims of such Contributor to make, use, sell, offer
-    for sale, have made, import, and otherwise transfer either its
-    Contributions or its Contributor Version.
-
-2.2. Effective Date
-
-The licenses granted in Section 2.1 with respect to any Contribution
-become effective for each Contribution on the date the Contributor first
-distributes such Contribution.
-
-2.3. Limitations on Grant Scope
-
-The licenses granted in this Section 2 are the only rights granted under
-this License. No additional rights or licenses will be implied from the
-distribution or licensing of Covered Software under this License.
-Notwithstanding Section 2.1(b) above, no patent license is granted by a
-Contributor:
-
-(a) for any code that a Contributor has removed from Covered Software;
-    or
-
-(b) for infringements caused by: (i) Your and any other third party's
-    modifications of Covered Software, or (ii) the combination of its
-    Contributions with other software (except as part of its Contributor
-    Version); or
-
-(c) under Patent Claims infringed by Covered Software in the absence of
-    its Contributions.
-
-This License does not grant any rights in the trademarks, service marks,
-or logos of any Contributor (except as may be necessary to comply with
-the notice requirements in Section 3.4).
-
-2.4. Subsequent Licenses
-
-No Contributor makes additional grants as a result of Your choice to
-distribute the Covered Software under a subsequent version of this
-License (see Section 10.2) or under the terms of a Secondary License (if
-permitted under the terms of Section 3.3).
-
-2.5. Representation
-
-Each Contributor represents that the Contributor believes its
-Contributions are its original creation(s) or it has sufficient rights
-to grant the rights to its Contributions conveyed by this License.
-
-2.6. Fair Use
-
-This License is not intended to limit any rights You have under
-applicable copyright doctrines of fair use, fair dealing, or other
-equivalents.
-
-2.7. Conditions
-
-Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
-in Section 2.1.
-
-3. Responsibilities
--------------------
-
-3.1. Distribution of Source Form
-
-All distribution of Covered Software in Source Code Form, including any
-Modifications that You create or to which You contribute, must be under
-the terms of this License. You must inform recipients that the Source
-Code Form of the Covered Software is governed by the terms of this
-License, and how they can obtain a copy of this License. You may not
-attempt to alter or restrict the recipients' rights in the Source Code
-Form.
-
-3.2. Distribution of Executable Form
-
-If You distribute Covered Software in Executable Form then:
-
-(a) such Covered Software must also be made available in Source Code
-    Form, as described in Section 3.1, and You must inform recipients of
-    the Executable Form how they can obtain a copy of such Source Code
-    Form by reasonable means in a timely manner, at a charge no more
-    than the cost of distribution to the recipient; and
-
-(b) You may distribute such Executable Form under the terms of this
-    License, or sublicense it under different terms, provided that the
-    license for the Executable Form does not attempt to limit or alter
-    the recipients' rights in the Source Code Form under this License.
-
-3.3. Distribution of a Larger Work
-
-You may create and distribute a Larger Work under terms of Your choice,
-provided that You also comply with the requirements of this License for
-the Covered Software. If the Larger Work is a combination of Covered
-Software with a work governed by one or more Secondary Licenses, and the
-Covered Software is not Incompatible With Secondary Licenses, this
-License permits You to additionally distribute such Covered Software
-under the terms of such Secondary License(s), so that the recipient of
-the Larger Work may, at their option, further distribute the Covered
-Software under the terms of either this License or such Secondary
-License(s).
-
-3.4. Notices
-
-You may not remove or alter the substance of any license notices
-(including copyright notices, patent notices, disclaimers of warranty,
-or limitations of liability) contained within the Source Code Form of
-the Covered Software, except that You may alter any license notices to
-the extent required to remedy known factual inaccuracies.
-
-3.5. Application of Additional Terms
-
-You may choose to offer, and to charge a fee for, warranty, support,
-indemnity or liability obligations to one or more recipients of Covered
-Software. However, You may do so only on Your own behalf, and not on
-behalf of any Contributor. You must make it absolutely clear that any
-such warranty, support, indemnity, or liability obligation is offered by
-You alone, and You hereby agree to indemnify every Contributor for any
-liability incurred by such Contributor as a result of warranty, support,
-indemnity or liability terms You offer. You may include additional
-disclaimers of warranty and limitations of liability specific to any
-jurisdiction.
-
-4. Inability to Comply Due to Statute or Regulation
----------------------------------------------------
-
-If it is impossible for You to comply with any of the terms of this
-License with respect to some or all of the Covered Software due to
-statute, judicial order, or regulation then You must: (a) comply with
-the terms of this License to the maximum extent possible; and (b)
-describe the limitations and the code they affect. Such description must
-be placed in a text file included with all distributions of the Covered
-Software under this License. Except to the extent prohibited by statute
-or regulation, such description must be sufficiently detailed for a
-recipient of ordinary skill to be able to understand it.
-
-5. Termination
---------------
-
-5.1. The rights granted under this License will terminate automatically
-if You fail to comply with any of its terms. However, if You become
-compliant, then the rights granted under this License from a particular
-Contributor are reinstated (a) provisionally, unless and until such
-Contributor explicitly and finally terminates Your grants, and (b) on an
-ongoing basis, if such Contributor fails to notify You of the
-non-compliance by some reasonable means prior to 60 days after You have
-come back into compliance. Moreover, Your grants from a particular
-Contributor are reinstated on an ongoing basis if such Contributor
-notifies You of the non-compliance by some reasonable means, this is the
-first time You have received notice of non-compliance with this License
-from such Contributor, and You become compliant prior to 30 days after
-Your receipt of the notice.
-
-5.2. If You initiate litigation against any entity by asserting a patent
-infringement claim (excluding declaratory judgment actions,
-counter-claims, and cross-claims) alleging that a Contributor Version
-directly or indirectly infringes any patent, then the rights granted to
-You by any and all Contributors for the Covered Software under Section
-2.1 of this License shall terminate.
-
-5.3. In the event of termination under Sections 5.1 or 5.2 above, all
-end user license agreements (excluding distributors and resellers) which
-have been validly granted by You or Your distributors under this License
-prior to termination shall survive termination.
-
-************************************************************************
-*                                                                      *
-*  6. Disclaimer of Warranty                                           *
-*  -------------------------                                           *
-*                                                                      *
-*  Covered Software is provided under this License on an "as is"       *
-*  basis, without warranty of any kind, either expressed, implied, or  *
-*  statutory, including, without limitation, warranties that the       *
-*  Covered Software is free of defects, merchantable, fit for a        *
-*  particular purpose or non-infringing. The entire risk as to the     *
-*  quality and performance of the Covered Software is with You.        *
-*  Should any Covered Software prove defective in any respect, You     *
-*  (not any Contributor) assume the cost of any necessary servicing,   *
-*  repair, or correction. This disclaimer of warranty constitutes an   *
-*  essential part of this License. No use of any Covered Software is   *
-*  authorized under this License except under this disclaimer.         *
-*                                                                      *
-************************************************************************
-
-************************************************************************
-*                                                                      *
-*  7. Limitation of Liability                                          *
-*  --------------------------                                          *
-*                                                                      *
-*  Under no circumstances and under no legal theory, whether tort      *
-*  (including negligence), contract, or otherwise, shall any           *
-*  Contributor, or anyone who distributes Covered Software as          *
-*  permitted above, be liable to You for any direct, indirect,         *
-*  special, incidental, or consequential damages of any character      *
-*  including, without limitation, damages for lost profits, loss of    *
-*  goodwill, work stoppage, computer failure or malfunction, or any    *
-*  and all other commercial damages or losses, even if such party      *
-*  shall have been informed of the possibility of such damages. This   *
-*  limitation of liability shall not apply to liability for death or   *
-*  personal injury resulting from such party's negligence to the       *
-*  extent applicable law prohibits such limitation. Some               *
-*  jurisdictions do not allow the exclusion or limitation of           *
-*  incidental or consequential damages, so this exclusion and          *
-*  limitation may not apply to You.                                    *
-*                                                                      *
-************************************************************************
-
-8. Litigation
--------------
-
-Any litigation relating to this License may be brought only in the
-courts of a jurisdiction where the defendant maintains its principal
-place of business and such litigation shall be governed by laws of that
-jurisdiction, without reference to its conflict-of-law provisions.
-Nothing in this Section shall prevent a party's ability to bring
-cross-claims or counter-claims.
-
-9. Miscellaneous
-----------------
-
-This License represents the complete agreement concerning the subject
-matter hereof. If any provision of this License is held to be
-unenforceable, such provision shall be reformed only to the extent
-necessary to make it enforceable. Any law or regulation which provides
-that the language of a contract shall be construed against the drafter
-shall not be used to construe this License against a Contributor.
-
-10. Versions of the License
----------------------------
-
-10.1. New Versions
-
-Mozilla Foundation is the license steward. Except as provided in Section
-10.3, no one other than the license steward has the right to modify or
-publish new versions of this License. Each version will be given a
-distinguishing version number.
-
-10.2. Effect of New Versions
-
-You may distribute the Covered Software under the terms of the version
-of the License under which You originally received the Covered Software,
-or under the terms of any subsequent version published by the license
-steward.
-
-10.3. Modified Versions
-
-If you create software not governed by this License, and you want to
-create a new license for such software, you may create and use a
-modified version of this License if you rename the license and remove
-any references to the name of the license steward (except to note that
-such modified license differs from this License).
-
-10.4. Distributing Source Code Form that is Incompatible With Secondary
-Licenses
-
-If You choose to distribute Source Code Form that is Incompatible With
-Secondary Licenses under the terms of this version of the License, the
-notice described in Exhibit B of this License must be attached.
-
-Exhibit A - Source Code Form License Notice
--------------------------------------------
-
-  This Source Code Form is subject to the terms of the Mozilla Public
-  License, v. 2.0. If a copy of the MPL was not distributed with this
-  file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-If it is not possible or desirable to put the notice in a particular
-file, then You may include the notice in a location (such as a LICENSE
-file in a relevant directory) where a recipient would be likely to look
-for such a notice.
-
-You may add additional accurate notices of copyright ownership.
-
-Exhibit B - "Incompatible With Secondary Licenses" Notice
----------------------------------------------------------
-
-  This Source Code Form is "Incompatible With Secondary Licenses", as
-  defined by the Mozilla Public License, v. 2.0.
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/Makefile b/documentation/licenses/github.com/r3labs/diff/v3/Makefile
deleted file mode 100644
index f119f8c..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-install:
-	go install -v ${LDFLAGS}
-
-deps:
-	go get github.com/stretchr/testify
-
-test:
-	@go test -v -cover ./...
-
-cover:
-	@go test -coverprofile cover.out
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/README.md b/documentation/licenses/github.com/r3labs/diff/v3/README.md
deleted file mode 100644
index 97aee65..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/README.md
+++ /dev/null
@@ -1,327 +0,0 @@
-# Diff [![PkgGoDev](https://pkg.go.dev/badge/github.com/r3labs/diff)](https://pkg.go.dev/github.com/r3labs/diff) [![Go Report Card](https://goreportcard.com/badge/github.com/r3labs/diff)](https://goreportcard.com/report/github.com/r3labs/diff) [![Build Status](https://travis-ci.com/r3labs/diff.svg?branch=master)](https://travis-ci.com/r3labs/diff)
-
-A library for diffing golang structures and values.
-
-Utilizing field tags and reflection, it is able to compare two structures of the same type and create a changelog of all modified values. The produced changelog can easily be serialized to json.
-
-NOTE: All active development now takes place on the v3 branch.
-
-## Installation
-
-For version 3:
-```
-go get github.com/r3labs/diff/v3
-```
-
-## Changelog Format
-
-When diffing two structures using `Diff`, a changelog will be produced. Any detected changes will populate the changelog array with a Change type:
-
-```go
-type Change struct {
-	Type string      // The type of change detected; can be one of create, update or delete
-	Path []string    // The path of the detected change; will contain any field name or array index that was part of the traversal
-	From interface{} // The original value that was present in the "from" structure
-	To   interface{} // The new value that was detected as a change in the "to" structure
-}
-```
-
-Given the example below, we are diffing two slices where the third element has been removed:
-
-```go
-from := []int{1, 2, 3, 4}
-to := []int{1, 2, 4}
-
-changelog, _ := diff.Diff(from, to)
-```
-
-The resultant changelog should contain one change:
-
-```go
-Change{
-    Type: "delete",
-    Path: ["2"],
-    From: 3,
-    To:   nil,
-}
-```
-
-## Supported Types
-
-A diffable value can be/contain any of the following types:
-
-
-| Type         | Supported |
-| ------------ | --------- |
-| struct       | ✔         |
-| slice        | ✔         |
-| string       | ✔         |
-| int          | ✔         |
-| bool         | ✔         |
-| map          | ✔         |
-| pointer      | ✔         |
-| custom types | ✔         |
-
-
-Please see the docs for more supported types, options and features.
-
-### Tags
-
-In order for struct fields to be compared, they must be tagged with a given name. All tag values are prefixed with `diff`. i.e. `diff:"items"`.
-
-| Tag           | Usage                                                                                                                                                                                                                                                                                           |
-| ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `-`           | Excludes a value from being diffed                                                                                                                                                                                                                                                              |
-| `identifier`  | If you need to compare arrays by a matching identifier and not based on order, you can specify the `identifier` tag. If an identifiable element is found in both the from and to structures, they will be directly compared. i.e. `diff:"name, identifier"`                                     |
-| `immutable`   | Will omit this struct field from diffing. When using `diff.StructValues()` these values will be added to the returned changelog. It's use case is for when we have nothing to compare a struct to and want to show all of its relevant values.                                                  |
-| `nocreate`    | The default patch action is to allocate instances in the target strut, map or slice should they not exist. Adding this flag will tell patch to skip elements that it would otherwise need to allocate. This is separate from immutable, which is also honored while patching.                   |
-| `omitunequal` | Patching is a 'best effort' operation, and will by default attempt to update the 'correct' member of the target even if the underlying value has already changed to something other than the value in the change log 'from'. This tag will selectively ignore values that are not a 100% match. |
-
-## Usage
-
-### Basic Example
-
-Diffing a basic set of values can be accomplished using the diff functions. Any items that specify a "diff" tag using a name will be compared.
-
-```go
-import "github.com/r3labs/diff/v3"
-
-type Order struct {
-    ID    string `diff:"id"`
-    Items []int  `diff:"items"`
-}
-
-func main() {
-    a := Order{
-        ID: "1234",
-        Items: []int{1, 2, 3, 4},
-    }
-
-    b := Order{
-        ID: "1234",
-        Items: []int{1, 2, 4},
-    }
-
-    changelog, err := diff.Diff(a, b)
-    ...
-}
-```
-
-In this example, the output generated in the changelog will indicate that the third element with a value of '3' was removed from items.
-When marshalling the changelog to json, the output will look like:
-
-```json
-[
-    {
-        "type": "delete",
-        "path": ["items", "2"],
-        "from": 3,
-        "to": null
-    }
-]
-```
-
-### Options and Configuration
-
-Options can be set on the differ at call time which effect how diff acts when building the change log.
-```go
-import "github.com/r3labs/diff/v3"
-
-type Order struct {
-    ID    string `diff:"id"`
-    Items []int  `diff:"items"`
-}
-
-func main() {
-    a := Order{
-        ID: "1234",
-        Items: []int{1, 2, 3, 4},
-    }
-
-    b := Order{
-        ID: "1234",
-        Items: []int{1, 2, 4},
-    }
-
-    changelog, err := diff.Diff(a, b, diff.DisableStructValues(), diff.AllowTypeMismatch(true))
-    ...
-}
-```
-
-You can also create a new instance of a differ that allows options to be set.
-
-```go
-import "github.com/r3labs/diff/v3"
-
-type Order struct {
-    ID    string `diff:"id"`
-    Items []int  `diff:"items"`
-}
-
-func main() {
-    a := Order{
-        ID: "1234",
-        Items: []int{1, 2, 3, 4},
-    }
-
-    b := Order{
-        ID: "1234",
-        Items: []int{1, 2, 4},
-    }
-
-    d, err := diff.NewDiffer(diff.SliceOrdering(true))
-    if err != nil {
-        panic(err)
-    }
-
-    changelog, err := d.Diff(a, b)
-    ...
-}
-```
-
-Supported options are:
-
-`SliceOrdering` ensures that the ordering of items in a slice is taken into account
-
-`DiscardComplexOrigin` is a directive to diff to omit additional origin information about structs. This alters the behavior of patch and can lead to some pitfalls and non-intuitive behavior if used. On the other hand, it can significantly reduce the memory footprint of large complex diffs.
-
-`AllowTypeMismatch` is a global directive to either allow (true) or not to allow (false) patch apply the changes if 'from' is not equal. This is effectively a global version of the omitunequal tag.
-
-`Filter` provides a callback that allows you to determine which fields the differ descends into
-
-`DisableStructValues` disables populating a separate change for each item in a struct, where the struct is being compared to a nil Value.
-
-`TagName` sets the tag name to use when getting field names and options.
-
-### Patch and merge support
-Diff additionally supports merge and patch. Similar in concept to text patching / merging the Patch function, given 
-a change log and a target instance will make a _best effort_ to apply the changes in the change log to the variable
-pointed to. The intention is that the target pointer is of the same type however, that doesn't necessarily have to be 
-true. For example, two slices of differing structs may be similar enough to apply changes to in a polymorphic way, and 
-patch will certainly try.
-
-The patch function doesn't actually fail, and even if there are errors, it may succeed sufficiently for the task at hand.
-To accommodate this patch keeps track of each change log option it attempts to apply and reports the details of what 
-happened for further scrutiny.
-
-```go
-import "github.com/r3labs/diff/v3"
-
-type Order struct {
-    ID    string `diff:"id"`
-    Items []int  `diff:"items"`
-}
-
-func main() {
-    a := Order{
-        ID: "1234",
-        Items: []int{1, 2, 3, 4},
-    }
-
-    b := Order{
-        ID: "1234",
-        Items: []int{1, 2, 4},
-    }
-
-    c := Order{}
-    changelog, err := diff.Diff(a, b)
-
-    patchlog := diff.Patch(changelog, &c)
-    //Note the lack of an error. Patch is best effort and uses flags to indicate actions taken
-    //and keeps any errors encountered along the way for review
-    fmt.Printf("Encountered %d errors while patching", patchlog.ErrorCount())
-    ...
-}
-```
-
-Instances of differ with options set can also be used when patching.
-
-```go
-package main
-
-import "github.com/r3labs/diff/v3"
-
-type Order struct {
-	ID    string `json:"id"`
-	Items []int  `json:"items"`
-}
-
-func main() {
-    a := Order{
-        ID:    "1234",
-        Items: []int{1, 2, 3, 4},
-        }
-
-    b := Order{
-        ID:    "1234",
-        Items: []int{1, 2, 4},
-    }
-
-    d, _ := diff.NewDiffer(diff.TagName("json"))
-
-    changelog, _ := d.Diff(a, b)
-
-    d.Patch(changelog, &a)
-    // reflect.DeepEqual(a, b) == true
-}
-
-```
-
-As a convenience, there is a Merge function that allows one to take three interfaces and perform all the tasks at the same
-time.
-
-```go
-import "github.com/r3labs/diff/v3"
-
-type Order struct {
-    ID    string `diff:"id"`
-    Items []int  `diff:"items"`
-}
-
-func main() {
-    a := Order{
-        ID: "1234",
-        Items: []int{1, 2, 3, 4},
-    }
-
-    b := Order{
-        ID: "1234",
-        Items: []int{1, 2, 4},
-    }
-
-    c := Order{}
-    patchlog, err := diff.Merge(a, b, &c)
-    if err != nil {
-        fmt.Printf("Error encountered while diffing a & b")
-    }
-    fmt.Printf("Encountered %d errors while patching", patchlog.ErrorCount())
-    ...
-}
-```
-## Running Tests
-
-```
-make test
-```
-
-## Contributing
-
-Please read through our
-[contributing guidelines](CONTRIBUTING.md).
-Included are directions for opening issues, coding standards, and notes on
-development.
-
-Moreover, if your pull request contains patches or features, you must include
-relevant unit tests.
-
-## Versioning
-
-For transparency into our release cycle and in striving to maintain backward
-compatibility, this project is maintained under [the Semantic Versioning guidelines](http://semver.org/).
-
-## Copyright and License
-
-Code and documentation copyright since 2015 r3labs.io authors.
-
-Code released under
-[the Mozilla Public License Version 2.0](LICENSE).
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/change_value.go b/documentation/licenses/github.com/r3labs/diff/v3/change_value.go
deleted file mode 100644
index 9da04b9..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/change_value.go
+++ /dev/null
@@ -1,210 +0,0 @@
-package diff
-
-import (
-	"fmt"
-	"reflect"
-)
-
-// ChangeValue is a specialized struct for monitoring patching
-type ChangeValue struct {
-	parent *reflect.Value
-	target *reflect.Value
-	flags  PatchFlags
-	change *Change
-	err    error
-	pos    int
-	index  int
-	key    reflect.Value
-}
-
-// swap swaps out the target as we move down the path. Note that a nil
-//
-//	check is foregone here due to the fact we control usage.
-func (c *ChangeValue) swap(newTarget *reflect.Value) {
-	if newTarget.IsValid() {
-		c.ClearFlag(FlagInvalidTarget)
-		c.parent = c.target
-		c.target = newTarget
-		c.pos++
-	}
-}
-
-// Sets a flag on the node and saves the change
-func (c *ChangeValue) SetFlag(flag PatchFlags) {
-	if c != nil {
-		c.flags = c.flags | flag
-	}
-}
-
-// ClearFlag removes just a single flag
-func (c *ChangeValue) ClearFlag(flag PatchFlags) {
-	if c != nil {
-		c.flags = c.flags &^ flag
-	}
-}
-
-// HasFlag indicates if a flag is set on the node. returns false if node is bad
-func (c *ChangeValue) HasFlag(flag PatchFlags) bool {
-	return (c.flags & flag) != 0
-}
-
-// IsValid echo for is valid
-func (c *ChangeValue) IsValid() bool {
-	if c != nil {
-		return c.target.IsValid() || !c.HasFlag(FlagInvalidTarget)
-	}
-	return false
-}
-
-// ParentKind - helps keep us nil safe
-func (c ChangeValue) ParentKind() reflect.Kind {
-	if c.parent != nil {
-		return c.parent.Kind()
-	}
-	return reflect.Invalid
-}
-
-// ParentLen is a nil safe parent length check
-func (c ChangeValue) ParentLen() (ret int) {
-	if c.parent != nil &&
-		(c.parent.Kind() == reflect.Slice ||
-			c.parent.Kind() == reflect.Map) {
-		ret = c.parent.Len()
-	}
-	return
-}
-
-// ParentSet - nil safe parent set
-func (c *ChangeValue) ParentSet(value reflect.Value, convertCompatibleTypes bool) {
-	if c != nil && c.parent != nil {
-		defer func() {
-			if r := recover(); r != nil {
-				c.SetFlag(FlagParentSetFailed)
-			}
-		}()
-
-		if convertCompatibleTypes {
-			if !value.Type().ConvertibleTo(c.parent.Type()) {
-				c.AddError(fmt.Errorf("Value of type %s is not convertible to %s", value.Type().String(), c.parent.Type().String()))
-				c.SetFlag(FlagParentSetFailed)
-				return
-			}
-			c.parent.Set(value.Convert(c.parent.Type()))
-		} else {
-			c.parent.Set(value)
-		}
-		c.SetFlag(FlagParentSetApplied)
-	}
-}
-
-// Len echo for len
-func (c ChangeValue) Len() int {
-	return c.target.Len()
-}
-
-// Set echos reflect set
-func (c *ChangeValue) Set(value reflect.Value, convertCompatibleTypes bool) {
-	if c == nil {
-		return
-	}
-
-	defer func() {
-		if r := recover(); r != nil {
-			switch e := r.(type) {
-			case string:
-				c.AddError(NewError(e))
-			case *reflect.ValueError:
-				c.AddError(NewError(e.Error()))
-			}
-
-			c.SetFlag(FlagFailed)
-		}
-	}()
-
-	if c.HasFlag(OptionImmutable) {
-		c.SetFlag(FlagIgnored)
-		return
-	}
-
-	if convertCompatibleTypes {
-		if c.target.Kind() == reflect.Ptr && value.Kind() != reflect.Ptr {
-			if !value.IsValid() {
-				c.target.Set(reflect.Zero(c.target.Type()))
-				c.SetFlag(FlagApplied)
-				return
-			} else if !value.Type().ConvertibleTo(c.target.Elem().Type()) {
-				c.AddError(fmt.Errorf("Value of type %s is not convertible to %s", value.Type().String(), c.target.Type().String()))
-				c.SetFlag(FlagFailed)
-				return
-			}
-
-			tv := reflect.New(c.target.Elem().Type())
-			tv.Elem().Set(value.Convert(c.target.Elem().Type()))
-			c.target.Set(tv)
-		} else {
-			if !value.Type().ConvertibleTo(c.target.Type()) {
-				c.AddError(fmt.Errorf("Value of type %s is not convertible to %s", value.Type().String(), c.target.Type().String()))
-				c.SetFlag(FlagFailed)
-				return
-			}
-
-			c.target.Set(value.Convert(c.target.Type()))
-		}
-	} else {
-		if value.IsValid() {
-			if c.target.Kind() == reflect.Ptr && value.Kind() != reflect.Ptr {
-				tv := reflect.New(value.Type())
-				tv.Elem().Set(value)
-				c.target.Set(tv)
-			} else {
-				c.target.Set(value)
-			}
-		} else if c.target.Kind() == reflect.Ptr {
-			c.target.Set(reflect.Zero(c.target.Type()))
-		} else if !c.target.IsZero() {
-			t := c.target.Elem()
-			t.Set(reflect.Zero(t.Type()))
-		}
-	}
-	c.SetFlag(FlagApplied)
-}
-
-// Index echo for index
-func (c ChangeValue) Index(i int) reflect.Value {
-	return c.target.Index(i)
-}
-
-// ParentIndex - get us the parent version, nil safe
-func (c ChangeValue) ParentIndex(i int) (ret reflect.Value) {
-	if c.parent != nil {
-		ret = c.parent.Index(i)
-	}
-	return
-}
-
-// Instance a new element of type for target. Taking the
-// copy of the complex origin avoids the 'lack of data' issue
-// present when allocating complex structs with slices and
-// arrays
-func (c ChangeValue) NewElement() reflect.Value {
-	ret := c.change.parent
-	if ret != nil {
-		return reflect.ValueOf(ret)
-	}
-	return reflect.New(c.target.Type().Elem()).Elem()
-}
-
-// NewArrayElement gives us a dynamically typed new element
-func (c ChangeValue) NewArrayElement() reflect.Value {
-	c.target.Set(reflect.Append(*c.target, c.NewElement()))
-	c.SetFlag(FlagCreated)
-	return c.Index(c.Len() - 1)
-}
-
-// AddError appends errors to this change value
-func (c *ChangeValue) AddError(err error) *ChangeValue {
-	if c != nil {
-		c.err = err
-	}
-	return c
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/comparative.go b/documentation/licenses/github.com/r3labs/diff/v3/comparative.go
deleted file mode 100644
index f92ff6b..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/comparative.go
+++ /dev/null
@@ -1,44 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"reflect"
-)
-
-// Comparative ...
-type Comparative struct {
-	A, B *reflect.Value
-}
-
-// ComparativeList : stores indexed comparative
-type ComparativeList struct {
-	m    map[interface{}]*Comparative
-	keys []interface{}
-}
-
-// NewComparativeList : returns a new comparative list
-func NewComparativeList() *ComparativeList {
-	return &ComparativeList{
-		m:    make(map[interface{}]*Comparative),
-		keys: make([]interface{}, 0),
-	}
-}
-
-func (cl *ComparativeList) addA(k interface{}, v *reflect.Value) {
-	if (*cl).m[k] == nil {
-		(*cl).m[k] = &Comparative{}
-		(*cl).keys = append((*cl).keys, k)
-	}
-	(*cl).m[k].A = v
-}
-
-func (cl *ComparativeList) addB(k interface{}, v *reflect.Value) {
-	if (*cl).m[k] == nil {
-		(*cl).m[k] = &Comparative{}
-		(*cl).keys = append((*cl).keys, k)
-	}
-	(*cl).m[k].B = v
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff.go b/documentation/licenses/github.com/r3labs/diff/v3/diff.go
deleted file mode 100644
index 3c2ba17..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff.go
+++ /dev/null
@@ -1,417 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"errors"
-	"fmt"
-	"reflect"
-	"strconv"
-	"strings"
-
-	"github.com/vmihailenco/msgpack/v5"
-)
-
-const (
-	// CREATE represents when an element has been added
-	CREATE = "create"
-	// UPDATE represents when an element has been updated
-	UPDATE = "update"
-	// DELETE represents when an element has been removed
-	DELETE = "delete"
-)
-
-// DiffType represents an enum with all the supported diff types
-type DiffType uint8
-
-const (
-	UNSUPPORTED DiffType = iota
-	STRUCT
-	SLICE
-	ARRAY
-	STRING
-	BOOL
-	INT
-	UINT
-	FLOAT
-	MAP
-	PTR
-	INTERFACE
-)
-
-func (t DiffType) String() string {
-	switch t {
-	case STRUCT:
-		return "STRUCT"
-	case SLICE:
-		return "SLICE"
-	case ARRAY:
-		return "ARRAY"
-	case STRING:
-		return "STRING"
-	case BOOL:
-		return "BOOL"
-	case INT:
-		return "INT"
-	case UINT:
-		return "UINT"
-	case FLOAT:
-		return "FLOAT"
-	case MAP:
-		return "MAP"
-	case PTR:
-		return "PTR"
-	case INTERFACE:
-		return "INTERFACE"
-	default:
-		return "UNSUPPORTED"
-	}
-}
-
-// DiffFunc represents the built-in diff functions
-type DiffFunc func([]string, reflect.Value, reflect.Value, interface{}) error
-
-// Differ a configurable diff instance
-type Differ struct {
-	TagName                string
-	SliceOrdering          bool
-	DisableStructValues    bool
-	customValueDiffers     []ValueDiffer
-	cl                     Changelog
-	AllowTypeMismatch      bool
-	DiscardParent          bool
-	StructMapKeys          bool
-	FlattenEmbeddedStructs bool
-	ConvertCompatibleTypes bool
-	Filter                 FilterFunc
-}
-
-// Changelog stores a list of changed items
-type Changelog []Change
-
-// Change stores information about a changed item
-type Change struct {
-	Type   string      `json:"type"`
-	Path   []string    `json:"path"`
-	From   interface{} `json:"from"`
-	To     interface{} `json:"to"`
-	parent interface{} `json:"parent"`
-}
-
-// ValueDiffer is an interface for custom differs
-type ValueDiffer interface {
-	Match(a, b reflect.Value) bool
-	Diff(dt DiffType, df DiffFunc, cl *Changelog, path []string, a, b reflect.Value, parent interface{}) error
-	InsertParentDiffer(dfunc func(path []string, a, b reflect.Value, p interface{}) error)
-}
-
-// Changed returns true if both values differ
-func Changed(a, b interface{}) bool {
-	cl, _ := Diff(a, b)
-	return len(cl) > 0
-}
-
-// Diff returns a changelog of all mutated values from both
-func Diff(a, b interface{}, opts ...func(d *Differ) error) (Changelog, error) {
-	d, err := NewDiffer(opts...)
-	if err != nil {
-		return nil, err
-	}
-	return d.Diff(a, b)
-}
-
-// NewDiffer creates a new configurable diffing object
-func NewDiffer(opts ...func(d *Differ) error) (*Differ, error) {
-	d := Differ{
-		TagName:       "diff",
-		DiscardParent: false,
-	}
-
-	for _, opt := range opts {
-		err := opt(&d)
-		if err != nil {
-			return nil, err
-		}
-	}
-
-	return &d, nil
-}
-
-// FilterFunc is a function that determines whether to descend into a struct field.
-// parent is the struct being examined and field is a field on that struct. path
-// is the path to the field from the root of the diff.
-type FilterFunc func(path []string, parent reflect.Type, field reflect.StructField) bool
-
-// StructValues gets all values from a struct
-// values are stored as "created" or "deleted" entries in the changelog,
-// depending on the change type specified
-func StructValues(t string, path []string, s interface{}) (Changelog, error) {
-	d := Differ{
-		TagName:       "diff",
-		DiscardParent: false,
-	}
-
-	v := reflect.ValueOf(s)
-
-	return d.cl, d.structValues(t, path, v)
-}
-
-// FilterOut filter out the changes based on path. Paths may contain valid regexp to match items
-func (cl *Changelog) FilterOut(path []string) Changelog {
-	var ncl Changelog
-
-	for _, c := range *cl {
-		if !pathmatch(path, c.Path) {
-			ncl = append(ncl, c)
-		}
-	}
-
-	return ncl
-}
-
-// Filter filter changes based on path. Paths may contain valid regexp to match items
-func (cl *Changelog) Filter(path []string) Changelog {
-	var ncl Changelog
-
-	for _, c := range *cl {
-		if pathmatch(path, c.Path) {
-			ncl = append(ncl, c)
-		}
-	}
-
-	return ncl
-}
-
-func (d *Differ) getDiffType(a, b reflect.Value) (DiffType, DiffFunc) {
-	switch {
-	case are(a, b, reflect.Struct, reflect.Invalid):
-		return STRUCT, d.diffStruct
-	case are(a, b, reflect.Slice, reflect.Invalid):
-		return SLICE, d.diffSlice
-	case are(a, b, reflect.Array, reflect.Invalid):
-		return ARRAY, d.diffSlice
-	case are(a, b, reflect.String, reflect.Invalid):
-		return STRING, d.diffString
-	case are(a, b, reflect.Bool, reflect.Invalid):
-		return BOOL, d.diffBool
-	case are(a, b, reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Invalid):
-		return INT, d.diffInt
-	case are(a, b, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Invalid):
-		return UINT, d.diffUint
-	case are(a, b, reflect.Float32, reflect.Float64, reflect.Invalid):
-		return FLOAT, d.diffFloat
-	case are(a, b, reflect.Map, reflect.Invalid):
-		return MAP, d.diffMap
-	case are(a, b, reflect.Ptr, reflect.Invalid):
-		return PTR, d.diffPtr
-	case are(a, b, reflect.Interface, reflect.Invalid):
-		return INTERFACE, d.diffInterface
-	default:
-		return UNSUPPORTED, nil
-	}
-}
-
-// Diff returns a changelog of all mutated values from both
-func (d *Differ) Diff(a, b interface{}) (Changelog, error) {
-	// reset the state of the diff
-	d.cl = Changelog{}
-
-	return d.cl, d.diff([]string{}, reflect.ValueOf(a), reflect.ValueOf(b), nil)
-}
-
-func (d *Differ) diff(path []string, a, b reflect.Value, parent interface{}) error {
-
-	//look and see if we need to discard the parent
-	if parent != nil {
-		if d.DiscardParent || reflect.TypeOf(parent).Kind() != reflect.Struct {
-			parent = nil
-		}
-	}
-
-	// check if types match or are
-	if invalid(a, b) {
-		if d.AllowTypeMismatch {
-			d.cl.Add(UPDATE, path, a.Interface(), b.Interface())
-			return nil
-		}
-		return ErrTypeMismatch
-	}
-
-	// get the diff type and the corresponding built-int diff function to handle this type
-	diffType, diffFunc := d.getDiffType(a, b)
-
-	// first go through custom diff functions
-	if len(d.customValueDiffers) > 0 {
-		for _, vd := range d.customValueDiffers {
-			if vd.Match(a, b) {
-				err := vd.Diff(diffType, diffFunc, &d.cl, path, a, b, parent)
-				if err != nil {
-					return err
-				}
-				return nil
-			}
-		}
-	}
-
-	// then built-in diff functions
-	if diffType == UNSUPPORTED {
-		return errors.New("unsupported type: " + a.Kind().String())
-	}
-
-	return diffFunc(path, a, b, parent)
-}
-
-func (cl *Changelog) Add(t string, path []string, ftco ...interface{}) {
-	change := Change{
-		Type: t,
-		Path: path,
-		From: ftco[0],
-		To:   ftco[1],
-	}
-	if len(ftco) > 2 {
-		change.parent = ftco[2]
-	}
-	(*cl) = append((*cl), change)
-}
-
-func tagName(tag string, f reflect.StructField) string {
-	t := f.Tag.Get(tag)
-
-	parts := strings.Split(t, ",")
-	if len(parts) < 1 {
-		return "-"
-	}
-
-	return parts[0]
-}
-
-func identifier(tag string, v reflect.Value) interface{} {
-	if v.Kind() != reflect.Struct {
-		return nil
-	}
-
-	for i := 0; i < v.NumField(); i++ {
-		if hasTagOption(tag, v.Type().Field(i), "identifier") {
-			return v.Field(i).Interface()
-		}
-	}
-
-	return nil
-}
-
-func hasTagOption(tag string, f reflect.StructField, opt string) bool {
-	parts := strings.Split(f.Tag.Get(tag), ",")
-	if len(parts) < 2 {
-		return false
-	}
-
-	for _, option := range parts[1:] {
-		if option == opt {
-			return true
-		}
-	}
-
-	return false
-}
-
-func swapChange(t string, c Change) Change {
-	nc := Change{
-		Type: t,
-		Path: c.Path,
-	}
-
-	switch t {
-	case CREATE:
-		nc.To = c.To
-	case DELETE:
-		nc.From = c.To
-	}
-
-	return nc
-}
-
-func idComplex(v interface{}) string {
-	switch v := v.(type) {
-	case string:
-		return v
-	case int:
-		return strconv.Itoa(v)
-	default:
-		b, err := msgpack.Marshal(v)
-		if err != nil {
-			panic(err)
-		}
-		return string(b)
-	}
-
-}
-func idstring(v interface{}) string {
-	switch v := v.(type) {
-	case string:
-		return v
-	case int:
-		return strconv.Itoa(v)
-	default:
-		return fmt.Sprint(v)
-	}
-}
-
-func invalid(a, b reflect.Value) bool {
-	if a.Kind() == b.Kind() {
-		return false
-	}
-
-	if a.Kind() == reflect.Invalid {
-		return false
-	}
-	if b.Kind() == reflect.Invalid {
-		return false
-	}
-
-	return true
-}
-
-func are(a, b reflect.Value, kinds ...reflect.Kind) bool {
-	var amatch, bmatch bool
-
-	for _, k := range kinds {
-		if a.Kind() == k {
-			amatch = true
-		}
-		if b.Kind() == k {
-			bmatch = true
-		}
-	}
-
-	return amatch && bmatch
-}
-
-func AreType(a, b reflect.Value, types ...reflect.Type) bool {
-	var amatch, bmatch bool
-
-	for _, t := range types {
-		if a.Kind() != reflect.Invalid {
-			if a.Type() == t {
-				amatch = true
-			}
-		}
-		if b.Kind() != reflect.Invalid {
-			if b.Type() == t {
-				bmatch = true
-			}
-		}
-	}
-
-	return amatch && bmatch
-}
-
-func copyAppend(src []string, elems ...string) []string {
-	dst := make([]string, len(src)+len(elems))
-	copy(dst, src)
-	for i := len(src); i < len(src)+len(elems); i++ {
-		dst[i] = elems[i-len(src)]
-	}
-	return dst
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_bool.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_bool.go
deleted file mode 100644
index 0e30503..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_bool.go
+++ /dev/null
@@ -1,29 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import "reflect"
-
-func (d *Differ) diffBool(path []string, a, b reflect.Value, parent interface{}) error {
-	if a.Kind() == reflect.Invalid {
-		d.cl.Add(CREATE, path, nil, exportInterface(b))
-		return nil
-	}
-
-	if b.Kind() == reflect.Invalid {
-		d.cl.Add(DELETE, path, exportInterface(a), nil)
-		return nil
-	}
-
-	if a.Kind() != b.Kind() {
-		return ErrTypeMismatch
-	}
-
-	if a.Bool() != b.Bool() {
-		d.cl.Add(UPDATE, path, exportInterface(a), exportInterface(b), parent)
-	}
-
-	return nil
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_comparative.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_comparative.go
deleted file mode 100644
index 7359d17..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_comparative.go
+++ /dev/null
@@ -1,62 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"reflect"
-)
-
-func (d *Differ) diffComparative(path []string, c *ComparativeList, parent interface{}) error {
-	for _, k := range c.keys {
-		id := idstring(k)
-		if d.StructMapKeys {
-			id = idComplex(k)
-		}
-
-		fpath := copyAppend(path, id)
-		nv := reflect.ValueOf(nil)
-
-		if c.m[k].A == nil {
-			c.m[k].A = &nv
-		}
-
-		if c.m[k].B == nil {
-			c.m[k].B = &nv
-		}
-
-		err := d.diff(fpath, *c.m[k].A, *c.m[k].B, parent)
-		if err != nil {
-			return err
-		}
-	}
-
-	return nil
-}
-
-func (d *Differ) comparative(a, b reflect.Value) bool {
-	if a.Len() > 0 {
-		ae := a.Index(0)
-		ak := getFinalValue(ae)
-
-		if ak.Kind() == reflect.Struct {
-			if identifier(d.TagName, ak) != nil {
-				return true
-			}
-		}
-	}
-
-	if b.Len() > 0 {
-		be := b.Index(0)
-		bk := getFinalValue(be)
-
-		if bk.Kind() == reflect.Struct {
-			if identifier(d.TagName, bk) != nil {
-				return true
-			}
-		}
-	}
-
-	return false
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_float.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_float.go
deleted file mode 100644
index 9494365..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_float.go
+++ /dev/null
@@ -1,35 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"reflect"
-)
-
-func (d *Differ) diffFloat(path []string, a, b reflect.Value, parent interface{}) error {
-	if a.Kind() == reflect.Invalid {
-		d.cl.Add(CREATE, path, nil, exportInterface(b))
-		return nil
-	}
-
-	if b.Kind() == reflect.Invalid {
-		d.cl.Add(DELETE, path, exportInterface(a), nil)
-		return nil
-	}
-
-	if a.Kind() != b.Kind() {
-		return ErrTypeMismatch
-	}
-
-	if a.Float() != b.Float() {
-		if a.CanInterface() {
-			d.cl.Add(UPDATE, path, exportInterface(a), exportInterface(b), parent)
-		} else {
-			d.cl.Add(UPDATE, path, a.Float(), b.Float(), parent)
-		}
-	}
-
-	return nil
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_int.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_int.go
deleted file mode 100644
index 3658bf7..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_int.go
+++ /dev/null
@@ -1,35 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"reflect"
-)
-
-func (d *Differ) diffInt(path []string, a, b reflect.Value, parent interface{}) error {
-	if a.Kind() == reflect.Invalid {
-		d.cl.Add(CREATE, path, nil, exportInterface(b))
-		return nil
-	}
-
-	if b.Kind() == reflect.Invalid {
-		d.cl.Add(DELETE, path, exportInterface(a), nil)
-		return nil
-	}
-
-	if a.Kind() != b.Kind() {
-		return ErrTypeMismatch
-	}
-
-	if a.Int() != b.Int() {
-		if a.CanInterface() {
-			d.cl.Add(UPDATE, path, exportInterface(a), exportInterface(b), parent)
-		} else {
-			d.cl.Add(UPDATE, path, a.Int(), b.Int(), parent)
-		}
-	}
-
-	return nil
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_interface.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_interface.go
deleted file mode 100644
index ef6cde8..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_interface.go
+++ /dev/null
@@ -1,39 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import "reflect"
-
-func (d *Differ) diffInterface(path []string, a, b reflect.Value, parent interface{}) error {
-	if a.Kind() == reflect.Invalid {
-		d.cl.Add(CREATE, path, nil, exportInterface(b))
-		return nil
-	}
-
-	if b.Kind() == reflect.Invalid {
-		d.cl.Add(DELETE, path, exportInterface(a), nil)
-		return nil
-	}
-
-	if a.Kind() != b.Kind() {
-		return ErrTypeMismatch
-	}
-
-	if a.IsNil() && b.IsNil() {
-		return nil
-	}
-
-	if a.IsNil() {
-		d.cl.Add(UPDATE, path, nil, exportInterface(b), parent)
-		return nil
-	}
-
-	if b.IsNil() {
-		d.cl.Add(UPDATE, path, exportInterface(a), nil, parent)
-		return nil
-	}
-
-	return d.diff(path, a.Elem(), b.Elem(), parent)
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_map.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_map.go
deleted file mode 100644
index 675ff93..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_map.go
+++ /dev/null
@@ -1,81 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"fmt"
-	"reflect"
-
-	"github.com/vmihailenco/msgpack/v5"
-)
-
-func (d *Differ) diffMap(path []string, a, b reflect.Value, parent interface{}) error {
-	if a.Kind() == reflect.Invalid {
-		return d.mapValues(CREATE, path, b)
-	}
-
-	if b.Kind() == reflect.Invalid {
-		return d.mapValues(DELETE, path, a)
-	}
-
-	c := NewComparativeList()
-
-	for _, k := range a.MapKeys() {
-		ae := a.MapIndex(k)
-		c.addA(exportInterface(k), &ae)
-	}
-
-	for _, k := range b.MapKeys() {
-		be := b.MapIndex(k)
-		c.addB(exportInterface(k), &be)
-	}
-
-	return d.diffComparative(path, c, exportInterface(a))
-}
-
-func (d *Differ) mapValues(t string, path []string, a reflect.Value) error {
-	if t != CREATE && t != DELETE {
-		return ErrInvalidChangeType
-	}
-
-	if a.Kind() == reflect.Ptr {
-		a = reflect.Indirect(a)
-	}
-
-	if a.Kind() != reflect.Map {
-		return ErrTypeMismatch
-	}
-
-	x := reflect.New(a.Type()).Elem()
-
-	for _, k := range a.MapKeys() {
-		ae := a.MapIndex(k)
-		xe := x.MapIndex(k)
-
-		var err error
-		if d.StructMapKeys {
-			//it's not enough to turn k to a string, we need to able to  marshal a type when
-			//we apply it in patch so... we'll marshal it to JSON
-			var b []byte
-			if b, err = msgpack.Marshal(k.Interface()); err == nil {
-				err = d.diff(append(path, string(b)), xe, ae, a.Interface())
-			}
-		} else {
-			err = d.diff(append(path, fmt.Sprint(k.Interface())), xe, ae, a.Interface())
-		}
-		if err != nil {
-			return err
-		}
-	}
-
-	for i := 0; i < len(d.cl); i++ {
-		// only swap changes on the relevant map
-		if pathmatch(path, d.cl[i].Path) {
-			d.cl[i] = swapChange(t, d.cl[i])
-		}
-	}
-
-	return nil
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_pointer.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_pointer.go
deleted file mode 100644
index 7c9d875..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_pointer.go
+++ /dev/null
@@ -1,60 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"reflect"
-	"unsafe"
-)
-
-var isExportFlag uintptr = (1 << 5) | (1 << 6)
-
-func (d *Differ) diffPtr(path []string, a, b reflect.Value, parent interface{}) error {
-	if a.Kind() != b.Kind() {
-		if a.Kind() == reflect.Invalid {
-			if !b.IsNil() {
-				return d.diff(path, reflect.ValueOf(nil), reflect.Indirect(b), parent)
-			}
-
-			d.cl.Add(CREATE, path, nil, exportInterface(b), parent)
-			return nil
-		}
-
-		if b.Kind() == reflect.Invalid {
-			if !a.IsNil() {
-				return d.diff(path, reflect.Indirect(a), reflect.ValueOf(nil), parent)
-			}
-
-			d.cl.Add(DELETE, path, exportInterface(a), nil, parent)
-			return nil
-		}
-
-		return ErrTypeMismatch
-	}
-
-	if a.IsNil() && b.IsNil() {
-		return nil
-	}
-
-	if a.IsNil() {
-		d.cl.Add(UPDATE, path, nil, exportInterface(b), parent)
-		return nil
-	}
-
-	if b.IsNil() {
-		d.cl.Add(UPDATE, path, exportInterface(a), nil, parent)
-		return nil
-	}
-
-	return d.diff(path, reflect.Indirect(a), reflect.Indirect(b), parent)
-}
-
-func exportInterface(v reflect.Value) interface{} {
-	if !v.CanInterface() {
-		flagTmp := (*uintptr)(unsafe.Pointer(uintptr(unsafe.Pointer(&v)) + 2*unsafe.Sizeof(uintptr(0))))
-		*flagTmp = (*flagTmp) & (^isExportFlag)
-	}
-	return v.Interface()
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_slice.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_slice.go
deleted file mode 100644
index 3fd281b..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_slice.go
+++ /dev/null
@@ -1,141 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"reflect"
-)
-
-func (d *Differ) diffSlice(path []string, a, b reflect.Value, parent interface{}) error {
-	if a.Kind() == reflect.Invalid {
-		d.cl.Add(CREATE, path, nil, exportInterface(b))
-		return nil
-	}
-
-	if b.Kind() == reflect.Invalid {
-		d.cl.Add(DELETE, path, exportInterface(a), nil)
-		return nil
-	}
-
-	if a.Kind() != b.Kind() {
-		return ErrTypeMismatch
-	}
-
-	if d.comparative(a, b) {
-		return d.diffSliceComparative(path, a, b)
-	}
-
-	return d.diffSliceGeneric(path, a, b)
-}
-
-func (d *Differ) diffSliceGeneric(path []string, a, b reflect.Value) error {
-	missing := NewComparativeList()
-
-	slice := sliceTracker{}
-	for i := 0; i < a.Len(); i++ {
-		ae := a.Index(i)
-
-		if (d.SliceOrdering && !hasAtSameIndex(b, ae, i)) || (!d.SliceOrdering && !slice.has(b, ae, d)) {
-			missing.addA(i, &ae)
-		}
-	}
-
-	slice = sliceTracker{}
-	for i := 0; i < b.Len(); i++ {
-		be := b.Index(i)
-
-		if (d.SliceOrdering && !hasAtSameIndex(a, be, i)) || (!d.SliceOrdering && !slice.has(a, be, d)) {
-			missing.addB(i, &be)
-		}
-	}
-
-	// fallback to comparing based on order in slice if item is missing
-	if len(missing.keys) == 0 {
-		return nil
-	}
-
-	return d.diffComparative(path, missing, exportInterface(a))
-}
-
-func (d *Differ) diffSliceComparative(path []string, a, b reflect.Value) error {
-	c := NewComparativeList()
-
-	for i := 0; i < a.Len(); i++ {
-		ae := a.Index(i)
-		ak := getFinalValue(ae)
-
-		id := identifier(d.TagName, ak)
-		if id != nil {
-			c.addA(id, &ae)
-		}
-	}
-
-	for i := 0; i < b.Len(); i++ {
-		be := b.Index(i)
-		bk := getFinalValue(be)
-
-		id := identifier(d.TagName, bk)
-		if id != nil {
-			c.addB(id, &be)
-		}
-	}
-
-	return d.diffComparative(path, c, exportInterface(a))
-}
-
-// keeps track of elements that have already been matched, to stop duplicate matches from occurring
-type sliceTracker []bool
-
-func (st *sliceTracker) has(s, v reflect.Value, d *Differ) bool {
-	if len(*st) != s.Len() {
-		(*st) = make([]bool, s.Len())
-	}
-
-	for i := 0; i < s.Len(); i++ {
-		// skip already matched elements
-		if (*st)[i] {
-			continue
-		}
-
-		x := s.Index(i)
-
-		var nd Differ
-		nd.Filter = d.Filter
-		nd.customValueDiffers = d.customValueDiffers
-
-		err := nd.diff([]string{}, x, v, nil)
-		if err != nil {
-			continue
-		}
-
-		if len(nd.cl) == 0 {
-			(*st)[i] = true
-			return true
-		}
-	}
-
-	return false
-}
-
-func getFinalValue(t reflect.Value) reflect.Value {
-	switch t.Kind() {
-	case reflect.Interface:
-		return getFinalValue(t.Elem())
-	case reflect.Ptr:
-		return getFinalValue(reflect.Indirect(t))
-	default:
-		return t
-	}
-}
-
-func hasAtSameIndex(s, v reflect.Value, atIndex int) bool {
-	// check the element in the slice at atIndex to see if it matches Value, if it is a valid index into the slice
-	if atIndex < s.Len() {
-		x := s.Index(atIndex)
-		return reflect.DeepEqual(exportInterface(x), exportInterface(v))
-	}
-
-	return false
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_string.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_string.go
deleted file mode 100644
index 74182e2..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_string.go
+++ /dev/null
@@ -1,34 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import "reflect"
-
-func (d *Differ) diffString(path []string, a, b reflect.Value, parent interface{}) error {
-	if a.Kind() == reflect.Invalid {
-		d.cl.Add(CREATE, path, nil, exportInterface(b))
-		return nil
-	}
-
-	if b.Kind() == reflect.Invalid {
-		d.cl.Add(DELETE, path, exportInterface(a), nil)
-		return nil
-	}
-
-	if a.Kind() != b.Kind() {
-		return ErrTypeMismatch
-	}
-
-	if a.String() != b.String() {
-		if a.CanInterface() {
-			// If a and/or b is of a type that is an alias for String, store that type in changelog
-			d.cl.Add(UPDATE, path, exportInterface(a), exportInterface(b), parent)
-		} else {
-			d.cl.Add(UPDATE, path, a.String(), b.String(), parent)
-		}
-	}
-
-	return nil
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_struct.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_struct.go
deleted file mode 100644
index fb14c57..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_struct.go
+++ /dev/null
@@ -1,123 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"reflect"
-	"time"
-)
-
-func (d *Differ) diffStruct(path []string, a, b reflect.Value, parent interface{}) error {
-	if AreType(a, b, reflect.TypeOf(time.Time{})) {
-		return d.diffTime(path, a, b)
-	}
-
-	if a.Kind() == reflect.Invalid {
-		if d.DisableStructValues {
-			d.cl.Add(CREATE, path, nil, exportInterface(b))
-			return nil
-		}
-		return d.structValues(CREATE, path, b)
-	}
-
-	if b.Kind() == reflect.Invalid {
-		if d.DisableStructValues {
-			d.cl.Add(DELETE, path, exportInterface(a), nil)
-			return nil
-		}
-		return d.structValues(DELETE, path, a)
-	}
-
-	for i := 0; i < a.NumField(); i++ {
-		field := a.Type().Field(i)
-		tname := tagName(d.TagName, field)
-
-		if tname == "-" || hasTagOption(d.TagName, field, "immutable") {
-			continue
-		}
-
-		if tname == "" {
-			tname = field.Name
-		}
-
-		af := a.Field(i)
-		bf := b.FieldByName(field.Name)
-
-		fpath := path
-		if !(d.FlattenEmbeddedStructs && field.Anonymous) {
-			fpath = copyAppend(fpath, tname)
-		}
-
-		if d.Filter != nil && !d.Filter(fpath, a.Type(), field) {
-			continue
-		}
-
-		// skip private fields
-		if !a.CanInterface() {
-			continue
-		}
-
-		err := d.diff(fpath, af, bf, exportInterface(a))
-		if err != nil {
-			return err
-		}
-	}
-
-	return nil
-}
-
-func (d *Differ) structValues(t string, path []string, a reflect.Value) error {
-	var nd Differ
-	nd.Filter = d.Filter
-	nd.customValueDiffers = d.customValueDiffers
-
-	if t != CREATE && t != DELETE {
-		return ErrInvalidChangeType
-	}
-
-	if a.Kind() == reflect.Ptr {
-		a = reflect.Indirect(a)
-	}
-
-	if a.Kind() != reflect.Struct {
-		return ErrTypeMismatch
-	}
-
-	x := reflect.New(a.Type()).Elem()
-
-	for i := 0; i < a.NumField(); i++ {
-
-		field := a.Type().Field(i)
-		tname := tagName(d.TagName, field)
-
-		if tname == "-" {
-			continue
-		}
-
-		if tname == "" {
-			tname = field.Name
-		}
-
-		af := a.Field(i)
-		xf := x.FieldByName(field.Name)
-
-		fpath := copyAppend(path, tname)
-
-		if nd.Filter != nil && !nd.Filter(fpath, a.Type(), field) {
-			continue
-		}
-
-		err := nd.diff(fpath, xf, af, exportInterface(a))
-		if err != nil {
-			return err
-		}
-	}
-
-	for i := 0; i < len(nd.cl); i++ {
-		(d.cl) = append(d.cl, swapChange(t, nd.cl[i]))
-	}
-
-	return nil
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_time.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_time.go
deleted file mode 100644
index 4275e4a..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_time.go
+++ /dev/null
@@ -1,36 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"reflect"
-	"time"
-)
-
-func (d *Differ) diffTime(path []string, a, b reflect.Value) error {
-	if a.Kind() == reflect.Invalid {
-		d.cl.Add(CREATE, path, nil, exportInterface(b))
-		return nil
-	}
-
-	if b.Kind() == reflect.Invalid {
-		d.cl.Add(DELETE, path, exportInterface(a), nil)
-		return nil
-	}
-
-	if a.Kind() != b.Kind() {
-		return ErrTypeMismatch
-	}
-
-	// Marshal and unmarshal time type will lose accuracy. Using unix nano to compare time type.
-	au := exportInterface(a).(time.Time).UnixNano()
-	bu := exportInterface(b).(time.Time).UnixNano()
-
-	if au != bu {
-		d.cl.Add(UPDATE, path, exportInterface(a), exportInterface(b))
-	}
-
-	return nil
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/diff_uint.go b/documentation/licenses/github.com/r3labs/diff/v3/diff_uint.go
deleted file mode 100644
index fbe133f..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/diff_uint.go
+++ /dev/null
@@ -1,35 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import (
-	"reflect"
-)
-
-func (d *Differ) diffUint(path []string, a, b reflect.Value, parent interface{}) error {
-	if a.Kind() == reflect.Invalid {
-		d.cl.Add(CREATE, path, nil, exportInterface(b))
-		return nil
-	}
-
-	if b.Kind() == reflect.Invalid {
-		d.cl.Add(DELETE, path, exportInterface(a), nil)
-		return nil
-	}
-
-	if a.Kind() != b.Kind() {
-		return ErrTypeMismatch
-	}
-
-	if a.Uint() != b.Uint() {
-		if a.CanInterface() {
-			d.cl.Add(UPDATE, path, exportInterface(a), exportInterface(b), parent)
-		} else {
-			d.cl.Add(UPDATE, path, a.Uint(), b.Uint(), parent)
-		}
-	}
-
-	return nil
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/error.go b/documentation/licenses/github.com/r3labs/diff/v3/error.go
deleted file mode 100644
index 153860c..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/error.go
+++ /dev/null
@@ -1,74 +0,0 @@
-package diff
-
-import (
-	"fmt"
-)
-
-var (
-	// ErrTypeMismatch Compared types do not match
-	ErrTypeMismatch = NewError("types do not match")
-	// ErrInvalidChangeType The specified change values are not unsupported
-	ErrInvalidChangeType = NewError("change type must be one of 'create' or 'delete'")
-)
-
-// our own version of an error, which can wrap others
-type DiffError struct {
-	count   int
-	message string
-	next    error
-}
-
-// Unwrap implement 1.13 unwrap feature for compatibility
-func (s *DiffError) Unwrap() error {
-	return s.next
-}
-
-// Error implements the error interface
-func (s DiffError) Error() string {
-	cause := ""
-	if s.next != nil {
-		cause = s.next.Error()
-	}
-	return fmt.Sprintf(" %s (cause count %d)\n%s", s.message, s.count, cause)
-}
-
-// AppendCause appends a new cause error to the chain
-func (s *DiffError) WithCause(err error) *DiffError {
-	if s != nil && err != nil {
-		s.count++
-		if s.next != nil {
-			if v, ok := err.(DiffError); ok {
-				s.next = v.WithCause(s.next)
-			} else if v, ok := err.(*DiffError); ok {
-				s.next = v.WithCause(s.next)
-			} else {
-				v = &DiffError{
-					message: "auto wrapped error",
-					next:    err,
-				}
-				s.next = v.WithCause(s.next)
-			}
-		} else {
-			s.next = err
-		}
-	}
-	return s
-}
-
-// NewErrorf just give me a plain error with formatting
-func NewErrorf(format string, messages ...interface{}) *DiffError {
-	return &DiffError{
-		message: fmt.Sprintf(format, messages...),
-	}
-}
-
-// NewError just give me a plain error
-func NewError(message string, causes ...error) *DiffError {
-	s := &DiffError{
-		message: message,
-	}
-	for _, cause := range causes {
-		s.WithCause(cause) // nolint: errcheck
-	}
-	return s
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/filter.go b/documentation/licenses/github.com/r3labs/diff/v3/filter.go
deleted file mode 100644
index 12e549a..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/filter.go
+++ /dev/null
@@ -1,22 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-package diff
-
-import "regexp"
-
-func pathmatch(filter, path []string) bool {
-	for i, f := range filter {
-		if len(path) < i+1 {
-			return false
-		}
-
-		matched, _ := regexp.MatchString(f, path[i])
-		if !matched {
-			return false
-		}
-	}
-
-	return true
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/options.go b/documentation/licenses/github.com/r3labs/diff/v3/options.go
deleted file mode 100644
index a05115e..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/options.go
+++ /dev/null
@@ -1,93 +0,0 @@
-package diff
-
-// ConvertTypes enables values that are convertible to the target type to be converted when patching
-func ConvertCompatibleTypes() func(d *Differ) error {
-	return func(d *Differ) error {
-		d.ConvertCompatibleTypes = true
-		return nil
-	}
-}
-
-// FlattenEmbeddedStructs determines whether fields of embedded structs should behave as if they are directly under the parent
-func FlattenEmbeddedStructs() func(d *Differ) error {
-	return func(d *Differ) error {
-		d.FlattenEmbeddedStructs = true
-		return nil
-	}
-}
-
-// SliceOrdering determines whether the ordering of items in a slice results in a change
-func SliceOrdering(enabled bool) func(d *Differ) error {
-	return func(d *Differ) error {
-		d.SliceOrdering = enabled
-		return nil
-	}
-}
-
-// TagName sets the tag name to use when getting field names and options
-func TagName(tag string) func(d *Differ) error {
-	return func(d *Differ) error {
-		d.TagName = tag
-		return nil
-	}
-}
-
-// DisableStructValues disables populating a separate change for each item in a struct,
-// where the struct is being compared to a nil value
-func DisableStructValues() func(d *Differ) error {
-	return func(d *Differ) error {
-		d.DisableStructValues = true
-		return nil
-	}
-}
-
-// CustomValueDiffers allows you to register custom differs for specific types
-func CustomValueDiffers(vd ...ValueDiffer) func(d *Differ) error {
-	return func(d *Differ) error {
-		d.customValueDiffers = append(d.customValueDiffers, vd...)
-		for k := range d.customValueDiffers {
-			d.customValueDiffers[k].InsertParentDiffer(d.diff)
-		}
-		return nil
-	}
-}
-
-// AllowTypeMismatch changed behaviour to report value as "updated" when its type has changed instead of error
-func AllowTypeMismatch(enabled bool) func(d *Differ) error {
-	return func(d *Differ) error {
-		d.AllowTypeMismatch = enabled
-		return nil
-	}
-}
-
-// StructMapKeySupport - Changelog paths do not provided structured object values for maps that contain complex
-// keys (such as other structs). You must enable this support via an option and it then uses msgpack to encode
-// path elements that are structs. If you don't have this on, and try to patch, your apply will fail for that
-// element.
-func StructMapKeySupport() func(d *Differ) error {
-	return func(d *Differ) error {
-		d.StructMapKeys = true
-		return nil
-	}
-}
-
-// DiscardComplexOrigin - by default, we are now keeping the complex struct associated with a create entry.
-// This allows us to fix the merge to new object issue of not having enough change log details when allocating
-// new objects. This however is a trade off of memory size and complexity vs correctness which is often only
-// necessary when embedding structs in slices and arrays. It memory constrained environments, it may be desirable
-// to turn this feature off however from a computational perspective, keeping the complex origin is actually quite
-// cheap so, make sure you're extremely clear on the pitfalls of turning this off prior to doing so.
-func DiscardComplexOrigin() func(d *Differ) error {
-	return func(d *Differ) error {
-		d.DiscardParent = true
-		return nil
-	}
-}
-
-// Filter allows you to determine which fields the differ descends into
-func Filter(f FilterFunc) func(d *Differ) error {
-	return func(d *Differ) error {
-		d.Filter = f
-		return nil
-	}
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/patch.go b/documentation/licenses/github.com/r3labs/diff/v3/patch.go
deleted file mode 100644
index 8294880..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/patch.go
+++ /dev/null
@@ -1,240 +0,0 @@
-package diff
-
-import (
-	"reflect"
-)
-
-/**
-	This is a method of applying a changelog to a value or struct. change logs
-    should be generated with Diff and never manually created. This DOES NOT
-    apply fuzzy logic as would be in the case of a text patch. It does however
-    have a few additional features added to our struct tags.
-
-	1) create. This tag on a struct field indicates that the patch should
-       create the value if it's not there. I.e. if it's nil. This works for
-       pointers, maps and slices.
-
-	2) omitunequal. Generally, you don't want to do this, the expectation is
-       that if an item isn't there, you want to add it. For example, if your
-       diff shows an array element at index 6 is a string 'hello' but your target
-       only has 3 elements, none of them matching... you want to add 'hello'
-       regardless of the index. (think in a distributed context, another process
-       may have deleted more than one entry and 'hello' may no longer be in that
-       indexed spot.
-
-       So given this scenario, the default behavior is to scan for the previous
-       value and replace it anyway, or simply append the new value. For maps the
-       default behavior is to simply add the key if it doesn't match.
-
-       However, if you don't like the default behavior, and add the omitunequal
-       tag to your struct, patch will *NOT* update an array or map with the key
-       or array value unless they key or index contains a 'match' to the
-       previous value. In which case it will skip over that change.
-
-    Patch is implemented as a best effort algorithm. That means you can receive
-    multiple nested errors and still successfully have a modified target. This
-    may even be acceptable depending on your use case. So keep in mind, just
-    because err != nil *DOESN'T* mean that the patch didn't accomplish your goal
-    in setting those changes that are actually available. For example, you may
-    diff two structs of the same type, then attempt to apply to an entirely
-    different struct that is similar in constitution (think interface here) and
-    you may in fact get all of the values populated you wished to anyway.
-*/
-
-// Not strictly necessary but might be nice in some cases
-//
-//go:generate stringer -type=PatchFlags
-type PatchFlags uint32
-
-const (
-	OptionCreate PatchFlags = 1 << iota
-	OptionNoCreate
-	OptionOmitUnequal
-	OptionImmutable
-	FlagInvalidTarget
-	FlagApplied
-	FlagFailed
-	FlagCreated
-	FlagIgnored
-	FlagDeleted
-	FlagUpdated
-	FlagParentSetApplied
-	FlagParentSetFailed
-)
-
-// PatchLogEntry defines how a DiffLog entry was applied
-type PatchLogEntry struct {
-	Path   []string    `json:"path"`
-	From   interface{} `json:"from"`
-	To     interface{} `json:"to"`
-	Flags  PatchFlags  `json:"flags"`
-	Errors error       `json:"errors"`
-}
-type PatchLog []PatchLogEntry
-
-// HasFlag - convenience function for users
-func (p PatchLogEntry) HasFlag(flag PatchFlags) bool {
-	return (p.Flags & flag) != 0
-}
-
-// Applied - returns true if all change log entries were actually
-//
-//	applied, regardless of if any errors were encountered
-func (p PatchLog) Applied() bool {
-	if p.HasErrors() {
-		for _, ple := range p {
-			if !ple.HasFlag(FlagApplied) {
-				return false
-			}
-		}
-	}
-	return true
-}
-
-// HasErrors - indicates if a patch log contains any errors
-func (p PatchLog) HasErrors() (ret bool) {
-	for _, ple := range p {
-		if ple.Errors != nil {
-			ret = true
-		}
-	}
-	return
-}
-
-// ErrorCount -- counts the number of errors encountered while patching
-func (p PatchLog) ErrorCount() (ret uint) {
-	for _, ple := range p {
-		if ple.Errors != nil {
-			ret++
-		}
-	}
-	return
-}
-
-func Merge(original interface{}, changed interface{}, target interface{}) (PatchLog, error) {
-	d, _ := NewDiffer()
-	return d.Merge(original, changed, target)
-}
-
-// Merge is a convenience function that diffs, the original and changed items
-// and merges said changes with target all in one call.
-func (d *Differ) Merge(original interface{}, changed interface{}, target interface{}) (PatchLog, error) {
-	StructMapKeySupport()(d) // nolint: errcheck
-	if cl, err := d.Diff(original, changed); err == nil {
-		return Patch(cl, target), nil
-	} else {
-		return nil, err
-	}
-}
-
-func Patch(cl Changelog, target interface{}) (ret PatchLog) {
-	d, _ := NewDiffer()
-	return d.Patch(cl, target)
-}
-
-// Patch... the missing feature.
-func (d *Differ) Patch(cl Changelog, target interface{}) (ret PatchLog) {
-	for _, c := range cl {
-		ret = append(ret, NewPatchLogEntry(NewChangeValue(d, c, target)))
-	}
-	return ret
-}
-
-// NewPatchLogEntry converts our complicated reflection based struct to
-// a simpler format for the consumer
-func NewPatchLogEntry(cv *ChangeValue) PatchLogEntry {
-	return PatchLogEntry{
-		Path:   cv.change.Path,
-		From:   cv.change.From,
-		To:     cv.change.To,
-		Flags:  cv.flags,
-		Errors: cv.err,
-	}
-}
-
-// NewChangeValue idiomatic constructor (also invokes render)
-func NewChangeValue(d *Differ, c Change, target interface{}) (ret *ChangeValue) {
-	val := reflect.ValueOf(target)
-	ret = &ChangeValue{
-		target: &val,
-		change: &c,
-	}
-	d.renderChangeTarget(ret)
-	return
-}
-
-// renderChangeValue applies 'path' in change to target. nil check is foregone
-//
-//	here as we control usage
-func (d *Differ) renderChangeTarget(c *ChangeValue) {
-	//This particular change element may potentially have the immutable flag
-	if c.HasFlag(OptionImmutable) {
-		c.AddError(NewError("Option immutable set, cannot apply change"))
-		return
-	} //the we always set a failure, and only unset if we successfully render the element
-	c.SetFlag(FlagInvalidTarget)
-
-	//substitute and solve for t (path)
-	switch c.target.Kind() {
-
-	//path element that is a map
-	case reflect.Map:
-		//map elements are 'copies' and immutable so if we set the new value to the
-		//map prior to editing the value, it will fail to stick. To fix this, we
-		//defer the safe until the stack unwinds
-		m, k, v := d.renderMap(c)
-		defer d.updateMapEntry(c, m, k, v)
-
-	//path element that is a slice
-	case reflect.Slice:
-		d.renderSlice(c)
-
-	//walking a path means dealing with real elements
-	case reflect.Interface, reflect.Ptr:
-		if c.target.IsNil() {
-			n := reflect.New(c.target.Type().Elem())
-			c.target.Set(n)
-			c.target = &n
-			d.renderChangeTarget(c)
-			return
-		}
-
-		el := c.target.Elem()
-		c.target = &el
-		c.ClearFlag(FlagInvalidTarget)
-
-	//path element that is a struct
-	case reflect.Struct:
-		d.patchStruct(c)
-	}
-
-	//if for some reason, rendering this element fails, c will no longer be valid
-	//we are best effort though, so we keep on trucking
-	if !c.IsValid() {
-		c.AddError(NewErrorf("Unable to access path position %d. Target field is invalid", c.pos))
-	}
-
-	//we've taken care of this path element, are there any more? if so, process
-	//else, let's take some action
-	if c.pos < len(c.change.Path) && !c.HasFlag(FlagInvalidTarget) {
-		d.renderChangeTarget(c)
-
-	} else { //we're at the end of the line... set the Value
-		switch c.change.Type {
-		case DELETE:
-			switch c.ParentKind() {
-			case reflect.Slice:
-				d.deleteSliceEntry(c)
-			case reflect.Struct:
-				d.deleteStructEntry(c)
-			default:
-				c.SetFlag(FlagIgnored)
-			}
-		case UPDATE, CREATE:
-			// this is generic because... we only deal in primitives here. AND
-			// the diff format To field already contains the correct type.
-			c.Set(reflect.ValueOf(c.change.To), d.ConvertCompatibleTypes)
-			c.SetFlag(FlagUpdated)
-		}
-	}
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/patch_map.go b/documentation/licenses/github.com/r3labs/diff/v3/patch_map.go
deleted file mode 100644
index 6c3f035..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/patch_map.go
+++ /dev/null
@@ -1,106 +0,0 @@
-package diff
-
-import (
-	"errors"
-	"reflect"
-
-	"github.com/vmihailenco/msgpack/v5"
-)
-
-// renderMap - handle map rendering for patch
-func (d *Differ) renderMap(c *ChangeValue) (m, k, v *reflect.Value) {
-	//we must tease out the type of the key, we use the msgpack from diff to recreate the key
-	kt := c.target.Type().Key()
-	field := reflect.New(kt)
-
-	if d.StructMapKeys {
-		if err := msgpack.Unmarshal([]byte(c.change.Path[c.pos]), field.Interface()); err != nil {
-			c.SetFlag(FlagIgnored)
-			c.AddError(NewError("Unable to unmarshal path element to target type for key in map", err))
-			return
-		}
-		c.key = field.Elem()
-	} else {
-		c.key = reflect.ValueOf(c.change.Path[c.pos])
-	}
-
-	if c.target.IsNil() && c.target.IsValid() {
-		c.target.Set(reflect.MakeMap(c.target.Type()))
-	}
-
-	// we need to check that MapIndex does not panic here
-	// when the key type is not a string
-	defer func() {
-		if err := recover(); err != nil {
-			switch x := err.(type) {
-			case error:
-				c.AddError(NewError("Unable to unmarshal path element to target type for key in map", x))
-			case string:
-				c.AddError(NewError("Unable to unmarshal path element to target type for key in map", errors.New(x)))
-			}
-			c.SetFlag(FlagIgnored)
-		}
-	}()
-
-	x := c.target.MapIndex(c.key)
-
-	if !x.IsValid() && c.change.Type != DELETE && !c.HasFlag(OptionNoCreate) {
-		x = c.NewElement()
-	}
-	if x.IsValid() { //Map elements come out as read only so we must convert
-		nv := reflect.New(x.Type()).Elem()
-		nv.Set(x)
-		x = nv
-	}
-
-	if x.IsValid() && !reflect.DeepEqual(c.change.From, x.Interface()) &&
-		c.HasFlag(OptionOmitUnequal) {
-		c.SetFlag(FlagIgnored)
-		c.AddError(NewError("target change doesn't match original"))
-		return
-	}
-	mp := *c.target //these may change out from underneath us as we recurse
-	key := c.key    //so we make copies and pass back pointers to them
-	c.swap(&x)
-
-	return &mp, &key, &x
-
-}
-
-// updateMapEntry - deletes are special, they are handled differently based on options
-//
-//	container type etc. We have to have special handling for each
-//	type. Set values are more generic even if they must be instanced
-func (d *Differ) updateMapEntry(c *ChangeValue, m, k, v *reflect.Value) {
-	if k == nil || m == nil {
-		return
-	}
-
-	switch c.change.Type {
-	case DELETE:
-		if c.HasFlag(FlagDeleted) {
-			return
-		}
-
-		if !m.CanSet() && v.IsValid() && v.Kind() == reflect.Struct {
-			for x := 0; x < v.NumField(); x++ {
-				if !v.Field(x).IsZero() {
-					m.SetMapIndex(*k, *v)
-					return
-				}
-			} //if all the fields are zero, remove from map
-		}
-
-		m.SetMapIndex(*k, reflect.Value{})
-		c.SetFlag(FlagDeleted)
-
-	case CREATE:
-		m.SetMapIndex(*k, *v)
-		c.SetFlag(FlagCreated)
-
-	case UPDATE:
-		m.SetMapIndex(*k, *v)
-		c.SetFlag(FlagUpdated)
-
-	}
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/patch_slice.go b/documentation/licenses/github.com/r3labs/diff/v3/patch_slice.go
deleted file mode 100644
index cb13aa2..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/patch_slice.go
+++ /dev/null
@@ -1,79 +0,0 @@
-package diff
-
-/**
-	Types are being split out to more closely follow the library structure already
-    in place. Keeps the file simpler as well.
-*/
-import (
-	"reflect"
-	"strconv"
-)
-
-// renderSlice - handle slice rendering for patch
-func (d *Differ) renderSlice(c *ChangeValue) {
-
-	var err error
-	field := c.change.Path[c.pos]
-
-	//field better be an index of the slice
-	if c.index, err = strconv.Atoi(field); err != nil {
-		//if struct element is has identifier, use it instead
-		if identifier(d.TagName, reflect.Zero(c.target.Type().Elem())) != nil {
-			for c.index = 0; c.index < c.Len(); c.index++ {
-				if identifier(d.TagName, c.Index(c.index)) == field {
-					break
-				}
-			}
-		} else {
-			c.AddError(NewErrorf("invalid index in path. %s is not a number", field).
-				WithCause(err))
-		}
-	}
-	var x reflect.Value
-	if c.Len() > c.index {
-		x = c.Index(c.index)
-	} else if c.change.Type == CREATE && !c.HasFlag(OptionNoCreate) {
-		x = c.NewArrayElement()
-	}
-	if !x.IsValid() {
-		if !c.HasFlag(OptionOmitUnequal) {
-			c.AddError(NewErrorf("Value index %d is invalid", c.index).
-				WithCause(NewError("scanning for Value index")))
-			for c.index = 0; c.index < c.Len(); c.index++ {
-				y := c.Index(c.index)
-				if reflect.DeepEqual(y, c.change.From) {
-					c.AddError(NewErrorf("Value changed index to %d", c.index))
-					x = y
-					break
-				}
-			}
-		}
-	}
-	if !x.IsValid() && c.change.Type != DELETE && !c.HasFlag(OptionNoCreate) {
-		x = c.NewArrayElement()
-	}
-	if !x.IsValid() && c.change.Type == DELETE {
-		c.index = -1 //no existing element to delete so don't bother
-	}
-	c.swap(&x) //containers must swap out the parent Value
-}
-
-// deleteSliceEntry - deletes are special, they are handled differently based on options
-//
-//	container type etc. We have to have special handling for each
-//	type. Set values are more generic even if they must be instanced
-func (d *Differ) deleteSliceEntry(c *ChangeValue) {
-	//for a slice with only one element
-	if c.ParentLen() == 1 && c.index != -1 {
-		c.ParentSet(reflect.MakeSlice(c.parent.Type(), 0, 0), d.ConvertCompatibleTypes)
-		c.SetFlag(FlagDeleted)
-		//for a slice with multiple elements
-	} else if c.index != -1 { //this is an array delete the element from the parent
-		c.ParentIndex(c.index).Set(c.ParentIndex(c.ParentLen() - 1))
-		c.ParentSet(c.parent.Slice(0, c.ParentLen()-1), d.ConvertCompatibleTypes)
-		c.SetFlag(FlagDeleted)
-		//for other slice elements, we ignore
-	} else {
-		c.SetFlag(FlagIgnored)
-	}
-}
diff --git a/documentation/licenses/github.com/r3labs/diff/v3/patch_struct.go b/documentation/licenses/github.com/r3labs/diff/v3/patch_struct.go
deleted file mode 100644
index aadc2a5..0000000
--- a/documentation/licenses/github.com/r3labs/diff/v3/patch_struct.go
+++ /dev/null
@@ -1,66 +0,0 @@
-package diff
-
-import "reflect"
-
-/**
-	Types are being split out to more closely follow the library structure already
-    in place. Keeps the file simpler as well.
-*/
-
-type structField struct {
-	f reflect.StructField
-	v reflect.Value
-}
-
-func getNestedFields(v reflect.Value, flattenEmbedded bool) []structField {
-	fields := make([]structField, 0)
-
-	for i := 0; i < v.NumField(); i++ {
-		f := v.Type().Field(i)
-		fv := v.Field(i)
-
-		if fv.Kind() == reflect.Struct && f.Anonymous && flattenEmbedded {
-			fields = append(fields, getNestedFields(fv, flattenEmbedded)...)
-		} else {
-			fields = append(fields, structField{f, fv})
-		}
-	}
-
-	return fields
-}
-
-// patchStruct - handles the rendering of a struct field
-func (d *Differ) patchStruct(c *ChangeValue) {
-
-	field := c.change.Path[c.pos]
-
-	structFields := getNestedFields(*c.target, d.FlattenEmbeddedStructs)
-	for _, structField := range structFields {
-		f := structField.f
-		tname := tagName(d.TagName, f)
-		if tname == "-" {
-			continue
-		}
-		if tname == field || f.Name == field {
-			x := structField.v
-			if hasTagOption(d.TagName, f, "nocreate") {
-				c.SetFlag(OptionNoCreate)
-			}
-			if hasTagOption(d.TagName, f, "omitunequal") {
-				c.SetFlag(OptionOmitUnequal)
-			}
-			if hasTagOption(d.TagName, f, "immutable") {
-				c.SetFlag(OptionImmutable)
-			}
-			c.swap(&x)
-			break
-		}
-	}
-}
-
-// track and zero out struct members
-func (d *Differ) deleteStructEntry(c *ChangeValue) {
-
-	//deleting a struct value set's it to the 'basic' type
-	c.Set(reflect.Zero(c.target.Type()), d.ConvertCompatibleTypes)
-}
diff --git a/documentation/licenses/github.com/vmihailenco/msgpack/v5/LICENSE b/documentation/licenses/github.com/vmihailenco/msgpack/v5/LICENSE
deleted file mode 100644
index b749d07..0000000
--- a/documentation/licenses/github.com/vmihailenco/msgpack/v5/LICENSE
+++ /dev/null
@@ -1,25 +0,0 @@
-Copyright (c) 2013 The github.com/vmihailenco/msgpack 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.
-
-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/documentation/licenses/github.com/vmihailenco/tagparser/v2/LICENSE b/documentation/licenses/github.com/vmihailenco/tagparser/v2/LICENSE
deleted file mode 100644
index 3fc93fd..0000000
--- a/documentation/licenses/github.com/vmihailenco/tagparser/v2/LICENSE
+++ /dev/null
@@ -1,25 +0,0 @@
-Copyright (c) 2019 The github.com/vmihailenco/tagparser 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.
-
-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/documentation/licenses/golang.org/x/exp/LICENSE b/documentation/licenses/golang.org/x/exp/LICENSE
deleted file mode 100644
index 2a7cf70..0000000
--- a/documentation/licenses/golang.org/x/exp/LICENSE
+++ /dev/null
@@ -1,27 +0,0 @@
-Copyright 2009 The Go Authors.
-
-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 LLC 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/documentation/licenses/golang.org/x/sys/unix/LICENSE b/documentation/licenses/golang.org/x/sys/unix/LICENSE
deleted file mode 100644
index 2a7cf70..0000000
--- a/documentation/licenses/golang.org/x/sys/unix/LICENSE
+++ /dev/null
@@ -1,27 +0,0 @@
-Copyright 2009 The Go Authors.
-
-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 LLC 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/documentation/licenses/gopkg.in/yaml.v3/LICENSE b/documentation/licenses/gopkg.in/yaml.v3/LICENSE
deleted file mode 100644
index 2683e4b..0000000
--- a/documentation/licenses/gopkg.in/yaml.v3/LICENSE
+++ /dev/null
@@ -1,50 +0,0 @@
-
-This project is covered by two different licenses: MIT and Apache.
-
-#### MIT License ####
-
-The following files were ported to Go from C files of libyaml, and thus
-are still covered by their original MIT license, with the additional
-copyright staring in 2011 when the project was ported over:
-
-    apic.go emitterc.go parserc.go readerc.go scannerc.go
-    writerc.go yamlh.go yamlprivateh.go
-
-Copyright (c) 2006-2010 Kirill Simonov
-Copyright (c) 2006-2011 Kirill Simonov
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
-of the Software, and to permit persons to whom the Software is furnished to do
-so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-### Apache License ###
-
-All the remaining project files are covered by the Apache license:
-
-Copyright (c) 2011-2019 Canonical Ltd
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
diff --git a/documentation/licenses/gopkg.in/yaml.v3/NOTICE b/documentation/licenses/gopkg.in/yaml.v3/NOTICE
deleted file mode 100644
index 866d74a..0000000
--- a/documentation/licenses/gopkg.in/yaml.v3/NOTICE
+++ /dev/null
@@ -1,13 +0,0 @@
-Copyright 2011-2016 Canonical Ltd.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
diff --git a/find.go b/find.go
index cbf1973..0495ecf 100644
--- a/find.go
+++ b/find.go
@@ -1,3 +1,6 @@
+// Copyright 2024 schukai GmbH
+// SPDX-License-Identifier: proprietary
+
 package pathfinder
 
 import (
diff --git a/find_test.go b/find_test.go
index e241df5..c36e548 100644
--- a/find_test.go
+++ b/find_test.go
@@ -1,3 +1,6 @@
+// Copyright 2024 schukai GmbH
+// SPDX-License-Identifier: proprietary
+
 package pathfinder
 
 import (
diff --git a/go.mod b/go.mod
index a4056b3..12b3fa9 100644
--- a/go.mod
+++ b/go.mod
@@ -2,12 +2,13 @@ module gitlab.schukai.com/oss/libraries/go/utilities/pathfinder
 
 go 1.21
 
+require (
+	github.com/google/gofuzz v1.2.0
+	github.com/stretchr/testify v1.8.0
+)
+
 require (
 	github.com/davecgh/go-spew v1.1.1 // indirect
-	github.com/google/gofuzz v1.2.0 // indirect
 	github.com/pmezard/go-difflib v1.0.0 // indirect
-	github.com/stretchr/testify v1.8.0 // indirect
-	github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
-	github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
 	gopkg.in/yaml.v3 v3.0.1 // indirect
 )
diff --git a/go.sum b/go.sum
index 1426d12..961b23e 100644
--- a/go.sum
+++ b/go.sum
@@ -10,10 +10,7 @@ github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSS
 github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
 github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
 github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
-github.com/vmihailenco/msgpack/v5 v5.4.1 h1:cQriyiUvjTwOHg8QZaPihLWeRAAVoCpE00IUPn0Bjt8=
-github.com/vmihailenco/msgpack/v5 v5.4.1/go.mod h1:GaZTsDaehaPpQVyxrf5mtQlH+pc21PIudVV/E3rRQok=
-github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g=
-github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds=
+gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
 gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
 gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
 gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
diff --git a/issue_14_test.go b/issue_14_test.go
index 52c0cd3..d38a79f 100644
--- a/issue_14_test.go
+++ b/issue_14_test.go
@@ -1,3 +1,6 @@
+// Copyright 2024 schukai GmbH
+// SPDX-License-Identifier: proprietary
+
 package pathfinder
 
 import (
diff --git a/issue_7_test.go b/issue_7_test.go
index 5033b28..c719137 100644
--- a/issue_7_test.go
+++ b/issue_7_test.go
@@ -1,3 +1,6 @@
+// Copyright 2024 schukai GmbH
+// SPDX-License-Identifier: proprietary
+
 package pathfinder
 
 import (
diff --git a/nix/config/release.nix b/nix/config/release.nix
index c34e1ee..d11535d 100644
--- a/nix/config/release.nix
+++ b/nix/config/release.nix
@@ -3,7 +3,7 @@
   # please don't edit it manually
 
   version = "0.9.2";
-  commit = "aad8d30c2fa9ebeab754b5f4bf4ee6b367b664b5";
+  commit = "01bcfc2580489dad5cac5bc5119f9d7260edd284";
   projectURL = "https://gitlab.schukai.com/oss/libraries/go/utilities/pathfinder";
   name = "Pathfinder";
   mnemonic = "pathfinder";
-- 
GitLab