You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@paimon.apache.org by lz...@apache.org on 2023/03/17 07:29:39 UTC

[incubator-paimon] branch master updated: [doc] Disable document build in incubator-paimon

This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 59f23756 [doc] Disable document build in incubator-paimon
59f23756 is described below

commit 59f2375602735cb0f96c30917c53a58692cef03f
Author: tsreaper <ts...@gmail.com>
AuthorDate: Fri Mar 17 15:29:34 2023 +0800

    [doc] Disable document build in incubator-paimon
    
    This closes #621
---
 .github/workflows/docs.sh                          |  53 -----
 .github/workflows/docs.yml                         |  70 -------
 docs/config.toml                                   |  24 +--
 docs/layouts/partials/docs/inject/menu-after.html  |   2 +-
 docs/layouts/partials/docs/inject/menu-before.html |   4 +-
 docs/layouts/shortcodes/all_versions.html          |   2 +-
 docs/static/favicon.png                            | Bin 1150 -> 1595 bytes
 docs/static/flink-header-logo.svg                  | 229 ---------------------
 docs/static/navbar-brand-logo.jpg                  | Bin 18470 -> 0 bytes
 9 files changed, 16 insertions(+), 368 deletions(-)

diff --git a/.github/workflows/docs.sh b/.github/workflows/docs.sh
deleted file mode 100755
index 2810b581..00000000
--- a/.github/workflows/docs.sh
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/usr/bin/env bash
-################################################################################
-#  Licensed to the Apache Software Foundation (ASF) under one
-#  or more contributor license agreements.  See the NOTICE file
-#  distributed with this work for additional information
-#  regarding copyright ownership.  The ASF licenses this file
-#  to you 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.
-################################################################################
-set -e
-
-mvn --version
-java -version
-javadoc -J-version
-
-# setup hugo
-HUGO_REPO=https://github.com/gohugoio/hugo/releases/download/v0.80.0/hugo_extended_0.80.0_Linux-64bit.tar.gz
-HUGO_ARTIFACT=hugo_extended_0.80.0_Linux-64bit.tar.gz
-if ! curl --fail -OL $HUGO_REPO ; then
-	echo "Failed to download Hugo binary"
-	exit 1
-fi
-tar -zxvf $HUGO_ARTIFACT
-git submodule update --init --recursive
-# generate docs into docs/target
-./hugo -v --source docs --destination target
-if [ $? -ne 0 ]; then
-	echo "Error building the docs"
-	exit 1
-fi
-
-# build Flink Table Store; required for Javadoc step
-mvn clean install -B -DskipTests
-
-# build java/scala docs
-mkdir -p docs/target/api
-mvn javadoc:aggregate -B \
-    -DadditionalJOption="-Xdoclint:none --allow-script-in-comments" \
-    -Dmaven.javadoc.failOnError=false \
-    -Dcheckstyle.skip=true \
-    -Dspotless.check.skip=true \
-    -Denforcer.skip=true \
-    -Dheader="<a href=\"http://flink.apache.org/\" target=\"_top\"><h1>Back to Flink Website</h1></a> <script>var _paq=window._paq=window._paq||[];_paq.push([\"disableCookies\"]),_paq.push([\"setDomains\",[\"*.flink.apache.org\",\"*.nightlies.apache.org/flink\"]]),_paq.push([\"trackPageView\"]),_paq.push([\"enableLinkTracking\"]),function(){var u=\"//matomo.privacy.apache.org/\";_paq.push([\"setTrackerUrl\",u+\"matomo.php\"]),_paq.push([\"setSiteId\",\"1\"]);var d=document, g=d.createEle [...]
-mv target/site/apidocs docs/target/api/java
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
deleted file mode 100644
index 7c2c658c..00000000
--- a/.github/workflows/docs.yml
+++ /dev/null
@@ -1,70 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You 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.
-
-name: "Build documentation"
-on:
-  workflow_dispatch:
-  schedule:
-    - cron: '0 0 * * *' # Deploy every day
-
-jobs:
-  build-documentation:
-    if: github.repository == 'apache/flink-table-store'
-    runs-on: ubuntu-latest
-    strategy:
-      max-parallel: 1
-      matrix:
-        branch:
-          - master
-          - release-0.3
-    steps:
-      - uses: actions/checkout@v3
-        with:
-          ref: ${{ matrix.branch }}
-      - name: Set branch environment variable
-        run: |
-          currentBranch=$(git branch --show-current)
-
-          echo "flink_table_store_branch=${currentBranch}" >> ${GITHUB_ENV}
-
-          if [ "${currentBranch}" = "master" ]; then
-            echo "flink_table_store_alias=release-0.4" >> ${GITHUB_ENV}
-          elif [ "${currentBranch}" = "release-0.3" ]; then
-            echo "flink_table_store_alias=stable" >> ${GITHUB_ENV}
-          fi
-      - name: Build documentation
-        run: |
-          docker run  --rm --volume "$PWD:/root/flink-table-store" chesnay/flink-ci:java_8_11 bash -c "cd /root/flink-table-store && ./.github/workflows/docs.sh"
-      - name: Upload documentation
-        uses: burnett01/rsync-deployments@5.2
-        with:
-          switches: --archive --compress
-          path: docs/target/
-          remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/flink/flink-table-store-docs-${{ env.flink_table_store_branch }}/
-          remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
-          remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}
-          remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }}
-          remote_key: ${{ secrets.NIGHTLIES_RSYNC_KEY }}
-      - name: Upload documentation alias
-        if: env.flink_table_store_alias != ''
-        uses: burnett01/rsync-deployments@5.2
-        with:
-          switches: --archive --compress
-          path: docs/target/
-          remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/flink/flink-table-store-docs-${{ env.flink_table_store_alias }}/
-          remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
-          remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}
-          remote_user: ${{ secrets.NIGHTLIES_RSYNC_USER }}
-          remote_key: ${{ secrets.NIGHTLIES_RSYNC_KEY }}
diff --git a/docs/config.toml b/docs/config.toml
index 98ea07bc..07f2652a 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -14,9 +14,9 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-baseURL = '//nightlies.apache.org/flink/flink-table-store-docs-master'
+baseURL = '//paimon.apache.org/docs/master'
 languageCode = 'en-us'
-title = 'Apache Flink Table Store'
+title = 'Apache Paimon'
 enableGitInfo = false
 theme = "book"
 pygmentsUseClasses = true
@@ -30,7 +30,7 @@ pygmentsUseClasses = true
   ShowOutDatedWarning = false
 
   # This is the version referenced in the docs. Please only use these variables
-  # to reference a specific Flink version, because this is the only place where
+  # to reference a specific Paimon version, because this is the only place where
   # we change the version for the complete docs when forking of a release branch
   # etc.
   # The full version string as referenced in Maven (e.g. 1.2.1)
@@ -40,29 +40,29 @@ pygmentsUseClasses = true
   # release this should be the same as the regular version
   VersionTitle = "0.4-SNAPSHOT"
 
-  # The branch for this version of Apache Flink Table Store
+  # The branch for this version of Apache Paimon
   Branch = "master"
 
-  # The github repository for Apache Flink Table Store
-  Repo = "//github.com/apache/flink-table-store"
+  # The github repository for Apache Paimon
+  Repo = "//github.com/apache/incubator-paimon"
 
-  GithubRepo = "https://github.com/apache/flink-table-store.git"
+  GithubRepo = "https://github.com/apache/incubator-paimon.git"
 
   # This suffix is appended to the Scala-dependent Maven artifact names
   ScalaVersion = "_2.12"
 
-  ProjectHomepage = "//flink.apache.org"
+  ProjectHomepage = "//paimon.apache.org"
 
   # External links at the bottom
   # of the menu
   MenuLinks = [
-    ["Project Homepage", "//flink.apache.org"],
-    ["JavaDocs", "//nightlies.apache.org/flink/flink-table-store-docs-master/api/java/"],
+    ["Project Homepage", "//paimon.apache.org"],
+    ["JavaDocs", "//paimon.apache.org/docs/master/api/java/"],
   ]
 
   PreviousDocs = [
-    ["0.3", "https://nightlies.apache.org/flink/flink-table-store-docs-release-0.3"],
-    ["0.2", "https://nightlies.apache.org/flink/flink-table-store-docs-release-0.2"],
+    ["latest", "https://paimon.apache.org/docs/latest"],
+    ["0.3", "https://paimon.apache.org/docs/0.3"],
   ]
 
 [markup]
diff --git a/docs/layouts/partials/docs/inject/menu-after.html b/docs/layouts/partials/docs/inject/menu-after.html
index 844b1553..5b0bc99f 100644
--- a/docs/layouts/partials/docs/inject/menu-after.html
+++ b/docs/layouts/partials/docs/inject/menu-after.html
@@ -41,7 +41,7 @@ under the License.
     {{ range $docs := first 2 .Site.Params.PreviousDocs }}
       <li>
         <a href="{{ index $docs 1 }}">
-          v{{ index $docs 0}}
+          {{ index $docs 0}}
         </a>
       </li>
     {{ end }}
diff --git a/docs/layouts/partials/docs/inject/menu-before.html b/docs/layouts/partials/docs/inject/menu-before.html
index 95e0f8f8..40e1a3be 100644
--- a/docs/layouts/partials/docs/inject/menu-before.html
+++ b/docs/layouts/partials/docs/inject/menu-before.html
@@ -20,6 +20,6 @@ under the License.
     Partial that renders at the top of the menu.
 -->
 <a id="logo" href="{{.Site.BaseURL}}{{.Site.LanguagePrefix}}">
-    <img width="70%" src="{{.Site.BaseURL}}/navbar-brand-logo.jpg">
+    <h3>Apache Paimon</h3>
 </a>
-<p style="text-align:right">v{{ $.Site.Params.Version }}</p>
\ No newline at end of file
+<p style="text-align:right">{{ $.Site.Params.Version }}</p>
\ No newline at end of file
diff --git a/docs/layouts/shortcodes/all_versions.html b/docs/layouts/shortcodes/all_versions.html
index 64021f1f..ae49594c 100644
--- a/docs/layouts/shortcodes/all_versions.html
+++ b/docs/layouts/shortcodes/all_versions.html
@@ -23,7 +23,7 @@ under the License.
     {{ range $docs := .Site.Params.PreviousDocs }}
         <li>
             <a href="{{ index $docs 1 }}">
-                v{{ index $docs 0}}
+                {{ index $docs 0}}
             </a>
         </li>
     {{ end }}
diff --git a/docs/static/favicon.png b/docs/static/favicon.png
index 34a467a3..b6b6c2c6 100644
Binary files a/docs/static/favicon.png and b/docs/static/favicon.png differ
diff --git a/docs/static/flink-header-logo.svg b/docs/static/flink-header-logo.svg
deleted file mode 100644
index 3e9ac603..00000000
--- a/docs/static/flink-header-logo.svg
+++ /dev/null
@@ -1,229 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you 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.
--->
-<svg viewBox="36 127 427 220" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
-  <defs>
-    <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="44097.3398" y1="69.6689" x2="44125.8086" y2="-63.1794" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.6584" style="stop-color:#BF73F2"/>
-      <stop offset="0.6649" style="stop-color:#C370E6"/>
-      <stop offset="0.6852" style="stop-color:#CC68C7"/>
-      <stop offset="0.7081" style="stop-color:#D461AB"/>
-      <stop offset="0.7341" style="stop-color:#DB5B95"/>
-      <stop offset="0.7643" style="stop-color:#E05784"/>
-      <stop offset="0.8017" style="stop-color:#E35479"/>
-      <stop offset="0.8543" style="stop-color:#E55272"/>
-      <stop offset="1" style="stop-color:#E65270"/>
-    </linearGradient>
-    <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="44081.2695" y1="71.4424" x2="44111.5938" y2="-70.0665" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.6584" style="stop-color:#BF73F2"/>
-      <stop offset="0.6649" style="stop-color:#C370E6"/>
-      <stop offset="0.6852" style="stop-color:#CC68C7"/>
-      <stop offset="0.7081" style="stop-color:#D461AB"/>
-      <stop offset="0.7341" style="stop-color:#DB5B95"/>
-      <stop offset="0.7643" style="stop-color:#E05784"/>
-      <stop offset="0.8017" style="stop-color:#E35479"/>
-      <stop offset="0.8543" style="stop-color:#E55272"/>
-      <stop offset="1" style="stop-color:#E65270"/>
-    </linearGradient>
-    <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="44076.2969" y1="62.4639" x2="44078.1016" y2="-21.4837" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#FAA7B5"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.7317" style="stop-color:#BF73F2"/>
-    </linearGradient>
-    <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="44098.6875" y1="53.8359" x2="44078.4219" y2="18.9243" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#F6E8A0"/>
-      <stop offset="1" style="stop-color:#E65271"/>
-    </linearGradient>
-    <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="44095.125" y1="32.8574" x2="44077.6484" y2="2.7515" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#F6E8A0"/>
-      <stop offset="1" style="stop-color:#E65271"/>
-    </linearGradient>
-    <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="44056.0742" y1="55.1064" x2="44058.0898" y2="19.9353" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#F6E8A0"/>
-      <stop offset="1" style="stop-color:#E65271"/>
-    </linearGradient>
-    <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="44057.9609" y1="19.9785" x2="44069.5781" y2="71.4492" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#E65271"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-    </linearGradient>
-    <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="44098.2734" y1="45.7383" x2="44055.2656" y2="9.103" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#F6E8A0"/>
-      <stop offset="1" style="stop-color:#E65271"/>
-    </linearGradient>
-    <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="44059.4766" y1="20.1328" x2="44101.2734" y2="8.766" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#FAA7B5"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.7317" style="stop-color:#BF73F2"/>
-    </linearGradient>
-    <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="43948.2227" y1="68.9863" x2="44144.5391" y2="-36.272" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#FAA7B5"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.7317" style="stop-color:#BF73F2"/>
-    </linearGradient>
-    <radialGradient id="SVGID_30_" cx="87651.25" cy="11560.2988" r="14.877" gradientTransform="matrix(-0.4579 0.1387 0.2675 0.883 37062.1875 -22360.3281)" gradientUnits="userSpaceOnUse">
-      <stop offset="0.0091" style="stop-color:#FFFFFF"/>
-      <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
-    </radialGradient>
-    <radialGradient id="SVGID_31_" cx="78312.1094" cy="34685.1992" r="23.2557" gradientTransform="matrix(-0.4785 0 0 0.4785 37453.6211 -16583.9492)" gradientUnits="userSpaceOnUse">
-      <stop offset="0.0091" style="stop-color:#FFFFFF"/>
-      <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
-    </radialGradient>
-    <radialGradient id="SVGID_32_" cx="78312.125" cy="34685.1953" r="23.246" gradientTransform="matrix(-0.4785 0 0 0.4785 37453.6211 -16583.9492)" gradientUnits="userSpaceOnUse">
-      <stop offset="0.0091" style="stop-color:#FFFFFF"/>
-      <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
-    </radialGradient>
-    <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="44028.9219" y1="-21.6885" x2="44039.9336" y2="-46.5121" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0.0041" style="stop-color:#FAA7B5"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-    </linearGradient>
-    <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="44102.2578" y1="49.9863" x2="44111.2852" y2="-18.6183" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#FAA7B5"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.7317" style="stop-color:#BF73F2"/>
-    </linearGradient>
-    <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="44109.793" y1="50.9766" x2="44118.8203" y2="-17.6278" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#FAA7B5"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.7317" style="stop-color:#BF73F2"/>
-    </linearGradient>
-    <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="44123.0508" y1="21.7207" x2="44118.9961" y2="-26.0176" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#FAA7B5"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.7317" style="stop-color:#BF73F2"/>
-    </linearGradient>
-    <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="44050.8477" y1="61.9199" x2="44052.6523" y2="-22.035" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#FAA7B5"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.7317" style="stop-color:#BF73F2"/>
-    </linearGradient>
-    <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="44033.8477" y1="-2.3027" x2="44038.3164" y2="-9.6765" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#FAA7B5"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-      <stop offset="0.7317" style="stop-color:#BF73F2"/>
-    </linearGradient>
-    <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="44048.457" y1="34.6895" x2="44048.457" y2="34.6895" gradientTransform="matrix(-1 0 0 1 44076.3555 0)">
-      <stop offset="0" style="stop-color:#E65271"/>
-      <stop offset="0.3836" style="stop-color:#FAA100"/>
-    </linearGradient>
-  </defs>
-  <symbol id="New_Symbol_3" viewBox="-50.452 -50.955 100.904 101.91">
-    <path fill="#E65270" d="M14.113-50.012c-1.353,0.017-2.704,0.021-4.056,0.021l-3.489-0.003c0,0-9.98,0.004-14.75,0.004&#10;&#9;&#9;c-0.749,0-1.5-0.003-2.25-0.005C-11.183-49.997-11.933-50-12.684-50c-0.47,0-0.938,0.001-1.407,0.004&#10;&#9;&#9;c-2.838,0.017-5.551,0.358-8.063,1.016c-10.002,2.617-17.576,8.551-22.512,17.634c-2.366,4.354-3.711,9.225-3.995,14.473&#10;&#9;&#9;c-0.126,2.334-0.007,4.726,0.355,7.108c0.043,0.284,0.095,0.568,0.147,0.854l0.115,0.65l0.195-0.192&#10;&#9;&#9;c0.103-0.102 [...]
-    <path opacity="0.2" fill="#430A1D" enable-background="new    " d="M34.73-20.451c0,0-3.735-4.456-10.078-1.903&#10;&#9;&#9;c-5.81,2.341-3.692,8.784-3.692,8.784s1.03-3.996,4.036-5.51C29.348-21.273,34.73-20.451,34.73-20.451z"/>
-    <path opacity="0.2" fill="#430A1D" enable-background="new    " d="M16.327-22.359c0.809-0.822,0.824-1.663,1.078-2.688&#10;&#9;&#9;c0.479-1.928,1.068-3.602,2.296-5.188c1.181-1.524,2.594-2.602,4.419-3.303c1.581-0.606,3.614-0.427,3.311-2.781l-0.53-1.982&#10;&#9;&#9;c-4.04,0-7.825,1.844-9.367,5.854c-1.352,3.518,0.241,7.769-3.857,13.717C14.005-19.132,15.908-21.931,16.327-22.359z"/>
-    <g opacity="0.2">
-      <path fill="#2B2B2B" d="M14.727-20.611c0.062-0.25,0.118-0.504,0.175-0.757C14.751-21.183,14.673-20.947,14.727-20.611z"/>
-    </g>
-    <path fill="url(#SVGID_20_)" d="M-32.349-35.983c-15.241,1.506-17.035,16.677-17.035,16.677s-0.828,7.032,1.104,13.93&#10;&#9;&#9;c1.241-12.55,11.309-21.239,11.309-21.239S-34.759-33.766-32.349-35.983z"/>
-    <path opacity="0.2" fill="#2B2B2B" enable-background="new    " d="M-36.15-30.205c0,0-3.196-0.304-7.461,4.873&#10;&#9;&#9;c4.112-7.461,9.441-7.613,9.441-7.613L-36.15-30.205z"/>
-    <path fill="url(#SVGID_21_)" d="M-27.912-38.917c-0.799,14.03,7.438,7.52,11.69,14.96c1.195,6.51,4.782,10.628,4.782,10.628&#10;&#9;&#9;s-25.506,4.782-25.907-13.817c0.888-4.027,4.792-7.921,7.236-10.028c-0.478,1.078-6.567,17.833,13.711,16.467&#10;&#9;&#9;c-6.999,0.596-17.105-6.716-12.288-17.67C-28.205-38.729-27.912-38.917-27.912-38.917z"/>
-    <path opacity="0.2" fill="#FFFFFF" enable-background="new    " d="M-21.017-18.684c-5.272-1.982-14.225-1.973-11.677-15.426&#10;&#9;&#9;c-0.408-0.306-2.446,2.854-1.937,2.547C-36.975-19.535-26.447-20.23-21.017-18.684z"/>
-    <path opacity="0.6" fill="#8B4FBA" enable-background="new    " d="M-14.341-13.865c5.127,2.028,0.964-3.722,0.236-4.642&#10;&#9;&#9;c-1.683-2.128-5.941-1.436-8.21-2.146c-1.305-0.408-6.536-1.175-8.269-6.128c-0.77-2.194-1.06-5.781,0.581-10.146&#10;&#9;&#9;c-0.407-0.308-3.104,2.646-2.594,2.342C-36.925-15.255-16.511-22.193-14.341-13.865z"/>
-    <path fill="#F9E0E7" d="M36.631-5.972c0.139,0.384,0.378,0.875,0.679,1.165c0.07-0.033,0.145-0.037,0.202-0.073&#10;&#9;&#9;c0.5,0.324,1.29,0.281,1.918,0.281c0.376,0,0.924,0.104,1.287-0.037c0.528-0.205,0.468-0.761,0.689-1.182&#10;&#9;&#9;c0.414-0.786,1.69-0.796,1.695-1.907c0.004-0.523,0.135-1.232,0.001-1.744c-0.1-0.38-0.525-0.264-0.891-0.264&#10;&#9;&#9;c-1.109,0-2.215-0.031-3.326-0.031l-1.536,1.145c-0.41-0.131-0.731,0.729-0.787,1.021C36.47-7.116,36.458-6.449,36.631-5.972z"/>
-    <path fill="#FFFFFF" d="M41.756-7.494c0.188,0.077,0.465,0.378,0.581,0.555c0.084,0.127,0.06,0.208,0.24,0.203&#10;&#9;&#9;c0.469-0.013,0.473-0.646,0.449-0.973c-0.028-0.418-0.197-0.802-0.258-1.213c-0.152,0.038-0.236,0.229-0.407,0.277&#10;&#9;&#9;c-0.136,0.04-0.331,0.021-0.473,0.015c-0.208-0.009-0.496-0.149-0.684-0.069L41.756-7.494z"/>
-    <path fill="url(#SVGID_22_)" d="M-18.99,13.068c0.07,0.081,0.088,0.105,0.11,0.128c2.035,1.9,3.114,4.298,3.694,6.979&#10;&#9;&#9;c0.381,1.755-0.105,3.303-0.895,4.816c-0.014,0.025-0.039,0.05-0.066,0.084c-0.158-0.494-0.302-0.979-0.47-1.456&#10;&#9;&#9;c-0.413-1.176-0.913-2.314-1.707-3.288c-0.317-0.388-13.613-7.753-12.244-24.064c0.009-0.101,0.026-0.197,0.04-0.31&#10;&#9;&#9;c0.246,0.229,0.461,0.466,0.708,0.661c0.885,0.692,1.907,1.133,2.973,1.431c1.951,0.544,3.915,1.044,5.881,1.525&#10;&#9 [...]
-    <path opacity="0.2" fill="#8B4FBA" enable-background="new    " d="M27.897,34.689c-1.554-12.138-6.941-9.391-10.465-16.167&#10;&#9;&#9;c-0.193,0.256-0.637-1.816,0.251,2.031c0.889,3.851,3.436,2.112,5.847,6.516C26.583,32.636,25.973,33.135,27.897,34.689z"/>
-    <path opacity="0.3" fill="#FFFFFF" enable-background="new    " d="M11.804,34.461c-0.578-3.474-5.49-3.317-9.693-1.843&#10;&#9;&#9;c-4.568,1.602-14.057,2.116-14.821,0.205c-0.381-0.438-1.146,1.363-1.146,1.363s7.207,7.863,19.272-0.436&#10;&#9;&#9;c-0.491,0.764,4.336,3,4.336,3S11.204,37.191,11.804,34.461z"/>
-    <path opacity="0.2" fill="#8B4FBA" enable-background="new    " d="M-13.195,1.104c0.262-0.65,2.396-0.212,2.596,0.803&#10;&#9;&#9;c-3.148,3.566,5.14,10.119-2.504,18.672C-8.1,7.384-18.75,6.847-13.195,1.104z"/>
-    <path opacity="0.6" fill="#8B4FBA" enable-background="new    " d="M-13.195,1.104c0.262-0.65,0.215-0.464,0.415,0.551&#10;&#9;&#9;c-3.148,3.567,5.237,8.768-0.323,18.924C-8.1,7.384-18.75,6.847-13.195,1.104z"/>
-    <path fill="url(#SVGID_23_)" d="M-1.723,3.708c15.128,15.919-3.997,13.253-10.23,24.058c0.011,0.186,0.024,0.366,0.024,0.557&#10;&#9;&#9;c0,1.502-0.364,2.916-0.998,4.17c5.834-8.653,20.624-1.023,17.751-18.712C4.565,12.871,2.507,3.907-1.723,3.708z"/>
-    <path fill="url(#SVGID_24_)" d="M-1.723,3.708c-6.229-3.057-11.674-3.146-11.416-2.239c12.375,8.397,2.385,17.05,0.056,25.201&#10;&#9;&#9;c0.159,0.658,1.154,0.903,1.154,1.65c0,0.08-0.009,0.156-0.011,0.235c0.18-0.809,0.606-1.09,1.014-1.5&#10;&#9;&#9;C-5.174,21.253,13.11,19.314-1.723,3.708z"/>
-    <path fill="#E65271" d="M-3.674,3.945c9.58,14.308-8.304,17.026-8.174,21.562c-1.425-9.33,15.717-13.324-0.389-24.491&#10;&#9;&#9;C-12.495,0.11-9.903,0.888-3.674,3.945z"/>
-    <path fill="url(#SVGID_25_)" d="M23.094,28.8c0.761-1.271-0.084-2.771-0.97-4.176c-0.818-1.298-2.793-0.873-4.133-4.002&#10;&#9;&#9;l0.115,2.438c1.485,2.587-1.027,6.148-1.726,8.555c-1.19,4.1-2.484,7.883-0.907,12.043c0.107,0.279,0.198,0.585,0.306,0.872&#10;&#9;&#9;c0.786-0.581,1.38-1.16,2.057-2.043c0.447-0.586,0.291,1.512,0.879,1.071c0.432-0.319-0.021-1.803,0.391-2.146&#10;&#9;&#9;c0.462-0.39,0.74,1.868,1.075,1.368c0.781-1.174,1.229-0.429,1.562-0.781c0.301-0.319,1.005-2.778,1.289-3.111&# [...]
-    <path fill="#E65271" d="M1.8,47.49c0.046-0.017,0.086-0.024,0.11-0.023c0.419,0.007-1.129,1.954-0.684,1.954&#10;&#9;&#9;c0.751,0,1.812-0.776,2.547-0.833c1.552-0.119,3.161-0.084,4.536-0.713c1.318-0.604,1.904-2.479,2.199-2.558&#10;&#9;&#9;c0.297-0.082-0.717,2.167-0.426,2.067c0.493-0.166,0.887-0.41,1.212-0.68c1.3-1.861,1.722-11.084-0.185-10.846&#10;&#9;&#9;c-2.004,0.25,3.161-0.708,3.182-0.631c1.727,6.521-2.121,10.531-1.947,10.305c0.227-0.3,0.411-0.533,0.606-0.608&#10;&#9;&#9;c0.411-0.158- [...]
-    <path fill="url(#SVGID_26_)" d="M8.803,48.526c2.232,0.007,3.633-1.062,5.48-2.084c1.531-0.851,3.412-0.859,4.705-2.031&#10;&#9;&#9;c1.717-1.559,2.46-3.104,2.783-5.386c0.369-2.598,0.413-5.91-0.078-8.499c-0.252-1.328-1.196-4.05-2.191-5.021l-1.194,0.76&#10;&#9;&#9;c-2.355,6.081-9.453,8.576-12.139,14.553c-0.792,1.759-1.09,4.045-1.109,5.967C5.039,48.797,7.177,48.521,8.803,48.526z"/>
-    <path fill="#F6E8A0" d="M-13.406,33.33c-1.298,2.017-3.353,3.5-5.767,4.039c-0.614,0.137-1.714,0.519-0.625,1.83&#10;&#9;&#9;c1.165,1.818,2.839,2.516,3.74,3.184c3.623,2.69,2.125,2.965,4.239,3.209c0.826,0.096,0.608,0.168,1.027,0&#10;&#9;&#9;s-0.322,0.118-0.587,0.293c-2.358,1.561-2.188-1.553-1.174-0.88c3.018,2.334,9.97,3.972,11.919,3.638&#10;&#9;&#9;c0.284-0.048,2.243-1.18,2.543-1.175c0.419,0.007-1.129,1.954-0.684,1.954c0.751,0,1.812-0.776,2.547-0.833&#10;&#9;&#9;c1.521-0.117,6.146-2.238, [...]
-    <path fill="#FFFFFF" d="M7.03,38.365c-0.791,0.988-5.933,2.769-5.933,2.769s-8.54,2.943-16.415-5.438&#10;&#9;&#9;c4.025,3.195,11.098,1.855,16.213,1.265c0.676-0.079-1.461,0.603-0.901,0.81c1.9,0.703,3.659-1.267,5.553-0.887&#10;&#9;&#9;C6.43,37.061,6.961,37.54,7.03,38.365z"/>
-    <path fill="#F6E8A0" d="M0.48,39.748c-3.136,0.826-6.271-0.383-6.875-0.42c0.284,0.427,0.747,1.412,3.07,1.752&#10;&#9;&#9;c0.534,0.079,1.604-0.007,2.165-0.006c1.004,0.002,1.627-0.24,2.513-0.667c0.565-0.272,1.931-0.562,2.365-0.494&#10;&#9;&#9;c0,0,4.806-0.362,3.214-1.992c-1.59-1.629-3.912,2.101-9.006,0.908C-2.073,38.995-0.909,39.826,0.48,39.748z"/>
-    <g>
-      <path fill="#F8D285" d="M-4.274,46.507c-1.982,1.312-5.447,0.187-5.897,0.193c-0.01,0.046,0.017,0.097,0.098,0.148&#10;&#9;&#9;&#9;c3.019,2.334,7.492,2.126,9.441,1.792c0.015-0.002,0.036-0.009,0.058-0.017c0.009-0.003,0.023-0.008,0.035-0.013&#10;&#9;&#9;&#9;c0.422-0.162,1.801-0.939,2.303-1.11c2.938-1.665,7.58-5.181,7.989-10.751c-1.669,0.742-2.869,1.465-3.791,2.169&#10;&#9;&#9;&#9;c-0.31,0.237-7.332,7.576-25.917-1.242c0,0-0.517,0.284-0.222,0.948c4.197,6.744,11.86,8.681,24.063,2.294&#10;& [...]
-    </g>
-    <path fill="url(#SVGID_27_)" d="M7.606,8.604c6.884,7.039,9.689,12.298,6.357,17.961C8.567,35.743-8.051,26.17-15.278,35.43&#10;&#9;&#9;c0.766-0.875,2.394-2.608,3.969-3.46c5.357-3.5,15.44-2.374,18.653-5.08C11.477,23.41,12.533,16.393,7.606,8.604z"/>
-    <path fill="url(#SVGID_28_)" d="M-14.819,23.316c-0.008-0.472,1.072-3.195,0.903-3.822c-1.45-5.353-7.734-7.979-7.734-7.979&#10;&#9;&#9;s-7.037-2.832-8.155-15.776c-1.284-0.924-1.106,1.043-1.066,1.917C-30.072,14.632-15.949,12.734-14.819,23.316z"/>
-    <path fill="url(#SVGID_29_)" d="M9.123-4.735C9.007-4.682,8.896-4.612,8.775-4.577c-0.617,0.172-1.238,0.33-1.856,0.506&#10;&#9;&#9;C6.724-4.016,6.538-3.927,6.347-3.854C6.348-3.812,6.35-3.771,6.351-3.73c0.222,0.04,0.441,0.11,0.663,0.113&#10;&#9;&#9;c0.887,0.01,1.775-0.002,2.663-0.004c1.253-0.003,2.512,0.003,3.721,0.369c0.59,0.18,1.165,0.45,1.706,0.751&#10;&#9;&#9;c5.713,3.18,9.75,7.834,12.179,13.895c0.497,1.239,0.878,2.52,1.172,3.82c0.018,0.072,0.026,0.147,0.048,0.272&#10;&#9;&#9;c-0.09 [...]
-    <path opacity="0.2" fill="#FFFFFF" enable-background="new    " d="M-29.061-11.728c8.124,9.705,29.202,4.618,38.184,6.992&#10;&#9;&#9;C3.436-8.003-1.19-7.438-1.19-7.438S-20.599-5.295-29.061-11.728z"/>
-    <path fill="#E65271" d="M33.056,25.101c-0.275-0.047-0.478-0.06-0.664-0.12c-0.732-0.229-1.495-0.399-2.181-0.729&#10;&#9;&#9;c-0.653-0.315-1.258-0.762-1.824-1.222c-1.097-0.892-2.144-1.841-3.226-2.744c-0.886-0.739-1.827-1.4-2.947-1.743&#10;&#9;&#9;c-0.361-0.11-0.736-0.173-1.114-0.235c1.46,0.735,2.277,2.045,3.124,3.389c-0.072-0.013-0.098-0.01-0.117-0.019&#10;&#9;&#9;c-2.226-1.089-4.407-2.252-6.388-3.759c-0.529-0.403-0.946-0.861-1.244-1.486c-0.476-0.994-1.079-1.929-1.627-2.887&#10;&#9;&#9 [...]
-    <path opacity="0.6" fill="#8B4FBA" enable-background="new    " d="M-12.963,0.399c0.789,0.265,1.688,0.593,2.647,0.961&#10;&#9;&#9;C0.99,4.886,4.726,7.825,4.726,7.825l11.357,8.408c0,0,1.856-1.421,4.258,0.437c-1.637-1.965-6.66-3.494-6.66-3.494&#10;&#9;&#9;s-0.232-1.546-1.87-2.747c4.47,1.519,11.979,1.084,17.189,5.775c-3.94-11.144-13.725-2.649-23.182-9.58&#10;&#9;&#9;C4.726,5.969-9.698,2.282-2.53,2.535C4.637,2.787,9.36-2.104,15.347-0.501C9.727-2.539,4.761,0.727-3.067,1.276&#10;&#9;&#9;c1. [...]
-    <path opacity="0.2" fill="#2B2B2B" enable-background="new    " d="M14.155-3.038c-8.237-3.272-37.35,6.206-50.421-8.498&#10;&#9;&#9;c0,0-0.979,0.438,4.226,6.273C-11.572,4.521,3.661-4.731,14.155-3.038z"/>
-    <path opacity="0.7" fill="url(#SVGID_30_)" enable-background="new    " d="M26.891,9.996c2.437,1.371,0.457-1.98-1.979-3.959&#10;&#9;&#9;c-9.594-6.7-13.933,0.924-23.448-2.745C16.023,11.317,17.449,1.316,26.891,9.996z"/>
-    <path opacity="0.2" fill="#8B4FBA" enable-background="new    " d="M26.146,8.094c2.438,1.371,1.202-0.078-1.234-2.058&#10;&#9;&#9;c-9.594-6.7-13.933,0.924-23.448-2.745C10.831,8.503,16.705-0.585,26.146,8.094z"/>
-    <g>
-      <path opacity="0.7" fill="url(#SVGID_31_)" enable-background="new    " d="M-21.22,11.687&#10;&#9;&#9;&#9;c-4.438-4.062-0.958-12.957-0.958-12.957l-3.159-0.677C-25.337-1.947-28.525,6.652-21.22,11.687z"/>
-      <path opacity="0.7" fill="url(#SVGID_32_)" enable-background="new    " d="M-13.56,18.501c3.345-5.953-5.526-14.142-0.762-17.041&#10;&#9;&#9;&#9;c-0.076-0.391-2.724-1.719-2.6-1.335c-5.879,9.021,3.817,11.172,2.544,16.812c-6.799-9.275-6.872-11.111-3.569-16.983&#10;&#9;&#9;&#9;c-0.041-0.032-0.404-0.506-0.765-0.236C-23.877,3.591-25.331,7.942-13.56,18.501z"/>
-    </g>
-    <path opacity="0.2" fill="#8B4FBA" enable-background="new    " d="M-2.629,6.403c0.212-2.788,2.159,1.741,2.454,4.867&#10;&#9;&#9;c0.254,11.698-11.607,8.869-12.149,18.333C-13.478,18.837-0.643,19.073-2.629,6.403z"/>
-    <path opacity="0.3" fill="#FFFFFF" enable-background="new    " d="M8.871,11.043c0.21-2.788,5.808,4.388,6.104,7.513&#10;&#9;&#9;C13.097,38.627-7.561,26.42-12.962,33.814C-8.501,25.715,20.374,36.984,8.871,11.043z"/>
-    <path fill="url(#SVGID_33_)" d="M46.669-28.038c-0.303-0.266-0.552-0.508-0.826-0.718c-0.22-0.167-0.461-0.315-0.709-0.438&#10;&#9;&#9;c-0.604-0.292-1.212-0.33-1.823-0.006c-0.951,0.504-1.971,0.542-3.012,0.428c-0.303-0.032-0.501-0.176-0.64-0.459&#10;&#9;&#9;c-1.043-2.146-2.781-3.524-4.958-4.396c-0.249-0.1-0.366-0.216-0.41-0.487c-0.111-0.683-0.157-1.355,0.005-2.036&#10;&#9;&#9;c0.263-1.089,0.941-1.87,1.853-2.471c0.956-0.63,2.021-1.001,3.122-1.277c1.323-0.327,2.662-0.548,4.029-0.544&#10;&# [...]
-    <g>
-      <path opacity="0.3" fill="#F6E8A0" enable-background="new    " d="M42.355-28.207c0.113-0.685,1.399-0.871,1.996-0.851&#10;&#9;&#9;&#9;c1.051,0.035,1.731,0.648,2.414,1.444c0.11,0.13,0.196,0.258,0.271,0.389c1.19-0.949,1.855-2.234,1.672-3.545&#10;&#9;&#9;&#9;c-0.324-2.31-3.169-3.817-6.352-3.37c-2.201,0.31-3.988,1.475-4.772,2.928c0.582,0.744,0.81,1.689,1.577,2.333&#10;&#9;&#9;&#9;C39.908-28.255,41.384-28.165,42.355-28.207z"/>
-    </g>
-    <path fill="url(#SVGID_34_)" d="M-35.045-6.486c0.689-0.34,1.169-0.414,1.596-0.26c-0.491,2.5-0.748,5.021-0.661,7.558&#10;&#9;&#9;c0.098,2.808,0.584,5.542,1.816,8.102c0.156,0.325,0.337,0.64,0.549,0.94c-0.013-0.05-0.021-0.101-0.04-0.147&#10;&#9;&#9;c-0.663-1.665-0.969-3.403-1.07-5.187c-0.157-2.78,0.17-5.516,0.771-8.225c0.014-0.066,0.034-0.13,0.061-0.226&#10;&#9;&#9;c0.393,0.264,0.776,0.516,1.149,0.781c0.045,0.033,0.046,0.154,0.036,0.231c-0.191,1.645-0.177,3.289,0,4.934&#10;&#9;&#9;c0.25 [...]
-    <path opacity="0.2" fill="#2B2B2B" enable-background="new    " d="M-26.935,17.654c0,0-4.446-0.625-6.321-3.683&#10;&#9;&#9;c-1.876-3.056-2.415-8.312-2.415-8.312s-0.96-7.839,2.222-12.404C-35.465,9.995-26.935,17.654-26.935,17.654z"/>
-    <path fill="url(#SVGID_35_)" d="M-35.045-6.486c-0.016-0.003-0.031-0.005-0.047-0.007c-0.917,0.358-1.634,0.975-2.219,1.75&#10;&#9;&#9;c-0.853,1.13-1.302,2.437-1.578,3.804C-39.3,1.099-39.335,3.159-39.16,5.22c0.1,1.177,0.273,2.35,0.415,3.521&#10;&#9;&#9;c0.005,0.042,0.006,0.083,0.01,0.168c-0.072-0.062-0.123-0.097-0.164-0.14C-42.3,5.244-44.856,1.185-46.53-3.422&#10;&#9;&#9;c-0.044-0.12-0.03-0.282,0.008-0.408c0.999-3.194,2.445-6.183,4.216-9.013c0.748-1.194,1.573-2.34,2.364-3.507&#10;&#9;&# [...]
-    <path opacity="0.2" fill="#2B2B2B" enable-background="new    " d="M-38.485-10.406c0,0-5,9.785-2.66,18.188&#10;&#9;&#9;c0.291,0.23-0.469-0.363-1.374-1.404c-0.138-0.158-1.815-11.254,1.588-16.146c-4.574,5.426-2.408,15.121-2.601,14.838&#10;&#9;&#9;c-0.409-0.604-0.776-1.271-1.018-1.968c-2.339-10.956,5.745-17.55,5.745-17.55L-38.485-10.406z"/>
-    <path fill="#E65270" d="M38.031-45.635c-0.207-0.314-0.446-0.63-0.636-0.978c-0.175-0.316-0.21-0.676-0.094-1.032&#10;&#9;&#9;c0.143-0.44,0.438-0.609,0.895-0.545c0.367,0.056,0.735,0.112,1.104,0.124c0.392,0.013,0.42-0.04,0.464-0.421&#10;&#9;&#9;c0.011-0.101,0.024-0.205,0.061-0.297c0.148-0.377,0.367-0.702,0.805-0.76c0.425-0.056,0.724,0.182,0.954,0.509&#10;&#9;&#9;c0.685,0.97,0.117,2.281-1.073,2.439c-0.369,0.049-0.754-0.011-1.132-0.021c-0.073-0.003-0.145-0.016-0.218-0.022&#10;&#9;&#9;c-0.0 [...]
-    <path fill="url(#SVGID_36_)" d="M-48.025-0.646c-0.087-8.721,2.718-16.289,8.558-22.715c-0.082,0.592-0.191,1.184-0.241,1.775&#10;&#9;&#9;c-0.083,1.009-0.136,2.021-0.185,3.035c-0.01,0.206-0.062,0.369-0.178,0.534c-2.187,3.155-4.193,6.419-5.793,9.918&#10;&#9;&#9;c-0.812,1.775-1.506,3.598-1.878,5.522C-47.863-1.955-47.928-1.324-48.025-0.646z"/>
-    <path fill="url(#SVGID_37_)" d="M23.298,28.031c1.046,1.809,2.125,3.55,2.508,5.601c0.064,0.343,0.044,0.708,0.023,1.062&#10;&#9;&#9;c-0.114,1.978,0.091,3.909,0.732,5.793c0.057,0.167,0.126,0.343,0.122,0.513c-0.003,0.141-0.076,0.304-0.17,0.415&#10;&#9;&#9;c-0.12,0.141-0.283,0.091-0.437,0.003c-0.493-0.279-0.851-0.689-1.138-1.166c-0.584-0.959-0.895-2.021-1.112-3.106&#10;&#9;&#9;c-0.595-2.975-0.685-5.983-0.568-9.007C23.259,28.123,23.269,28.109,23.298,28.031z"/>
-    <path opacity="0.4" fill="#8B4FBA" enable-background="new    " d="M23.914,39.555c0.19,0.404,0.972,1.288,1.286,1.543l0.707,0.451&#10;&#9;&#9;c-0.71-1.812-0.965-3.656-0.965-5.586c0-1.626,0.501-3.136,0.58-4.754c0.064-1.333-0.517-2.003-1.209-3.088&#10;&#9;&#9;c-0.312-0.488-0.738-1.545-1.416-1.549c-0.314,0.771-0.263,1.737-0.271,2.562c-0.009,0.987-0.167,1.95-0.128,2.947&#10;&#9;&#9;C22.572,33.963,23.588,38.861,23.914,39.555z"/>
-    <path fill="#E65270" d="M48.256-38.39c-0.03-0.024-0.04-0.028-0.043-0.034c-0.769-1.581-2.136-2.271-3.788-2.41&#10;&#9;&#9;c-2.729-0.232-5.347,0.279-7.831,1.421c-1.047,0.482-1.943,1.182-2.447,2.258c-0.218,0.465-0.324,0.983-0.487,1.494&#10;&#9;&#9;c-0.542,0.003-1.187-0.533-1.23-1.111c-0.014-0.188,0.065-0.398,0.15-0.574c0.343-0.709,0.894-1.246,1.495-1.732&#10;&#9;&#9;c1.545-1.247,3.314-2.034,5.232-2.498c2.519-0.61,5.038-0.628,7.53,0.127c0.59,0.179,1.149,0.479,1.697,0.771&#10;&#9;&#9;c0.4 [...]
-    <path opacity="0.4" fill="#2B2B2B" enable-background="new    " d="M48.256-38.39c-0.03-0.024-0.04-0.028-0.043-0.034&#10;&#9;&#9;c-0.769-1.581-2.136-2.271-3.788-2.41c-2.729-0.232-5.347,0.279-7.831,1.421c-1.047,0.482-1.943,1.182-2.447,2.258&#10;&#9;&#9;c-0.218,0.465-0.324,0.983-0.487,1.494c-0.542,0.003-1.187-0.533-1.23-1.111c-0.014-0.188,0.065-0.398,0.15-0.574&#10;&#9;&#9;c0.343-0.709,0.894-1.246,1.495-1.732c1.545-1.247,3.314-2.034,5.232-2.498c2.519-0.61,5.038-0.628,7.53,0.127&#10;&#9;& [...]
-    <g>
-      <path fill="#0D0D0D" d="M20.855-13.299c-0.019-0.977,0.185-1.896,0.606-2.768c0.852-1.751,2.257-2.896,4.017-3.647&#10;&#9;&#9;&#9;c1.535-0.656,3.146-0.879,4.806-0.793c0.021,0.001,0.042,0.01,0.113,0.032c-1.161,0.179-2.242,0.468-3.286,0.885&#10;&#9;&#9;&#9;c-1.81,0.723-3.406,1.751-4.645,3.284c-0.665,0.82-1.166,1.733-1.508,2.735C20.928-13.479,20.89-13.389,20.855-13.299z"/>
-      <path fill="#0D0D0D" d="M34.411,0.682c1.787,1.091,2.173,3.654,1.028,5.119C35.708,3.971,35.338,2.271,34.411,0.682z"/>
-      <path fill="#0D0D0D" d="M37.358-9.376c0.874-0.716,1.925-0.914,3.022-0.895c0.438,0.011,0.874,0.083,1.312,0.104&#10;&#9;&#9;&#9;c0.237,0.011,0.485-0.004,0.718-0.055c0.442-0.101,0.639-0.033,0.79,0.391c0.342,0.967,0.503,1.969,0.388,2.99&#10;&#9;&#9;&#9;C43.532-6.351,43.43-5.849,43.236-5.4c-0.763,1.783-3.073,2.516-4.784,1.542c-0.22-0.125-0.428-0.271-0.625-0.433&#10;&#9;&#9;&#9;c-0.208-0.169-0.396-0.365-0.612-0.567c0.096-0.111,0.176-0.218,0.266-0.311c0.207-0.212,0.285-0.463,0.222-0.745&# [...]
-    </g>
-    <path fill="url(#SVGID_38_)" d="M38.491-6.119c0-0.941,0.763-1.704,1.702-1.704c0.942,0,1.705,0.763,1.705,1.704&#10;&#9;&#9;s-0.763,1.704-1.705,1.704C39.254-4.415,38.491-5.178,38.491-6.119z"/>
-    <use width="6" height="7" x="-3" y="-3.5" transform="matrix(-0.2012 0 0 0.2012 39.0508 -5.1309)" overflow="visible" xlink:href="#New_Symbol_2"/>
-    <path fill="#FFFFFF" d="M46.108-34.83c0.302-0.188,0.773-0.108,0.948,0.224c0.726,1.382,0.66,2.992-0.051,4.366&#10;&#9;&#9;c-0.408,0.788-1.63,0.152-1.223-0.633c0.485-0.939,0.584-2.093,0.101-3.014C45.71-34.217,45.772-34.623,46.108-34.83z"/>
-    <g>
-      <path opacity="0.2" fill="#430A1D" enable-background="new    " d="M-27.877-38.809c-0.43,12.319,7.165,8.312,10.544,13.513&#10;&#9;&#9;&#9;c0.276,0.324,0.437,0.688,0.563,0.97C-20.563-26.414-31.194-25.019-27.877-38.809z"/>
-    </g>
-    <g>
-      <path opacity="0.2" fill="#2B2B2B" enable-background="new    " d="M-33.661-14.793c10.431,8.98,31.025,8,32.532,7.873&#10;&#9;&#9;&#9;c-8.638-6.161-34.552-0.369-35.502-19.122C-38.314-20.716-36.147-16.934-33.661-14.793z"/>
-    </g>
-    <path opacity="0.2" fill="#430A1D" enable-background="new    " d="M-16.988-24.815c0,0-0.001-2.722,0-4.645&#10;&#9;&#9;c0.001-1.922-2.416-0.874-3.348,1.765C-18.007-26.782-16.988-24.815-16.988-24.815z"/>
-    <path opacity="0.2" fill="#430A1D" enable-background="new    " d="M-18.28-25.728c1.747,3.083-0.048,5.75-0.327,5.864&#10;&#9;&#9;c0.993,0.052,2.9,1.914,3.354,2.534c0.71,0.971,0.753,2.381,0.813,3.534c1.409,0.063,2.4,0.926,3.682,1.232&#10;&#9;&#9;c-1.09-1.021-2.569-2.229-3.231-3.605c-0.589-1.222-1.087-2.629-1.483-3.929c-0.323-1.065-0.624-2.123-0.824-3.222&#10;&#9;&#9;c-0.148-0.818-0.631-1.919-0.543-2.716c0,0-0.18-7.171,1.258-10.712c-2.722,0.927-4.151,3.149-4.647,4.009&#10;&#9;&#9;c-0.56 [...]
-    <path fill="#0D0D0D" d="M-43.785-35.043c5.482-7.553,12.814-12.407,21.927-14.516c3.036-0.703,6.123-0.896,9.237-0.884&#10;&#9;&#9;c7.618,0.033,15.235,0.014,22.852,0.015c5.124,0.002,10.248,0,15.371,0.013c1.219,0.002,2.435,0.083,3.601,0.489&#10;&#9;&#9;c1.144,0.396,2.027,1.097,2.518,2.232c0.705,1.639,0.103,3.701-1.417,4.812c-1.116,0.814-2.396,1.051-3.745,0.991&#10;&#9;&#9;c-0.362-0.018-0.724-0.074-1.085-0.111c-0.083-0.009-0.172-0.028-0.251-0.01c-0.116,0.025-0.226,0.083-0.338,0.125&#10;&# [...]
-    <path fill="#E65270" d="M32.721,0.608c-0.839,1.789-0.849,2.545,0.079,4.238c0.7,1.278,2.56,0.141,2.308,1.568&#10;&#9;&#9;c-0.106,1.24-1.405,2.602-1.646,2.898c-0.296,0.351-0.461,0.696-0.898,0.607c-0.4-0.082-0.779-0.275-1.101-0.514&#10;&#9;&#9;c-1.137-0.845-2.191-1.787-3.045-2.928c-1.543-2.059-0.907-3.308,0.9-4.95C30.083,0.835,32.811,0.417,32.721,0.608z"/>
-    <path opacity="0.2" fill="#2B2B2B" enable-background="new    " d="M31.048,7.399c0.445,0.486,1.138,0.956,1.861,1.438&#10;&#9;&#9;c0.384,0.254-0.759-2.867-1.092-3.7c-1.092-2.729,0.339-4.42-0.055-4.211c-0.866,0.46-2.103,2.067-2.189,3.06&#10;&#9;&#9;C29.477,5.061,30.312,6.594,31.048,7.399z"/>
-    <g>
-      <path fill="#0D0D0D" d="M32.375,0.775c-0.84,1.788-0.849,2.544,0.08,4.237c0.699,1.277,1.023,2.564,0.771,3.993&#10;&#9;&#9;&#9;c-0.028,0.159-0.059,0.321-0.111,0.475c-0.149,0.429-0.412,0.639-0.849,0.549c-0.4-0.082-0.83-0.217-1.15-0.455&#10;&#9;&#9;&#9;c-1.137-0.845-2.191-1.787-3.045-2.928c-1.184-1.579-1.054-2.657-0.157-3.854c0.257-0.342,0.415-0.332,0.746-0.394&#10;&#9;&#9;&#9;c0.428-0.081,0.515,0.515,0.379,0.756c-0.313,0.554-0.519,1.111-0.558,1.549c-0.095,1.076,0.507,2.244,1.243,3.049 [...]
-    </g>
-    <path fill="url(#SVGID_39_)" d="M27.897,34.689"/>
-    <g opacity="0.2">
-      <path fill="#8B4FBA" d="M-18.607-19.863c-0.115-0.006-0.221,0.006-0.308,0.053C-18.806-19.804-18.703-19.824-18.607-19.863z"/>
-    </g>
-    <path opacity="0.2" fill="#430A1D" enable-background="new    " d="M33.088-34.854c0.981,1.49,2.084,1.994,3.33,3.167&#10;&#9;&#9;c1.185,1.113,2.095,2.456,3.275,3.549c0.924-0.193,1.963-0.037,2.911-0.085c0.678-1.674,3.97-0.081,4.271,0.999l0.437-0.655&#10;&#9;&#9;c0.949-1.869-2.455-1.994-4.393-1.8c-1.36,0.135-7.23-1.408-7.037-8.979c-0.661-1.015-2.218-0.024-2.22-1.347&#10;&#9;&#9;c-0.001-1.354,0.021-3.742,1.191-4.604c-0.335-1.181-1.498,0.068-1.819,0.541c-0.718,1.059-1.744,2.934-1.977,4.189 [...]
-  </symbol>
-  <symbol id="New_Symbol_2" viewBox="-3 -3.5 6 7">
-    <path fill="#FFFFFF" d="M0-3.5c-0.184,0-0.368,0.051-0.53,0.152l-2,1.25C-2.822-1.915-3-1.595-3-1.25v2.5&#10;&#9;&#9;c0,0.345,0.178,0.666,0.47,0.848l2,1.25C-0.368,3.449-0.184,3.5,0,3.5s0.368-0.051,0.53-0.152l2-1.25C2.822,1.916,3,1.595,3,1.25&#10;&#9;&#9;v-2.5c0-0.345-0.178-0.665-0.47-0.848l-2-1.25C0.368-3.449,0.184-3.5,0-3.5z"/>
-    <polygon display="none" fill="none" points="-3,3 3,3 3,-3 -3,-3 &#9;"/>
-  </symbol>
-  <g transform="matrix(0.609758, 0, 0, 0.573533, -690.608643, 73.553665)">
-    <use width="100.904" height="101.91" x="-50.452" y="-50.955" transform="matrix(3.5035 0 0 -3.5035 1370.3418 277.1992)" overflow="visible" xlink:href="#New_Symbol_3"/>
-    <g>
-      <path d="M1566.941,352.545h67.404v16.225h-48.82v28.613h46.019v15.635h-46.019v43.954h-18.584V352.545L1566.941,352.545z"/>
-      <path d="M1650.865,345.465h17.699v111.507h-17.699V345.465z"/>
-      <path d="M1687.885,362.132c0-2.851,1.057-5.333,3.172-7.448c2.113-2.112,4.793-3.172,8.039-3.172c3.244,0,5.975,1.012,8.188,3.024&#10;&#9;&#9;&#9;c2.213,2.017,3.318,4.549,3.318,7.596c0,3.05-1.105,5.582-3.318,7.597c-2.213,2.017-4.94,3.023-8.188,3.023&#10;&#9;&#9;&#9;s-5.926-1.056-8.039-3.172C1688.941,367.467,1687.885,364.985,1687.885,362.132z M1690.393,386.174h17.699v70.798h-17.699V386.174&#10;&#9;&#9;&#9;z"/>
-      <path d="M1729.625,386.174h16.814v11.356h0.295c1.57-3.539,4.301-6.659,8.186-9.365c3.885-2.704,8.48-4.057,13.791-4.057&#10;&#9;&#9;&#9;c4.621,0,8.578,0.812,11.873,2.434c3.294,1.623,5.997,3.762,8.113,6.416c2.113,2.655,3.662,5.704,4.646,9.145&#10;&#9;&#9;&#9;c0.98,3.443,1.477,6.983,1.477,10.62v44.249h-17.7v-39.232c0-2.065-0.146-4.229-0.44-6.49c-0.295-2.261-0.938-4.301-1.918-6.121&#10;&#9;&#9;&#9;c-0.983-1.818-2.336-3.318-4.058-4.499c-1.722-1.18-4.007-1.77-6.856-1.77c-2.854,0-5.312,0.5 [...]
-      <path d="M1815.76,345.465h17.699v70.503h0.443l26.844-29.794h22.714l-30.679,32.007l32.597,38.791h-23.452l-28.021-36.284h-0.443&#10;&#9;&#9;&#9;v36.284h-17.697V345.465H1815.76z"/>
-    </g>
-  </g>
-</svg>
diff --git a/docs/static/navbar-brand-logo.jpg b/docs/static/navbar-brand-logo.jpg
deleted file mode 100644
index 5993ee8f..00000000
Binary files a/docs/static/navbar-brand-logo.jpg and /dev/null differ