diff --git a/.gitignore b/.gitignore index ad46b30..d9ce0bd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,61 +1 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# TypeScript v1 declaration files -typings/ - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variables file -.env - -# next.js build output -.next +docstuff \ No newline at end of file diff --git a/.mak b/.mak new file mode 100644 index 0000000..e69de29 diff --git a/.nojekyll b/.nojekyll deleted file mode 100644 index 8b13789..0000000 --- a/.nojekyll +++ /dev/null @@ -1 +0,0 @@ - diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ee4493f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "python.pythonPath": "${workspaceFolder}\\docstuff\\Scripts\\python.exe", + "restructuredtext.confPath": "${workspaceFolder}\\source" +} \ No newline at end of file diff --git a/Generalfeatures_files/colorschememapping.xml b/Generalfeatures_files/colorschememapping.xml deleted file mode 100644 index 6a0069c..0000000 --- a/Generalfeatures_files/colorschememapping.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/Generalfeatures_files/filelist.xml b/Generalfeatures_files/filelist.xml deleted file mode 100644 index 744c5cd..0000000 --- a/Generalfeatures_files/filelist.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Generalfeatures_files/image001.png b/Generalfeatures_files/image001.png deleted file mode 100644 index 5c93c21..0000000 Binary files a/Generalfeatures_files/image001.png and /dev/null differ diff --git a/Generalfeatures_files/image002.jpg b/Generalfeatures_files/image002.jpg deleted file mode 100644 index 6450d15..0000000 Binary files a/Generalfeatures_files/image002.jpg and /dev/null differ diff --git a/Generalfeatures_files/image003.png b/Generalfeatures_files/image003.png deleted file mode 100644 index 555659c..0000000 Binary files a/Generalfeatures_files/image003.png and /dev/null differ diff --git a/Generalfeatures_files/image004.jpg b/Generalfeatures_files/image004.jpg deleted file mode 100644 index 1ddc48e..0000000 Binary files a/Generalfeatures_files/image004.jpg and /dev/null differ diff --git a/Generalfeatures_files/themedata.thmx b/Generalfeatures_files/themedata.thmx deleted file mode 100644 index 3d2a437..0000000 Binary files a/Generalfeatures_files/themedata.thmx and /dev/null differ diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 13243fc..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2019 Visual BI Solutions - -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/Makefile b/Makefile new file mode 100644 index 0000000..c2e94c5 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +SPHINXPROJ = DocumentationManagementforSAPLumira +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) \ No newline at end of file diff --git a/README.md b/README.md index 7b5039e..4ae26c3 100644 --- a/README.md +++ b/README.md @@ -1,37 +1,45 @@ -## Welcome to GitHub Pages +# Documenting VBI View -You can use the [editor on GitHub](https://github.com/visualbis/visualbis.github.io/edit/master/README.md) to maintain and preview the content for your website in Markdown files. +Requires python 3.5.x -Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files. +## To install dependencies -### Markdown + virtualenv docstuff -Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for + docstuff\Scripts\activate -```markdown -Syntax highlighted code block + pip install -r requirements.txt --upgrade -# Header 1 -## Header 2 -### Header 3 +## To start documenting a project -- Bulleted -- List + docstuff\Scripts\activate -1. Numbered -2. List + sphinx-quickstart -**Bold** and _Italic_ and `Code` text +## To generate html -[Link](url) and ![Image](src) -``` + docstuff\Scripts\activate -For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/). + make html -### Jekyll Themes +## To change theme -Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/visualbis/visualbis.github.io/settings). The name of this theme is saved in the Jekyll `_config.yml` configuration file. +Open source\conf.py and in the line -### Support or Contact + html_theme = '' + +For example: html_theme = 'sphinx-rtd-theme' + +## Reference + +https://github.com/ralsina/rst-cheatsheet/blob/master/rst-cheatsheet.rst + + + +Links: +code . + +Set the link code above the figure, heading,..... items as .. _forgot-password: + +If you forgot password, see :ref:`forgot-password` -Having trouble with Pages? Check out our [documentation](https://help.github.com/categories/github-pages-basics/) or [contact support](https://github.com/contact) and we’ll help you sort it out. diff --git a/_config.yml b/_config.yml deleted file mode 100644 index 150f687..0000000 --- a/_config.yml +++ /dev/null @@ -1,2 +0,0 @@ -theme: jekyll-theme-minimal -relative_permalinks: true diff --git a/_images/cnode1.png b/_images/cnode1.png deleted file mode 100644 index f42c3da..0000000 Binary files a/_images/cnode1.png and /dev/null differ diff --git a/_images/cnode2.png b/_images/cnode2.png deleted file mode 100644 index 96f636a..0000000 Binary files a/_images/cnode2.png and /dev/null differ diff --git a/_images/con1.png b/_images/con1.png deleted file mode 100644 index 2cc0a44..0000000 Binary files a/_images/con1.png and /dev/null differ diff --git a/_static/cnode1.png b/_static/cnode1.png deleted file mode 100644 index f42c3da..0000000 Binary files a/_static/cnode1.png and /dev/null differ diff --git a/_static/cnode2.png b/_static/cnode2.png deleted file mode 100644 index 96f636a..0000000 Binary files a/_static/cnode2.png and /dev/null differ diff --git a/_static/con1.png b/_static/con1.png deleted file mode 100644 index 2cc0a44..0000000 Binary files a/_static/con1.png and /dev/null differ diff --git a/build/doctrees/AnalyzeCategory.doctree b/build/doctrees/AnalyzeCategory.doctree new file mode 100644 index 0000000..788dffe Binary files /dev/null and b/build/doctrees/AnalyzeCategory.doctree differ diff --git a/build/doctrees/Copyright.doctree b/build/doctrees/Copyright.doctree new file mode 100644 index 0000000..2216286 Binary files /dev/null and b/build/doctrees/Copyright.doctree differ diff --git a/build/doctrees/Definitions.doctree b/build/doctrees/Definitions.doctree new file mode 100644 index 0000000..15c1d0d Binary files /dev/null and b/build/doctrees/Definitions.doctree differ diff --git a/build/doctrees/Generalfeatures.doctree b/build/doctrees/Generalfeatures.doctree new file mode 100644 index 0000000..9f04f40 Binary files /dev/null and b/build/doctrees/Generalfeatures.doctree differ diff --git a/build/doctrees/Gettingstarted.doctree b/build/doctrees/Gettingstarted.doctree new file mode 100644 index 0000000..fa21291 Binary files /dev/null and b/build/doctrees/Gettingstarted.doctree differ diff --git a/build/doctrees/Gettingstartednew.doctree b/build/doctrees/Gettingstartednew.doctree new file mode 100644 index 0000000..ef36e4c Binary files /dev/null and b/build/doctrees/Gettingstartednew.doctree differ diff --git a/build/doctrees/Introduction.doctree b/build/doctrees/Introduction.doctree new file mode 100644 index 0000000..c687955 Binary files /dev/null and b/build/doctrees/Introduction.doctree differ diff --git a/build/doctrees/Knownissues.doctree b/build/doctrees/Knownissues.doctree new file mode 100644 index 0000000..8195479 Binary files /dev/null and b/build/doctrees/Knownissues.doctree differ diff --git a/build/doctrees/ModelCategory.doctree b/build/doctrees/ModelCategory.doctree new file mode 100644 index 0000000..ddc980f Binary files /dev/null and b/build/doctrees/ModelCategory.doctree differ diff --git a/build/doctrees/NextRelease.doctree b/build/doctrees/NextRelease.doctree new file mode 100644 index 0000000..cc6602e Binary files /dev/null and b/build/doctrees/NextRelease.doctree differ diff --git a/build/doctrees/PBXCharts.doctree b/build/doctrees/PBXCharts.doctree new file mode 100644 index 0000000..99b13ef Binary files /dev/null and b/build/doctrees/PBXCharts.doctree differ diff --git a/build/doctrees/PlanCategory.doctree b/build/doctrees/PlanCategory.doctree new file mode 100644 index 0000000..8c37cf0 Binary files /dev/null and b/build/doctrees/PlanCategory.doctree differ diff --git a/build/doctrees/SimulateCategory.doctree b/build/doctrees/SimulateCategory.doctree new file mode 100644 index 0000000..9022f75 Binary files /dev/null and b/build/doctrees/SimulateCategory.doctree differ diff --git a/build/doctrees/Simulation.doctree b/build/doctrees/Simulation.doctree new file mode 100644 index 0000000..7966dd8 Binary files /dev/null and b/build/doctrees/Simulation.doctree differ diff --git a/build/doctrees/Tables.doctree b/build/doctrees/Tables.doctree new file mode 100644 index 0000000..cd7d68e Binary files /dev/null and b/build/doctrees/Tables.doctree differ diff --git a/build/doctrees/Test.doctree b/build/doctrees/Test.doctree new file mode 100644 index 0000000..2930b13 Binary files /dev/null and b/build/doctrees/Test.doctree differ diff --git a/build/doctrees/VBXMaps.doctree b/build/doctrees/VBXMaps.doctree new file mode 100644 index 0000000..a8e0d3f Binary files /dev/null and b/build/doctrees/VBXMaps.doctree differ diff --git a/build/doctrees/VBXSelectors.doctree b/build/doctrees/VBXSelectors.doctree new file mode 100644 index 0000000..95e00fd Binary files /dev/null and b/build/doctrees/VBXSelectors.doctree differ diff --git a/build/doctrees/VBXSpecialityCharts.doctree b/build/doctrees/VBXSpecialityCharts.doctree new file mode 100644 index 0000000..929e81d Binary files /dev/null and b/build/doctrees/VBXSpecialityCharts.doctree differ diff --git a/build/doctrees/VBXUtilities.doctree b/build/doctrees/VBXUtilities.doctree new file mode 100644 index 0000000..6f72f0d Binary files /dev/null and b/build/doctrees/VBXUtilities.doctree differ diff --git a/build/doctrees/VBXcharts.doctree b/build/doctrees/VBXcharts.doctree new file mode 100644 index 0000000..fb064f8 Binary files /dev/null and b/build/doctrees/VBXcharts.doctree differ diff --git a/build/doctrees/ValQUserGuide.doctree b/build/doctrees/ValQUserGuide.doctree new file mode 100644 index 0000000..ba9e1db Binary files /dev/null and b/build/doctrees/ValQUserGuide.doctree differ diff --git a/build/doctrees/environment.pickle b/build/doctrees/environment.pickle new file mode 100644 index 0000000..6c02256 Binary files /dev/null and b/build/doctrees/environment.pickle differ diff --git a/build/doctrees/index.doctree b/build/doctrees/index.doctree new file mode 100644 index 0000000..7795412 Binary files /dev/null and b/build/doctrees/index.doctree differ diff --git a/build/doctrees/sample.doctree b/build/doctrees/sample.doctree new file mode 100644 index 0000000..9c6df41 Binary files /dev/null and b/build/doctrees/sample.doctree differ diff --git a/build/doctrees/valQ.doctree b/build/doctrees/valQ.doctree new file mode 100644 index 0000000..5060032 Binary files /dev/null and b/build/doctrees/valQ.doctree differ diff --git a/.buildinfo b/build/html/.buildinfo similarity index 100% rename from .buildinfo rename to build/html/.buildinfo diff --git a/AnalyzeCategory.html b/build/html/AnalyzeCategory.html similarity index 100% rename from AnalyzeCategory.html rename to build/html/AnalyzeCategory.html diff --git a/Copyright.html b/build/html/Copyright.html similarity index 100% rename from Copyright.html rename to build/html/Copyright.html diff --git a/Definitions.html b/build/html/Definitions.html similarity index 100% rename from Definitions.html rename to build/html/Definitions.html diff --git a/Generalfeatures.html b/build/html/Generalfeatures.html similarity index 99% rename from Generalfeatures.html rename to build/html/Generalfeatures.html index e8322eb..2a6deac 100644 --- a/Generalfeatures.html +++ b/build/html/Generalfeatures.html @@ -125,7 +125,6 @@
  • Open a Sample Model
    • General
    • Configuration
    • -
    • Constant Nodes
    • Template Nodes selection in Calculation Method
    • Display
    • Composite Node Display
    • diff --git a/Introduction.html b/build/html/Introduction.html similarity index 100% rename from Introduction.html rename to build/html/Introduction.html diff --git a/Knownissues.html b/build/html/Knownissues.html similarity index 99% rename from Knownissues.html rename to build/html/Knownissues.html index 3c1a2ac..c387436 100644 --- a/Knownissues.html +++ b/build/html/Knownissues.html @@ -102,6 +102,7 @@
    • Tree Drill Down
    • Zoom and Pan
    • Expand/Collapse of Tree View
    • +
    • Minimap
    • Value Display and Simulation Period
    • Sub Models - Filters
    • KPIs
    • @@ -124,7 +125,6 @@
    • Open a Sample Model
      • General
      • Configuration
      • -
      • Constant Nodes
      • Template Nodes selection in Calculation Method
      • Display
      • Composite Node Display
      • diff --git a/ModelCategory.html b/build/html/ModelCategory.html similarity index 98% rename from ModelCategory.html rename to build/html/ModelCategory.html index a71f94a..9cd9315 100644 --- a/ModelCategory.html +++ b/build/html/ModelCategory.html @@ -125,7 +125,6 @@
      • Open a Sample Model
        • General
        • Configuration
        • -
        • Constant Nodes
        • Template Nodes selection in Calculation Method
        • Display
        • Composite Node Display
        • @@ -440,7 +439,7 @@

          GeneralSection: Additional properties of the Node Tab.

          +been listed in Section 13.2.

          alternate text

          Edit Node – General Settings

          @@ -510,23 +509,6 @@

          Configurationhttps://valq.com/blogs/assigning-values-to-nodes-in-valq/

          For the Calculation Method being selected as “Data Source”, you can follow the steps as explained in the following link : https://valq.com/blogs/3-methods-of-mapping-valq-nodes-to-data/

          -
          -

          Constant Nodes

          -

          Using the Constant Node option, you will be able to use the constant value for any Node. -For our example, navigate to the Configuration settings for the Node “Revenue” (see Figure below).

          -
          -alternate text -

          Configuration settings for Constant Node

          -
          -

          Now select the Node Type as “Constant”. Select the option “Formula” for the -Calculation Method and provide the value as “120000” in the Custom Formula Area. -Based on the above settings you will be able to view the valQ screen with Node “Revenue” having the -constant value as “120000” (see Figure below).

          -
          -alternate text -

          Node “Revenue” with Constant value

          -
          -

          Template Nodes selection in Calculation Method

          Also you can create a Template Node for the already existing Node. It @@ -537,7 +519,7 @@

          Template Nodes selection in Calculation Method +
          alternate text

          Edit Node: Copy of Revenue Node labelled as Revenue 2

          @@ -545,14 +527,14 @@

          Template Nodes selection in Calculation Method +
          alternate text

          Edit Node: Calculation Method selected as Template based on other node and Revenue Node to be used as Template

          Based on the above configuration, you will be able to view the Templated Node Revenue 2 having all its Nodes similar to the Revenue Node as per our example.

          -
          +
          alternate text

          Templated Node

          @@ -563,13 +545,13 @@

          Display +
          alternate text

          Edit Node – Display Settings

          Based on the above Display settings, you will be able to view the valQ screen as shown in the below Figure.

          -
          +
          alternate text

          valQ with Display settings

          @@ -585,7 +567,7 @@

          Display +
          alternate text

          Pop up screen

          @@ -594,21 +576,21 @@

          Display

          A Node in a tree can now be added with a maximum of two composite nodes which can be taken from any nodes. For our example, the below Figure shows the Tree structure with several nodes.

          -
          +
          alternate text

          Tree with several nodes

          For our example, two child nodes from the Node “Total Cost” needs to be included as composite nodes to the Node “Revenue”. For adding the composite nodes, go to the configuration settings window of the Node “Revenue” by clicking the Edit and Configure Node option (see Figure below).

          -
          +
          alternate text

          Adding Composite Nodes

          In the Edit Node panel, go to the Display settings and add the Nodes “10:Production Cost” and “36: Realisation Cost” as Composite Nodes to the Node Revenue (see Figure above). Now the Tree structure will get configured based on the above settings (see Figure below).

          -
          +
          alternate text

          Tree with composite nodes

          @@ -616,14 +598,14 @@

          Composite Node Display -
          +
          alternate text

          Composite Node with simulated values

          The composite nodes will have no effect in the Table view structure of the Tree. In the Quick Editor screen, you can view the composite node ids in a separate column by enabling the composite node option from the “selected columns” drop down menu (see Figure below).

          -
          +
          alternate text

          Quick Editor with composite node id display

          @@ -633,7 +615,7 @@

          Simulation +
          alternate text

          valQ with Simulation Settings

          @@ -643,26 +625,26 @@

          Simulation +
          alternate text

          valQ screen with Constant value selection

          From the above Figure, you will be able to view the pop window as shown in the above screen by clicking the Arrow icon in the Net Profit Node as shown in the Figure below.

          -
          +
          alternate text

          Net Profit Node

          Now click the Edit option in the pop window as shown in the Figure below.

          -
          +
          alternate text

          Edit option

          By clicking the Edit option, you will be able to view and edit the input values for the Simulation Period (see Figure below).

          -
          +
          alternate text

          Edit Inputs for Simulation Periods

          @@ -674,13 +656,13 @@

          Business Definition +
          alternate text

          valQ with Business Definition Settings

          Based on the above settings, you will be able to view the Business Definitions details in the Pop up screen as shown below.

          -
          +
          alternate text

          Pop up screen with Business Definitions

          @@ -689,7 +671,7 @@

          Business Definition

          Using the Conditional Formatting option, you will be able to apply the Alert Thresholds and Rules at the specific Node Level (see Figure below). For our example, the Node “Revenue” has been selected.

          -
          +
          alternate text

          Conditional Formatting Settings for Node

          @@ -697,32 +679,32 @@

          Conditional FormattingWhen the option “Global or Inherited Rule” is selected, then the Conditional Formatting Rules configured as Global Level in the Settings Tab will be applied here.

          Now set the option as “Custom Rule: Overwrites default or any inherited rules” as shown in the below Figure.

          -
          +
          alternate text

          Conditional Formatting Settings for Node - Custom Rule option with Percentage selection

          The Custom Rule option can be configured based on variance percentage values and the values applied at period level (see Figure above).

          For our first example, set the option for the Custom Rule as “Percentage” and also enable the property “Apply to Descendants”. Set the Threshold values as shown in the above Figure. After simulation, you can find that the Variance percentage value for the Node “Revenue” falls in the Threshold range (4%)* which is between -10% to -1% and based on that condition, the status bar for the Node Revenue is yellow color (see Figure below).

          -
          +
          alternate text

          Custom Rule option with Percentage value selection for the Node “Revenue”

          Also you can observe that the Descendant Node “Copper Price” has been updated with the same Threshold settings based on our configuration. The Variance percentage value for the Descendant Node “Copper Price” falls in the Threshold range (8%)* which is Above 1% and based on that condition, the status bar for the Descendant Node “Copper Price” is green color (see Figure below).

          -
          +
          alternate text

          Custom Rule option with Percentage value selection for the Descendant Node “Copper Price”

          For our second example, set the option for the Custom Rule as “Value (applied at Period Level) - see Figure below.

          -
          +
          alternate text

          Custom Rule option with value selection for the Node “Revenue”

          Set the Threshold values as shown in the above Figure. After simulation, you can find that the Metric value for the Node “Revenue” falls in the Threshold range (522.3)* which is Above 1 and based on that condition, the status bar for the Node Revenue is green color (see Figure below).

          -
          +
          alternate text

          Custom Rule option with Value selection for the Node “Revenue”

          @@ -737,7 +719,7 @@

          Create a Simple Model -
          +
          alternate text

          Simple Dynamic Tree created with one single Measure

          @@ -745,7 +727,7 @@

          Create a Simple Model -
          +
          alternate text

          Simple Dynamic Tree created with Measures and Dimensions

          @@ -760,7 +742,7 @@

          Create a Simple ModelNote: For Dynamic Model, you will be able to view the Root Node and first three Nodes in the next level hierarchy under the Sub Models section of the Navigation Panel (see Figure below).

          -
          +
          alternate text

          Sub Models Section showing the Root Node and first three Nodes in the next level hierarchy

          @@ -771,7 +753,7 @@

          Read only Dynamic Tree in Editor +
          alternate text

          Read Only Dynamic Tree

          @@ -782,23 +764,23 @@

          Dynamic Scaling on Dynamic Tree +
          alternate text

          Dynamic Scaling on Dynamic Tree

          As part of the New Release, you have the option to convert the Dynamic Model to an Advanced Model (see Figure below).

          -
          +
          alternate text

          Option for converting Dynamic Model to an Advanced Model

          When the option is clicked, now you will be prompted for the Message window as shown below.

          -
          +
          alternate text

          Confirmation Message

          After clicking Yes, you will be able to edit the configuration for all the level of Nodes similar to the Advance Model (see Figure below).

          -
          +
          alternate text

          Dynamic Model converted to an Advanced Model

          @@ -809,13 +791,13 @@

          Create an Advanced Model +
          alternate text

          Create New from Scratch

          For our example we have created a Parent Node and two child Nodes (see Figure below).

          -
          +
          alternate text

          Tree with one Parent Node and two Child Nodes

          @@ -827,7 +809,7 @@

          Create an Advanced Model

          Using the “Import an Advanced Model” option, you will be able to import data through two different options as shown below.

          -
          +
          alternate text

          valQ – Import from Excel

          @@ -835,13 +817,13 @@

          Import an Advanced Model

          Using the option “Import from Excel”, you will be able to paste the JSON File Data Format text into the Text Editor as shown in the below Figure.

          -
          +
          alternate text

          Configuration Data from Excel Format

          Now based on the above configuration, you will be able to view the Tree formed with Nodes in the valQ screen.

          -
          +
          alternate text

          valQ screen derived from Excel Data

          @@ -849,14 +831,14 @@

          Import from Excel +
          alternate text

          Navigation Panel for the first tree configuration

          Now navigate to the Import an Advanced Model option in New Tab and paste the JSON File Data Format text for the second tree into the Text Editor as shown in the below Figure.

          -
          +
          alternate text

          Import a Tree

          @@ -864,7 +846,7 @@

          Import from Excel +
          alternate text

          Navigation Panel for the second tree configuration

          @@ -875,13 +857,13 @@

          Import from Excel +
          alternate text

          Configuration Data from Export File Data Format

          Now based on the above configuration, you will be able to view the Tree formed with Nodes in the valQ screen.

          -
          +
          alternate text

          valQ screen derived from Export File Data Format

          @@ -942,7 +924,7 @@

          Node Tab +
          alternate text

          Node Details

          @@ -960,7 +942,7 @@

          Node Tab +
          alternate text

          Node Details

          @@ -971,7 +953,7 @@

          Quick Editor in Node Tab +
          alternate text

          Normal Tree Hierarchy View

          @@ -980,7 +962,7 @@

          Quick Editor in Node Tab +
          alternate text

          Grid View

          @@ -989,38 +971,38 @@

          Quick Editor in Node Tab +
          alternate text

          Grid View in Expanded Form

          For our example, the above Figure shows the expanded form of the Grid View. The below Figure shows the collapsed form of the Grid View.

          -
          +
          alternate text

          Grid View in Collapsed Form

          You will be able to import and export the data in the form of excel file using the Import from Excel and Export to Excel buttons as shown in the below Figure.

          -
          +
          alternate text

          Grid View - Import from Excel and Export to Excel

          The Export to Excel File button will be only functional in the web version of the Power BI (see Figure below).

          -
          +
          alternate text

          Export to Excel File

          The exported file can be edited and it can be imported by clicking the Import from Excel File button.

          -
          +
          alternate text

          Import from Excel File

          The import function can be done by browsing the location of the file (see Figure below).

          -
          +
          alternate text

          File Location

          @@ -1028,20 +1010,20 @@

          Quick Editor in Node Tab +
          alternate text

          Filtering Columns in the grid

          The below Figure shows that all the columns are being selected and they are displayed in the grid. The user can scroll the Horizontal scroll bar in order to view the remaining columns.

          -
          +
          alternate text

          Grid Display with all the columns being selected.

          The below Figure shows that only the selected columns get displayed in the grid.

          -
          +
          alternate text

          Grid Display with the selected columns

          @@ -1050,14 +1032,14 @@

          Quick Editor in Node Tab +
          alternate text

          Grid view edit for Formula Column

          The above Figure shows that the Formula for the row item Copper Sold has been edited. As another example, the below Figure shows that the Calculation Method has been edited.

          -
          +
          alternate text

          Grid view edit for Calculation Method Column

          @@ -1068,11 +1050,11 @@

          Quick Editor in Node Tab +
          alternate text

          Grid View Edit for Primary Data

          -
          +
          alternate text

          Grid View Edit for Comparison Data

          @@ -1081,14 +1063,14 @@

          Quick Editor in Node Tab +
          alternate text

          Node Search for Linked Simulation Node Column

          Similarly the Node Search for the Source Key Column will be in Drop Down List showing the Nodes from the assigned Data Source and the user can select the appropriate Node from the Drop Down List (see Figure below).

          -
          +
          alternate text

          Node Search for Source Key Column

          @@ -1097,31 +1079,31 @@

          Quick Editor in Node Tab +
          alternate text

          Locked Simulation in Grid View

          The below Figure shows the Locked Simulation in the Excel File which can be imported to the Grid view.

          -
          +
          alternate text

          Locked Simulation in Excel File

          The rows can be reordered for the child nodes which exists under a Parent Node. The below Figure shows the Grid view before reordering the child nodes.

          -
          +
          alternate text

          Grid view before reordering the child nodes

          The below Figure shows the Grid view after reordering the child nodes.

          -
          +
          alternate text

          Grid view after reordering the child nodes

          -

          Additional Properties of Node Tab

          +

          Additional Properties of Node Tab

          @@ -1441,7 +1423,7 @@

          Data Series Tab +
          alternate text

          Data Series Tab

          @@ -1449,7 +1431,7 @@

          Data Series Tab

          Using the option “Data Series Manager”, you will be able to configure the Periods and Data Series for the Tree (see Figure below).

          -
          +
          alternate text

          Data Series Tab – Data Series Manager

          @@ -1463,19 +1445,19 @@

          Data Series Manager +
          alternate text

          Baseline Values

          1. When you click the Comparison label, you will be able view the Comparison values as the Budget values as shown below
          -
          +
          alternate text

          Comparison Values

          Based on the above set of configuration steps, you will be able to view the valQ screen as shown below.

          -
          +
          alternate text

          valQ screen configured with Periods and Data Series

          @@ -1488,13 +1470,13 @@

          Time Aggregation LabelsUsing the option “Time Aggregation Labels”, you will be able to configure the Active Period, Till Prior Period, All Periods and Simulation Period settings (see Figure below).

          -
          +
          alternate text

          Data Label – Time Aggregation Labels

          Based on the above configuration, you will be able to view the valQ screen as shown below.

          -
          +
          alternate text

          valQ screen with time aggregation labels

          @@ -1507,7 +1489,7 @@

          Data Sorting +
          alternate text

          Data Sorting Settings

          @@ -1639,7 +1621,7 @@

          Settings Tab

          Navigation Panel

          In the Settings Tab, you can enable/disable the Navigation Panel as shown in the below Figure.

          -
          +
          alternate text

          Enable /Disable Navigation Panel

          @@ -1647,19 +1629,19 @@

          Navigation Panel
        • Scenarios - You can enable/disable the Visibility option for the Scenarios using the Eye icon and also set the Label for the Scenario using the Edit icon in the Navigation Panel (see Figure below).
        • -
          +
          alternate text

          Scenarios

          You will be also able to download the xml files of the Scenarios from the Scenario Window in the Navigation Panel by clicking the Download option (see Figure below). In our example, the data for the Scenario 2 has been downloaded.

          -
          +
          alternate text

          xml download of the Scenario 2 data

          1. Sub Models - You can enable/disable the Visibility option for the Sub Models using the Eye icon and set the Label for the Sub Models using the Edit icon and further select the Nodes from Tree/Sub-Tree List from the Navigation Panel. You can also enable/disable the property for filtering the list based on the selected sub tree (see Figure below).
          -
          +
          alternate text

          Scenarios

          @@ -1668,45 +1650,45 @@

          Navigation Panel +
          alternate text

          Simulation Period

          1. Value Display - You can enable/disable the Visibility option for the Value Display using the Eye icon and set the Label for the Value Display using the Edit icon. You can select the Primary Period, Scaling options and Default Scaling options for the Value Display in the Navigation Panel (see Figure below).
          -
          +
          alternate text

          Value Display

          1. Key Inputs - You can enable/disable the Visibility option for the Key Inputs using the Eye icon and set the Label for the Key Inputs using the Edit icon. Further you can also select the Key Assumptions to be displayed as List by selecting the required Nodes in the Navigation Panel (see Figure below).
          -
          +
          alternate text

          Key Inputs

          1. KPIs - You can enable/disable the Visibility option for the KPIs using the Eye icon, set the Label for the KPIs using the Edit icon and further select the KPIs to be displayed as List by selecting the required Nodes in the Navigation Panel (see Figure below).
          -
          +
          alternate text

          KPIs

          1. Constraints - You can enable/disable the Visibility option for the Constraints using the Eye icon, set the Label for the Constraints using the Edit icon and further select the Constraints to be displayed as List by selecting the required Nodes in the Navigation Panel. You can also enable/disable the property for sorting the constraints based on utilization (see Figure below).
          -
          +
          alternate text

          Constraints

          Based on the above settings, you will be able to view the valQ screen with “Exit Design Mode” button (see Figure below).

          -
          +
          alternate text

          Exit Design Mode

          By clicking the Exit Design Mode button in the right canvas, you will be able to view the valQ screen with Navigation Panel based on the above set of configurations, (see Figure below).

          -
          +
          alternate text

          valQ screen with Navigation Panel

          @@ -1721,13 +1703,13 @@

          Nodes
        • Map based on ID-Text Pair - For example, you can use this option if your field has a key-text format (e.g., ‘CA:Canada’), and your Node’s ID corresponds to a key (e.g.,‘CA’).
        • -
          +
          alternate text

          Data Mapping Format

          For our example, we would explore the settings for Map based on ID-Text Pair. The data source which is assigned for the Node Mapping is shown below:

          -
          +
          alternate text

          Excel Data Source with Node Mapping

          @@ -1735,7 +1717,7 @@

          Nodes Category as 6:SparklingWater_GrossSales.

          Based on the above configuration, you will be able to view the valQ screen as shown below.

          -
          +
          alternate text

          valQ screen with Node Mapping

          @@ -1743,12 +1725,12 @@

          Nodes format here is 6:SparklingWater_GrossSales.

          You will be also able to configure the Default Node Style with three different options namely Standard, Full and Minimal as shown in the below Figure.

          -
          +
          alternate text

          Default Node Style

          You will be able to enable/disable the Node Elements like Variance, Trend Spark Line, Secondary Value/Variance and Descendant Node Count (see Figure below).

          -
          +
          alternate text

          Node Settings

          @@ -1756,7 +1738,7 @@

          Nodes when the Data Source Method returns no value for the Node.

          For our example, the Waterfall Chart Type is selected as “Horizontal”. Based on the above settings you will be able to view the valQ screen as shown below.

          -
          +
          alternate text

          valQ screen with Node Settings

          @@ -1765,17 +1747,17 @@

          Nodes Secondary Value/Variance and Descendant Node Count are displayed in the Node based on the configuration.

          By clicking the Node, you will observe that the Waterfall chart type in the Pop up screen is rendered as Horizontal Chart Type based on our settings (see Figure below).

          -
          +
          alternate text

          Pop up screen showing Horizontal Chart Type

          As part of the New Release, when the Node Style is selected as “Standard”, you can view the Node Elements Variance, Trend Spark Line and Secondary Value/Variance being selected by default (see Figure below).

          -
          +
          alternate text

          Node Elements for Standard Node Style

          When the Node Style is being selected as “Minimal”, then you will be able to view only the Node element Variance being selected by default (see Figure below).

          -
          +
          alternate text

          Node Element for Minimal Node Style

          @@ -1785,20 +1767,20 @@

          Contribution and Performance Variance Percentage +
          alternate text

          Node Style and Node Element Selection

          For our example, the property Sort Based On is set to the option “Contribution Percentage” and the property Sort Order has been set to the option “Ascending” (see Figure above).

          Based on the above settings, you will be able view the Nodes displaying the Contribution Percentage values in Ascending order (see Figure below).

          -
          +
          alternate text

          Node showing Contribution Percentage values in Ascending order

          Similarly, you will be also able to view the Performance Variance Percentage values in the Ascending Order based on the configuration (see Figure below).

          -
          +
          alternate text

          Node showing Performance Variance Percentage values in Ascending order

          @@ -1811,19 +1793,19 @@

          Canvas +
          alternate text

          Canvas with Default Visual settings

          Based on the above settings, you will be able to view the valQ screen with the Table appearance (see Figure below).

          -
          +
          alternate text

          Canvas with default Table Visual

          1. For our example, set the property “Start the model with the following KPI” to the option “9:Total Cost” (see Figure below).
          -
          +
          alternate text

          Canvas Settings

          @@ -1835,7 +1817,7 @@

          Canvas +
          alternate text

          valQ screen with Canvas Settings

          @@ -1849,7 +1831,7 @@

          Number Formatting
        • In the area Scale Suffix, set the property Thousands to “k” (see Figure below).
        • -
          +
          alternate text

          Number Formatting Settings

          @@ -1863,7 +1845,7 @@

          Number Formatting +
          alternate text

          valQ screen with Number Formatting Settings

          @@ -1878,7 +1860,7 @@

          Conditional Formatting
        • You can enable/disable the property Enable Conditional Formatting as shown in the below.
        • -
          +
          alternate text

          Conditional Formatting Settings

          @@ -1887,7 +1869,7 @@

          Conditional Formatting +
          alternate text

          Conditional Formatting - Format based on Variance Percentage

          @@ -1897,14 +1879,14 @@

          Conditional Formatting +
          alternate text

          Conditional Formatting Settings

          1. Based on the above settings, you will be able to view the Tree as shown below.
          -
          +
          alternate text

          Conditional Formatting - Format based on Simulation Percentage

          @@ -1921,7 +1903,7 @@

          Color Theme
        • You will be able to select the Light Theme or Dark Theme based on your choice (see Figure below). For our example, the Light Theme has been selected.
        • -
          +
          alternate text

          Color Theme Settings

          @@ -1933,23 +1915,23 @@

          Color Theme +
          alternate text

          valQ screen with Color Theme Settings

          Also you can observe that the Navigation Panel will be shown in Dark Theme based on the configuration.

          -
          +
          alternate text

          Navigation Panel with Dark Theme

          For our example, you have configured the Highlighted color for the Node as Red Color (see Figure below).

          -
          +
          alternate text

          Highlighted Color Settings for Node

          Based on the above configuration, you can observe that when you click and Node in the Navigation panel, the Node in the right pane will be highlighted based on the color selection. For our example, the Node is being highlighted in Red color.

          -
          +
          alternate text

          Node Highlighted color appearing in Red color

          @@ -2388,7 +2370,7 @@

          General Tab

          License Registration

          You will be able to enter the Subscription License Key in the License Key Text Box to unlock the Additional Features of the valQ (see Figure below).

          -
          +
          alternate text

          License Registration

          @@ -2397,7 +2379,7 @@

          License RegistrationExport

          In the Export settings, you will be able to configure the export functionality. There is also an option to include the navigation settings panel in the Export File (see Figure below).

          -
          +
          alternate text

          Export option

          @@ -2408,7 +2390,7 @@

          Export

          Writeback

          You will be able to export the Scenarios configured in the valQ through an URL by entering the Writeback URL in the Text Box (see Figure below).

          -
          +
          alternate text

          Export Scenarios via Writeback URL

          diff --git a/PlanCategory.html b/build/html/PlanCategory.html similarity index 100% rename from PlanCategory.html rename to build/html/PlanCategory.html diff --git a/SimulateCategory.html b/build/html/SimulateCategory.html similarity index 100% rename from SimulateCategory.html rename to build/html/SimulateCategory.html diff --git a/_images/10.1.png b/build/html/_images/10.1.png similarity index 100% rename from _images/10.1.png rename to build/html/_images/10.1.png diff --git a/_images/11.1.png b/build/html/_images/11.1.png similarity index 100% rename from _images/11.1.png rename to build/html/_images/11.1.png diff --git a/_images/11.2.png b/build/html/_images/11.2.png similarity index 100% rename from _images/11.2.png rename to build/html/_images/11.2.png diff --git a/_images/11.3.png b/build/html/_images/11.3.png similarity index 100% rename from _images/11.3.png rename to build/html/_images/11.3.png diff --git a/_images/12.1.png b/build/html/_images/12.1.png similarity index 100% rename from _images/12.1.png rename to build/html/_images/12.1.png diff --git a/_images/12.10.png b/build/html/_images/12.10.png similarity index 100% rename from _images/12.10.png rename to build/html/_images/12.10.png diff --git a/_images/12.11.png b/build/html/_images/12.11.png similarity index 100% rename from _images/12.11.png rename to build/html/_images/12.11.png diff --git a/_images/12.12.png b/build/html/_images/12.12.png similarity index 100% rename from _images/12.12.png rename to build/html/_images/12.12.png diff --git a/_images/12.13.png b/build/html/_images/12.13.png similarity index 100% rename from _images/12.13.png rename to build/html/_images/12.13.png diff --git a/_images/12.14.png b/build/html/_images/12.14.png similarity index 100% rename from _images/12.14.png rename to build/html/_images/12.14.png diff --git a/_images/12.15.png b/build/html/_images/12.15.png similarity index 100% rename from _images/12.15.png rename to build/html/_images/12.15.png diff --git a/_images/12.16.png b/build/html/_images/12.16.png similarity index 100% rename from _images/12.16.png rename to build/html/_images/12.16.png diff --git a/_images/12.17.png b/build/html/_images/12.17.png similarity index 100% rename from _images/12.17.png rename to build/html/_images/12.17.png diff --git a/_images/12.18.png b/build/html/_images/12.18.png similarity index 100% rename from _images/12.18.png rename to build/html/_images/12.18.png diff --git a/_images/12.19.png b/build/html/_images/12.19.png similarity index 100% rename from _images/12.19.png rename to build/html/_images/12.19.png diff --git a/_images/12.2.png b/build/html/_images/12.2.png similarity index 100% rename from _images/12.2.png rename to build/html/_images/12.2.png diff --git a/_images/12.20.png b/build/html/_images/12.20.png similarity index 100% rename from _images/12.20.png rename to build/html/_images/12.20.png diff --git a/_images/12.21.png b/build/html/_images/12.21.png similarity index 100% rename from _images/12.21.png rename to build/html/_images/12.21.png diff --git a/_images/12.22.png b/build/html/_images/12.22.png similarity index 100% rename from _images/12.22.png rename to build/html/_images/12.22.png diff --git a/_images/12.23.png b/build/html/_images/12.23.png similarity index 100% rename from _images/12.23.png rename to build/html/_images/12.23.png diff --git a/_images/12.24.png b/build/html/_images/12.24.png similarity index 100% rename from _images/12.24.png rename to build/html/_images/12.24.png diff --git a/_images/12.25.png b/build/html/_images/12.25.png similarity index 100% rename from _images/12.25.png rename to build/html/_images/12.25.png diff --git a/_images/12.25a.png b/build/html/_images/12.25a.png similarity index 100% rename from _images/12.25a.png rename to build/html/_images/12.25a.png diff --git a/_images/12.26.png b/build/html/_images/12.26.png similarity index 100% rename from _images/12.26.png rename to build/html/_images/12.26.png diff --git a/_images/12.27.png b/build/html/_images/12.27.png similarity index 100% rename from _images/12.27.png rename to build/html/_images/12.27.png diff --git a/_images/12.28.png b/build/html/_images/12.28.png similarity index 100% rename from _images/12.28.png rename to build/html/_images/12.28.png diff --git a/_images/12.29.png b/build/html/_images/12.29.png similarity index 100% rename from _images/12.29.png rename to build/html/_images/12.29.png diff --git a/_images/12.2a.png b/build/html/_images/12.2a.png similarity index 100% rename from _images/12.2a.png rename to build/html/_images/12.2a.png diff --git a/_images/12.3.png b/build/html/_images/12.3.png similarity index 100% rename from _images/12.3.png rename to build/html/_images/12.3.png diff --git a/_images/12.30.png b/build/html/_images/12.30.png similarity index 100% rename from _images/12.30.png rename to build/html/_images/12.30.png diff --git a/_images/12.31.png b/build/html/_images/12.31.png similarity index 100% rename from _images/12.31.png rename to build/html/_images/12.31.png diff --git a/_images/12.32.png b/build/html/_images/12.32.png similarity index 100% rename from _images/12.32.png rename to build/html/_images/12.32.png diff --git a/_images/12.33.png b/build/html/_images/12.33.png similarity index 100% rename from _images/12.33.png rename to build/html/_images/12.33.png diff --git a/_images/12.34.png b/build/html/_images/12.34.png similarity index 100% rename from _images/12.34.png rename to build/html/_images/12.34.png diff --git a/_images/12.35.png b/build/html/_images/12.35.png similarity index 100% rename from _images/12.35.png rename to build/html/_images/12.35.png diff --git a/_images/12.36.png b/build/html/_images/12.36.png similarity index 100% rename from _images/12.36.png rename to build/html/_images/12.36.png diff --git a/_images/12.37.png b/build/html/_images/12.37.png similarity index 100% rename from _images/12.37.png rename to build/html/_images/12.37.png diff --git a/_images/12.38.png b/build/html/_images/12.38.png similarity index 100% rename from _images/12.38.png rename to build/html/_images/12.38.png diff --git a/_images/12.39.png b/build/html/_images/12.39.png similarity index 100% rename from _images/12.39.png rename to build/html/_images/12.39.png diff --git a/_images/12.4.png b/build/html/_images/12.4.png similarity index 100% rename from _images/12.4.png rename to build/html/_images/12.4.png diff --git a/_images/12.5.png b/build/html/_images/12.5.png similarity index 100% rename from _images/12.5.png rename to build/html/_images/12.5.png diff --git a/_images/12.6.png b/build/html/_images/12.6.png similarity index 100% rename from _images/12.6.png rename to build/html/_images/12.6.png diff --git a/_images/12.7.png b/build/html/_images/12.7.png similarity index 100% rename from _images/12.7.png rename to build/html/_images/12.7.png diff --git a/_images/12.8.png b/build/html/_images/12.8.png similarity index 100% rename from _images/12.8.png rename to build/html/_images/12.8.png diff --git a/_images/12.9.png b/build/html/_images/12.9.png similarity index 100% rename from _images/12.9.png rename to build/html/_images/12.9.png diff --git a/_images/13.1.png b/build/html/_images/13.1.png similarity index 100% rename from _images/13.1.png rename to build/html/_images/13.1.png diff --git a/_images/13.2.png b/build/html/_images/13.2.png similarity index 100% rename from _images/13.2.png rename to build/html/_images/13.2.png diff --git a/_images/13.3.png b/build/html/_images/13.3.png similarity index 100% rename from _images/13.3.png rename to build/html/_images/13.3.png diff --git a/_images/13.4.png b/build/html/_images/13.4.png similarity index 100% rename from _images/13.4.png rename to build/html/_images/13.4.png diff --git a/_images/13.5.png b/build/html/_images/13.5.png similarity index 100% rename from _images/13.5.png rename to build/html/_images/13.5.png diff --git a/_images/13.6.png b/build/html/_images/13.6.png similarity index 100% rename from _images/13.6.png rename to build/html/_images/13.6.png diff --git a/_images/13.7.png b/build/html/_images/13.7.png similarity index 100% rename from _images/13.7.png rename to build/html/_images/13.7.png diff --git a/_images/13.8.png b/build/html/_images/13.8.png similarity index 100% rename from _images/13.8.png rename to build/html/_images/13.8.png diff --git a/_images/14.1.png b/build/html/_images/14.1.png similarity index 100% rename from _images/14.1.png rename to build/html/_images/14.1.png diff --git a/_images/14.10.png b/build/html/_images/14.10.png similarity index 100% rename from _images/14.10.png rename to build/html/_images/14.10.png diff --git a/_images/14.11.png b/build/html/_images/14.11.png similarity index 100% rename from _images/14.11.png rename to build/html/_images/14.11.png diff --git a/_images/14.12.png b/build/html/_images/14.12.png similarity index 100% rename from _images/14.12.png rename to build/html/_images/14.12.png diff --git a/_images/14.13.png b/build/html/_images/14.13.png similarity index 100% rename from _images/14.13.png rename to build/html/_images/14.13.png diff --git a/_images/14.2.png b/build/html/_images/14.2.png similarity index 100% rename from _images/14.2.png rename to build/html/_images/14.2.png diff --git a/_images/14.3.png b/build/html/_images/14.3.png similarity index 100% rename from _images/14.3.png rename to build/html/_images/14.3.png diff --git a/_images/14.4.png b/build/html/_images/14.4.png similarity index 100% rename from _images/14.4.png rename to build/html/_images/14.4.png diff --git a/_images/14.5.png b/build/html/_images/14.5.png similarity index 100% rename from _images/14.5.png rename to build/html/_images/14.5.png diff --git a/_images/14.6.png b/build/html/_images/14.6.png similarity index 100% rename from _images/14.6.png rename to build/html/_images/14.6.png diff --git a/_images/14.7.png b/build/html/_images/14.7.png similarity index 100% rename from _images/14.7.png rename to build/html/_images/14.7.png diff --git a/_images/14.8.png b/build/html/_images/14.8.png similarity index 100% rename from _images/14.8.png rename to build/html/_images/14.8.png diff --git a/_images/14.9.png b/build/html/_images/14.9.png similarity index 100% rename from _images/14.9.png rename to build/html/_images/14.9.png diff --git a/_images/15.1.png b/build/html/_images/15.1.png similarity index 100% rename from _images/15.1.png rename to build/html/_images/15.1.png diff --git a/_images/15.10.png b/build/html/_images/15.10.png similarity index 100% rename from _images/15.10.png rename to build/html/_images/15.10.png diff --git a/_images/15.11.png b/build/html/_images/15.11.png similarity index 100% rename from _images/15.11.png rename to build/html/_images/15.11.png diff --git a/_images/15.12.png b/build/html/_images/15.12.png similarity index 100% rename from _images/15.12.png rename to build/html/_images/15.12.png diff --git a/_images/15.2.png b/build/html/_images/15.2.png similarity index 100% rename from _images/15.2.png rename to build/html/_images/15.2.png diff --git a/_images/15.3.png b/build/html/_images/15.3.png similarity index 100% rename from _images/15.3.png rename to build/html/_images/15.3.png diff --git a/_images/15.4.png b/build/html/_images/15.4.png similarity index 100% rename from _images/15.4.png rename to build/html/_images/15.4.png diff --git a/_images/15.5.png b/build/html/_images/15.5.png similarity index 100% rename from _images/15.5.png rename to build/html/_images/15.5.png diff --git a/_images/15.6.png b/build/html/_images/15.6.png similarity index 100% rename from _images/15.6.png rename to build/html/_images/15.6.png diff --git a/_images/15.7.png b/build/html/_images/15.7.png similarity index 100% rename from _images/15.7.png rename to build/html/_images/15.7.png diff --git a/_images/15.8.png b/build/html/_images/15.8.png similarity index 100% rename from _images/15.8.png rename to build/html/_images/15.8.png diff --git a/_images/15.9.png b/build/html/_images/15.9.png similarity index 100% rename from _images/15.9.png rename to build/html/_images/15.9.png diff --git a/_images/16.1.png b/build/html/_images/16.1.png similarity index 100% rename from _images/16.1.png rename to build/html/_images/16.1.png diff --git a/_images/16.10.png b/build/html/_images/16.10.png similarity index 100% rename from _images/16.10.png rename to build/html/_images/16.10.png diff --git a/_images/16.11.png b/build/html/_images/16.11.png similarity index 100% rename from _images/16.11.png rename to build/html/_images/16.11.png diff --git a/_images/16.12.png b/build/html/_images/16.12.png similarity index 100% rename from _images/16.12.png rename to build/html/_images/16.12.png diff --git a/_images/16.13.png b/build/html/_images/16.13.png similarity index 100% rename from _images/16.13.png rename to build/html/_images/16.13.png diff --git a/_images/16.14.png b/build/html/_images/16.14.png similarity index 100% rename from _images/16.14.png rename to build/html/_images/16.14.png diff --git a/_images/16.15.png b/build/html/_images/16.15.png similarity index 100% rename from _images/16.15.png rename to build/html/_images/16.15.png diff --git a/_images/16.2.png b/build/html/_images/16.2.png similarity index 100% rename from _images/16.2.png rename to build/html/_images/16.2.png diff --git a/_images/16.3.png b/build/html/_images/16.3.png similarity index 100% rename from _images/16.3.png rename to build/html/_images/16.3.png diff --git a/_images/16.4.png b/build/html/_images/16.4.png similarity index 100% rename from _images/16.4.png rename to build/html/_images/16.4.png diff --git a/_images/16.5.png b/build/html/_images/16.5.png similarity index 100% rename from _images/16.5.png rename to build/html/_images/16.5.png diff --git a/_images/16.6.png b/build/html/_images/16.6.png similarity index 100% rename from _images/16.6.png rename to build/html/_images/16.6.png diff --git a/_images/16.7.png b/build/html/_images/16.7.png similarity index 100% rename from _images/16.7.png rename to build/html/_images/16.7.png diff --git a/_images/16.8.png b/build/html/_images/16.8.png similarity index 100% rename from _images/16.8.png rename to build/html/_images/16.8.png diff --git a/_images/16.9.png b/build/html/_images/16.9.png similarity index 100% rename from _images/16.9.png rename to build/html/_images/16.9.png diff --git a/_images/4.1.png b/build/html/_images/4.1.png similarity index 100% rename from _images/4.1.png rename to build/html/_images/4.1.png diff --git a/_images/4.10.png b/build/html/_images/4.10.png similarity index 100% rename from _images/4.10.png rename to build/html/_images/4.10.png diff --git a/_images/4.11.png b/build/html/_images/4.11.png similarity index 100% rename from _images/4.11.png rename to build/html/_images/4.11.png diff --git a/_images/4.12.png b/build/html/_images/4.12.png similarity index 100% rename from _images/4.12.png rename to build/html/_images/4.12.png diff --git a/_images/4.13.jpg b/build/html/_images/4.13.jpg similarity index 100% rename from _images/4.13.jpg rename to build/html/_images/4.13.jpg diff --git a/_images/4.13.png b/build/html/_images/4.13.png similarity index 100% rename from _images/4.13.png rename to build/html/_images/4.13.png diff --git a/_images/4.14.jpg b/build/html/_images/4.14.jpg similarity index 100% rename from _images/4.14.jpg rename to build/html/_images/4.14.jpg diff --git a/_images/4.14.png b/build/html/_images/4.14.png similarity index 100% rename from _images/4.14.png rename to build/html/_images/4.14.png diff --git a/_images/4.15.jpg b/build/html/_images/4.15.jpg similarity index 100% rename from _images/4.15.jpg rename to build/html/_images/4.15.jpg diff --git a/_images/4.15.png b/build/html/_images/4.15.png similarity index 100% rename from _images/4.15.png rename to build/html/_images/4.15.png diff --git a/_images/4.16.jpg b/build/html/_images/4.16.jpg similarity index 100% rename from _images/4.16.jpg rename to build/html/_images/4.16.jpg diff --git a/_images/4.16.png b/build/html/_images/4.16.png similarity index 100% rename from _images/4.16.png rename to build/html/_images/4.16.png diff --git a/_images/4.17.png b/build/html/_images/4.17.png similarity index 100% rename from _images/4.17.png rename to build/html/_images/4.17.png diff --git a/_images/4.18.jpg b/build/html/_images/4.18.jpg similarity index 100% rename from _images/4.18.jpg rename to build/html/_images/4.18.jpg diff --git a/_images/4.18.png b/build/html/_images/4.18.png similarity index 100% rename from _images/4.18.png rename to build/html/_images/4.18.png diff --git a/_images/4.19.png b/build/html/_images/4.19.png similarity index 100% rename from _images/4.19.png rename to build/html/_images/4.19.png diff --git a/_images/4.2.jpg b/build/html/_images/4.2.jpg similarity index 100% rename from _images/4.2.jpg rename to build/html/_images/4.2.jpg diff --git a/_images/4.2.png b/build/html/_images/4.2.png similarity index 100% rename from _images/4.2.png rename to build/html/_images/4.2.png diff --git a/_images/4.20.png b/build/html/_images/4.20.png similarity index 100% rename from _images/4.20.png rename to build/html/_images/4.20.png diff --git a/_images/4.21.png b/build/html/_images/4.21.png similarity index 100% rename from _images/4.21.png rename to build/html/_images/4.21.png diff --git a/_images/4.22.jpg b/build/html/_images/4.22.jpg similarity index 100% rename from _images/4.22.jpg rename to build/html/_images/4.22.jpg diff --git a/_images/4.22.png b/build/html/_images/4.22.png similarity index 100% rename from _images/4.22.png rename to build/html/_images/4.22.png diff --git a/_images/4.23.png b/build/html/_images/4.23.png similarity index 100% rename from _images/4.23.png rename to build/html/_images/4.23.png diff --git a/_images/4.24.jpg b/build/html/_images/4.24.jpg similarity index 100% rename from _images/4.24.jpg rename to build/html/_images/4.24.jpg diff --git a/_images/4.24.png b/build/html/_images/4.24.png similarity index 100% rename from _images/4.24.png rename to build/html/_images/4.24.png diff --git a/_images/4.25.png b/build/html/_images/4.25.png similarity index 100% rename from _images/4.25.png rename to build/html/_images/4.25.png diff --git a/_images/4.26.png b/build/html/_images/4.26.png similarity index 100% rename from _images/4.26.png rename to build/html/_images/4.26.png diff --git a/_images/4.3.jpg b/build/html/_images/4.3.jpg similarity index 100% rename from _images/4.3.jpg rename to build/html/_images/4.3.jpg diff --git a/_images/4.3.png b/build/html/_images/4.3.png similarity index 100% rename from _images/4.3.png rename to build/html/_images/4.3.png diff --git a/_images/4.4.jpg b/build/html/_images/4.4.jpg similarity index 100% rename from _images/4.4.jpg rename to build/html/_images/4.4.jpg diff --git a/_images/4.4.png b/build/html/_images/4.4.png similarity index 100% rename from _images/4.4.png rename to build/html/_images/4.4.png diff --git a/_images/4.5.png b/build/html/_images/4.5.png similarity index 100% rename from _images/4.5.png rename to build/html/_images/4.5.png diff --git a/_images/4.6.png b/build/html/_images/4.6.png similarity index 100% rename from _images/4.6.png rename to build/html/_images/4.6.png diff --git a/_images/4.7.png b/build/html/_images/4.7.png similarity index 100% rename from _images/4.7.png rename to build/html/_images/4.7.png diff --git a/_images/4.8.png b/build/html/_images/4.8.png similarity index 100% rename from _images/4.8.png rename to build/html/_images/4.8.png diff --git a/_images/4.9.png b/build/html/_images/4.9.png similarity index 100% rename from _images/4.9.png rename to build/html/_images/4.9.png diff --git a/_images/6.1.png b/build/html/_images/6.1.png similarity index 100% rename from _images/6.1.png rename to build/html/_images/6.1.png diff --git a/_images/7.1.png b/build/html/_images/7.1.png similarity index 100% rename from _images/7.1.png rename to build/html/_images/7.1.png diff --git a/_images/7.2.jpg b/build/html/_images/7.2.jpg similarity index 100% rename from _images/7.2.jpg rename to build/html/_images/7.2.jpg diff --git a/_images/7.2.png b/build/html/_images/7.2.png similarity index 100% rename from _images/7.2.png rename to build/html/_images/7.2.png diff --git a/_images/7.3.jpg b/build/html/_images/7.3.jpg similarity index 100% rename from _images/7.3.jpg rename to build/html/_images/7.3.jpg diff --git a/_images/7.3.png b/build/html/_images/7.3.png similarity index 100% rename from _images/7.3.png rename to build/html/_images/7.3.png diff --git a/_images/7.4.jpg b/build/html/_images/7.4.jpg similarity index 100% rename from _images/7.4.jpg rename to build/html/_images/7.4.jpg diff --git a/_images/7.4.png b/build/html/_images/7.4.png similarity index 100% rename from _images/7.4.png rename to build/html/_images/7.4.png diff --git a/_images/7.5.jpg b/build/html/_images/7.5.jpg similarity index 100% rename from _images/7.5.jpg rename to build/html/_images/7.5.jpg diff --git a/_images/7.5.png b/build/html/_images/7.5.png similarity index 100% rename from _images/7.5.png rename to build/html/_images/7.5.png diff --git a/_images/8.1.png b/build/html/_images/8.1.png similarity index 100% rename from _images/8.1.png rename to build/html/_images/8.1.png diff --git a/_images/9.1.png b/build/html/_images/9.1.png similarity index 100% rename from _images/9.1.png rename to build/html/_images/9.1.png diff --git a/_images/catg.png b/build/html/_images/catg.png similarity index 100% rename from _images/catg.png rename to build/html/_images/catg.png diff --git a/_images/cf1.png b/build/html/_images/cf1.png similarity index 100% rename from _images/cf1.png rename to build/html/_images/cf1.png diff --git a/_images/cf2.png b/build/html/_images/cf2.png similarity index 100% rename from _images/cf2.png rename to build/html/_images/cf2.png diff --git a/_images/cf3.png b/build/html/_images/cf3.png similarity index 100% rename from _images/cf3.png rename to build/html/_images/cf3.png diff --git a/_images/cf4.png b/build/html/_images/cf4.png similarity index 100% rename from _images/cf4.png rename to build/html/_images/cf4.png diff --git a/_images/cfn1.png b/build/html/_images/cfn1.png similarity index 100% rename from _images/cfn1.png rename to build/html/_images/cfn1.png diff --git a/_images/cfn2.png b/build/html/_images/cfn2.png similarity index 100% rename from _images/cfn2.png rename to build/html/_images/cfn2.png diff --git a/_images/cfn3.png b/build/html/_images/cfn3.png similarity index 100% rename from _images/cfn3.png rename to build/html/_images/cfn3.png diff --git a/_images/cfn4.png b/build/html/_images/cfn4.png similarity index 100% rename from _images/cfn4.png rename to build/html/_images/cfn4.png diff --git a/_images/cfn5.png b/build/html/_images/cfn5.png similarity index 100% rename from _images/cfn5.png rename to build/html/_images/cfn5.png diff --git a/_images/cfn6.png b/build/html/_images/cfn6.png similarity index 100% rename from _images/cfn6.png rename to build/html/_images/cfn6.png diff --git a/_images/clr1.png b/build/html/_images/clr1.png similarity index 100% rename from _images/clr1.png rename to build/html/_images/clr1.png diff --git a/_images/clr2.png b/build/html/_images/clr2.png similarity index 100% rename from _images/clr2.png rename to build/html/_images/clr2.png diff --git a/_images/clr3.png b/build/html/_images/clr3.png similarity index 100% rename from _images/clr3.png rename to build/html/_images/clr3.png diff --git a/_images/cnd1.png b/build/html/_images/cnd1.png similarity index 100% rename from _images/cnd1.png rename to build/html/_images/cnd1.png diff --git a/_images/cnd2.png b/build/html/_images/cnd2.png similarity index 100% rename from _images/cnd2.png rename to build/html/_images/cnd2.png diff --git a/_images/cnd3.png b/build/html/_images/cnd3.png similarity index 100% rename from _images/cnd3.png rename to build/html/_images/cnd3.png diff --git a/_images/cnd4.png b/build/html/_images/cnd4.png similarity index 100% rename from _images/cnd4.png rename to build/html/_images/cnd4.png diff --git a/_images/cnd5.png b/build/html/_images/cnd5.png similarity index 100% rename from _images/cnd5.png rename to build/html/_images/cnd5.png diff --git a/build/html/_images/con1.png b/build/html/_images/con1.png new file mode 100644 index 0000000..1286711 Binary files /dev/null and b/build/html/_images/con1.png differ diff --git a/_images/conv1.png b/build/html/_images/conv1.png similarity index 100% rename from _images/conv1.png rename to build/html/_images/conv1.png diff --git a/_images/conv1a.png b/build/html/_images/conv1a.png similarity index 100% rename from _images/conv1a.png rename to build/html/_images/conv1a.png diff --git a/_images/conv2.png b/build/html/_images/conv2.png similarity index 100% rename from _images/conv2.png rename to build/html/_images/conv2.png diff --git a/_images/cv1.png b/build/html/_images/cv1.png similarity index 100% rename from _images/cv1.png rename to build/html/_images/cv1.png diff --git a/_images/cv2.png b/build/html/_images/cv2.png similarity index 100% rename from _images/cv2.png rename to build/html/_images/cv2.png diff --git a/_images/cv3.png b/build/html/_images/cv3.png similarity index 100% rename from _images/cv3.png rename to build/html/_images/cv3.png diff --git a/_images/cv4.png b/build/html/_images/cv4.png similarity index 100% rename from _images/cv4.png rename to build/html/_images/cv4.png diff --git a/_images/dm1.png b/build/html/_images/dm1.png similarity index 100% rename from _images/dm1.png rename to build/html/_images/dm1.png diff --git a/_images/dm2.png b/build/html/_images/dm2.png similarity index 100% rename from _images/dm2.png rename to build/html/_images/dm2.png diff --git a/_images/dm3.png b/build/html/_images/dm3.png similarity index 100% rename from _images/dm3.png rename to build/html/_images/dm3.png diff --git a/_images/dm4.png b/build/html/_images/dm4.png similarity index 100% rename from _images/dm4.png rename to build/html/_images/dm4.png diff --git a/_images/dma.png b/build/html/_images/dma.png similarity index 100% rename from _images/dma.png rename to build/html/_images/dma.png diff --git a/_images/dsm.png b/build/html/_images/dsm.png similarity index 100% rename from _images/dsm.png rename to build/html/_images/dsm.png diff --git a/_images/edn.png b/build/html/_images/edn.png similarity index 100% rename from _images/edn.png rename to build/html/_images/edn.png diff --git a/_images/eleven.png b/build/html/_images/eleven.png similarity index 100% rename from _images/eleven.png rename to build/html/_images/eleven.png diff --git a/_images/en1.png b/build/html/_images/en1.png similarity index 100% rename from _images/en1.png rename to build/html/_images/en1.png diff --git a/_images/en2.png b/build/html/_images/en2.png similarity index 100% rename from _images/en2.png rename to build/html/_images/en2.png diff --git a/_images/epf.png b/build/html/_images/epf.png similarity index 100% rename from _images/epf.png rename to build/html/_images/epf.png diff --git a/_images/exl.png b/build/html/_images/exl.png similarity index 100% rename from _images/exl.png rename to build/html/_images/exl.png diff --git a/_images/fifteen.png b/build/html/_images/fifteen.png similarity index 100% rename from _images/fifteen.png rename to build/html/_images/fifteen.png diff --git a/_images/formula.png b/build/html/_images/formula.png similarity index 100% rename from _images/formula.png rename to build/html/_images/formula.png diff --git a/_images/h1.png b/build/html/_images/h1.png similarity index 100% rename from _images/h1.png rename to build/html/_images/h1.png diff --git a/_images/h2.png b/build/html/_images/h2.png similarity index 100% rename from _images/h2.png rename to build/html/_images/h2.png diff --git a/_images/h3.png b/build/html/_images/h3.png similarity index 100% rename from _images/h3.png rename to build/html/_images/h3.png diff --git a/_images/h4.png b/build/html/_images/h4.png similarity index 100% rename from _images/h4.png rename to build/html/_images/h4.png diff --git a/_images/h5.png b/build/html/_images/h5.png similarity index 100% rename from _images/h5.png rename to build/html/_images/h5.png diff --git a/_images/h6.png b/build/html/_images/h6.png similarity index 100% rename from _images/h6.png rename to build/html/_images/h6.png diff --git a/_images/h7.png b/build/html/_images/h7.png similarity index 100% rename from _images/h7.png rename to build/html/_images/h7.png diff --git a/_images/hc1.png b/build/html/_images/hc1.png similarity index 100% rename from _images/hc1.png rename to build/html/_images/hc1.png diff --git a/_images/hc2.png b/build/html/_images/hc2.png similarity index 100% rename from _images/hc2.png rename to build/html/_images/hc2.png diff --git a/_images/image1.png b/build/html/_images/image1.png similarity index 100% rename from _images/image1.png rename to build/html/_images/image1.png diff --git a/_images/image10.png b/build/html/_images/image10.png similarity index 100% rename from _images/image10.png rename to build/html/_images/image10.png diff --git a/_images/image100.png b/build/html/_images/image100.png similarity index 100% rename from _images/image100.png rename to build/html/_images/image100.png diff --git a/_images/image101.png b/build/html/_images/image101.png similarity index 100% rename from _images/image101.png rename to build/html/_images/image101.png diff --git a/_images/image102.png b/build/html/_images/image102.png similarity index 100% rename from _images/image102.png rename to build/html/_images/image102.png diff --git a/_images/image103.png b/build/html/_images/image103.png similarity index 100% rename from _images/image103.png rename to build/html/_images/image103.png diff --git a/_images/image104.png b/build/html/_images/image104.png similarity index 100% rename from _images/image104.png rename to build/html/_images/image104.png diff --git a/_images/image105.png b/build/html/_images/image105.png similarity index 100% rename from _images/image105.png rename to build/html/_images/image105.png diff --git a/_images/image106.png b/build/html/_images/image106.png similarity index 100% rename from _images/image106.png rename to build/html/_images/image106.png diff --git a/_images/image107.png b/build/html/_images/image107.png similarity index 100% rename from _images/image107.png rename to build/html/_images/image107.png diff --git a/_images/image108.png b/build/html/_images/image108.png similarity index 100% rename from _images/image108.png rename to build/html/_images/image108.png diff --git a/_images/image109.png b/build/html/_images/image109.png similarity index 100% rename from _images/image109.png rename to build/html/_images/image109.png diff --git a/_images/image11.png b/build/html/_images/image11.png similarity index 100% rename from _images/image11.png rename to build/html/_images/image11.png diff --git a/_images/image110.png b/build/html/_images/image110.png similarity index 100% rename from _images/image110.png rename to build/html/_images/image110.png diff --git a/_images/image111.png b/build/html/_images/image111.png similarity index 100% rename from _images/image111.png rename to build/html/_images/image111.png diff --git a/_images/image112.png b/build/html/_images/image112.png similarity index 100% rename from _images/image112.png rename to build/html/_images/image112.png diff --git a/_images/image113.png b/build/html/_images/image113.png similarity index 100% rename from _images/image113.png rename to build/html/_images/image113.png diff --git a/_images/image114.png b/build/html/_images/image114.png similarity index 100% rename from _images/image114.png rename to build/html/_images/image114.png diff --git a/_images/image115.png b/build/html/_images/image115.png similarity index 100% rename from _images/image115.png rename to build/html/_images/image115.png diff --git a/_images/image116.png b/build/html/_images/image116.png similarity index 100% rename from _images/image116.png rename to build/html/_images/image116.png diff --git a/_images/image117.png b/build/html/_images/image117.png similarity index 100% rename from _images/image117.png rename to build/html/_images/image117.png diff --git a/_images/image118.png b/build/html/_images/image118.png similarity index 100% rename from _images/image118.png rename to build/html/_images/image118.png diff --git a/_images/image119.png b/build/html/_images/image119.png similarity index 100% rename from _images/image119.png rename to build/html/_images/image119.png diff --git a/_images/image12.png b/build/html/_images/image12.png similarity index 100% rename from _images/image12.png rename to build/html/_images/image12.png diff --git a/_images/image120.png b/build/html/_images/image120.png similarity index 100% rename from _images/image120.png rename to build/html/_images/image120.png diff --git a/_images/image121.png b/build/html/_images/image121.png similarity index 100% rename from _images/image121.png rename to build/html/_images/image121.png diff --git a/_images/image122.png b/build/html/_images/image122.png similarity index 100% rename from _images/image122.png rename to build/html/_images/image122.png diff --git a/_images/image123.png b/build/html/_images/image123.png similarity index 100% rename from _images/image123.png rename to build/html/_images/image123.png diff --git a/_images/image124.png b/build/html/_images/image124.png similarity index 100% rename from _images/image124.png rename to build/html/_images/image124.png diff --git a/_images/image125.png b/build/html/_images/image125.png similarity index 100% rename from _images/image125.png rename to build/html/_images/image125.png diff --git a/_images/image126.png b/build/html/_images/image126.png similarity index 100% rename from _images/image126.png rename to build/html/_images/image126.png diff --git a/_images/image127.png b/build/html/_images/image127.png similarity index 100% rename from _images/image127.png rename to build/html/_images/image127.png diff --git a/_images/image128.png b/build/html/_images/image128.png similarity index 100% rename from _images/image128.png rename to build/html/_images/image128.png diff --git a/_images/image129.png b/build/html/_images/image129.png similarity index 100% rename from _images/image129.png rename to build/html/_images/image129.png diff --git a/_images/image13.png b/build/html/_images/image13.png similarity index 100% rename from _images/image13.png rename to build/html/_images/image13.png diff --git a/_images/image130.png b/build/html/_images/image130.png similarity index 100% rename from _images/image130.png rename to build/html/_images/image130.png diff --git a/_images/image131.png b/build/html/_images/image131.png similarity index 100% rename from _images/image131.png rename to build/html/_images/image131.png diff --git a/_images/image132.png b/build/html/_images/image132.png similarity index 100% rename from _images/image132.png rename to build/html/_images/image132.png diff --git a/_images/image133.png b/build/html/_images/image133.png similarity index 100% rename from _images/image133.png rename to build/html/_images/image133.png diff --git a/_images/image134.png b/build/html/_images/image134.png similarity index 100% rename from _images/image134.png rename to build/html/_images/image134.png diff --git a/_images/image135.png b/build/html/_images/image135.png similarity index 100% rename from _images/image135.png rename to build/html/_images/image135.png diff --git a/_images/image136.png b/build/html/_images/image136.png similarity index 100% rename from _images/image136.png rename to build/html/_images/image136.png diff --git a/_images/image137.png b/build/html/_images/image137.png similarity index 100% rename from _images/image137.png rename to build/html/_images/image137.png diff --git a/_images/image14.png b/build/html/_images/image14.png similarity index 100% rename from _images/image14.png rename to build/html/_images/image14.png diff --git a/_images/image15.png b/build/html/_images/image15.png similarity index 100% rename from _images/image15.png rename to build/html/_images/image15.png diff --git a/_images/image16.png b/build/html/_images/image16.png similarity index 100% rename from _images/image16.png rename to build/html/_images/image16.png diff --git a/_images/image17.png b/build/html/_images/image17.png similarity index 100% rename from _images/image17.png rename to build/html/_images/image17.png diff --git a/_images/image18.png b/build/html/_images/image18.png similarity index 100% rename from _images/image18.png rename to build/html/_images/image18.png diff --git a/_images/image19.jpeg b/build/html/_images/image19.jpeg similarity index 100% rename from _images/image19.jpeg rename to build/html/_images/image19.jpeg diff --git a/_images/image2.png b/build/html/_images/image2.png similarity index 100% rename from _images/image2.png rename to build/html/_images/image2.png diff --git a/_images/image20.png b/build/html/_images/image20.png similarity index 100% rename from _images/image20.png rename to build/html/_images/image20.png diff --git a/_images/image21.png b/build/html/_images/image21.png similarity index 100% rename from _images/image21.png rename to build/html/_images/image21.png diff --git a/_images/image22.jpeg b/build/html/_images/image22.jpeg similarity index 100% rename from _images/image22.jpeg rename to build/html/_images/image22.jpeg diff --git a/_images/image23.jpeg b/build/html/_images/image23.jpeg similarity index 100% rename from _images/image23.jpeg rename to build/html/_images/image23.jpeg diff --git a/_images/image24.jpeg b/build/html/_images/image24.jpeg similarity index 100% rename from _images/image24.jpeg rename to build/html/_images/image24.jpeg diff --git a/_images/image25.png b/build/html/_images/image25.png similarity index 100% rename from _images/image25.png rename to build/html/_images/image25.png diff --git a/_images/image26.png b/build/html/_images/image26.png similarity index 100% rename from _images/image26.png rename to build/html/_images/image26.png diff --git a/_images/image27.png b/build/html/_images/image27.png similarity index 100% rename from _images/image27.png rename to build/html/_images/image27.png diff --git a/_images/image28.jpeg b/build/html/_images/image28.jpeg similarity index 100% rename from _images/image28.jpeg rename to build/html/_images/image28.jpeg diff --git a/_images/image29.png b/build/html/_images/image29.png similarity index 100% rename from _images/image29.png rename to build/html/_images/image29.png diff --git a/_images/image291.png b/build/html/_images/image291.png similarity index 100% rename from _images/image291.png rename to build/html/_images/image291.png diff --git a/_images/image3.jpeg b/build/html/_images/image3.jpeg similarity index 100% rename from _images/image3.jpeg rename to build/html/_images/image3.jpeg diff --git a/_images/image30.png b/build/html/_images/image30.png similarity index 100% rename from _images/image30.png rename to build/html/_images/image30.png diff --git a/_images/image31.png b/build/html/_images/image31.png similarity index 100% rename from _images/image31.png rename to build/html/_images/image31.png diff --git a/_images/image32.png b/build/html/_images/image32.png similarity index 100% rename from _images/image32.png rename to build/html/_images/image32.png diff --git a/_images/image33.png b/build/html/_images/image33.png similarity index 100% rename from _images/image33.png rename to build/html/_images/image33.png diff --git a/_images/image34.png b/build/html/_images/image34.png similarity index 100% rename from _images/image34.png rename to build/html/_images/image34.png diff --git a/_images/image35.png b/build/html/_images/image35.png similarity index 100% rename from _images/image35.png rename to build/html/_images/image35.png diff --git a/_images/image36.png b/build/html/_images/image36.png similarity index 100% rename from _images/image36.png rename to build/html/_images/image36.png diff --git a/_images/image37.png b/build/html/_images/image37.png similarity index 100% rename from _images/image37.png rename to build/html/_images/image37.png diff --git a/_images/image38.jpeg b/build/html/_images/image38.jpeg similarity index 100% rename from _images/image38.jpeg rename to build/html/_images/image38.jpeg diff --git a/_images/image39.png b/build/html/_images/image39.png similarity index 100% rename from _images/image39.png rename to build/html/_images/image39.png diff --git a/_images/image4.png b/build/html/_images/image4.png similarity index 100% rename from _images/image4.png rename to build/html/_images/image4.png diff --git a/_images/image40.jpeg b/build/html/_images/image40.jpeg similarity index 100% rename from _images/image40.jpeg rename to build/html/_images/image40.jpeg diff --git a/_images/image41.jpeg b/build/html/_images/image41.jpeg similarity index 100% rename from _images/image41.jpeg rename to build/html/_images/image41.jpeg diff --git a/_images/image42.png b/build/html/_images/image42.png similarity index 100% rename from _images/image42.png rename to build/html/_images/image42.png diff --git a/_images/image43.jpeg b/build/html/_images/image43.jpeg similarity index 100% rename from _images/image43.jpeg rename to build/html/_images/image43.jpeg diff --git a/_images/image44.jpeg b/build/html/_images/image44.jpeg similarity index 100% rename from _images/image44.jpeg rename to build/html/_images/image44.jpeg diff --git a/_images/image45.jpeg b/build/html/_images/image45.jpeg similarity index 100% rename from _images/image45.jpeg rename to build/html/_images/image45.jpeg diff --git a/_images/image46.png b/build/html/_images/image46.png similarity index 100% rename from _images/image46.png rename to build/html/_images/image46.png diff --git a/_images/image47.jpeg b/build/html/_images/image47.jpeg similarity index 100% rename from _images/image47.jpeg rename to build/html/_images/image47.jpeg diff --git a/_images/image48.jpeg b/build/html/_images/image48.jpeg similarity index 100% rename from _images/image48.jpeg rename to build/html/_images/image48.jpeg diff --git a/_images/image49.png b/build/html/_images/image49.png similarity index 100% rename from _images/image49.png rename to build/html/_images/image49.png diff --git a/_images/image5.jpeg b/build/html/_images/image5.jpeg similarity index 100% rename from _images/image5.jpeg rename to build/html/_images/image5.jpeg diff --git a/_images/image50.png b/build/html/_images/image50.png similarity index 100% rename from _images/image50.png rename to build/html/_images/image50.png diff --git a/_images/image51.png b/build/html/_images/image51.png similarity index 100% rename from _images/image51.png rename to build/html/_images/image51.png diff --git a/_images/image52.png b/build/html/_images/image52.png similarity index 100% rename from _images/image52.png rename to build/html/_images/image52.png diff --git a/_images/image53.png b/build/html/_images/image53.png similarity index 100% rename from _images/image53.png rename to build/html/_images/image53.png diff --git a/_images/image54.png b/build/html/_images/image54.png similarity index 100% rename from _images/image54.png rename to build/html/_images/image54.png diff --git a/_images/image55.png b/build/html/_images/image55.png similarity index 100% rename from _images/image55.png rename to build/html/_images/image55.png diff --git a/_images/image56.png b/build/html/_images/image56.png similarity index 100% rename from _images/image56.png rename to build/html/_images/image56.png diff --git a/_images/image57.png b/build/html/_images/image57.png similarity index 100% rename from _images/image57.png rename to build/html/_images/image57.png diff --git a/_images/image58.png b/build/html/_images/image58.png similarity index 100% rename from _images/image58.png rename to build/html/_images/image58.png diff --git a/_images/image59.png b/build/html/_images/image59.png similarity index 100% rename from _images/image59.png rename to build/html/_images/image59.png diff --git a/_images/image6.jpeg b/build/html/_images/image6.jpeg similarity index 100% rename from _images/image6.jpeg rename to build/html/_images/image6.jpeg diff --git a/_images/image60.png b/build/html/_images/image60.png similarity index 100% rename from _images/image60.png rename to build/html/_images/image60.png diff --git a/_images/image61.png b/build/html/_images/image61.png similarity index 100% rename from _images/image61.png rename to build/html/_images/image61.png diff --git a/_images/image62.png b/build/html/_images/image62.png similarity index 100% rename from _images/image62.png rename to build/html/_images/image62.png diff --git a/_images/image63.png b/build/html/_images/image63.png similarity index 100% rename from _images/image63.png rename to build/html/_images/image63.png diff --git a/_images/image64.png b/build/html/_images/image64.png similarity index 100% rename from _images/image64.png rename to build/html/_images/image64.png diff --git a/_images/image65.png b/build/html/_images/image65.png similarity index 100% rename from _images/image65.png rename to build/html/_images/image65.png diff --git a/_images/image66.png b/build/html/_images/image66.png similarity index 100% rename from _images/image66.png rename to build/html/_images/image66.png diff --git a/_images/image67.png b/build/html/_images/image67.png similarity index 100% rename from _images/image67.png rename to build/html/_images/image67.png diff --git a/_images/image68.png b/build/html/_images/image68.png similarity index 100% rename from _images/image68.png rename to build/html/_images/image68.png diff --git a/_images/image69.png b/build/html/_images/image69.png similarity index 100% rename from _images/image69.png rename to build/html/_images/image69.png diff --git a/_images/image7.png b/build/html/_images/image7.png similarity index 100% rename from _images/image7.png rename to build/html/_images/image7.png diff --git a/_images/image70.png b/build/html/_images/image70.png similarity index 100% rename from _images/image70.png rename to build/html/_images/image70.png diff --git a/_images/image71.png b/build/html/_images/image71.png similarity index 100% rename from _images/image71.png rename to build/html/_images/image71.png diff --git a/_images/image72.png b/build/html/_images/image72.png similarity index 100% rename from _images/image72.png rename to build/html/_images/image72.png diff --git a/_images/image73.png b/build/html/_images/image73.png similarity index 100% rename from _images/image73.png rename to build/html/_images/image73.png diff --git a/_images/image74.png b/build/html/_images/image74.png similarity index 100% rename from _images/image74.png rename to build/html/_images/image74.png diff --git a/_images/image75.png b/build/html/_images/image75.png similarity index 100% rename from _images/image75.png rename to build/html/_images/image75.png diff --git a/_images/image76.png b/build/html/_images/image76.png similarity index 100% rename from _images/image76.png rename to build/html/_images/image76.png diff --git a/_images/image77.png b/build/html/_images/image77.png similarity index 100% rename from _images/image77.png rename to build/html/_images/image77.png diff --git a/_images/image78.png b/build/html/_images/image78.png similarity index 100% rename from _images/image78.png rename to build/html/_images/image78.png diff --git a/_images/image79.png b/build/html/_images/image79.png similarity index 100% rename from _images/image79.png rename to build/html/_images/image79.png diff --git a/_images/image8.png b/build/html/_images/image8.png similarity index 100% rename from _images/image8.png rename to build/html/_images/image8.png diff --git a/_images/image80.png b/build/html/_images/image80.png similarity index 100% rename from _images/image80.png rename to build/html/_images/image80.png diff --git a/_images/image81.png b/build/html/_images/image81.png similarity index 100% rename from _images/image81.png rename to build/html/_images/image81.png diff --git a/_images/image82.png b/build/html/_images/image82.png similarity index 100% rename from _images/image82.png rename to build/html/_images/image82.png diff --git a/_images/image83.png b/build/html/_images/image83.png similarity index 100% rename from _images/image83.png rename to build/html/_images/image83.png diff --git a/_images/image84.png b/build/html/_images/image84.png similarity index 100% rename from _images/image84.png rename to build/html/_images/image84.png diff --git a/_images/image85.png b/build/html/_images/image85.png similarity index 100% rename from _images/image85.png rename to build/html/_images/image85.png diff --git a/_images/image86.png b/build/html/_images/image86.png similarity index 100% rename from _images/image86.png rename to build/html/_images/image86.png diff --git a/_images/image87.png b/build/html/_images/image87.png similarity index 100% rename from _images/image87.png rename to build/html/_images/image87.png diff --git a/_images/image88.png b/build/html/_images/image88.png similarity index 100% rename from _images/image88.png rename to build/html/_images/image88.png diff --git a/_images/image89.png b/build/html/_images/image89.png similarity index 100% rename from _images/image89.png rename to build/html/_images/image89.png diff --git a/_images/image9.png b/build/html/_images/image9.png similarity index 100% rename from _images/image9.png rename to build/html/_images/image9.png diff --git a/_images/image90.png b/build/html/_images/image90.png similarity index 100% rename from _images/image90.png rename to build/html/_images/image90.png diff --git a/_images/image91.png b/build/html/_images/image91.png similarity index 100% rename from _images/image91.png rename to build/html/_images/image91.png diff --git a/_images/image92.png b/build/html/_images/image92.png similarity index 100% rename from _images/image92.png rename to build/html/_images/image92.png diff --git a/_images/image93.png b/build/html/_images/image93.png similarity index 100% rename from _images/image93.png rename to build/html/_images/image93.png diff --git a/_images/image94.png b/build/html/_images/image94.png similarity index 100% rename from _images/image94.png rename to build/html/_images/image94.png diff --git a/_images/image95.png b/build/html/_images/image95.png similarity index 100% rename from _images/image95.png rename to build/html/_images/image95.png diff --git a/_images/image96.png b/build/html/_images/image96.png similarity index 100% rename from _images/image96.png rename to build/html/_images/image96.png diff --git a/_images/image97.png b/build/html/_images/image97.png similarity index 100% rename from _images/image97.png rename to build/html/_images/image97.png diff --git a/_images/image98.png b/build/html/_images/image98.png similarity index 100% rename from _images/image98.png rename to build/html/_images/image98.png diff --git a/_images/image99.png b/build/html/_images/image99.png similarity index 100% rename from _images/image99.png rename to build/html/_images/image99.png diff --git a/_images/key.png b/build/html/_images/key.png similarity index 100% rename from _images/key.png rename to build/html/_images/key.png diff --git a/_images/lck1.png b/build/html/_images/lck1.png similarity index 100% rename from _images/lck1.png rename to build/html/_images/lck1.png diff --git a/_images/lck2.png b/build/html/_images/lck2.png similarity index 100% rename from _images/lck2.png rename to build/html/_images/lck2.png diff --git a/_images/lcs.png b/build/html/_images/lcs.png similarity index 100% rename from _images/lcs.png rename to build/html/_images/lcs.png diff --git a/_images/m1.png b/build/html/_images/m1.png similarity index 100% rename from _images/m1.png rename to build/html/_images/m1.png diff --git a/_images/m10.png b/build/html/_images/m10.png similarity index 100% rename from _images/m10.png rename to build/html/_images/m10.png diff --git a/_images/m100.png b/build/html/_images/m100.png similarity index 100% rename from _images/m100.png rename to build/html/_images/m100.png diff --git a/_images/m101.png b/build/html/_images/m101.png similarity index 100% rename from _images/m101.png rename to build/html/_images/m101.png diff --git a/_images/m102.png b/build/html/_images/m102.png similarity index 100% rename from _images/m102.png rename to build/html/_images/m102.png diff --git a/_images/m103.png b/build/html/_images/m103.png similarity index 100% rename from _images/m103.png rename to build/html/_images/m103.png diff --git a/_images/m104.png b/build/html/_images/m104.png similarity index 100% rename from _images/m104.png rename to build/html/_images/m104.png diff --git a/_images/m105.png b/build/html/_images/m105.png similarity index 100% rename from _images/m105.png rename to build/html/_images/m105.png diff --git a/_images/m106.png b/build/html/_images/m106.png similarity index 100% rename from _images/m106.png rename to build/html/_images/m106.png diff --git a/_images/m107.png b/build/html/_images/m107.png similarity index 100% rename from _images/m107.png rename to build/html/_images/m107.png diff --git a/_images/m107a.png b/build/html/_images/m107a.png similarity index 100% rename from _images/m107a.png rename to build/html/_images/m107a.png diff --git a/_images/m107b.png b/build/html/_images/m107b.png similarity index 100% rename from _images/m107b.png rename to build/html/_images/m107b.png diff --git a/_images/m108.png b/build/html/_images/m108.png similarity index 100% rename from _images/m108.png rename to build/html/_images/m108.png diff --git a/_images/m109.png b/build/html/_images/m109.png similarity index 100% rename from _images/m109.png rename to build/html/_images/m109.png diff --git a/_images/m11.png b/build/html/_images/m11.png similarity index 100% rename from _images/m11.png rename to build/html/_images/m11.png diff --git a/_images/m110.png b/build/html/_images/m110.png similarity index 100% rename from _images/m110.png rename to build/html/_images/m110.png diff --git a/_images/m12.png b/build/html/_images/m12.png similarity index 100% rename from _images/m12.png rename to build/html/_images/m12.png diff --git a/_images/m13.png b/build/html/_images/m13.png similarity index 100% rename from _images/m13.png rename to build/html/_images/m13.png diff --git a/_images/m14.png b/build/html/_images/m14.png similarity index 100% rename from _images/m14.png rename to build/html/_images/m14.png diff --git a/_images/m15.png b/build/html/_images/m15.png similarity index 100% rename from _images/m15.png rename to build/html/_images/m15.png diff --git a/_images/m16.png b/build/html/_images/m16.png similarity index 100% rename from _images/m16.png rename to build/html/_images/m16.png diff --git a/_images/m17.png b/build/html/_images/m17.png similarity index 100% rename from _images/m17.png rename to build/html/_images/m17.png diff --git a/_images/m18.png b/build/html/_images/m18.png similarity index 100% rename from _images/m18.png rename to build/html/_images/m18.png diff --git a/_images/m19.png b/build/html/_images/m19.png similarity index 100% rename from _images/m19.png rename to build/html/_images/m19.png diff --git a/_images/m2.png b/build/html/_images/m2.png similarity index 100% rename from _images/m2.png rename to build/html/_images/m2.png diff --git a/_images/m20.png b/build/html/_images/m20.png similarity index 100% rename from _images/m20.png rename to build/html/_images/m20.png diff --git a/_images/m21.png b/build/html/_images/m21.png similarity index 100% rename from _images/m21.png rename to build/html/_images/m21.png diff --git a/_images/m22.png b/build/html/_images/m22.png similarity index 100% rename from _images/m22.png rename to build/html/_images/m22.png diff --git a/_images/m23.png b/build/html/_images/m23.png similarity index 100% rename from _images/m23.png rename to build/html/_images/m23.png diff --git a/_images/m23a.png b/build/html/_images/m23a.png similarity index 100% rename from _images/m23a.png rename to build/html/_images/m23a.png diff --git a/_images/m24.png b/build/html/_images/m24.png similarity index 100% rename from _images/m24.png rename to build/html/_images/m24.png diff --git a/_images/m25.png b/build/html/_images/m25.png similarity index 100% rename from _images/m25.png rename to build/html/_images/m25.png diff --git a/_images/m26.png b/build/html/_images/m26.png similarity index 100% rename from _images/m26.png rename to build/html/_images/m26.png diff --git a/_images/m27.png b/build/html/_images/m27.png similarity index 100% rename from _images/m27.png rename to build/html/_images/m27.png diff --git a/_images/m28.png b/build/html/_images/m28.png similarity index 100% rename from _images/m28.png rename to build/html/_images/m28.png diff --git a/_images/m29.png b/build/html/_images/m29.png similarity index 100% rename from _images/m29.png rename to build/html/_images/m29.png diff --git a/_images/m3.png b/build/html/_images/m3.png similarity index 100% rename from _images/m3.png rename to build/html/_images/m3.png diff --git a/_images/m30.png b/build/html/_images/m30.png similarity index 100% rename from _images/m30.png rename to build/html/_images/m30.png diff --git a/_images/m31.png b/build/html/_images/m31.png similarity index 100% rename from _images/m31.png rename to build/html/_images/m31.png diff --git a/_images/m32.png b/build/html/_images/m32.png similarity index 100% rename from _images/m32.png rename to build/html/_images/m32.png diff --git a/_images/m32a.png b/build/html/_images/m32a.png similarity index 100% rename from _images/m32a.png rename to build/html/_images/m32a.png diff --git a/_images/m33.png b/build/html/_images/m33.png similarity index 100% rename from _images/m33.png rename to build/html/_images/m33.png diff --git a/_images/m34.png b/build/html/_images/m34.png similarity index 100% rename from _images/m34.png rename to build/html/_images/m34.png diff --git a/_images/m35.png b/build/html/_images/m35.png similarity index 100% rename from _images/m35.png rename to build/html/_images/m35.png diff --git a/_images/m36.png b/build/html/_images/m36.png similarity index 100% rename from _images/m36.png rename to build/html/_images/m36.png diff --git a/_images/m37.png b/build/html/_images/m37.png similarity index 100% rename from _images/m37.png rename to build/html/_images/m37.png diff --git a/_images/m38.png b/build/html/_images/m38.png similarity index 100% rename from _images/m38.png rename to build/html/_images/m38.png diff --git a/_images/m39.png b/build/html/_images/m39.png similarity index 100% rename from _images/m39.png rename to build/html/_images/m39.png diff --git a/_images/m39a.png b/build/html/_images/m39a.png similarity index 100% rename from _images/m39a.png rename to build/html/_images/m39a.png diff --git a/_images/m4.png b/build/html/_images/m4.png similarity index 100% rename from _images/m4.png rename to build/html/_images/m4.png diff --git a/_images/m40.png b/build/html/_images/m40.png similarity index 100% rename from _images/m40.png rename to build/html/_images/m40.png diff --git a/_images/m41.png b/build/html/_images/m41.png similarity index 100% rename from _images/m41.png rename to build/html/_images/m41.png diff --git a/_images/m42.png b/build/html/_images/m42.png similarity index 100% rename from _images/m42.png rename to build/html/_images/m42.png diff --git a/_images/m43.png b/build/html/_images/m43.png similarity index 100% rename from _images/m43.png rename to build/html/_images/m43.png diff --git a/_images/m44.png b/build/html/_images/m44.png similarity index 100% rename from _images/m44.png rename to build/html/_images/m44.png diff --git a/_images/m45.png b/build/html/_images/m45.png similarity index 100% rename from _images/m45.png rename to build/html/_images/m45.png diff --git a/_images/m46.png b/build/html/_images/m46.png similarity index 100% rename from _images/m46.png rename to build/html/_images/m46.png diff --git a/_images/m47.png b/build/html/_images/m47.png similarity index 100% rename from _images/m47.png rename to build/html/_images/m47.png diff --git a/_images/m48.png b/build/html/_images/m48.png similarity index 100% rename from _images/m48.png rename to build/html/_images/m48.png diff --git a/_images/m49.png b/build/html/_images/m49.png similarity index 100% rename from _images/m49.png rename to build/html/_images/m49.png diff --git a/_images/m5.png b/build/html/_images/m5.png similarity index 100% rename from _images/m5.png rename to build/html/_images/m5.png diff --git a/_images/m50.png b/build/html/_images/m50.png similarity index 100% rename from _images/m50.png rename to build/html/_images/m50.png diff --git a/_images/m51.png b/build/html/_images/m51.png similarity index 100% rename from _images/m51.png rename to build/html/_images/m51.png diff --git a/_images/m52.png b/build/html/_images/m52.png similarity index 100% rename from _images/m52.png rename to build/html/_images/m52.png diff --git a/_images/m53.png b/build/html/_images/m53.png similarity index 100% rename from _images/m53.png rename to build/html/_images/m53.png diff --git a/_images/m54.png b/build/html/_images/m54.png similarity index 100% rename from _images/m54.png rename to build/html/_images/m54.png diff --git a/_images/m55.png b/build/html/_images/m55.png similarity index 100% rename from _images/m55.png rename to build/html/_images/m55.png diff --git a/_images/m56.png b/build/html/_images/m56.png similarity index 100% rename from _images/m56.png rename to build/html/_images/m56.png diff --git a/_images/m57.png b/build/html/_images/m57.png similarity index 100% rename from _images/m57.png rename to build/html/_images/m57.png diff --git a/_images/m58.png b/build/html/_images/m58.png similarity index 100% rename from _images/m58.png rename to build/html/_images/m58.png diff --git a/_images/m59.png b/build/html/_images/m59.png similarity index 100% rename from _images/m59.png rename to build/html/_images/m59.png diff --git a/_images/m6.png b/build/html/_images/m6.png similarity index 100% rename from _images/m6.png rename to build/html/_images/m6.png diff --git a/_images/m60.png b/build/html/_images/m60.png similarity index 100% rename from _images/m60.png rename to build/html/_images/m60.png diff --git a/_images/m61.png b/build/html/_images/m61.png similarity index 100% rename from _images/m61.png rename to build/html/_images/m61.png diff --git a/_images/m62.png b/build/html/_images/m62.png similarity index 100% rename from _images/m62.png rename to build/html/_images/m62.png diff --git a/_images/m63.png b/build/html/_images/m63.png similarity index 100% rename from _images/m63.png rename to build/html/_images/m63.png diff --git a/_images/m64.png b/build/html/_images/m64.png similarity index 100% rename from _images/m64.png rename to build/html/_images/m64.png diff --git a/_images/m65.png b/build/html/_images/m65.png similarity index 100% rename from _images/m65.png rename to build/html/_images/m65.png diff --git a/_images/m66.png b/build/html/_images/m66.png similarity index 100% rename from _images/m66.png rename to build/html/_images/m66.png diff --git a/_images/m67.png b/build/html/_images/m67.png similarity index 100% rename from _images/m67.png rename to build/html/_images/m67.png diff --git a/_images/m68.png b/build/html/_images/m68.png similarity index 100% rename from _images/m68.png rename to build/html/_images/m68.png diff --git a/_images/m69.png b/build/html/_images/m69.png similarity index 100% rename from _images/m69.png rename to build/html/_images/m69.png diff --git a/_images/m7.png b/build/html/_images/m7.png similarity index 100% rename from _images/m7.png rename to build/html/_images/m7.png diff --git a/_images/m70.png b/build/html/_images/m70.png similarity index 100% rename from _images/m70.png rename to build/html/_images/m70.png diff --git a/_images/m71.png b/build/html/_images/m71.png similarity index 100% rename from _images/m71.png rename to build/html/_images/m71.png diff --git a/_images/m72.png b/build/html/_images/m72.png similarity index 100% rename from _images/m72.png rename to build/html/_images/m72.png diff --git a/_images/m73.png b/build/html/_images/m73.png similarity index 100% rename from _images/m73.png rename to build/html/_images/m73.png diff --git a/_images/m74.png b/build/html/_images/m74.png similarity index 100% rename from _images/m74.png rename to build/html/_images/m74.png diff --git a/_images/m75.png b/build/html/_images/m75.png similarity index 100% rename from _images/m75.png rename to build/html/_images/m75.png diff --git a/_images/m76.png b/build/html/_images/m76.png similarity index 100% rename from _images/m76.png rename to build/html/_images/m76.png diff --git a/_images/m77.png b/build/html/_images/m77.png similarity index 100% rename from _images/m77.png rename to build/html/_images/m77.png diff --git a/_images/m78.png b/build/html/_images/m78.png similarity index 100% rename from _images/m78.png rename to build/html/_images/m78.png diff --git a/_images/m78a.png b/build/html/_images/m78a.png similarity index 100% rename from _images/m78a.png rename to build/html/_images/m78a.png diff --git a/_images/m79.png b/build/html/_images/m79.png similarity index 100% rename from _images/m79.png rename to build/html/_images/m79.png diff --git a/_images/m79a.png b/build/html/_images/m79a.png similarity index 100% rename from _images/m79a.png rename to build/html/_images/m79a.png diff --git a/_images/m8.png b/build/html/_images/m8.png similarity index 100% rename from _images/m8.png rename to build/html/_images/m8.png diff --git a/_images/m80.png b/build/html/_images/m80.png similarity index 100% rename from _images/m80.png rename to build/html/_images/m80.png diff --git a/_images/m81.png b/build/html/_images/m81.png similarity index 100% rename from _images/m81.png rename to build/html/_images/m81.png diff --git a/_images/m82.png b/build/html/_images/m82.png similarity index 100% rename from _images/m82.png rename to build/html/_images/m82.png diff --git a/_images/m83.png b/build/html/_images/m83.png similarity index 100% rename from _images/m83.png rename to build/html/_images/m83.png diff --git a/_images/m84.png b/build/html/_images/m84.png similarity index 100% rename from _images/m84.png rename to build/html/_images/m84.png diff --git a/_images/m85.png b/build/html/_images/m85.png similarity index 100% rename from _images/m85.png rename to build/html/_images/m85.png diff --git a/_images/m86.png b/build/html/_images/m86.png similarity index 100% rename from _images/m86.png rename to build/html/_images/m86.png diff --git a/_images/m87.png b/build/html/_images/m87.png similarity index 100% rename from _images/m87.png rename to build/html/_images/m87.png diff --git a/_images/m88.png b/build/html/_images/m88.png similarity index 100% rename from _images/m88.png rename to build/html/_images/m88.png diff --git a/_images/m89.png b/build/html/_images/m89.png similarity index 100% rename from _images/m89.png rename to build/html/_images/m89.png diff --git a/_images/m9.png b/build/html/_images/m9.png similarity index 100% rename from _images/m9.png rename to build/html/_images/m9.png diff --git a/_images/m90.png b/build/html/_images/m90.png similarity index 100% rename from _images/m90.png rename to build/html/_images/m90.png diff --git a/_images/m91.png b/build/html/_images/m91.png similarity index 100% rename from _images/m91.png rename to build/html/_images/m91.png diff --git a/_images/m92.png b/build/html/_images/m92.png similarity index 100% rename from _images/m92.png rename to build/html/_images/m92.png diff --git a/_images/m93.png b/build/html/_images/m93.png similarity index 100% rename from _images/m93.png rename to build/html/_images/m93.png diff --git a/_images/m94.png b/build/html/_images/m94.png similarity index 100% rename from _images/m94.png rename to build/html/_images/m94.png diff --git a/_images/m95.png b/build/html/_images/m95.png similarity index 100% rename from _images/m95.png rename to build/html/_images/m95.png diff --git a/_images/m96.png b/build/html/_images/m96.png similarity index 100% rename from _images/m96.png rename to build/html/_images/m96.png diff --git a/_images/m96a.png b/build/html/_images/m96a.png similarity index 100% rename from _images/m96a.png rename to build/html/_images/m96a.png diff --git a/_images/m96b.png b/build/html/_images/m96b.png similarity index 100% rename from _images/m96b.png rename to build/html/_images/m96b.png diff --git a/_images/m96c.png b/build/html/_images/m96c.png similarity index 100% rename from _images/m96c.png rename to build/html/_images/m96c.png diff --git a/_images/m96d.png b/build/html/_images/m96d.png similarity index 100% rename from _images/m96d.png rename to build/html/_images/m96d.png diff --git a/_images/m96e.png b/build/html/_images/m96e.png similarity index 100% rename from _images/m96e.png rename to build/html/_images/m96e.png diff --git a/_images/m96f.png b/build/html/_images/m96f.png similarity index 100% rename from _images/m96f.png rename to build/html/_images/m96f.png diff --git a/_images/m96g.png b/build/html/_images/m96g.png similarity index 100% rename from _images/m96g.png rename to build/html/_images/m96g.png diff --git a/_images/m96h.png b/build/html/_images/m96h.png similarity index 100% rename from _images/m96h.png rename to build/html/_images/m96h.png diff --git a/_images/m96i.png b/build/html/_images/m96i.png similarity index 100% rename from _images/m96i.png rename to build/html/_images/m96i.png diff --git a/_images/m96j.png b/build/html/_images/m96j.png similarity index 100% rename from _images/m96j.png rename to build/html/_images/m96j.png diff --git a/_images/m97.png b/build/html/_images/m97.png similarity index 100% rename from _images/m97.png rename to build/html/_images/m97.png diff --git a/_images/m98.png b/build/html/_images/m98.png similarity index 100% rename from _images/m98.png rename to build/html/_images/m98.png diff --git a/_images/m99.png b/build/html/_images/m99.png similarity index 100% rename from _images/m99.png rename to build/html/_images/m99.png diff --git a/_images/mm1.png b/build/html/_images/mm1.png similarity index 100% rename from _images/mm1.png rename to build/html/_images/mm1.png diff --git a/_images/mm2.png b/build/html/_images/mm2.png similarity index 100% rename from _images/mm2.png rename to build/html/_images/mm2.png diff --git a/_images/more.png b/build/html/_images/more.png similarity index 100% rename from _images/more.png rename to build/html/_images/more.png diff --git a/_images/mt1.png b/build/html/_images/mt1.png similarity index 100% rename from _images/mt1.png rename to build/html/_images/mt1.png diff --git a/_images/mt2.png b/build/html/_images/mt2.png similarity index 100% rename from _images/mt2.png rename to build/html/_images/mt2.png diff --git a/_images/nav1.png b/build/html/_images/nav1.png similarity index 100% rename from _images/nav1.png rename to build/html/_images/nav1.png diff --git a/_images/nav2.png b/build/html/_images/nav2.png similarity index 100% rename from _images/nav2.png rename to build/html/_images/nav2.png diff --git a/_images/nav3.png b/build/html/_images/nav3.png similarity index 100% rename from _images/nav3.png rename to build/html/_images/nav3.png diff --git a/_images/nav4.png b/build/html/_images/nav4.png similarity index 100% rename from _images/nav4.png rename to build/html/_images/nav4.png diff --git a/_images/nav5.png b/build/html/_images/nav5.png similarity index 100% rename from _images/nav5.png rename to build/html/_images/nav5.png diff --git a/_images/nav6.png b/build/html/_images/nav6.png similarity index 100% rename from _images/nav6.png rename to build/html/_images/nav6.png diff --git a/_images/nav7.png b/build/html/_images/nav7.png similarity index 100% rename from _images/nav7.png rename to build/html/_images/nav7.png diff --git a/_images/nav8.png b/build/html/_images/nav8.png similarity index 100% rename from _images/nav8.png rename to build/html/_images/nav8.png diff --git a/_images/nav9.png b/build/html/_images/nav9.png similarity index 100% rename from _images/nav9.png rename to build/html/_images/nav9.png diff --git a/_images/navp.png b/build/html/_images/navp.png similarity index 100% rename from _images/navp.png rename to build/html/_images/navp.png diff --git a/_images/nc1.png b/build/html/_images/nc1.png similarity index 100% rename from _images/nc1.png rename to build/html/_images/nc1.png diff --git a/_images/nc2.png b/build/html/_images/nc2.png similarity index 100% rename from _images/nc2.png rename to build/html/_images/nc2.png diff --git a/_images/nf1.png b/build/html/_images/nf1.png similarity index 100% rename from _images/nf1.png rename to build/html/_images/nf1.png diff --git a/_images/nf2.png b/build/html/_images/nf2.png similarity index 100% rename from _images/nf2.png rename to build/html/_images/nf2.png diff --git a/_images/nm1.png b/build/html/_images/nm1.png similarity index 100% rename from _images/nm1.png rename to build/html/_images/nm1.png diff --git a/_images/nm3.png b/build/html/_images/nm3.png similarity index 100% rename from _images/nm3.png rename to build/html/_images/nm3.png diff --git a/_images/nm4.png b/build/html/_images/nm4.png similarity index 100% rename from _images/nm4.png rename to build/html/_images/nm4.png diff --git a/_images/nm5.png b/build/html/_images/nm5.png similarity index 100% rename from _images/nm5.png rename to build/html/_images/nm5.png diff --git a/_images/nm6.png b/build/html/_images/nm6.png similarity index 100% rename from _images/nm6.png rename to build/html/_images/nm6.png diff --git a/_images/pl1.png b/build/html/_images/pl1.png similarity index 100% rename from _images/pl1.png rename to build/html/_images/pl1.png diff --git a/_images/pl10.png b/build/html/_images/pl10.png similarity index 100% rename from _images/pl10.png rename to build/html/_images/pl10.png diff --git a/_images/pl11.png b/build/html/_images/pl11.png similarity index 100% rename from _images/pl11.png rename to build/html/_images/pl11.png diff --git a/_images/pl12.png b/build/html/_images/pl12.png similarity index 100% rename from _images/pl12.png rename to build/html/_images/pl12.png diff --git a/_images/pl13.png b/build/html/_images/pl13.png similarity index 100% rename from _images/pl13.png rename to build/html/_images/pl13.png diff --git a/_images/pl14.png b/build/html/_images/pl14.png similarity index 100% rename from _images/pl14.png rename to build/html/_images/pl14.png diff --git a/_images/pl15.png b/build/html/_images/pl15.png similarity index 100% rename from _images/pl15.png rename to build/html/_images/pl15.png diff --git a/_images/pl16.png b/build/html/_images/pl16.png similarity index 100% rename from _images/pl16.png rename to build/html/_images/pl16.png diff --git a/_images/pl17.png b/build/html/_images/pl17.png similarity index 100% rename from _images/pl17.png rename to build/html/_images/pl17.png diff --git a/_images/pl18.png b/build/html/_images/pl18.png similarity index 100% rename from _images/pl18.png rename to build/html/_images/pl18.png diff --git a/_images/pl19.png b/build/html/_images/pl19.png similarity index 100% rename from _images/pl19.png rename to build/html/_images/pl19.png diff --git a/_images/pl2.png b/build/html/_images/pl2.png similarity index 100% rename from _images/pl2.png rename to build/html/_images/pl2.png diff --git a/_images/pl20.png b/build/html/_images/pl20.png similarity index 100% rename from _images/pl20.png rename to build/html/_images/pl20.png diff --git a/_images/pl21.png b/build/html/_images/pl21.png similarity index 100% rename from _images/pl21.png rename to build/html/_images/pl21.png diff --git a/_images/pl22.png b/build/html/_images/pl22.png similarity index 100% rename from _images/pl22.png rename to build/html/_images/pl22.png diff --git a/_images/pl23.png b/build/html/_images/pl23.png similarity index 100% rename from _images/pl23.png rename to build/html/_images/pl23.png diff --git a/_images/pl24.png b/build/html/_images/pl24.png similarity index 100% rename from _images/pl24.png rename to build/html/_images/pl24.png diff --git a/_images/pl25.png b/build/html/_images/pl25.png similarity index 100% rename from _images/pl25.png rename to build/html/_images/pl25.png diff --git a/_images/pl26.png b/build/html/_images/pl26.png similarity index 100% rename from _images/pl26.png rename to build/html/_images/pl26.png diff --git a/_images/pl27.png b/build/html/_images/pl27.png similarity index 100% rename from _images/pl27.png rename to build/html/_images/pl27.png diff --git a/_images/pl28.png b/build/html/_images/pl28.png similarity index 100% rename from _images/pl28.png rename to build/html/_images/pl28.png diff --git a/_images/pl29.png b/build/html/_images/pl29.png similarity index 100% rename from _images/pl29.png rename to build/html/_images/pl29.png diff --git a/_images/pl3.png b/build/html/_images/pl3.png similarity index 100% rename from _images/pl3.png rename to build/html/_images/pl3.png diff --git a/_images/pl30.png b/build/html/_images/pl30.png similarity index 100% rename from _images/pl30.png rename to build/html/_images/pl30.png diff --git a/_images/pl31.png b/build/html/_images/pl31.png similarity index 100% rename from _images/pl31.png rename to build/html/_images/pl31.png diff --git a/_images/pl32.png b/build/html/_images/pl32.png similarity index 100% rename from _images/pl32.png rename to build/html/_images/pl32.png diff --git a/_images/pl33.png b/build/html/_images/pl33.png similarity index 100% rename from _images/pl33.png rename to build/html/_images/pl33.png diff --git a/_images/pl34.png b/build/html/_images/pl34.png similarity index 100% rename from _images/pl34.png rename to build/html/_images/pl34.png diff --git a/_images/pl35.png b/build/html/_images/pl35.png similarity index 100% rename from _images/pl35.png rename to build/html/_images/pl35.png diff --git a/_images/pl36.png b/build/html/_images/pl36.png similarity index 100% rename from _images/pl36.png rename to build/html/_images/pl36.png diff --git a/_images/pl37.png b/build/html/_images/pl37.png similarity index 100% rename from _images/pl37.png rename to build/html/_images/pl37.png diff --git a/_images/pl38.png b/build/html/_images/pl38.png similarity index 100% rename from _images/pl38.png rename to build/html/_images/pl38.png diff --git a/_images/pl39.png b/build/html/_images/pl39.png similarity index 100% rename from _images/pl39.png rename to build/html/_images/pl39.png diff --git a/_images/pl4.png b/build/html/_images/pl4.png similarity index 100% rename from _images/pl4.png rename to build/html/_images/pl4.png diff --git a/_images/pl5.png b/build/html/_images/pl5.png similarity index 100% rename from _images/pl5.png rename to build/html/_images/pl5.png diff --git a/_images/pl6.png b/build/html/_images/pl6.png similarity index 100% rename from _images/pl6.png rename to build/html/_images/pl6.png diff --git a/_images/pl7.png b/build/html/_images/pl7.png similarity index 100% rename from _images/pl7.png rename to build/html/_images/pl7.png diff --git a/_images/pl8.png b/build/html/_images/pl8.png similarity index 100% rename from _images/pl8.png rename to build/html/_images/pl8.png diff --git a/_images/pl9.png b/build/html/_images/pl9.png similarity index 100% rename from _images/pl9.png rename to build/html/_images/pl9.png diff --git a/_images/plch.png b/build/html/_images/plch.png similarity index 100% rename from _images/plch.png rename to build/html/_images/plch.png diff --git a/_images/pll1.png b/build/html/_images/pll1.png similarity index 100% rename from _images/pll1.png rename to build/html/_images/pll1.png diff --git a/_images/pll2.png b/build/html/_images/pll2.png similarity index 100% rename from _images/pll2.png rename to build/html/_images/pll2.png diff --git a/_images/pll3.png b/build/html/_images/pll3.png similarity index 100% rename from _images/pll3.png rename to build/html/_images/pll3.png diff --git a/_images/qe1.png b/build/html/_images/qe1.png similarity index 100% rename from _images/qe1.png rename to build/html/_images/qe1.png diff --git a/_images/qe10.png b/build/html/_images/qe10.png similarity index 100% rename from _images/qe10.png rename to build/html/_images/qe10.png diff --git a/_images/qe11.png b/build/html/_images/qe11.png similarity index 100% rename from _images/qe11.png rename to build/html/_images/qe11.png diff --git a/_images/qe12.png b/build/html/_images/qe12.png similarity index 100% rename from _images/qe12.png rename to build/html/_images/qe12.png diff --git a/_images/qe13.png b/build/html/_images/qe13.png similarity index 100% rename from _images/qe13.png rename to build/html/_images/qe13.png diff --git a/_images/qe14.png b/build/html/_images/qe14.png similarity index 100% rename from _images/qe14.png rename to build/html/_images/qe14.png diff --git a/_images/qe15.png b/build/html/_images/qe15.png similarity index 100% rename from _images/qe15.png rename to build/html/_images/qe15.png diff --git a/_images/qe16.png b/build/html/_images/qe16.png similarity index 100% rename from _images/qe16.png rename to build/html/_images/qe16.png diff --git a/_images/qe17.png b/build/html/_images/qe17.png similarity index 100% rename from _images/qe17.png rename to build/html/_images/qe17.png diff --git a/_images/qe18.png b/build/html/_images/qe18.png similarity index 100% rename from _images/qe18.png rename to build/html/_images/qe18.png diff --git a/_images/qe19.png b/build/html/_images/qe19.png similarity index 100% rename from _images/qe19.png rename to build/html/_images/qe19.png diff --git a/_images/qe2.png b/build/html/_images/qe2.png similarity index 100% rename from _images/qe2.png rename to build/html/_images/qe2.png diff --git a/_images/qe20.png b/build/html/_images/qe20.png similarity index 100% rename from _images/qe20.png rename to build/html/_images/qe20.png diff --git a/_images/qe21.png b/build/html/_images/qe21.png similarity index 100% rename from _images/qe21.png rename to build/html/_images/qe21.png diff --git a/_images/qe3.png b/build/html/_images/qe3.png similarity index 100% rename from _images/qe3.png rename to build/html/_images/qe3.png diff --git a/_images/qe4.png b/build/html/_images/qe4.png similarity index 100% rename from _images/qe4.png rename to build/html/_images/qe4.png diff --git a/_images/qe5.png b/build/html/_images/qe5.png similarity index 100% rename from _images/qe5.png rename to build/html/_images/qe5.png diff --git a/_images/qe6.png b/build/html/_images/qe6.png similarity index 100% rename from _images/qe6.png rename to build/html/_images/qe6.png diff --git a/_images/qe7.png b/build/html/_images/qe7.png similarity index 100% rename from _images/qe7.png rename to build/html/_images/qe7.png diff --git a/_images/qe8.png b/build/html/_images/qe8.png similarity index 100% rename from _images/qe8.png rename to build/html/_images/qe8.png diff --git a/_images/qe9.png b/build/html/_images/qe9.png similarity index 100% rename from _images/qe9.png rename to build/html/_images/qe9.png diff --git a/_images/scom1.png b/build/html/_images/scom1.png similarity index 100% rename from _images/scom1.png rename to build/html/_images/scom1.png diff --git a/_images/scom2.png b/build/html/_images/scom2.png similarity index 100% rename from _images/scom2.png rename to build/html/_images/scom2.png diff --git a/_images/sf1.png b/build/html/_images/sf1.png similarity index 100% rename from _images/sf1.png rename to build/html/_images/sf1.png diff --git a/_images/sf10.png b/build/html/_images/sf10.png similarity index 100% rename from _images/sf10.png rename to build/html/_images/sf10.png diff --git a/_images/sf2.png b/build/html/_images/sf2.png similarity index 100% rename from _images/sf2.png rename to build/html/_images/sf2.png diff --git a/_images/sf3.png b/build/html/_images/sf3.png similarity index 100% rename from _images/sf3.png rename to build/html/_images/sf3.png diff --git a/_images/sf4.png b/build/html/_images/sf4.png similarity index 100% rename from _images/sf4.png rename to build/html/_images/sf4.png diff --git a/_images/sf5.png b/build/html/_images/sf5.png similarity index 100% rename from _images/sf5.png rename to build/html/_images/sf5.png diff --git a/_images/sf6.png b/build/html/_images/sf6.png similarity index 100% rename from _images/sf6.png rename to build/html/_images/sf6.png diff --git a/_images/sf7.png b/build/html/_images/sf7.png similarity index 100% rename from _images/sf7.png rename to build/html/_images/sf7.png diff --git a/_images/sf8.png b/build/html/_images/sf8.png similarity index 100% rename from _images/sf8.png rename to build/html/_images/sf8.png diff --git a/_images/sf9.png b/build/html/_images/sf9.png similarity index 100% rename from _images/sf9.png rename to build/html/_images/sf9.png diff --git a/_images/sfi1.png b/build/html/_images/sfi1.png similarity index 100% rename from _images/sfi1.png rename to build/html/_images/sfi1.png diff --git a/_images/sfi2.png b/build/html/_images/sfi2.png similarity index 100% rename from _images/sfi2.png rename to build/html/_images/sfi2.png diff --git a/_images/sfi3.png b/build/html/_images/sfi3.png similarity index 100% rename from _images/sfi3.png rename to build/html/_images/sfi3.png diff --git a/_images/sfi4.png b/build/html/_images/sfi4.png similarity index 100% rename from _images/sfi4.png rename to build/html/_images/sfi4.png diff --git a/_images/sfi5.png b/build/html/_images/sfi5.png similarity index 100% rename from _images/sfi5.png rename to build/html/_images/sfi5.png diff --git a/_images/simu1.png b/build/html/_images/simu1.png similarity index 100% rename from _images/simu1.png rename to build/html/_images/simu1.png diff --git a/_images/smm1.png b/build/html/_images/smm1.png similarity index 100% rename from _images/smm1.png rename to build/html/_images/smm1.png diff --git a/_images/smm2.png b/build/html/_images/smm2.png similarity index 100% rename from _images/smm2.png rename to build/html/_images/smm2.png diff --git a/_images/tabs.png b/build/html/_images/tabs.png similarity index 100% rename from _images/tabs.png rename to build/html/_images/tabs.png diff --git a/_images/tbt.png b/build/html/_images/tbt.png similarity index 100% rename from _images/tbt.png rename to build/html/_images/tbt.png diff --git a/_images/va1.png b/build/html/_images/va1.png similarity index 100% rename from _images/va1.png rename to build/html/_images/va1.png diff --git a/_images/va2.png b/build/html/_images/va2.png similarity index 100% rename from _images/va2.png rename to build/html/_images/va2.png diff --git a/_images/va3.png b/build/html/_images/va3.png similarity index 100% rename from _images/va3.png rename to build/html/_images/va3.png diff --git a/_static/va4.png b/build/html/_images/va4.png similarity index 80% rename from _static/va4.png rename to build/html/_images/va4.png index 3e53bb1..dd31890 100644 Binary files a/_static/va4.png and b/build/html/_images/va4.png differ diff --git a/_static/va5.png b/build/html/_images/va5.png similarity index 77% rename from _static/va5.png rename to build/html/_images/va5.png index 397af1f..53b40a4 100644 Binary files a/_static/va5.png and b/build/html/_images/va5.png differ diff --git a/_images/van1.png b/build/html/_images/van1.png similarity index 100% rename from _images/van1.png rename to build/html/_images/van1.png diff --git a/_images/van10.png b/build/html/_images/van10.png similarity index 100% rename from _images/van10.png rename to build/html/_images/van10.png diff --git a/_images/van11.png b/build/html/_images/van11.png similarity index 100% rename from _images/van11.png rename to build/html/_images/van11.png diff --git a/_images/van11a.png b/build/html/_images/van11a.png similarity index 100% rename from _images/van11a.png rename to build/html/_images/van11a.png diff --git a/_images/van12.png b/build/html/_images/van12.png similarity index 100% rename from _images/van12.png rename to build/html/_images/van12.png diff --git a/_images/van13.png b/build/html/_images/van13.png similarity index 100% rename from _images/van13.png rename to build/html/_images/van13.png diff --git a/_images/van14.png b/build/html/_images/van14.png similarity index 100% rename from _images/van14.png rename to build/html/_images/van14.png diff --git a/_images/van2.png b/build/html/_images/van2.png similarity index 100% rename from _images/van2.png rename to build/html/_images/van2.png diff --git a/_images/van3.png b/build/html/_images/van3.png similarity index 100% rename from _images/van3.png rename to build/html/_images/van3.png diff --git a/_images/van4.png b/build/html/_images/van4.png similarity index 100% rename from _images/van4.png rename to build/html/_images/van4.png diff --git a/_images/van5.png b/build/html/_images/van5.png similarity index 100% rename from _images/van5.png rename to build/html/_images/van5.png diff --git a/_images/van6.png b/build/html/_images/van6.png similarity index 100% rename from _images/van6.png rename to build/html/_images/van6.png diff --git a/_images/van7.png b/build/html/_images/van7.png similarity index 100% rename from _images/van7.png rename to build/html/_images/van7.png diff --git a/_images/van8.png b/build/html/_images/van8.png similarity index 100% rename from _images/van8.png rename to build/html/_images/van8.png diff --git a/_images/van9.png b/build/html/_images/van9.png similarity index 100% rename from _images/van9.png rename to build/html/_images/van9.png diff --git a/_images/varan1.png b/build/html/_images/varan1.png similarity index 100% rename from _images/varan1.png rename to build/html/_images/varan1.png diff --git a/_images/vd1.png b/build/html/_images/vd1.png similarity index 100% rename from _images/vd1.png rename to build/html/_images/vd1.png diff --git a/_images/wb1.png b/build/html/_images/wb1.png similarity index 100% rename from _images/wb1.png rename to build/html/_images/wb1.png diff --git a/_images/wrb.png b/build/html/_images/wrb.png similarity index 100% rename from _images/wrb.png rename to build/html/_images/wrb.png diff --git a/_images/zero1.png b/build/html/_images/zero1.png similarity index 100% rename from _images/zero1.png rename to build/html/_images/zero1.png diff --git a/_sources/AnalyzeCategory.rst.txt b/build/html/_sources/AnalyzeCategory.rst.txt similarity index 100% rename from _sources/AnalyzeCategory.rst.txt rename to build/html/_sources/AnalyzeCategory.rst.txt diff --git a/_sources/Copyright.rst.txt b/build/html/_sources/Copyright.rst.txt similarity index 100% rename from _sources/Copyright.rst.txt rename to build/html/_sources/Copyright.rst.txt diff --git a/_sources/Definitions.rst.txt b/build/html/_sources/Definitions.rst.txt similarity index 100% rename from _sources/Definitions.rst.txt rename to build/html/_sources/Definitions.rst.txt diff --git a/_sources/Generalfeatures.rst.txt b/build/html/_sources/Generalfeatures.rst.txt similarity index 100% rename from _sources/Generalfeatures.rst.txt rename to build/html/_sources/Generalfeatures.rst.txt diff --git a/_sources/Gettingstarted.rst.txt b/build/html/_sources/Gettingstarted.rst.txt similarity index 100% rename from _sources/Gettingstarted.rst.txt rename to build/html/_sources/Gettingstarted.rst.txt diff --git a/_sources/Gettingstartednew.rst.txt b/build/html/_sources/Gettingstartednew.rst.txt similarity index 100% rename from _sources/Gettingstartednew.rst.txt rename to build/html/_sources/Gettingstartednew.rst.txt diff --git a/_sources/Introduction.rst.txt b/build/html/_sources/Introduction.rst.txt similarity index 100% rename from _sources/Introduction.rst.txt rename to build/html/_sources/Introduction.rst.txt diff --git a/_sources/Knownissues.rst.txt b/build/html/_sources/Knownissues.rst.txt similarity index 99% rename from _sources/Knownissues.rst.txt rename to build/html/_sources/Knownissues.rst.txt index c7ea4f6..ef04076 100644 --- a/_sources/Knownissues.rst.txt +++ b/build/html/_sources/Knownissues.rst.txt @@ -17,5 +17,4 @@ any point in time. *Known Issues and Limitations* - diff --git a/_sources/ModelCategory.rst.txt b/build/html/_sources/ModelCategory.rst.txt similarity index 99% rename from _sources/ModelCategory.rst.txt rename to build/html/_sources/ModelCategory.rst.txt index d0d5821..d435d4a 100644 --- a/_sources/ModelCategory.rst.txt +++ b/build/html/_sources/ModelCategory.rst.txt @@ -233,7 +233,7 @@ as Unique ID, Title and the Title Prefix when outside the Tree with the values as shown in the below Figure. The Title Prefix can be set at Node Level and during simulation it is useful to identify at which node the parameter value changes. The additional properties of the Node Tab has -been listed in :ref:`Section: Additional properties of the Node Tab `. +been listed in Section 13.2. .. figure:: _static/12.8.png :align: center @@ -333,30 +333,6 @@ For other options of calculation method, you can refer the link: https://valq.co For the Calculation Method being selected as "Data Source", you can follow the steps as explained in the following link : https://valq.com/blogs/3-methods-of-mapping-valq-nodes-to-data/ -Constant Nodes -~~~~~~~~~~~~~~ - -Using the Constant Node option, you will be able to use the constant value for any Node. -For our example, navigate to the Configuration settings for the Node "Revenue" (see Figure below). - -.. figure:: _static/cnode1.png - :align: center - :alt: alternate text - - Configuration settings for Constant Node - -Now select the Node Type as "Constant". Select the option "Formula" for the -Calculation Method and provide the value as "120000" in the Custom Formula Area. -Based on the above settings you will be able to view the valQ screen with Node "Revenue" having the -constant value as "120000" (see Figure below). - -.. figure:: _static/cnode2.png - :align: center - :alt: alternate text - - Node "Revenue" with Constant value - - Template Nodes selection in Calculation Method ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -1203,8 +1179,6 @@ The below Figure shows the Grid view after reordering the child nodes. Grid view after reordering the child nodes -.. _ADPR: - Additional Properties of Node Tab --------------------------------- diff --git a/_sources/PBXCharts.rst.txt b/build/html/_sources/PBXCharts.rst.txt similarity index 100% rename from _sources/PBXCharts.rst.txt rename to build/html/_sources/PBXCharts.rst.txt diff --git a/_sources/PlanCategory.rst.txt b/build/html/_sources/PlanCategory.rst.txt similarity index 100% rename from _sources/PlanCategory.rst.txt rename to build/html/_sources/PlanCategory.rst.txt diff --git a/_sources/SimulateCategory.rst.txt b/build/html/_sources/SimulateCategory.rst.txt similarity index 100% rename from _sources/SimulateCategory.rst.txt rename to build/html/_sources/SimulateCategory.rst.txt diff --git a/_sources/Simulation.rst.txt b/build/html/_sources/Simulation.rst.txt similarity index 100% rename from _sources/Simulation.rst.txt rename to build/html/_sources/Simulation.rst.txt diff --git a/_sources/VBXCharts.rst.txt b/build/html/_sources/VBXCharts.rst.txt similarity index 100% rename from _sources/VBXCharts.rst.txt rename to build/html/_sources/VBXCharts.rst.txt diff --git a/_sources/VBXMaps.rst.txt b/build/html/_sources/VBXMaps.rst.txt similarity index 100% rename from _sources/VBXMaps.rst.txt rename to build/html/_sources/VBXMaps.rst.txt diff --git a/_sources/VBXSelectors.rst.txt b/build/html/_sources/VBXSelectors.rst.txt similarity index 100% rename from _sources/VBXSelectors.rst.txt rename to build/html/_sources/VBXSelectors.rst.txt diff --git a/_sources/VBXSpecialityCharts.rst.txt b/build/html/_sources/VBXSpecialityCharts.rst.txt similarity index 100% rename from _sources/VBXSpecialityCharts.rst.txt rename to build/html/_sources/VBXSpecialityCharts.rst.txt diff --git a/_sources/VBXUtilities.rst.txt b/build/html/_sources/VBXUtilities.rst.txt similarity index 100% rename from _sources/VBXUtilities.rst.txt rename to build/html/_sources/VBXUtilities.rst.txt diff --git a/_sources/ValQUserGuide.rst.txt b/build/html/_sources/ValQUserGuide.rst.txt similarity index 100% rename from _sources/ValQUserGuide.rst.txt rename to build/html/_sources/ValQUserGuide.rst.txt diff --git a/_sources/index.rst.txt b/build/html/_sources/index.rst.txt similarity index 100% rename from _sources/index.rst.txt rename to build/html/_sources/index.rst.txt diff --git a/_sources/valQ.rst.txt b/build/html/_sources/valQ.rst.txt similarity index 100% rename from _sources/valQ.rst.txt rename to build/html/_sources/valQ.rst.txt diff --git a/_static/10.1.png b/build/html/_static/10.1.png similarity index 100% rename from _static/10.1.png rename to build/html/_static/10.1.png diff --git a/_static/11.1.png b/build/html/_static/11.1.png similarity index 100% rename from _static/11.1.png rename to build/html/_static/11.1.png diff --git a/_static/11.2.png b/build/html/_static/11.2.png similarity index 100% rename from _static/11.2.png rename to build/html/_static/11.2.png diff --git a/_static/11.3.png b/build/html/_static/11.3.png similarity index 100% rename from _static/11.3.png rename to build/html/_static/11.3.png diff --git a/_static/12,17.png b/build/html/_static/12,17.png similarity index 100% rename from _static/12,17.png rename to build/html/_static/12,17.png diff --git a/_static/12.1.png b/build/html/_static/12.1.png similarity index 100% rename from _static/12.1.png rename to build/html/_static/12.1.png diff --git a/_static/12.10.png b/build/html/_static/12.10.png similarity index 100% rename from _static/12.10.png rename to build/html/_static/12.10.png diff --git a/_static/12.11.png b/build/html/_static/12.11.png similarity index 100% rename from _static/12.11.png rename to build/html/_static/12.11.png diff --git a/_static/12.12.png b/build/html/_static/12.12.png similarity index 100% rename from _static/12.12.png rename to build/html/_static/12.12.png diff --git a/_static/12.13.png b/build/html/_static/12.13.png similarity index 100% rename from _static/12.13.png rename to build/html/_static/12.13.png diff --git a/_static/12.14.png b/build/html/_static/12.14.png similarity index 100% rename from _static/12.14.png rename to build/html/_static/12.14.png diff --git a/_static/12.15.png b/build/html/_static/12.15.png similarity index 100% rename from _static/12.15.png rename to build/html/_static/12.15.png diff --git a/_static/12.16.png b/build/html/_static/12.16.png similarity index 100% rename from _static/12.16.png rename to build/html/_static/12.16.png diff --git a/_static/12.17.png b/build/html/_static/12.17.png similarity index 100% rename from _static/12.17.png rename to build/html/_static/12.17.png diff --git a/_static/12.18.png b/build/html/_static/12.18.png similarity index 100% rename from _static/12.18.png rename to build/html/_static/12.18.png diff --git a/_static/12.19.png b/build/html/_static/12.19.png similarity index 100% rename from _static/12.19.png rename to build/html/_static/12.19.png diff --git a/_static/12.2.png b/build/html/_static/12.2.png similarity index 100% rename from _static/12.2.png rename to build/html/_static/12.2.png diff --git a/_static/12.20.png b/build/html/_static/12.20.png similarity index 100% rename from _static/12.20.png rename to build/html/_static/12.20.png diff --git a/_static/12.21.png b/build/html/_static/12.21.png similarity index 100% rename from _static/12.21.png rename to build/html/_static/12.21.png diff --git a/_static/12.22.png b/build/html/_static/12.22.png similarity index 100% rename from _static/12.22.png rename to build/html/_static/12.22.png diff --git a/_static/12.23.png b/build/html/_static/12.23.png similarity index 100% rename from _static/12.23.png rename to build/html/_static/12.23.png diff --git a/_static/12.24.png b/build/html/_static/12.24.png similarity index 100% rename from _static/12.24.png rename to build/html/_static/12.24.png diff --git a/_static/12.25.png b/build/html/_static/12.25.png similarity index 100% rename from _static/12.25.png rename to build/html/_static/12.25.png diff --git a/_static/12.25a.png b/build/html/_static/12.25a.png similarity index 100% rename from _static/12.25a.png rename to build/html/_static/12.25a.png diff --git a/_static/12.26.png b/build/html/_static/12.26.png similarity index 100% rename from _static/12.26.png rename to build/html/_static/12.26.png diff --git a/_static/12.27.png b/build/html/_static/12.27.png similarity index 100% rename from _static/12.27.png rename to build/html/_static/12.27.png diff --git a/_static/12.28.png b/build/html/_static/12.28.png similarity index 100% rename from _static/12.28.png rename to build/html/_static/12.28.png diff --git a/_static/12.29.png b/build/html/_static/12.29.png similarity index 100% rename from _static/12.29.png rename to build/html/_static/12.29.png diff --git a/_static/12.2a.png b/build/html/_static/12.2a.png similarity index 100% rename from _static/12.2a.png rename to build/html/_static/12.2a.png diff --git a/_static/12.3.png b/build/html/_static/12.3.png similarity index 100% rename from _static/12.3.png rename to build/html/_static/12.3.png diff --git a/_static/12.30.png b/build/html/_static/12.30.png similarity index 100% rename from _static/12.30.png rename to build/html/_static/12.30.png diff --git a/_static/12.31.png b/build/html/_static/12.31.png similarity index 100% rename from _static/12.31.png rename to build/html/_static/12.31.png diff --git a/_static/12.32.png b/build/html/_static/12.32.png similarity index 100% rename from _static/12.32.png rename to build/html/_static/12.32.png diff --git a/_static/12.33.png b/build/html/_static/12.33.png similarity index 100% rename from _static/12.33.png rename to build/html/_static/12.33.png diff --git a/_static/12.34.png b/build/html/_static/12.34.png similarity index 100% rename from _static/12.34.png rename to build/html/_static/12.34.png diff --git a/_static/12.35.png b/build/html/_static/12.35.png similarity index 100% rename from _static/12.35.png rename to build/html/_static/12.35.png diff --git a/_static/12.36.png b/build/html/_static/12.36.png similarity index 100% rename from _static/12.36.png rename to build/html/_static/12.36.png diff --git a/_static/12.37.png b/build/html/_static/12.37.png similarity index 100% rename from _static/12.37.png rename to build/html/_static/12.37.png diff --git a/_static/12.38.png b/build/html/_static/12.38.png similarity index 100% rename from _static/12.38.png rename to build/html/_static/12.38.png diff --git a/_static/12.39.png b/build/html/_static/12.39.png similarity index 100% rename from _static/12.39.png rename to build/html/_static/12.39.png diff --git a/_static/12.4.png b/build/html/_static/12.4.png similarity index 100% rename from _static/12.4.png rename to build/html/_static/12.4.png diff --git a/_static/12.5.png b/build/html/_static/12.5.png similarity index 100% rename from _static/12.5.png rename to build/html/_static/12.5.png diff --git a/_static/12.6.png b/build/html/_static/12.6.png similarity index 100% rename from _static/12.6.png rename to build/html/_static/12.6.png diff --git a/_static/12.7.png b/build/html/_static/12.7.png similarity index 100% rename from _static/12.7.png rename to build/html/_static/12.7.png diff --git a/_static/12.8.png b/build/html/_static/12.8.png similarity index 100% rename from _static/12.8.png rename to build/html/_static/12.8.png diff --git a/_static/12.9.png b/build/html/_static/12.9.png similarity index 100% rename from _static/12.9.png rename to build/html/_static/12.9.png diff --git a/_static/13,4.png b/build/html/_static/13,4.png similarity index 100% rename from _static/13,4.png rename to build/html/_static/13,4.png diff --git a/_static/13.1.png b/build/html/_static/13.1.png similarity index 100% rename from _static/13.1.png rename to build/html/_static/13.1.png diff --git a/_static/13.2.png b/build/html/_static/13.2.png similarity index 100% rename from _static/13.2.png rename to build/html/_static/13.2.png diff --git a/_static/13.3.png b/build/html/_static/13.3.png similarity index 100% rename from _static/13.3.png rename to build/html/_static/13.3.png diff --git a/_static/13.4.png b/build/html/_static/13.4.png similarity index 100% rename from _static/13.4.png rename to build/html/_static/13.4.png diff --git a/_static/13.5.png b/build/html/_static/13.5.png similarity index 100% rename from _static/13.5.png rename to build/html/_static/13.5.png diff --git a/_static/13.6.png b/build/html/_static/13.6.png similarity index 100% rename from _static/13.6.png rename to build/html/_static/13.6.png diff --git a/_static/13.7.png b/build/html/_static/13.7.png similarity index 100% rename from _static/13.7.png rename to build/html/_static/13.7.png diff --git a/_static/13.8.png b/build/html/_static/13.8.png similarity index 100% rename from _static/13.8.png rename to build/html/_static/13.8.png diff --git a/_static/14.1.png b/build/html/_static/14.1.png similarity index 100% rename from _static/14.1.png rename to build/html/_static/14.1.png diff --git a/_static/14.10.png b/build/html/_static/14.10.png similarity index 100% rename from _static/14.10.png rename to build/html/_static/14.10.png diff --git a/_static/14.11.png b/build/html/_static/14.11.png similarity index 100% rename from _static/14.11.png rename to build/html/_static/14.11.png diff --git a/_static/14.12.png b/build/html/_static/14.12.png similarity index 100% rename from _static/14.12.png rename to build/html/_static/14.12.png diff --git a/_static/14.13.png b/build/html/_static/14.13.png similarity index 100% rename from _static/14.13.png rename to build/html/_static/14.13.png diff --git a/_static/14.2.png b/build/html/_static/14.2.png similarity index 100% rename from _static/14.2.png rename to build/html/_static/14.2.png diff --git a/_static/14.3.png b/build/html/_static/14.3.png similarity index 100% rename from _static/14.3.png rename to build/html/_static/14.3.png diff --git a/_static/14.4.png b/build/html/_static/14.4.png similarity index 100% rename from _static/14.4.png rename to build/html/_static/14.4.png diff --git a/_static/14.5.png b/build/html/_static/14.5.png similarity index 100% rename from _static/14.5.png rename to build/html/_static/14.5.png diff --git a/_static/14.6.png b/build/html/_static/14.6.png similarity index 100% rename from _static/14.6.png rename to build/html/_static/14.6.png diff --git a/_static/14.7.png b/build/html/_static/14.7.png similarity index 100% rename from _static/14.7.png rename to build/html/_static/14.7.png diff --git a/_static/14.8.png b/build/html/_static/14.8.png similarity index 100% rename from _static/14.8.png rename to build/html/_static/14.8.png diff --git a/_static/14.9.png b/build/html/_static/14.9.png similarity index 100% rename from _static/14.9.png rename to build/html/_static/14.9.png diff --git a/_static/15.1.png b/build/html/_static/15.1.png similarity index 100% rename from _static/15.1.png rename to build/html/_static/15.1.png diff --git a/_static/15.10.png b/build/html/_static/15.10.png similarity index 100% rename from _static/15.10.png rename to build/html/_static/15.10.png diff --git a/_static/15.11.png b/build/html/_static/15.11.png similarity index 100% rename from _static/15.11.png rename to build/html/_static/15.11.png diff --git a/_static/15.12.png b/build/html/_static/15.12.png similarity index 100% rename from _static/15.12.png rename to build/html/_static/15.12.png diff --git a/_static/15.2.png b/build/html/_static/15.2.png similarity index 100% rename from _static/15.2.png rename to build/html/_static/15.2.png diff --git a/_static/15.3.png b/build/html/_static/15.3.png similarity index 100% rename from _static/15.3.png rename to build/html/_static/15.3.png diff --git a/_static/15.4.png b/build/html/_static/15.4.png similarity index 100% rename from _static/15.4.png rename to build/html/_static/15.4.png diff --git a/_static/15.5.png b/build/html/_static/15.5.png similarity index 100% rename from _static/15.5.png rename to build/html/_static/15.5.png diff --git a/_static/15.6.png b/build/html/_static/15.6.png similarity index 100% rename from _static/15.6.png rename to build/html/_static/15.6.png diff --git a/_static/15.7.png b/build/html/_static/15.7.png similarity index 100% rename from _static/15.7.png rename to build/html/_static/15.7.png diff --git a/_static/15.8.png b/build/html/_static/15.8.png similarity index 100% rename from _static/15.8.png rename to build/html/_static/15.8.png diff --git a/_static/15.9.png b/build/html/_static/15.9.png similarity index 100% rename from _static/15.9.png rename to build/html/_static/15.9.png diff --git a/_static/16.1.png b/build/html/_static/16.1.png similarity index 100% rename from _static/16.1.png rename to build/html/_static/16.1.png diff --git a/_static/16.10.png b/build/html/_static/16.10.png similarity index 100% rename from _static/16.10.png rename to build/html/_static/16.10.png diff --git a/_static/16.11.png b/build/html/_static/16.11.png similarity index 100% rename from _static/16.11.png rename to build/html/_static/16.11.png diff --git a/_static/16.12.png b/build/html/_static/16.12.png similarity index 100% rename from _static/16.12.png rename to build/html/_static/16.12.png diff --git a/_static/16.13.png b/build/html/_static/16.13.png similarity index 100% rename from _static/16.13.png rename to build/html/_static/16.13.png diff --git a/_static/16.14.png b/build/html/_static/16.14.png similarity index 100% rename from _static/16.14.png rename to build/html/_static/16.14.png diff --git a/_static/16.15.png b/build/html/_static/16.15.png similarity index 100% rename from _static/16.15.png rename to build/html/_static/16.15.png diff --git a/_static/16.2.png b/build/html/_static/16.2.png similarity index 100% rename from _static/16.2.png rename to build/html/_static/16.2.png diff --git a/_static/16.3.png b/build/html/_static/16.3.png similarity index 100% rename from _static/16.3.png rename to build/html/_static/16.3.png diff --git a/_static/16.4.png b/build/html/_static/16.4.png similarity index 100% rename from _static/16.4.png rename to build/html/_static/16.4.png diff --git a/_static/16.5.png b/build/html/_static/16.5.png similarity index 100% rename from _static/16.5.png rename to build/html/_static/16.5.png diff --git a/_static/16.6.png b/build/html/_static/16.6.png similarity index 100% rename from _static/16.6.png rename to build/html/_static/16.6.png diff --git a/_static/16.7.png b/build/html/_static/16.7.png similarity index 100% rename from _static/16.7.png rename to build/html/_static/16.7.png diff --git a/_static/16.8.png b/build/html/_static/16.8.png similarity index 100% rename from _static/16.8.png rename to build/html/_static/16.8.png diff --git a/_static/16.9.png b/build/html/_static/16.9.png similarity index 100% rename from _static/16.9.png rename to build/html/_static/16.9.png diff --git a/_static/2019-07-12_9-04-37.png b/build/html/_static/2019-07-12_9-04-37.png similarity index 100% rename from _static/2019-07-12_9-04-37.png rename to build/html/_static/2019-07-12_9-04-37.png diff --git a/_static/4.1.png b/build/html/_static/4.1.png similarity index 100% rename from _static/4.1.png rename to build/html/_static/4.1.png diff --git a/_static/4.10.png b/build/html/_static/4.10.png similarity index 100% rename from _static/4.10.png rename to build/html/_static/4.10.png diff --git a/_static/4.11.png b/build/html/_static/4.11.png similarity index 100% rename from _static/4.11.png rename to build/html/_static/4.11.png diff --git a/_static/4.12.png b/build/html/_static/4.12.png similarity index 100% rename from _static/4.12.png rename to build/html/_static/4.12.png diff --git a/_static/4.13.jpg b/build/html/_static/4.13.jpg similarity index 100% rename from _static/4.13.jpg rename to build/html/_static/4.13.jpg diff --git a/_static/4.13.png b/build/html/_static/4.13.png similarity index 100% rename from _static/4.13.png rename to build/html/_static/4.13.png diff --git a/_static/4.14.jpg b/build/html/_static/4.14.jpg similarity index 100% rename from _static/4.14.jpg rename to build/html/_static/4.14.jpg diff --git a/_static/4.14.png b/build/html/_static/4.14.png similarity index 100% rename from _static/4.14.png rename to build/html/_static/4.14.png diff --git a/_static/4.15.jpg b/build/html/_static/4.15.jpg similarity index 100% rename from _static/4.15.jpg rename to build/html/_static/4.15.jpg diff --git a/_static/4.15.png b/build/html/_static/4.15.png similarity index 100% rename from _static/4.15.png rename to build/html/_static/4.15.png diff --git a/_static/4.16.jpg b/build/html/_static/4.16.jpg similarity index 100% rename from _static/4.16.jpg rename to build/html/_static/4.16.jpg diff --git a/_static/4.16.png b/build/html/_static/4.16.png similarity index 100% rename from _static/4.16.png rename to build/html/_static/4.16.png diff --git a/_static/4.17.png b/build/html/_static/4.17.png similarity index 100% rename from _static/4.17.png rename to build/html/_static/4.17.png diff --git a/_static/4.18.jpg b/build/html/_static/4.18.jpg similarity index 100% rename from _static/4.18.jpg rename to build/html/_static/4.18.jpg diff --git a/_static/4.18.png b/build/html/_static/4.18.png similarity index 100% rename from _static/4.18.png rename to build/html/_static/4.18.png diff --git a/_static/4.19.png b/build/html/_static/4.19.png similarity index 100% rename from _static/4.19.png rename to build/html/_static/4.19.png diff --git a/_static/4.2.jpg b/build/html/_static/4.2.jpg similarity index 100% rename from _static/4.2.jpg rename to build/html/_static/4.2.jpg diff --git a/_static/4.2.png b/build/html/_static/4.2.png similarity index 100% rename from _static/4.2.png rename to build/html/_static/4.2.png diff --git a/_static/4.20.png b/build/html/_static/4.20.png similarity index 100% rename from _static/4.20.png rename to build/html/_static/4.20.png diff --git a/_static/4.21.png b/build/html/_static/4.21.png similarity index 100% rename from _static/4.21.png rename to build/html/_static/4.21.png diff --git a/_static/4.22.jpg b/build/html/_static/4.22.jpg similarity index 100% rename from _static/4.22.jpg rename to build/html/_static/4.22.jpg diff --git a/_static/4.22.png b/build/html/_static/4.22.png similarity index 100% rename from _static/4.22.png rename to build/html/_static/4.22.png diff --git a/_static/4.23.png b/build/html/_static/4.23.png similarity index 100% rename from _static/4.23.png rename to build/html/_static/4.23.png diff --git a/_static/4.24.jpg b/build/html/_static/4.24.jpg similarity index 100% rename from _static/4.24.jpg rename to build/html/_static/4.24.jpg diff --git a/_static/4.24.png b/build/html/_static/4.24.png similarity index 100% rename from _static/4.24.png rename to build/html/_static/4.24.png diff --git a/_static/4.25.png b/build/html/_static/4.25.png similarity index 100% rename from _static/4.25.png rename to build/html/_static/4.25.png diff --git a/_static/4.26.png b/build/html/_static/4.26.png similarity index 100% rename from _static/4.26.png rename to build/html/_static/4.26.png diff --git a/_static/4.3.jpg b/build/html/_static/4.3.jpg similarity index 100% rename from _static/4.3.jpg rename to build/html/_static/4.3.jpg diff --git a/_static/4.3.png b/build/html/_static/4.3.png similarity index 100% rename from _static/4.3.png rename to build/html/_static/4.3.png diff --git a/_static/4.4.jpg b/build/html/_static/4.4.jpg similarity index 100% rename from _static/4.4.jpg rename to build/html/_static/4.4.jpg diff --git a/_static/4.4.png b/build/html/_static/4.4.png similarity index 100% rename from _static/4.4.png rename to build/html/_static/4.4.png diff --git a/_static/4.5.png b/build/html/_static/4.5.png similarity index 100% rename from _static/4.5.png rename to build/html/_static/4.5.png diff --git a/_static/4.6.png b/build/html/_static/4.6.png similarity index 100% rename from _static/4.6.png rename to build/html/_static/4.6.png diff --git a/_static/4.7.png b/build/html/_static/4.7.png similarity index 100% rename from _static/4.7.png rename to build/html/_static/4.7.png diff --git a/_static/4.8.png b/build/html/_static/4.8.png similarity index 100% rename from _static/4.8.png rename to build/html/_static/4.8.png diff --git a/_static/4.9.png b/build/html/_static/4.9.png similarity index 100% rename from _static/4.9.png rename to build/html/_static/4.9.png diff --git a/_static/6.1.png b/build/html/_static/6.1.png similarity index 100% rename from _static/6.1.png rename to build/html/_static/6.1.png diff --git a/_static/7.1.png b/build/html/_static/7.1.png similarity index 100% rename from _static/7.1.png rename to build/html/_static/7.1.png diff --git a/_static/7.2.jpg b/build/html/_static/7.2.jpg similarity index 100% rename from _static/7.2.jpg rename to build/html/_static/7.2.jpg diff --git a/_static/7.2.png b/build/html/_static/7.2.png similarity index 100% rename from _static/7.2.png rename to build/html/_static/7.2.png diff --git a/_static/7.3.jpg b/build/html/_static/7.3.jpg similarity index 100% rename from _static/7.3.jpg rename to build/html/_static/7.3.jpg diff --git a/_static/7.3.png b/build/html/_static/7.3.png similarity index 100% rename from _static/7.3.png rename to build/html/_static/7.3.png diff --git a/_static/7.4.jpg b/build/html/_static/7.4.jpg similarity index 100% rename from _static/7.4.jpg rename to build/html/_static/7.4.jpg diff --git a/_static/7.4.png b/build/html/_static/7.4.png similarity index 100% rename from _static/7.4.png rename to build/html/_static/7.4.png diff --git a/_static/7.5.jpg b/build/html/_static/7.5.jpg similarity index 100% rename from _static/7.5.jpg rename to build/html/_static/7.5.jpg diff --git a/_static/7.5.png b/build/html/_static/7.5.png similarity index 100% rename from _static/7.5.png rename to build/html/_static/7.5.png diff --git a/_static/8.1.png b/build/html/_static/8.1.png similarity index 100% rename from _static/8.1.png rename to build/html/_static/8.1.png diff --git a/_static/9.1.png b/build/html/_static/9.1.png similarity index 100% rename from _static/9.1.png rename to build/html/_static/9.1.png diff --git a/_static/Simulation/Simulation1.png b/build/html/_static/Simulation/Simulation1.png similarity index 100% rename from _static/Simulation/Simulation1.png rename to build/html/_static/Simulation/Simulation1.png diff --git a/_static/ajax-loader.gif b/build/html/_static/ajax-loader.gif similarity index 100% rename from _static/ajax-loader.gif rename to build/html/_static/ajax-loader.gif diff --git a/_static/basic.css b/build/html/_static/basic.css similarity index 100% rename from _static/basic.css rename to build/html/_static/basic.css diff --git a/_static/catg.png b/build/html/_static/catg.png similarity index 100% rename from _static/catg.png rename to build/html/_static/catg.png diff --git a/_static/cf1.png b/build/html/_static/cf1.png similarity index 100% rename from _static/cf1.png rename to build/html/_static/cf1.png diff --git a/_static/cf2.png b/build/html/_static/cf2.png similarity index 100% rename from _static/cf2.png rename to build/html/_static/cf2.png diff --git a/_static/cf3.png b/build/html/_static/cf3.png similarity index 100% rename from _static/cf3.png rename to build/html/_static/cf3.png diff --git a/_static/cf4.png b/build/html/_static/cf4.png similarity index 100% rename from _static/cf4.png rename to build/html/_static/cf4.png diff --git a/_static/cfn1.png b/build/html/_static/cfn1.png similarity index 100% rename from _static/cfn1.png rename to build/html/_static/cfn1.png diff --git a/_static/cfn2.png b/build/html/_static/cfn2.png similarity index 100% rename from _static/cfn2.png rename to build/html/_static/cfn2.png diff --git a/_static/cfn3.png b/build/html/_static/cfn3.png similarity index 100% rename from _static/cfn3.png rename to build/html/_static/cfn3.png diff --git a/_static/cfn4.png b/build/html/_static/cfn4.png similarity index 100% rename from _static/cfn4.png rename to build/html/_static/cfn4.png diff --git a/_static/cfn5.png b/build/html/_static/cfn5.png similarity index 100% rename from _static/cfn5.png rename to build/html/_static/cfn5.png diff --git a/_static/cfn6.png b/build/html/_static/cfn6.png similarity index 100% rename from _static/cfn6.png rename to build/html/_static/cfn6.png diff --git a/_static/clr1.png b/build/html/_static/clr1.png similarity index 100% rename from _static/clr1.png rename to build/html/_static/clr1.png diff --git a/_static/clr2.png b/build/html/_static/clr2.png similarity index 100% rename from _static/clr2.png rename to build/html/_static/clr2.png diff --git a/_static/clr3.png b/build/html/_static/clr3.png similarity index 100% rename from _static/clr3.png rename to build/html/_static/clr3.png diff --git a/_static/cnd1.png b/build/html/_static/cnd1.png similarity index 100% rename from _static/cnd1.png rename to build/html/_static/cnd1.png diff --git a/_static/cnd2.png b/build/html/_static/cnd2.png similarity index 100% rename from _static/cnd2.png rename to build/html/_static/cnd2.png diff --git a/_static/cnd3.png b/build/html/_static/cnd3.png similarity index 100% rename from _static/cnd3.png rename to build/html/_static/cnd3.png diff --git a/_static/cnd4.png b/build/html/_static/cnd4.png similarity index 100% rename from _static/cnd4.png rename to build/html/_static/cnd4.png diff --git a/_static/cnd5.png b/build/html/_static/cnd5.png similarity index 100% rename from _static/cnd5.png rename to build/html/_static/cnd5.png diff --git a/_static/comment-bright.png b/build/html/_static/comment-bright.png similarity index 100% rename from _static/comment-bright.png rename to build/html/_static/comment-bright.png diff --git a/_static/comment-close.png b/build/html/_static/comment-close.png similarity index 100% rename from _static/comment-close.png rename to build/html/_static/comment-close.png diff --git a/_static/comment.png b/build/html/_static/comment.png similarity index 100% rename from _static/comment.png rename to build/html/_static/comment.png diff --git a/build/html/_static/con1.png b/build/html/_static/con1.png new file mode 100644 index 0000000..1286711 Binary files /dev/null and b/build/html/_static/con1.png differ diff --git a/_static/conv1.png b/build/html/_static/conv1.png similarity index 100% rename from _static/conv1.png rename to build/html/_static/conv1.png diff --git a/_static/conv1a.png b/build/html/_static/conv1a.png similarity index 100% rename from _static/conv1a.png rename to build/html/_static/conv1a.png diff --git a/_static/conv2.png b/build/html/_static/conv2.png similarity index 100% rename from _static/conv2.png rename to build/html/_static/conv2.png diff --git a/_static/css/badge_only.css b/build/html/_static/css/badge_only.css similarity index 100% rename from _static/css/badge_only.css rename to build/html/_static/css/badge_only.css diff --git a/_static/css/theme.css b/build/html/_static/css/theme.css similarity index 100% rename from _static/css/theme.css rename to build/html/_static/css/theme.css diff --git a/_static/cv1.png b/build/html/_static/cv1.png similarity index 100% rename from _static/cv1.png rename to build/html/_static/cv1.png diff --git a/_static/cv2.png b/build/html/_static/cv2.png similarity index 100% rename from _static/cv2.png rename to build/html/_static/cv2.png diff --git a/_static/cv3.png b/build/html/_static/cv3.png similarity index 100% rename from _static/cv3.png rename to build/html/_static/cv3.png diff --git a/_static/cv4.png b/build/html/_static/cv4.png similarity index 100% rename from _static/cv4.png rename to build/html/_static/cv4.png diff --git a/_static/dm1.png b/build/html/_static/dm1.png similarity index 100% rename from _static/dm1.png rename to build/html/_static/dm1.png diff --git a/_static/dm2.png b/build/html/_static/dm2.png similarity index 100% rename from _static/dm2.png rename to build/html/_static/dm2.png diff --git a/_static/dm3.png b/build/html/_static/dm3.png similarity index 100% rename from _static/dm3.png rename to build/html/_static/dm3.png diff --git a/_static/dm4.png b/build/html/_static/dm4.png similarity index 100% rename from _static/dm4.png rename to build/html/_static/dm4.png diff --git a/_static/dma.png b/build/html/_static/dma.png similarity index 100% rename from _static/dma.png rename to build/html/_static/dma.png diff --git a/_static/doctools.js b/build/html/_static/doctools.js similarity index 100% rename from _static/doctools.js rename to build/html/_static/doctools.js diff --git a/_static/documentation_options.js b/build/html/_static/documentation_options.js similarity index 100% rename from _static/documentation_options.js rename to build/html/_static/documentation_options.js diff --git a/_static/down-pressed.png b/build/html/_static/down-pressed.png similarity index 100% rename from _static/down-pressed.png rename to build/html/_static/down-pressed.png diff --git a/_static/down.png b/build/html/_static/down.png similarity index 100% rename from _static/down.png rename to build/html/_static/down.png diff --git a/_static/dsm.png b/build/html/_static/dsm.png similarity index 100% rename from _static/dsm.png rename to build/html/_static/dsm.png diff --git a/_static/edn.png b/build/html/_static/edn.png similarity index 100% rename from _static/edn.png rename to build/html/_static/edn.png diff --git a/_static/eleven.png b/build/html/_static/eleven.png similarity index 100% rename from _static/eleven.png rename to build/html/_static/eleven.png diff --git a/_static/en1.png b/build/html/_static/en1.png similarity index 100% rename from _static/en1.png rename to build/html/_static/en1.png diff --git a/_static/en2.png b/build/html/_static/en2.png similarity index 100% rename from _static/en2.png rename to build/html/_static/en2.png diff --git a/_static/epf.png b/build/html/_static/epf.png similarity index 100% rename from _static/epf.png rename to build/html/_static/epf.png diff --git a/_static/ex1.png b/build/html/_static/ex1.png similarity index 100% rename from _static/ex1.png rename to build/html/_static/ex1.png diff --git a/_static/exl.png b/build/html/_static/exl.png similarity index 100% rename from _static/exl.png rename to build/html/_static/exl.png diff --git a/_static/fifteen.png b/build/html/_static/fifteen.png similarity index 100% rename from _static/fifteen.png rename to build/html/_static/fifteen.png diff --git a/_static/file.png b/build/html/_static/file.png similarity index 100% rename from _static/file.png rename to build/html/_static/file.png diff --git a/_static/fonts/Lato/lato-bold.eot b/build/html/_static/fonts/Lato/lato-bold.eot similarity index 100% rename from _static/fonts/Lato/lato-bold.eot rename to build/html/_static/fonts/Lato/lato-bold.eot diff --git a/_static/fonts/Lato/lato-bold.ttf b/build/html/_static/fonts/Lato/lato-bold.ttf similarity index 100% rename from _static/fonts/Lato/lato-bold.ttf rename to build/html/_static/fonts/Lato/lato-bold.ttf diff --git a/_static/fonts/Lato/lato-bold.woff b/build/html/_static/fonts/Lato/lato-bold.woff similarity index 100% rename from _static/fonts/Lato/lato-bold.woff rename to build/html/_static/fonts/Lato/lato-bold.woff diff --git a/_static/fonts/Lato/lato-bold.woff2 b/build/html/_static/fonts/Lato/lato-bold.woff2 similarity index 100% rename from _static/fonts/Lato/lato-bold.woff2 rename to build/html/_static/fonts/Lato/lato-bold.woff2 diff --git a/_static/fonts/Lato/lato-bolditalic.eot b/build/html/_static/fonts/Lato/lato-bolditalic.eot similarity index 100% rename from _static/fonts/Lato/lato-bolditalic.eot rename to build/html/_static/fonts/Lato/lato-bolditalic.eot diff --git a/_static/fonts/Lato/lato-bolditalic.ttf b/build/html/_static/fonts/Lato/lato-bolditalic.ttf similarity index 100% rename from _static/fonts/Lato/lato-bolditalic.ttf rename to build/html/_static/fonts/Lato/lato-bolditalic.ttf diff --git a/_static/fonts/Lato/lato-bolditalic.woff b/build/html/_static/fonts/Lato/lato-bolditalic.woff similarity index 100% rename from _static/fonts/Lato/lato-bolditalic.woff rename to build/html/_static/fonts/Lato/lato-bolditalic.woff diff --git a/_static/fonts/Lato/lato-bolditalic.woff2 b/build/html/_static/fonts/Lato/lato-bolditalic.woff2 similarity index 100% rename from _static/fonts/Lato/lato-bolditalic.woff2 rename to build/html/_static/fonts/Lato/lato-bolditalic.woff2 diff --git a/_static/fonts/Lato/lato-italic.eot b/build/html/_static/fonts/Lato/lato-italic.eot similarity index 100% rename from _static/fonts/Lato/lato-italic.eot rename to build/html/_static/fonts/Lato/lato-italic.eot diff --git a/_static/fonts/Lato/lato-italic.ttf b/build/html/_static/fonts/Lato/lato-italic.ttf similarity index 100% rename from _static/fonts/Lato/lato-italic.ttf rename to build/html/_static/fonts/Lato/lato-italic.ttf diff --git a/_static/fonts/Lato/lato-italic.woff b/build/html/_static/fonts/Lato/lato-italic.woff similarity index 100% rename from _static/fonts/Lato/lato-italic.woff rename to build/html/_static/fonts/Lato/lato-italic.woff diff --git a/_static/fonts/Lato/lato-italic.woff2 b/build/html/_static/fonts/Lato/lato-italic.woff2 similarity index 100% rename from _static/fonts/Lato/lato-italic.woff2 rename to build/html/_static/fonts/Lato/lato-italic.woff2 diff --git a/_static/fonts/Lato/lato-regular.eot b/build/html/_static/fonts/Lato/lato-regular.eot similarity index 100% rename from _static/fonts/Lato/lato-regular.eot rename to build/html/_static/fonts/Lato/lato-regular.eot diff --git a/_static/fonts/Lato/lato-regular.ttf b/build/html/_static/fonts/Lato/lato-regular.ttf similarity index 100% rename from _static/fonts/Lato/lato-regular.ttf rename to build/html/_static/fonts/Lato/lato-regular.ttf diff --git a/_static/fonts/Lato/lato-regular.woff b/build/html/_static/fonts/Lato/lato-regular.woff similarity index 100% rename from _static/fonts/Lato/lato-regular.woff rename to build/html/_static/fonts/Lato/lato-regular.woff diff --git a/_static/fonts/Lato/lato-regular.woff2 b/build/html/_static/fonts/Lato/lato-regular.woff2 similarity index 100% rename from _static/fonts/Lato/lato-regular.woff2 rename to build/html/_static/fonts/Lato/lato-regular.woff2 diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot b/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot similarity index 100% rename from _static/fonts/RobotoSlab/roboto-slab-v7-bold.eot rename to build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf b/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf similarity index 100% rename from _static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf rename to build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff b/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff similarity index 100% rename from _static/fonts/RobotoSlab/roboto-slab-v7-bold.woff rename to build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 b/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 similarity index 100% rename from _static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 rename to build/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot b/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot similarity index 100% rename from _static/fonts/RobotoSlab/roboto-slab-v7-regular.eot rename to build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf b/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf similarity index 100% rename from _static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf rename to build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff b/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff similarity index 100% rename from _static/fonts/RobotoSlab/roboto-slab-v7-regular.woff rename to build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff diff --git a/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 b/build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 similarity index 100% rename from _static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 rename to build/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 diff --git a/_static/fonts/fontawesome-webfont.eot b/build/html/_static/fonts/fontawesome-webfont.eot similarity index 100% rename from _static/fonts/fontawesome-webfont.eot rename to build/html/_static/fonts/fontawesome-webfont.eot diff --git a/_static/fonts/fontawesome-webfont.svg b/build/html/_static/fonts/fontawesome-webfont.svg similarity index 100% rename from _static/fonts/fontawesome-webfont.svg rename to build/html/_static/fonts/fontawesome-webfont.svg diff --git a/_static/fonts/fontawesome-webfont.ttf b/build/html/_static/fonts/fontawesome-webfont.ttf similarity index 100% rename from _static/fonts/fontawesome-webfont.ttf rename to build/html/_static/fonts/fontawesome-webfont.ttf diff --git a/_static/fonts/fontawesome-webfont.woff b/build/html/_static/fonts/fontawesome-webfont.woff similarity index 100% rename from _static/fonts/fontawesome-webfont.woff rename to build/html/_static/fonts/fontawesome-webfont.woff diff --git a/_static/fonts/fontawesome-webfont.woff2 b/build/html/_static/fonts/fontawesome-webfont.woff2 similarity index 100% rename from _static/fonts/fontawesome-webfont.woff2 rename to build/html/_static/fonts/fontawesome-webfont.woff2 diff --git a/_static/formula.png b/build/html/_static/formula.png similarity index 100% rename from _static/formula.png rename to build/html/_static/formula.png diff --git a/_static/h1.png b/build/html/_static/h1.png similarity index 100% rename from _static/h1.png rename to build/html/_static/h1.png diff --git a/_static/h2.png b/build/html/_static/h2.png similarity index 100% rename from _static/h2.png rename to build/html/_static/h2.png diff --git a/_static/h3.png b/build/html/_static/h3.png similarity index 100% rename from _static/h3.png rename to build/html/_static/h3.png diff --git a/_static/h4.png b/build/html/_static/h4.png similarity index 100% rename from _static/h4.png rename to build/html/_static/h4.png diff --git a/_static/h5.png b/build/html/_static/h5.png similarity index 100% rename from _static/h5.png rename to build/html/_static/h5.png diff --git a/_static/h6.png b/build/html/_static/h6.png similarity index 100% rename from _static/h6.png rename to build/html/_static/h6.png diff --git a/_static/h7.png b/build/html/_static/h7.png similarity index 100% rename from _static/h7.png rename to build/html/_static/h7.png diff --git a/_static/hc1.png b/build/html/_static/hc1.png similarity index 100% rename from _static/hc1.png rename to build/html/_static/hc1.png diff --git a/_static/hc2.png b/build/html/_static/hc2.png similarity index 100% rename from _static/hc2.png rename to build/html/_static/hc2.png diff --git a/_static/image1.png b/build/html/_static/image1.png similarity index 100% rename from _static/image1.png rename to build/html/_static/image1.png diff --git a/_static/image10.png b/build/html/_static/image10.png similarity index 100% rename from _static/image10.png rename to build/html/_static/image10.png diff --git a/_static/image100.png b/build/html/_static/image100.png similarity index 100% rename from _static/image100.png rename to build/html/_static/image100.png diff --git a/_static/image101.png b/build/html/_static/image101.png similarity index 100% rename from _static/image101.png rename to build/html/_static/image101.png diff --git a/_static/image102.png b/build/html/_static/image102.png similarity index 100% rename from _static/image102.png rename to build/html/_static/image102.png diff --git a/_static/image103.png b/build/html/_static/image103.png similarity index 100% rename from _static/image103.png rename to build/html/_static/image103.png diff --git a/_static/image104.png b/build/html/_static/image104.png similarity index 100% rename from _static/image104.png rename to build/html/_static/image104.png diff --git a/_static/image105.png b/build/html/_static/image105.png similarity index 100% rename from _static/image105.png rename to build/html/_static/image105.png diff --git a/_static/image106.png b/build/html/_static/image106.png similarity index 100% rename from _static/image106.png rename to build/html/_static/image106.png diff --git a/_static/image107.png b/build/html/_static/image107.png similarity index 100% rename from _static/image107.png rename to build/html/_static/image107.png diff --git a/_static/image108.png b/build/html/_static/image108.png similarity index 100% rename from _static/image108.png rename to build/html/_static/image108.png diff --git a/_static/image109.png b/build/html/_static/image109.png similarity index 100% rename from _static/image109.png rename to build/html/_static/image109.png diff --git a/_static/image11.png b/build/html/_static/image11.png similarity index 100% rename from _static/image11.png rename to build/html/_static/image11.png diff --git a/_static/image110.png b/build/html/_static/image110.png similarity index 100% rename from _static/image110.png rename to build/html/_static/image110.png diff --git a/_static/image111.png b/build/html/_static/image111.png similarity index 100% rename from _static/image111.png rename to build/html/_static/image111.png diff --git a/_static/image112.png b/build/html/_static/image112.png similarity index 100% rename from _static/image112.png rename to build/html/_static/image112.png diff --git a/_static/image113.png b/build/html/_static/image113.png similarity index 100% rename from _static/image113.png rename to build/html/_static/image113.png diff --git a/_static/image114.png b/build/html/_static/image114.png similarity index 100% rename from _static/image114.png rename to build/html/_static/image114.png diff --git a/_static/image115.png b/build/html/_static/image115.png similarity index 100% rename from _static/image115.png rename to build/html/_static/image115.png diff --git a/_static/image116.png b/build/html/_static/image116.png similarity index 100% rename from _static/image116.png rename to build/html/_static/image116.png diff --git a/_static/image117.png b/build/html/_static/image117.png similarity index 100% rename from _static/image117.png rename to build/html/_static/image117.png diff --git a/_static/image118.png b/build/html/_static/image118.png similarity index 100% rename from _static/image118.png rename to build/html/_static/image118.png diff --git a/_static/image119.png b/build/html/_static/image119.png similarity index 100% rename from _static/image119.png rename to build/html/_static/image119.png diff --git a/_static/image12.png b/build/html/_static/image12.png similarity index 100% rename from _static/image12.png rename to build/html/_static/image12.png diff --git a/_static/image120.png b/build/html/_static/image120.png similarity index 100% rename from _static/image120.png rename to build/html/_static/image120.png diff --git a/_static/image121.png b/build/html/_static/image121.png similarity index 100% rename from _static/image121.png rename to build/html/_static/image121.png diff --git a/_static/image122.png b/build/html/_static/image122.png similarity index 100% rename from _static/image122.png rename to build/html/_static/image122.png diff --git a/_static/image123.png b/build/html/_static/image123.png similarity index 100% rename from _static/image123.png rename to build/html/_static/image123.png diff --git a/_static/image124.png b/build/html/_static/image124.png similarity index 100% rename from _static/image124.png rename to build/html/_static/image124.png diff --git a/_static/image125.png b/build/html/_static/image125.png similarity index 100% rename from _static/image125.png rename to build/html/_static/image125.png diff --git a/_static/image126.png b/build/html/_static/image126.png similarity index 100% rename from _static/image126.png rename to build/html/_static/image126.png diff --git a/_static/image127.png b/build/html/_static/image127.png similarity index 100% rename from _static/image127.png rename to build/html/_static/image127.png diff --git a/_static/image128.png b/build/html/_static/image128.png similarity index 100% rename from _static/image128.png rename to build/html/_static/image128.png diff --git a/_static/image129.png b/build/html/_static/image129.png similarity index 100% rename from _static/image129.png rename to build/html/_static/image129.png diff --git a/_static/image13.png b/build/html/_static/image13.png similarity index 100% rename from _static/image13.png rename to build/html/_static/image13.png diff --git a/_static/image130.png b/build/html/_static/image130.png similarity index 100% rename from _static/image130.png rename to build/html/_static/image130.png diff --git a/_static/image131.png b/build/html/_static/image131.png similarity index 100% rename from _static/image131.png rename to build/html/_static/image131.png diff --git a/_static/image132.png b/build/html/_static/image132.png similarity index 100% rename from _static/image132.png rename to build/html/_static/image132.png diff --git a/_static/image133.png b/build/html/_static/image133.png similarity index 100% rename from _static/image133.png rename to build/html/_static/image133.png diff --git a/_static/image134.png b/build/html/_static/image134.png similarity index 100% rename from _static/image134.png rename to build/html/_static/image134.png diff --git a/_static/image135.png b/build/html/_static/image135.png similarity index 100% rename from _static/image135.png rename to build/html/_static/image135.png diff --git a/_static/image136.png b/build/html/_static/image136.png similarity index 100% rename from _static/image136.png rename to build/html/_static/image136.png diff --git a/_static/image137.png b/build/html/_static/image137.png similarity index 100% rename from _static/image137.png rename to build/html/_static/image137.png diff --git a/_static/image138.png b/build/html/_static/image138.png similarity index 100% rename from _static/image138.png rename to build/html/_static/image138.png diff --git a/_static/image139.png b/build/html/_static/image139.png similarity index 100% rename from _static/image139.png rename to build/html/_static/image139.png diff --git a/_static/image14.png b/build/html/_static/image14.png similarity index 100% rename from _static/image14.png rename to build/html/_static/image14.png diff --git a/_static/image15.png b/build/html/_static/image15.png similarity index 100% rename from _static/image15.png rename to build/html/_static/image15.png diff --git a/_static/image16.png b/build/html/_static/image16.png similarity index 100% rename from _static/image16.png rename to build/html/_static/image16.png diff --git a/_static/image17.png b/build/html/_static/image17.png similarity index 100% rename from _static/image17.png rename to build/html/_static/image17.png diff --git a/_static/image18.png b/build/html/_static/image18.png similarity index 100% rename from _static/image18.png rename to build/html/_static/image18.png diff --git a/_static/image19.jpeg b/build/html/_static/image19.jpeg similarity index 100% rename from _static/image19.jpeg rename to build/html/_static/image19.jpeg diff --git a/_static/image2.png b/build/html/_static/image2.png similarity index 100% rename from _static/image2.png rename to build/html/_static/image2.png diff --git a/_static/image20.png b/build/html/_static/image20.png similarity index 100% rename from _static/image20.png rename to build/html/_static/image20.png diff --git a/_static/image21.png b/build/html/_static/image21.png similarity index 100% rename from _static/image21.png rename to build/html/_static/image21.png diff --git a/_static/image22.jpeg b/build/html/_static/image22.jpeg similarity index 100% rename from _static/image22.jpeg rename to build/html/_static/image22.jpeg diff --git a/_static/image23.jpeg b/build/html/_static/image23.jpeg similarity index 100% rename from _static/image23.jpeg rename to build/html/_static/image23.jpeg diff --git a/_static/image24.jpeg b/build/html/_static/image24.jpeg similarity index 100% rename from _static/image24.jpeg rename to build/html/_static/image24.jpeg diff --git a/_static/image25.png b/build/html/_static/image25.png similarity index 100% rename from _static/image25.png rename to build/html/_static/image25.png diff --git a/_static/image26.png b/build/html/_static/image26.png similarity index 100% rename from _static/image26.png rename to build/html/_static/image26.png diff --git a/_static/image27.png b/build/html/_static/image27.png similarity index 100% rename from _static/image27.png rename to build/html/_static/image27.png diff --git a/_static/image28.jpeg b/build/html/_static/image28.jpeg similarity index 100% rename from _static/image28.jpeg rename to build/html/_static/image28.jpeg diff --git a/_static/image29.png b/build/html/_static/image29.png similarity index 100% rename from _static/image29.png rename to build/html/_static/image29.png diff --git a/_static/image3.jpeg b/build/html/_static/image3.jpeg similarity index 100% rename from _static/image3.jpeg rename to build/html/_static/image3.jpeg diff --git a/_static/image30.png b/build/html/_static/image30.png similarity index 100% rename from _static/image30.png rename to build/html/_static/image30.png diff --git a/_static/image31.png b/build/html/_static/image31.png similarity index 100% rename from _static/image31.png rename to build/html/_static/image31.png diff --git a/_static/image32.png b/build/html/_static/image32.png similarity index 100% rename from _static/image32.png rename to build/html/_static/image32.png diff --git a/_static/image33.png b/build/html/_static/image33.png similarity index 100% rename from _static/image33.png rename to build/html/_static/image33.png diff --git a/_static/image34.png b/build/html/_static/image34.png similarity index 100% rename from _static/image34.png rename to build/html/_static/image34.png diff --git a/_static/image35.png b/build/html/_static/image35.png similarity index 100% rename from _static/image35.png rename to build/html/_static/image35.png diff --git a/_static/image36.png b/build/html/_static/image36.png similarity index 100% rename from _static/image36.png rename to build/html/_static/image36.png diff --git a/_static/image37.png b/build/html/_static/image37.png similarity index 100% rename from _static/image37.png rename to build/html/_static/image37.png diff --git a/_static/image38.jpeg b/build/html/_static/image38.jpeg similarity index 100% rename from _static/image38.jpeg rename to build/html/_static/image38.jpeg diff --git a/_static/image39.png b/build/html/_static/image39.png similarity index 100% rename from _static/image39.png rename to build/html/_static/image39.png diff --git a/_static/image4.png b/build/html/_static/image4.png similarity index 100% rename from _static/image4.png rename to build/html/_static/image4.png diff --git a/_static/image40.jpeg b/build/html/_static/image40.jpeg similarity index 100% rename from _static/image40.jpeg rename to build/html/_static/image40.jpeg diff --git a/_static/image41.jpeg b/build/html/_static/image41.jpeg similarity index 100% rename from _static/image41.jpeg rename to build/html/_static/image41.jpeg diff --git a/_static/image42.png b/build/html/_static/image42.png similarity index 100% rename from _static/image42.png rename to build/html/_static/image42.png diff --git a/_static/image43.jpeg b/build/html/_static/image43.jpeg similarity index 100% rename from _static/image43.jpeg rename to build/html/_static/image43.jpeg diff --git a/_static/image44.jpeg b/build/html/_static/image44.jpeg similarity index 100% rename from _static/image44.jpeg rename to build/html/_static/image44.jpeg diff --git a/_static/image45.jpeg b/build/html/_static/image45.jpeg similarity index 100% rename from _static/image45.jpeg rename to build/html/_static/image45.jpeg diff --git a/_static/image46.png b/build/html/_static/image46.png similarity index 100% rename from _static/image46.png rename to build/html/_static/image46.png diff --git a/_static/image47.jpeg b/build/html/_static/image47.jpeg similarity index 100% rename from _static/image47.jpeg rename to build/html/_static/image47.jpeg diff --git a/_static/image48.jpeg b/build/html/_static/image48.jpeg similarity index 100% rename from _static/image48.jpeg rename to build/html/_static/image48.jpeg diff --git a/_static/image49.png b/build/html/_static/image49.png similarity index 100% rename from _static/image49.png rename to build/html/_static/image49.png diff --git a/_static/image5.jpeg b/build/html/_static/image5.jpeg similarity index 100% rename from _static/image5.jpeg rename to build/html/_static/image5.jpeg diff --git a/_static/image50.png b/build/html/_static/image50.png similarity index 100% rename from _static/image50.png rename to build/html/_static/image50.png diff --git a/_static/image51.png b/build/html/_static/image51.png similarity index 100% rename from _static/image51.png rename to build/html/_static/image51.png diff --git a/_static/image52.png b/build/html/_static/image52.png similarity index 100% rename from _static/image52.png rename to build/html/_static/image52.png diff --git a/_static/image53.png b/build/html/_static/image53.png similarity index 100% rename from _static/image53.png rename to build/html/_static/image53.png diff --git a/_static/image54.png b/build/html/_static/image54.png similarity index 100% rename from _static/image54.png rename to build/html/_static/image54.png diff --git a/_static/image55.png b/build/html/_static/image55.png similarity index 100% rename from _static/image55.png rename to build/html/_static/image55.png diff --git a/_static/image56.png b/build/html/_static/image56.png similarity index 100% rename from _static/image56.png rename to build/html/_static/image56.png diff --git a/_static/image57.png b/build/html/_static/image57.png similarity index 100% rename from _static/image57.png rename to build/html/_static/image57.png diff --git a/_static/image58.png b/build/html/_static/image58.png similarity index 100% rename from _static/image58.png rename to build/html/_static/image58.png diff --git a/_static/image59.png b/build/html/_static/image59.png similarity index 100% rename from _static/image59.png rename to build/html/_static/image59.png diff --git a/_static/image6.jpeg b/build/html/_static/image6.jpeg similarity index 100% rename from _static/image6.jpeg rename to build/html/_static/image6.jpeg diff --git a/_static/image60.png b/build/html/_static/image60.png similarity index 100% rename from _static/image60.png rename to build/html/_static/image60.png diff --git a/_static/image61.png b/build/html/_static/image61.png similarity index 100% rename from _static/image61.png rename to build/html/_static/image61.png diff --git a/_static/image62.png b/build/html/_static/image62.png similarity index 100% rename from _static/image62.png rename to build/html/_static/image62.png diff --git a/_static/image63.png b/build/html/_static/image63.png similarity index 100% rename from _static/image63.png rename to build/html/_static/image63.png diff --git a/_static/image64.png b/build/html/_static/image64.png similarity index 100% rename from _static/image64.png rename to build/html/_static/image64.png diff --git a/_static/image65.png b/build/html/_static/image65.png similarity index 100% rename from _static/image65.png rename to build/html/_static/image65.png diff --git a/_static/image66.png b/build/html/_static/image66.png similarity index 100% rename from _static/image66.png rename to build/html/_static/image66.png diff --git a/_static/image67.png b/build/html/_static/image67.png similarity index 100% rename from _static/image67.png rename to build/html/_static/image67.png diff --git a/_static/image68.png b/build/html/_static/image68.png similarity index 100% rename from _static/image68.png rename to build/html/_static/image68.png diff --git a/_static/image69.png b/build/html/_static/image69.png similarity index 100% rename from _static/image69.png rename to build/html/_static/image69.png diff --git a/_static/image7.png b/build/html/_static/image7.png similarity index 100% rename from _static/image7.png rename to build/html/_static/image7.png diff --git a/_static/image70.png b/build/html/_static/image70.png similarity index 100% rename from _static/image70.png rename to build/html/_static/image70.png diff --git a/_static/image71.png b/build/html/_static/image71.png similarity index 100% rename from _static/image71.png rename to build/html/_static/image71.png diff --git a/_static/image72.png b/build/html/_static/image72.png similarity index 100% rename from _static/image72.png rename to build/html/_static/image72.png diff --git a/_static/image73.png b/build/html/_static/image73.png similarity index 100% rename from _static/image73.png rename to build/html/_static/image73.png diff --git a/_static/image74.png b/build/html/_static/image74.png similarity index 100% rename from _static/image74.png rename to build/html/_static/image74.png diff --git a/_static/image75.png b/build/html/_static/image75.png similarity index 100% rename from _static/image75.png rename to build/html/_static/image75.png diff --git a/_static/image76.png b/build/html/_static/image76.png similarity index 100% rename from _static/image76.png rename to build/html/_static/image76.png diff --git a/_static/image77.png b/build/html/_static/image77.png similarity index 100% rename from _static/image77.png rename to build/html/_static/image77.png diff --git a/_static/image78.png b/build/html/_static/image78.png similarity index 100% rename from _static/image78.png rename to build/html/_static/image78.png diff --git a/_static/image79.png b/build/html/_static/image79.png similarity index 100% rename from _static/image79.png rename to build/html/_static/image79.png diff --git a/_static/image8.png b/build/html/_static/image8.png similarity index 100% rename from _static/image8.png rename to build/html/_static/image8.png diff --git a/_static/image80.png b/build/html/_static/image80.png similarity index 100% rename from _static/image80.png rename to build/html/_static/image80.png diff --git a/_static/image81.png b/build/html/_static/image81.png similarity index 100% rename from _static/image81.png rename to build/html/_static/image81.png diff --git a/_static/image82.png b/build/html/_static/image82.png similarity index 100% rename from _static/image82.png rename to build/html/_static/image82.png diff --git a/_static/image83.png b/build/html/_static/image83.png similarity index 100% rename from _static/image83.png rename to build/html/_static/image83.png diff --git a/_static/image84.png b/build/html/_static/image84.png similarity index 100% rename from _static/image84.png rename to build/html/_static/image84.png diff --git a/_static/image85.png b/build/html/_static/image85.png similarity index 100% rename from _static/image85.png rename to build/html/_static/image85.png diff --git a/_static/image86.png b/build/html/_static/image86.png similarity index 100% rename from _static/image86.png rename to build/html/_static/image86.png diff --git a/_static/image87.png b/build/html/_static/image87.png similarity index 100% rename from _static/image87.png rename to build/html/_static/image87.png diff --git a/_static/image88.png b/build/html/_static/image88.png similarity index 100% rename from _static/image88.png rename to build/html/_static/image88.png diff --git a/_static/image89.png b/build/html/_static/image89.png similarity index 100% rename from _static/image89.png rename to build/html/_static/image89.png diff --git a/_static/image9.png b/build/html/_static/image9.png similarity index 100% rename from _static/image9.png rename to build/html/_static/image9.png diff --git a/_static/image90.png b/build/html/_static/image90.png similarity index 100% rename from _static/image90.png rename to build/html/_static/image90.png diff --git a/_static/image91.png b/build/html/_static/image91.png similarity index 100% rename from _static/image91.png rename to build/html/_static/image91.png diff --git a/_static/image92.png b/build/html/_static/image92.png similarity index 100% rename from _static/image92.png rename to build/html/_static/image92.png diff --git a/_static/image93.png b/build/html/_static/image93.png similarity index 100% rename from _static/image93.png rename to build/html/_static/image93.png diff --git a/_static/image94.png b/build/html/_static/image94.png similarity index 100% rename from _static/image94.png rename to build/html/_static/image94.png diff --git a/_static/image95.png b/build/html/_static/image95.png similarity index 100% rename from _static/image95.png rename to build/html/_static/image95.png diff --git a/_static/image96.png b/build/html/_static/image96.png similarity index 100% rename from _static/image96.png rename to build/html/_static/image96.png diff --git a/_static/image97.png b/build/html/_static/image97.png similarity index 100% rename from _static/image97.png rename to build/html/_static/image97.png diff --git a/_static/image98.png b/build/html/_static/image98.png similarity index 100% rename from _static/image98.png rename to build/html/_static/image98.png diff --git a/_static/image99.png b/build/html/_static/image99.png similarity index 100% rename from _static/image99.png rename to build/html/_static/image99.png diff --git a/_static/jquery-3.2.1.js b/build/html/_static/jquery-3.2.1.js similarity index 100% rename from _static/jquery-3.2.1.js rename to build/html/_static/jquery-3.2.1.js diff --git a/_static/jquery.js b/build/html/_static/jquery.js similarity index 100% rename from _static/jquery.js rename to build/html/_static/jquery.js diff --git a/_static/js/modernizr.min.js b/build/html/_static/js/modernizr.min.js similarity index 100% rename from _static/js/modernizr.min.js rename to build/html/_static/js/modernizr.min.js diff --git a/_static/js/theme.js b/build/html/_static/js/theme.js similarity index 100% rename from _static/js/theme.js rename to build/html/_static/js/theme.js diff --git a/_static/key.png b/build/html/_static/key.png similarity index 100% rename from _static/key.png rename to build/html/_static/key.png diff --git a/_static/lck1.png b/build/html/_static/lck1.png similarity index 100% rename from _static/lck1.png rename to build/html/_static/lck1.png diff --git a/_static/lck2.png b/build/html/_static/lck2.png similarity index 100% rename from _static/lck2.png rename to build/html/_static/lck2.png diff --git a/_static/lcs.png b/build/html/_static/lcs.png similarity index 100% rename from _static/lcs.png rename to build/html/_static/lcs.png diff --git a/_static/m1.png b/build/html/_static/m1.png similarity index 100% rename from _static/m1.png rename to build/html/_static/m1.png diff --git a/_static/m10.png b/build/html/_static/m10.png similarity index 100% rename from _static/m10.png rename to build/html/_static/m10.png diff --git a/_static/m100.png b/build/html/_static/m100.png similarity index 100% rename from _static/m100.png rename to build/html/_static/m100.png diff --git a/_static/m101.png b/build/html/_static/m101.png similarity index 100% rename from _static/m101.png rename to build/html/_static/m101.png diff --git a/_static/m102.png b/build/html/_static/m102.png similarity index 100% rename from _static/m102.png rename to build/html/_static/m102.png diff --git a/_static/m103.png b/build/html/_static/m103.png similarity index 100% rename from _static/m103.png rename to build/html/_static/m103.png diff --git a/_static/m104.png b/build/html/_static/m104.png similarity index 100% rename from _static/m104.png rename to build/html/_static/m104.png diff --git a/_static/m105.png b/build/html/_static/m105.png similarity index 100% rename from _static/m105.png rename to build/html/_static/m105.png diff --git a/_static/m106.png b/build/html/_static/m106.png similarity index 100% rename from _static/m106.png rename to build/html/_static/m106.png diff --git a/_static/m107.png b/build/html/_static/m107.png similarity index 100% rename from _static/m107.png rename to build/html/_static/m107.png diff --git a/_static/m107a.png b/build/html/_static/m107a.png similarity index 100% rename from _static/m107a.png rename to build/html/_static/m107a.png diff --git a/_static/m107b.png b/build/html/_static/m107b.png similarity index 100% rename from _static/m107b.png rename to build/html/_static/m107b.png diff --git a/_static/m108.png b/build/html/_static/m108.png similarity index 100% rename from _static/m108.png rename to build/html/_static/m108.png diff --git a/_static/m109.png b/build/html/_static/m109.png similarity index 100% rename from _static/m109.png rename to build/html/_static/m109.png diff --git a/_static/m11.png b/build/html/_static/m11.png similarity index 100% rename from _static/m11.png rename to build/html/_static/m11.png diff --git a/_static/m110.png b/build/html/_static/m110.png similarity index 100% rename from _static/m110.png rename to build/html/_static/m110.png diff --git a/_static/m12.png b/build/html/_static/m12.png similarity index 100% rename from _static/m12.png rename to build/html/_static/m12.png diff --git a/_static/m13.png b/build/html/_static/m13.png similarity index 100% rename from _static/m13.png rename to build/html/_static/m13.png diff --git a/_static/m14.png b/build/html/_static/m14.png similarity index 100% rename from _static/m14.png rename to build/html/_static/m14.png diff --git a/_static/m15.png b/build/html/_static/m15.png similarity index 100% rename from _static/m15.png rename to build/html/_static/m15.png diff --git a/_static/m16.png b/build/html/_static/m16.png similarity index 100% rename from _static/m16.png rename to build/html/_static/m16.png diff --git a/_static/m17.png b/build/html/_static/m17.png similarity index 100% rename from _static/m17.png rename to build/html/_static/m17.png diff --git a/_static/m18.png b/build/html/_static/m18.png similarity index 100% rename from _static/m18.png rename to build/html/_static/m18.png diff --git a/_static/m19.png b/build/html/_static/m19.png similarity index 100% rename from _static/m19.png rename to build/html/_static/m19.png diff --git a/_static/m2.png b/build/html/_static/m2.png similarity index 100% rename from _static/m2.png rename to build/html/_static/m2.png diff --git a/_static/m20.png b/build/html/_static/m20.png similarity index 100% rename from _static/m20.png rename to build/html/_static/m20.png diff --git a/_static/m21.png b/build/html/_static/m21.png similarity index 100% rename from _static/m21.png rename to build/html/_static/m21.png diff --git a/_static/m22.png b/build/html/_static/m22.png similarity index 100% rename from _static/m22.png rename to build/html/_static/m22.png diff --git a/_static/m23.png b/build/html/_static/m23.png similarity index 100% rename from _static/m23.png rename to build/html/_static/m23.png diff --git a/_static/m23a.png b/build/html/_static/m23a.png similarity index 100% rename from _static/m23a.png rename to build/html/_static/m23a.png diff --git a/_static/m24.png b/build/html/_static/m24.png similarity index 100% rename from _static/m24.png rename to build/html/_static/m24.png diff --git a/_static/m25.png b/build/html/_static/m25.png similarity index 100% rename from _static/m25.png rename to build/html/_static/m25.png diff --git a/_static/m26.png b/build/html/_static/m26.png similarity index 100% rename from _static/m26.png rename to build/html/_static/m26.png diff --git a/_static/m27.png b/build/html/_static/m27.png similarity index 100% rename from _static/m27.png rename to build/html/_static/m27.png diff --git a/_static/m28.png b/build/html/_static/m28.png similarity index 100% rename from _static/m28.png rename to build/html/_static/m28.png diff --git a/_static/m29.png b/build/html/_static/m29.png similarity index 100% rename from _static/m29.png rename to build/html/_static/m29.png diff --git a/_static/m3.png b/build/html/_static/m3.png similarity index 100% rename from _static/m3.png rename to build/html/_static/m3.png diff --git a/_static/m30.png b/build/html/_static/m30.png similarity index 100% rename from _static/m30.png rename to build/html/_static/m30.png diff --git a/_static/m31.png b/build/html/_static/m31.png similarity index 100% rename from _static/m31.png rename to build/html/_static/m31.png diff --git a/_static/m32.png b/build/html/_static/m32.png similarity index 100% rename from _static/m32.png rename to build/html/_static/m32.png diff --git a/_static/m32a.png b/build/html/_static/m32a.png similarity index 100% rename from _static/m32a.png rename to build/html/_static/m32a.png diff --git a/_static/m33.png b/build/html/_static/m33.png similarity index 100% rename from _static/m33.png rename to build/html/_static/m33.png diff --git a/_static/m34.png b/build/html/_static/m34.png similarity index 100% rename from _static/m34.png rename to build/html/_static/m34.png diff --git a/_static/m35.png b/build/html/_static/m35.png similarity index 100% rename from _static/m35.png rename to build/html/_static/m35.png diff --git a/_static/m36.png b/build/html/_static/m36.png similarity index 100% rename from _static/m36.png rename to build/html/_static/m36.png diff --git a/_static/m37.png b/build/html/_static/m37.png similarity index 100% rename from _static/m37.png rename to build/html/_static/m37.png diff --git a/_static/m38.png b/build/html/_static/m38.png similarity index 100% rename from _static/m38.png rename to build/html/_static/m38.png diff --git a/_static/m39.png b/build/html/_static/m39.png similarity index 100% rename from _static/m39.png rename to build/html/_static/m39.png diff --git a/_static/m39a.png b/build/html/_static/m39a.png similarity index 100% rename from _static/m39a.png rename to build/html/_static/m39a.png diff --git a/_static/m4.png b/build/html/_static/m4.png similarity index 100% rename from _static/m4.png rename to build/html/_static/m4.png diff --git a/_static/m40.png b/build/html/_static/m40.png similarity index 100% rename from _static/m40.png rename to build/html/_static/m40.png diff --git a/_static/m41.png b/build/html/_static/m41.png similarity index 100% rename from _static/m41.png rename to build/html/_static/m41.png diff --git a/_static/m42.png b/build/html/_static/m42.png similarity index 100% rename from _static/m42.png rename to build/html/_static/m42.png diff --git a/_static/m43.png b/build/html/_static/m43.png similarity index 100% rename from _static/m43.png rename to build/html/_static/m43.png diff --git a/_static/m44.png b/build/html/_static/m44.png similarity index 100% rename from _static/m44.png rename to build/html/_static/m44.png diff --git a/_static/m45.png b/build/html/_static/m45.png similarity index 100% rename from _static/m45.png rename to build/html/_static/m45.png diff --git a/_static/m46.png b/build/html/_static/m46.png similarity index 100% rename from _static/m46.png rename to build/html/_static/m46.png diff --git a/_static/m47.png b/build/html/_static/m47.png similarity index 100% rename from _static/m47.png rename to build/html/_static/m47.png diff --git a/_static/m48.png b/build/html/_static/m48.png similarity index 100% rename from _static/m48.png rename to build/html/_static/m48.png diff --git a/_static/m49.png b/build/html/_static/m49.png similarity index 100% rename from _static/m49.png rename to build/html/_static/m49.png diff --git a/_static/m5.png b/build/html/_static/m5.png similarity index 100% rename from _static/m5.png rename to build/html/_static/m5.png diff --git a/_static/m50.png b/build/html/_static/m50.png similarity index 100% rename from _static/m50.png rename to build/html/_static/m50.png diff --git a/_static/m51.png b/build/html/_static/m51.png similarity index 100% rename from _static/m51.png rename to build/html/_static/m51.png diff --git a/_static/m52.png b/build/html/_static/m52.png similarity index 100% rename from _static/m52.png rename to build/html/_static/m52.png diff --git a/_static/m53.png b/build/html/_static/m53.png similarity index 100% rename from _static/m53.png rename to build/html/_static/m53.png diff --git a/_static/m54.png b/build/html/_static/m54.png similarity index 100% rename from _static/m54.png rename to build/html/_static/m54.png diff --git a/_static/m55.png b/build/html/_static/m55.png similarity index 100% rename from _static/m55.png rename to build/html/_static/m55.png diff --git a/_static/m56.png b/build/html/_static/m56.png similarity index 100% rename from _static/m56.png rename to build/html/_static/m56.png diff --git a/_static/m57.png b/build/html/_static/m57.png similarity index 100% rename from _static/m57.png rename to build/html/_static/m57.png diff --git a/_static/m58.png b/build/html/_static/m58.png similarity index 100% rename from _static/m58.png rename to build/html/_static/m58.png diff --git a/_static/m59.png b/build/html/_static/m59.png similarity index 100% rename from _static/m59.png rename to build/html/_static/m59.png diff --git a/_static/m6.png b/build/html/_static/m6.png similarity index 100% rename from _static/m6.png rename to build/html/_static/m6.png diff --git a/_static/m60.png b/build/html/_static/m60.png similarity index 100% rename from _static/m60.png rename to build/html/_static/m60.png diff --git a/_static/m61.png b/build/html/_static/m61.png similarity index 100% rename from _static/m61.png rename to build/html/_static/m61.png diff --git a/_static/m62.png b/build/html/_static/m62.png similarity index 100% rename from _static/m62.png rename to build/html/_static/m62.png diff --git a/_static/m63.png b/build/html/_static/m63.png similarity index 100% rename from _static/m63.png rename to build/html/_static/m63.png diff --git a/_static/m64.png b/build/html/_static/m64.png similarity index 100% rename from _static/m64.png rename to build/html/_static/m64.png diff --git a/_static/m65.png b/build/html/_static/m65.png similarity index 100% rename from _static/m65.png rename to build/html/_static/m65.png diff --git a/_static/m66.png b/build/html/_static/m66.png similarity index 100% rename from _static/m66.png rename to build/html/_static/m66.png diff --git a/_static/m67.png b/build/html/_static/m67.png similarity index 100% rename from _static/m67.png rename to build/html/_static/m67.png diff --git a/_static/m68.png b/build/html/_static/m68.png similarity index 100% rename from _static/m68.png rename to build/html/_static/m68.png diff --git a/_static/m69.png b/build/html/_static/m69.png similarity index 100% rename from _static/m69.png rename to build/html/_static/m69.png diff --git a/_static/m7.png b/build/html/_static/m7.png similarity index 100% rename from _static/m7.png rename to build/html/_static/m7.png diff --git a/_static/m70.png b/build/html/_static/m70.png similarity index 100% rename from _static/m70.png rename to build/html/_static/m70.png diff --git a/_static/m71.png b/build/html/_static/m71.png similarity index 100% rename from _static/m71.png rename to build/html/_static/m71.png diff --git a/_static/m72.png b/build/html/_static/m72.png similarity index 100% rename from _static/m72.png rename to build/html/_static/m72.png diff --git a/_static/m73.png b/build/html/_static/m73.png similarity index 100% rename from _static/m73.png rename to build/html/_static/m73.png diff --git a/_static/m74.png b/build/html/_static/m74.png similarity index 100% rename from _static/m74.png rename to build/html/_static/m74.png diff --git a/_static/m75.png b/build/html/_static/m75.png similarity index 100% rename from _static/m75.png rename to build/html/_static/m75.png diff --git a/_static/m76.png b/build/html/_static/m76.png similarity index 100% rename from _static/m76.png rename to build/html/_static/m76.png diff --git a/_static/m77.png b/build/html/_static/m77.png similarity index 100% rename from _static/m77.png rename to build/html/_static/m77.png diff --git a/_static/m78.png b/build/html/_static/m78.png similarity index 100% rename from _static/m78.png rename to build/html/_static/m78.png diff --git a/_static/m78a.png b/build/html/_static/m78a.png similarity index 100% rename from _static/m78a.png rename to build/html/_static/m78a.png diff --git a/_static/m79.png b/build/html/_static/m79.png similarity index 100% rename from _static/m79.png rename to build/html/_static/m79.png diff --git a/_static/m79a.png b/build/html/_static/m79a.png similarity index 100% rename from _static/m79a.png rename to build/html/_static/m79a.png diff --git a/_static/m8.png b/build/html/_static/m8.png similarity index 100% rename from _static/m8.png rename to build/html/_static/m8.png diff --git a/_static/m80.png b/build/html/_static/m80.png similarity index 100% rename from _static/m80.png rename to build/html/_static/m80.png diff --git a/_static/m81.png b/build/html/_static/m81.png similarity index 100% rename from _static/m81.png rename to build/html/_static/m81.png diff --git a/_static/m82.png b/build/html/_static/m82.png similarity index 100% rename from _static/m82.png rename to build/html/_static/m82.png diff --git a/_static/m83.png b/build/html/_static/m83.png similarity index 100% rename from _static/m83.png rename to build/html/_static/m83.png diff --git a/_static/m84.png b/build/html/_static/m84.png similarity index 100% rename from _static/m84.png rename to build/html/_static/m84.png diff --git a/_static/m85.png b/build/html/_static/m85.png similarity index 100% rename from _static/m85.png rename to build/html/_static/m85.png diff --git a/_static/m86.png b/build/html/_static/m86.png similarity index 100% rename from _static/m86.png rename to build/html/_static/m86.png diff --git a/_static/m87.png b/build/html/_static/m87.png similarity index 100% rename from _static/m87.png rename to build/html/_static/m87.png diff --git a/_static/m88.png b/build/html/_static/m88.png similarity index 100% rename from _static/m88.png rename to build/html/_static/m88.png diff --git a/_static/m89.png b/build/html/_static/m89.png similarity index 100% rename from _static/m89.png rename to build/html/_static/m89.png diff --git a/_static/m9.png b/build/html/_static/m9.png similarity index 100% rename from _static/m9.png rename to build/html/_static/m9.png diff --git a/_static/m90.png b/build/html/_static/m90.png similarity index 100% rename from _static/m90.png rename to build/html/_static/m90.png diff --git a/_static/m91.png b/build/html/_static/m91.png similarity index 100% rename from _static/m91.png rename to build/html/_static/m91.png diff --git a/_static/m92.png b/build/html/_static/m92.png similarity index 100% rename from _static/m92.png rename to build/html/_static/m92.png diff --git a/_static/m93.png b/build/html/_static/m93.png similarity index 100% rename from _static/m93.png rename to build/html/_static/m93.png diff --git a/_static/m94.png b/build/html/_static/m94.png similarity index 100% rename from _static/m94.png rename to build/html/_static/m94.png diff --git a/_static/m95.png b/build/html/_static/m95.png similarity index 100% rename from _static/m95.png rename to build/html/_static/m95.png diff --git a/_static/m96.png b/build/html/_static/m96.png similarity index 100% rename from _static/m96.png rename to build/html/_static/m96.png diff --git a/_static/m96a.png b/build/html/_static/m96a.png similarity index 100% rename from _static/m96a.png rename to build/html/_static/m96a.png diff --git a/_static/m96b.png b/build/html/_static/m96b.png similarity index 100% rename from _static/m96b.png rename to build/html/_static/m96b.png diff --git a/_static/m96c.png b/build/html/_static/m96c.png similarity index 100% rename from _static/m96c.png rename to build/html/_static/m96c.png diff --git a/_static/m96d.png b/build/html/_static/m96d.png similarity index 100% rename from _static/m96d.png rename to build/html/_static/m96d.png diff --git a/_static/m96e.png b/build/html/_static/m96e.png similarity index 100% rename from _static/m96e.png rename to build/html/_static/m96e.png diff --git a/_static/m96f.png b/build/html/_static/m96f.png similarity index 100% rename from _static/m96f.png rename to build/html/_static/m96f.png diff --git a/_static/m96g.png b/build/html/_static/m96g.png similarity index 100% rename from _static/m96g.png rename to build/html/_static/m96g.png diff --git a/_static/m96h.png b/build/html/_static/m96h.png similarity index 100% rename from _static/m96h.png rename to build/html/_static/m96h.png diff --git a/_static/m96i.png b/build/html/_static/m96i.png similarity index 100% rename from _static/m96i.png rename to build/html/_static/m96i.png diff --git a/_static/m96j.png b/build/html/_static/m96j.png similarity index 100% rename from _static/m96j.png rename to build/html/_static/m96j.png diff --git a/_static/m97.png b/build/html/_static/m97.png similarity index 100% rename from _static/m97.png rename to build/html/_static/m97.png diff --git a/_static/m98.png b/build/html/_static/m98.png similarity index 100% rename from _static/m98.png rename to build/html/_static/m98.png diff --git a/_static/m99.png b/build/html/_static/m99.png similarity index 100% rename from _static/m99.png rename to build/html/_static/m99.png diff --git a/_static/minus.png b/build/html/_static/minus.png similarity index 100% rename from _static/minus.png rename to build/html/_static/minus.png diff --git a/_static/mm1.png b/build/html/_static/mm1.png similarity index 100% rename from _static/mm1.png rename to build/html/_static/mm1.png diff --git a/_static/mm2.png b/build/html/_static/mm2.png similarity index 100% rename from _static/mm2.png rename to build/html/_static/mm2.png diff --git a/_static/more.png b/build/html/_static/more.png similarity index 100% rename from _static/more.png rename to build/html/_static/more.png diff --git a/_static/mt1.png b/build/html/_static/mt1.png similarity index 100% rename from _static/mt1.png rename to build/html/_static/mt1.png diff --git a/_static/mt2.png b/build/html/_static/mt2.png similarity index 100% rename from _static/mt2.png rename to build/html/_static/mt2.png diff --git a/_static/nav1.png b/build/html/_static/nav1.png similarity index 100% rename from _static/nav1.png rename to build/html/_static/nav1.png diff --git a/_static/nav2.png b/build/html/_static/nav2.png similarity index 100% rename from _static/nav2.png rename to build/html/_static/nav2.png diff --git a/_static/nav3.png b/build/html/_static/nav3.png similarity index 100% rename from _static/nav3.png rename to build/html/_static/nav3.png diff --git a/_static/nav4.png b/build/html/_static/nav4.png similarity index 100% rename from _static/nav4.png rename to build/html/_static/nav4.png diff --git a/_static/nav5.png b/build/html/_static/nav5.png similarity index 100% rename from _static/nav5.png rename to build/html/_static/nav5.png diff --git a/_static/nav6.png b/build/html/_static/nav6.png similarity index 100% rename from _static/nav6.png rename to build/html/_static/nav6.png diff --git a/_static/nav7.png b/build/html/_static/nav7.png similarity index 100% rename from _static/nav7.png rename to build/html/_static/nav7.png diff --git a/_static/nav8.png b/build/html/_static/nav8.png similarity index 100% rename from _static/nav8.png rename to build/html/_static/nav8.png diff --git a/_static/nav9.png b/build/html/_static/nav9.png similarity index 100% rename from _static/nav9.png rename to build/html/_static/nav9.png diff --git a/_static/navp.png b/build/html/_static/navp.png similarity index 100% rename from _static/navp.png rename to build/html/_static/navp.png diff --git a/_static/nc1.png b/build/html/_static/nc1.png similarity index 100% rename from _static/nc1.png rename to build/html/_static/nc1.png diff --git a/_static/nc2.png b/build/html/_static/nc2.png similarity index 100% rename from _static/nc2.png rename to build/html/_static/nc2.png diff --git a/_static/ncm2.png b/build/html/_static/ncm2.png similarity index 100% rename from _static/ncm2.png rename to build/html/_static/ncm2.png diff --git a/_static/nf1.png b/build/html/_static/nf1.png similarity index 100% rename from _static/nf1.png rename to build/html/_static/nf1.png diff --git a/_static/nf2.png b/build/html/_static/nf2.png similarity index 100% rename from _static/nf2.png rename to build/html/_static/nf2.png diff --git a/_static/nm1.png b/build/html/_static/nm1.png similarity index 100% rename from _static/nm1.png rename to build/html/_static/nm1.png diff --git a/_static/nm3.png b/build/html/_static/nm3.png similarity index 100% rename from _static/nm3.png rename to build/html/_static/nm3.png diff --git a/_static/nm4.png b/build/html/_static/nm4.png similarity index 100% rename from _static/nm4.png rename to build/html/_static/nm4.png diff --git a/_static/nm5.png b/build/html/_static/nm5.png similarity index 100% rename from _static/nm5.png rename to build/html/_static/nm5.png diff --git a/_static/nm6.png b/build/html/_static/nm6.png similarity index 100% rename from _static/nm6.png rename to build/html/_static/nm6.png diff --git a/_static/pl1.png b/build/html/_static/pl1.png similarity index 100% rename from _static/pl1.png rename to build/html/_static/pl1.png diff --git a/_static/pl10.png b/build/html/_static/pl10.png similarity index 100% rename from _static/pl10.png rename to build/html/_static/pl10.png diff --git a/_static/pl11.png b/build/html/_static/pl11.png similarity index 100% rename from _static/pl11.png rename to build/html/_static/pl11.png diff --git a/_static/pl12.png b/build/html/_static/pl12.png similarity index 100% rename from _static/pl12.png rename to build/html/_static/pl12.png diff --git a/_static/pl13.png b/build/html/_static/pl13.png similarity index 100% rename from _static/pl13.png rename to build/html/_static/pl13.png diff --git a/_static/pl14.png b/build/html/_static/pl14.png similarity index 100% rename from _static/pl14.png rename to build/html/_static/pl14.png diff --git a/_static/pl15.png b/build/html/_static/pl15.png similarity index 100% rename from _static/pl15.png rename to build/html/_static/pl15.png diff --git a/_static/pl16.png b/build/html/_static/pl16.png similarity index 100% rename from _static/pl16.png rename to build/html/_static/pl16.png diff --git a/_static/pl17.png b/build/html/_static/pl17.png similarity index 100% rename from _static/pl17.png rename to build/html/_static/pl17.png diff --git a/_static/pl18.png b/build/html/_static/pl18.png similarity index 100% rename from _static/pl18.png rename to build/html/_static/pl18.png diff --git a/_static/pl19.png b/build/html/_static/pl19.png similarity index 100% rename from _static/pl19.png rename to build/html/_static/pl19.png diff --git a/_static/pl2.png b/build/html/_static/pl2.png similarity index 100% rename from _static/pl2.png rename to build/html/_static/pl2.png diff --git a/_static/pl20.png b/build/html/_static/pl20.png similarity index 100% rename from _static/pl20.png rename to build/html/_static/pl20.png diff --git a/_static/pl21.png b/build/html/_static/pl21.png similarity index 100% rename from _static/pl21.png rename to build/html/_static/pl21.png diff --git a/_static/pl22.png b/build/html/_static/pl22.png similarity index 100% rename from _static/pl22.png rename to build/html/_static/pl22.png diff --git a/_static/pl23.png b/build/html/_static/pl23.png similarity index 100% rename from _static/pl23.png rename to build/html/_static/pl23.png diff --git a/_static/pl24.png b/build/html/_static/pl24.png similarity index 100% rename from _static/pl24.png rename to build/html/_static/pl24.png diff --git a/_static/pl25.png b/build/html/_static/pl25.png similarity index 100% rename from _static/pl25.png rename to build/html/_static/pl25.png diff --git a/_static/pl26.png b/build/html/_static/pl26.png similarity index 100% rename from _static/pl26.png rename to build/html/_static/pl26.png diff --git a/_static/pl27.png b/build/html/_static/pl27.png similarity index 100% rename from _static/pl27.png rename to build/html/_static/pl27.png diff --git a/_static/pl28.png b/build/html/_static/pl28.png similarity index 100% rename from _static/pl28.png rename to build/html/_static/pl28.png diff --git a/_static/pl29.png b/build/html/_static/pl29.png similarity index 100% rename from _static/pl29.png rename to build/html/_static/pl29.png diff --git a/_static/pl3.png b/build/html/_static/pl3.png similarity index 100% rename from _static/pl3.png rename to build/html/_static/pl3.png diff --git a/_static/pl30.png b/build/html/_static/pl30.png similarity index 100% rename from _static/pl30.png rename to build/html/_static/pl30.png diff --git a/_static/pl31.png b/build/html/_static/pl31.png similarity index 100% rename from _static/pl31.png rename to build/html/_static/pl31.png diff --git a/_static/pl32.png b/build/html/_static/pl32.png similarity index 100% rename from _static/pl32.png rename to build/html/_static/pl32.png diff --git a/_static/pl33.png b/build/html/_static/pl33.png similarity index 100% rename from _static/pl33.png rename to build/html/_static/pl33.png diff --git a/_static/pl34.png b/build/html/_static/pl34.png similarity index 100% rename from _static/pl34.png rename to build/html/_static/pl34.png diff --git a/_static/pl35.png b/build/html/_static/pl35.png similarity index 100% rename from _static/pl35.png rename to build/html/_static/pl35.png diff --git a/_static/pl36.png b/build/html/_static/pl36.png similarity index 100% rename from _static/pl36.png rename to build/html/_static/pl36.png diff --git a/_static/pl37.png b/build/html/_static/pl37.png similarity index 100% rename from _static/pl37.png rename to build/html/_static/pl37.png diff --git a/_static/pl38.png b/build/html/_static/pl38.png similarity index 100% rename from _static/pl38.png rename to build/html/_static/pl38.png diff --git a/_static/pl39.png b/build/html/_static/pl39.png similarity index 100% rename from _static/pl39.png rename to build/html/_static/pl39.png diff --git a/_static/pl4.png b/build/html/_static/pl4.png similarity index 100% rename from _static/pl4.png rename to build/html/_static/pl4.png diff --git a/_static/pl5.png b/build/html/_static/pl5.png similarity index 100% rename from _static/pl5.png rename to build/html/_static/pl5.png diff --git a/_static/pl6.png b/build/html/_static/pl6.png similarity index 100% rename from _static/pl6.png rename to build/html/_static/pl6.png diff --git a/_static/pl7.png b/build/html/_static/pl7.png similarity index 100% rename from _static/pl7.png rename to build/html/_static/pl7.png diff --git a/_static/pl8.png b/build/html/_static/pl8.png similarity index 100% rename from _static/pl8.png rename to build/html/_static/pl8.png diff --git a/_static/pl9.png b/build/html/_static/pl9.png similarity index 100% rename from _static/pl9.png rename to build/html/_static/pl9.png diff --git a/_static/plch.png b/build/html/_static/plch.png similarity index 100% rename from _static/plch.png rename to build/html/_static/plch.png diff --git a/_static/pll1.png b/build/html/_static/pll1.png similarity index 100% rename from _static/pll1.png rename to build/html/_static/pll1.png diff --git a/_static/pll2.png b/build/html/_static/pll2.png similarity index 100% rename from _static/pll2.png rename to build/html/_static/pll2.png diff --git a/_static/pll3.png b/build/html/_static/pll3.png similarity index 100% rename from _static/pll3.png rename to build/html/_static/pll3.png diff --git a/_static/plus.png b/build/html/_static/plus.png similarity index 100% rename from _static/plus.png rename to build/html/_static/plus.png diff --git a/_static/pygments.css b/build/html/_static/pygments.css similarity index 100% rename from _static/pygments.css rename to build/html/_static/pygments.css diff --git a/_static/qe1.png b/build/html/_static/qe1.png similarity index 100% rename from _static/qe1.png rename to build/html/_static/qe1.png diff --git a/_static/qe10.png b/build/html/_static/qe10.png similarity index 100% rename from _static/qe10.png rename to build/html/_static/qe10.png diff --git a/_static/qe11.png b/build/html/_static/qe11.png similarity index 100% rename from _static/qe11.png rename to build/html/_static/qe11.png diff --git a/_static/qe12.png b/build/html/_static/qe12.png similarity index 100% rename from _static/qe12.png rename to build/html/_static/qe12.png diff --git a/_static/qe13.png b/build/html/_static/qe13.png similarity index 100% rename from _static/qe13.png rename to build/html/_static/qe13.png diff --git a/_static/qe14.png b/build/html/_static/qe14.png similarity index 100% rename from _static/qe14.png rename to build/html/_static/qe14.png diff --git a/_static/qe15.png b/build/html/_static/qe15.png similarity index 100% rename from _static/qe15.png rename to build/html/_static/qe15.png diff --git a/_static/qe16.png b/build/html/_static/qe16.png similarity index 100% rename from _static/qe16.png rename to build/html/_static/qe16.png diff --git a/_static/qe17.png b/build/html/_static/qe17.png similarity index 100% rename from _static/qe17.png rename to build/html/_static/qe17.png diff --git a/_static/qe18.png b/build/html/_static/qe18.png similarity index 100% rename from _static/qe18.png rename to build/html/_static/qe18.png diff --git a/_static/qe19.png b/build/html/_static/qe19.png similarity index 100% rename from _static/qe19.png rename to build/html/_static/qe19.png diff --git a/_static/qe2.png b/build/html/_static/qe2.png similarity index 100% rename from _static/qe2.png rename to build/html/_static/qe2.png diff --git a/_static/qe20.png b/build/html/_static/qe20.png similarity index 100% rename from _static/qe20.png rename to build/html/_static/qe20.png diff --git a/_static/qe21.png b/build/html/_static/qe21.png similarity index 100% rename from _static/qe21.png rename to build/html/_static/qe21.png diff --git a/_static/qe3.png b/build/html/_static/qe3.png similarity index 100% rename from _static/qe3.png rename to build/html/_static/qe3.png diff --git a/_static/qe4.png b/build/html/_static/qe4.png similarity index 100% rename from _static/qe4.png rename to build/html/_static/qe4.png diff --git a/_static/qe5.png b/build/html/_static/qe5.png similarity index 100% rename from _static/qe5.png rename to build/html/_static/qe5.png diff --git a/_static/qe6.png b/build/html/_static/qe6.png similarity index 100% rename from _static/qe6.png rename to build/html/_static/qe6.png diff --git a/_static/qe7.png b/build/html/_static/qe7.png similarity index 100% rename from _static/qe7.png rename to build/html/_static/qe7.png diff --git a/_static/qe8.png b/build/html/_static/qe8.png similarity index 100% rename from _static/qe8.png rename to build/html/_static/qe8.png diff --git a/_static/qe9.png b/build/html/_static/qe9.png similarity index 100% rename from _static/qe9.png rename to build/html/_static/qe9.png diff --git a/_static/scom1.png b/build/html/_static/scom1.png similarity index 100% rename from _static/scom1.png rename to build/html/_static/scom1.png diff --git a/_static/scom2.png b/build/html/_static/scom2.png similarity index 100% rename from _static/scom2.png rename to build/html/_static/scom2.png diff --git a/_static/searchtools.js b/build/html/_static/searchtools.js similarity index 100% rename from _static/searchtools.js rename to build/html/_static/searchtools.js diff --git a/_static/sf1.png b/build/html/_static/sf1.png similarity index 100% rename from _static/sf1.png rename to build/html/_static/sf1.png diff --git a/_static/sf10.png b/build/html/_static/sf10.png similarity index 100% rename from _static/sf10.png rename to build/html/_static/sf10.png diff --git a/_static/sf2.png b/build/html/_static/sf2.png similarity index 100% rename from _static/sf2.png rename to build/html/_static/sf2.png diff --git a/_static/sf3.png b/build/html/_static/sf3.png similarity index 100% rename from _static/sf3.png rename to build/html/_static/sf3.png diff --git a/_static/sf4.png b/build/html/_static/sf4.png similarity index 100% rename from _static/sf4.png rename to build/html/_static/sf4.png diff --git a/_static/sf5.png b/build/html/_static/sf5.png similarity index 100% rename from _static/sf5.png rename to build/html/_static/sf5.png diff --git a/_static/sf6.png b/build/html/_static/sf6.png similarity index 100% rename from _static/sf6.png rename to build/html/_static/sf6.png diff --git a/_static/sf7.png b/build/html/_static/sf7.png similarity index 100% rename from _static/sf7.png rename to build/html/_static/sf7.png diff --git a/_static/sf8.png b/build/html/_static/sf8.png similarity index 100% rename from _static/sf8.png rename to build/html/_static/sf8.png diff --git a/_static/sf9.png b/build/html/_static/sf9.png similarity index 100% rename from _static/sf9.png rename to build/html/_static/sf9.png diff --git a/_static/sfi1.png b/build/html/_static/sfi1.png similarity index 100% rename from _static/sfi1.png rename to build/html/_static/sfi1.png diff --git a/_static/sfi2.png b/build/html/_static/sfi2.png similarity index 100% rename from _static/sfi2.png rename to build/html/_static/sfi2.png diff --git a/_static/sfi3.png b/build/html/_static/sfi3.png similarity index 100% rename from _static/sfi3.png rename to build/html/_static/sfi3.png diff --git a/_static/sfi4.png b/build/html/_static/sfi4.png similarity index 100% rename from _static/sfi4.png rename to build/html/_static/sfi4.png diff --git a/_static/sfi5.png b/build/html/_static/sfi5.png similarity index 100% rename from _static/sfi5.png rename to build/html/_static/sfi5.png diff --git a/_static/simu1.png b/build/html/_static/simu1.png similarity index 100% rename from _static/simu1.png rename to build/html/_static/simu1.png diff --git a/_static/simulate.png b/build/html/_static/simulate.png similarity index 100% rename from _static/simulate.png rename to build/html/_static/simulate.png diff --git a/_static/sm1.png b/build/html/_static/sm1.png similarity index 100% rename from _static/sm1.png rename to build/html/_static/sm1.png diff --git a/_static/smm1.png b/build/html/_static/smm1.png similarity index 100% rename from _static/smm1.png rename to build/html/_static/smm1.png diff --git a/_static/smm2.png b/build/html/_static/smm2.png similarity index 100% rename from _static/smm2.png rename to build/html/_static/smm2.png diff --git a/_static/stp1.png b/build/html/_static/stp1.png similarity index 100% rename from _static/stp1.png rename to build/html/_static/stp1.png diff --git a/_static/stp2.png b/build/html/_static/stp2.png similarity index 100% rename from _static/stp2.png rename to build/html/_static/stp2.png diff --git a/_static/tabs.png b/build/html/_static/tabs.png similarity index 100% rename from _static/tabs.png rename to build/html/_static/tabs.png diff --git a/_static/tbt.png b/build/html/_static/tbt.png similarity index 100% rename from _static/tbt.png rename to build/html/_static/tbt.png diff --git a/_static/theme_overrides.css b/build/html/_static/theme_overrides.css similarity index 100% rename from _static/theme_overrides.css rename to build/html/_static/theme_overrides.css diff --git a/_static/underscore-1.3.1.js b/build/html/_static/underscore-1.3.1.js similarity index 100% rename from _static/underscore-1.3.1.js rename to build/html/_static/underscore-1.3.1.js diff --git a/_static/underscore.js b/build/html/_static/underscore.js similarity index 100% rename from _static/underscore.js rename to build/html/_static/underscore.js diff --git a/_static/up-pressed.png b/build/html/_static/up-pressed.png similarity index 100% rename from _static/up-pressed.png rename to build/html/_static/up-pressed.png diff --git a/_static/up.png b/build/html/_static/up.png similarity index 100% rename from _static/up.png rename to build/html/_static/up.png diff --git a/_static/va1.png b/build/html/_static/va1.png similarity index 100% rename from _static/va1.png rename to build/html/_static/va1.png diff --git a/_static/va2.png b/build/html/_static/va2.png similarity index 100% rename from _static/va2.png rename to build/html/_static/va2.png diff --git a/_static/va3.png b/build/html/_static/va3.png similarity index 100% rename from _static/va3.png rename to build/html/_static/va3.png diff --git a/build/html/_static/va4.png b/build/html/_static/va4.png new file mode 100644 index 0000000..dd31890 Binary files /dev/null and b/build/html/_static/va4.png differ diff --git a/build/html/_static/va5.png b/build/html/_static/va5.png new file mode 100644 index 0000000..53b40a4 Binary files /dev/null and b/build/html/_static/va5.png differ diff --git a/_static/van1.png b/build/html/_static/van1.png similarity index 100% rename from _static/van1.png rename to build/html/_static/van1.png diff --git a/_static/van10.png b/build/html/_static/van10.png similarity index 100% rename from _static/van10.png rename to build/html/_static/van10.png diff --git a/_static/van11.png b/build/html/_static/van11.png similarity index 100% rename from _static/van11.png rename to build/html/_static/van11.png diff --git a/_static/van11a.png b/build/html/_static/van11a.png similarity index 100% rename from _static/van11a.png rename to build/html/_static/van11a.png diff --git a/_static/van12.png b/build/html/_static/van12.png similarity index 100% rename from _static/van12.png rename to build/html/_static/van12.png diff --git a/_static/van13.png b/build/html/_static/van13.png similarity index 100% rename from _static/van13.png rename to build/html/_static/van13.png diff --git a/_static/van14.png b/build/html/_static/van14.png similarity index 100% rename from _static/van14.png rename to build/html/_static/van14.png diff --git a/_static/van2.png b/build/html/_static/van2.png similarity index 100% rename from _static/van2.png rename to build/html/_static/van2.png diff --git a/_static/van3.png b/build/html/_static/van3.png similarity index 100% rename from _static/van3.png rename to build/html/_static/van3.png diff --git a/_static/van4.png b/build/html/_static/van4.png similarity index 100% rename from _static/van4.png rename to build/html/_static/van4.png diff --git a/_static/van5.png b/build/html/_static/van5.png similarity index 100% rename from _static/van5.png rename to build/html/_static/van5.png diff --git a/_static/van6.png b/build/html/_static/van6.png similarity index 100% rename from _static/van6.png rename to build/html/_static/van6.png diff --git a/_static/van7.png b/build/html/_static/van7.png similarity index 100% rename from _static/van7.png rename to build/html/_static/van7.png diff --git a/_static/van8.png b/build/html/_static/van8.png similarity index 100% rename from _static/van8.png rename to build/html/_static/van8.png diff --git a/_static/van9.png b/build/html/_static/van9.png similarity index 100% rename from _static/van9.png rename to build/html/_static/van9.png diff --git a/_static/varan1.png b/build/html/_static/varan1.png similarity index 100% rename from _static/varan1.png rename to build/html/_static/varan1.png diff --git a/_static/vbilogo.png b/build/html/_static/vbilogo.png similarity index 100% rename from _static/vbilogo.png rename to build/html/_static/vbilogo.png diff --git a/_static/vbilogog.png b/build/html/_static/vbilogog.png similarity index 100% rename from _static/vbilogog.png rename to build/html/_static/vbilogog.png diff --git a/_static/vd1.png b/build/html/_static/vd1.png similarity index 100% rename from _static/vd1.png rename to build/html/_static/vd1.png diff --git a/_static/wb1.png b/build/html/_static/wb1.png similarity index 100% rename from _static/wb1.png rename to build/html/_static/wb1.png diff --git a/_static/websupport.js b/build/html/_static/websupport.js similarity index 100% rename from _static/websupport.js rename to build/html/_static/websupport.js diff --git a/_static/wrb.png b/build/html/_static/wrb.png similarity index 100% rename from _static/wrb.png rename to build/html/_static/wrb.png diff --git a/_static/zero1.png b/build/html/_static/zero1.png similarity index 100% rename from _static/zero1.png rename to build/html/_static/zero1.png diff --git a/build/html/debug.log b/build/html/debug.log new file mode 100644 index 0000000..4a6463a --- /dev/null +++ b/build/html/debug.log @@ -0,0 +1,4 @@ +[1022/113516.605:ERROR:process_info.cc(617)] range at 0xfbee3fe000, size 0x2000 fully unreadable +[1022/113516.615:ERROR:process_info.cc(617)] range at 0xfbe6287000, size 0x1788 fully unreadable +[1022/144504.655:ERROR:process_info.cc(617)] range at 0xdcabff000, size 0x1000 fully unreadable +[1022/144504.655:ERROR:process_info.cc(617)] range at 0xdc33bc000, size 0x1788 fully unreadable diff --git a/genindex.html b/build/html/genindex.html similarity index 99% rename from genindex.html rename to build/html/genindex.html index 3b2e8cb..8441b41 100644 --- a/genindex.html +++ b/build/html/genindex.html @@ -124,7 +124,6 @@
        • Open a Sample Model
          • General
          • Configuration
          • -
          • Constant Nodes
          • Template Nodes selection in Calculation Method
          • Display
          • Composite Node Display
          • diff --git a/index.html b/build/html/index.html similarity index 99% rename from index.html rename to build/html/index.html index 1b16507..d1dfe8e 100644 --- a/index.html +++ b/build/html/index.html @@ -124,7 +124,6 @@
          • Open a Sample Model
            • General
            • Configuration
            • -
            • Constant Nodes
            • Template Nodes selection in Calculation Method
            • Display
            • Composite Node Display
            • diff --git a/build/html/objects.inv b/build/html/objects.inv new file mode 100644 index 0000000..e81f090 --- /dev/null +++ b/build/html/objects.inv @@ -0,0 +1,8 @@ +# Sphinx inventory version 2 +# Project: valQ Custom Visual for Microsoft Power BI +# Version: +# The remainder of this file is compressed using zlib. +xڍ�=O�0�w��C�����"�(��I.�%��N���I�qJ�n�{�s�K�e��+�"ӂu�cA9,`9 �Q���խ�ޥ�Y Ђ=c)�p��M}�����pY"w����"�A�u�����j�#_�6\�L;CE���Ҝ�[x�t���fZ>��� �#�� %�� (��: �D^W��\ϑ��^��P��>s�e,�QsT��.��Y���::����'����4w�ۻk$������.Y�j2JӁ��/'�] �ll{9��eN +��Li(��F�,��tDO� ST��n1p�^#q� +Yu�5j���Hoa���S8híB|�+d~�d��\>"�y +��`� \ No newline at end of file diff --git a/search.html b/build/html/search.html similarity index 99% rename from search.html rename to build/html/search.html index 6fc5340..170d38e 100644 --- a/search.html +++ b/build/html/search.html @@ -123,7 +123,6 @@
            • Open a Sample Model
              • General
              • Configuration
              • -
              • Constant Nodes
              • Template Nodes selection in Calculation Method
              • Display
              • Composite Node Display
              • diff --git a/build/html/searchindex.js b/build/html/searchindex.js new file mode 100644 index 0000000..b614fca --- /dev/null +++ b/build/html/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({docnames:["AnalyzeCategory","Copyright","Definitions","Generalfeatures","Introduction","Knownissues","ModelCategory","PlanCategory","SimulateCategory","index","valQ"],envversion:53,filenames:["AnalyzeCategory.rst","Copyright.rst","Definitions.rst","Generalfeatures.rst","Introduction.rst","Knownissues.rst","ModelCategory.rst","PlanCategory.rst","SimulateCategory.rst","index.rst","valQ.rst"],objects:{},objnames:{},objtypes:{},terms:{"00b":[],"00m":[],"00t":[],"0caldai":[],"0d_nw_cntry":[],"11valq":[],"15th":[],"1st":0,"2x2":[],"3x3":[],"4x4":[],"52nd":0,"5px":[],"5th":[],"5x5":[],"6x6":[],"7x7":[],"boolean":[],"break":3,"case":[3,6,7],"class":[],"default":[3,6],"export":3,"final":[],"float":[],"function":[6,8,9],"import":3,"long":[],"new":[3,7,9],"null":6,"return":[3,6],"short":[],"static":[],"super":[],"switch":3,"true":[],"try":[],"var":[],"while":[],AND:[],Added:[],Adding:6,And:[],Axes:[],But:6,Eye:6,For:[0,3,6,7],IDs:[],Not:[],One:3,Such:3,The:[0,1,2,3,5,6,7,8,10],There:[3,6,7],These:[3,6],Use:[],Used:[],Using:[0,6,7],With:[3,6,7],XLS:[],Yes:6,_static:[],aaa:[],aad_sdk_max_cel:[],abbrevi:6,abil:0,abl:[0,3,6,7,10],about:[2,4,9],abov:[0,2,3,6,7,10],absolut:[0,6,7],accent:6,accept:[],access:[3,5],accompani:1,accord:[],accordingli:[],account:6,accur:1,achiev:3,across:7,act:[],actiavt:[],action:6,activ:[0,3,6,7],actual:[3,6],add:[6,7],added:[3,5,6],adding:6,addit:[0,2,3],addition:[],additon:[],address:[],adjust:[3,7],administr:[],adob:[],adopt:[],ads:6,advanc:3,advancedcolumnbarchart:[],advancedkpitile_1:[],advertis:[],affect:3,affili:[],after:[3,6,7],again:[],against:6,aggreg:3,alert:6,alia:[],align:[],all:[1,3,6,7],alloc:[],allow:[3,6],alon:0,along:[6,10],alpha:[],alphabet:[],alreadi:[6,8],also:[0,3,6,7],alt:[],altern:[],alwai:6,amber:6,america:[],among:3,amount:[3,7],ampl:[],analys:[3,4],analysi:[0,7,9],analyt:[],analytics_1:[],analyz:[9,10],ang:[],angela:[],angl:[],angular:[],ani:[0,1,3,5,6],anim:[],annual:[],anoth:[1,6,7],anymor:[],anywher:3,api:[],app:[3,4],apparel:[],appdata:[],appear:[3,6],append:7,appli:[3,6,7],applianc:[],applic:1,applica:[],appropri:6,apr:[0,6,7],april:7,arab:[],archit:[],architectur:[],area:[3,6],areachart:[],arial:[],around:3,arrai:[],arrang:[],arrow:[3,6],ascend:6,asedecreas:[],asia:[],ask:3,aspect:3,assgn:[],assign:[0,6,7],assum:3,assumpt:[3,6],asurecolor:[],ata:[],attach:[],attent:3,attribut:[],audio:[],audit:[],aug:7,august:[3,7],authent:[],auto:[],autofit:[],automat:6,autos:[],autosizecolumn:[],avail:[3,6,7],averag:[3,6],avg:[],avoid:[],awai:[],awar:[],awesom:[],axes:[],axi:3,back:[3,6],backgorund:[],background:6,backwar:[],backward:[],bad:6,band:6,bar:[3,6,7],base:[0,3,6,7],baselin:[3,6],basemap1:[],basemap:[],basi:[],basic:[],baslin:[],bbb:[],bcc:[],becaus:[],becom:[3,6],bed:[],been:[0,1,3,5,6,7,8],befor:6,begin:6,beginn:6,behalf:[],behav:[],behavior:[],behind:[],being:[0,3,6,7],beliz:[],belong:[],below:[0,2,3,4,5,6,7,8,10],belt:[],benchmark:[2,6],beneath:[],best:[],beta:[],better:3,between:[1,6],bex:[],beyond:3,bi4client:[],bil:[],bill:[],billion:6,bind:[],bit:[],black:[],blank:[],blind:[],block:[],blog:[3,6],blue:3,blur:[],bodi:[],bold:6,bonni:[],book:1,border:[],both:[0,3,6,7],bottom:3,bound:[],boundari:[],box:6,boxplotchart:[],bracket:[],branch:3,brewer:[],bring:[],broken:[],brown:[],brows:6,browser:[],bubbl:[],bucket:[],budget:[0,3,4,6,7],build:6,bulb:[],bullet:[],busi:[2,4,7],businessobject:[],button:[3,6],button_1:[],button_2:[],button_3:[],button_4:[],byod:[],cab:6,calc:6,calcul:[2,3],calendar:[],call:3,callout:[],camera:[],can:[0,2,3,4,6,7,8],canada:6,cannot:[0,6],canva:[3,8],capabl:3,capac:3,captur:[],car:[],care:[2,4],carri:[],cascad:6,categor:6,categori:[9,10],caution:[],ccc:[],cdn:[],ceil:[],cell:7,center:[],central:[],certain:3,chair:[],chang:[1,2,3,4,6,7],charact:6,characterist:[],charl:[],chart1:[],chart2:[],chart:[3,6],chart_1:[],chart_2:[],check:[3,6],chennai:[],chevron:[],child:[6,7],children:[2,3,6],china:[],choic:[3,6],choos:[3,6],chose:[],chosen:[],circl:[],circular:[],citi:[],classic:[],clcik:[],clear:[],cleric:1,click:[0,3,6,7],client:[],clipboard:[],close:3,closer:[],cloud:[],clue:[],cluster:[],code:[],cofigur:[],collaps:[6,9],collapseal:[],colleagu:[],collect:[0,2,3],colleg:[],color:[3,7],colr:[],column:[0,3,6,7],columnbarchartnew:[],columnbarchartnew_1:[],columnchart1:[],com:[3,6],combin:0,combinationchart:[],combo:[],come:[],comma:6,comment:7,common:[3,6,8,9],compani:[1,3],compar:[0,3,4,7],comparison:[3,6,7],complet:[3,7],complex:3,compon:[3,9],composit:[],compound:3,comput:[],concept:3,conceptu:[2,4],concret:[],concurr:6,condens:[],condit:[],condtion:[],conduct:9,config:[],configur:[3,7],confirm:6,conflict:[],conjunct:3,connec:[],connect:[],connector:6,connectori:[],connectorlin:[],consequ:[],consid:[0,6],consist:3,constant:[3,6,7],constraint:[6,9],construct:[],consum:3,consumpt:3,contain:[1,3,6],container_14:[],container_1:[],content:[6,9],context:3,contextu:9,contin:[],continu:6,contract:[],contribut:3,control:[],conveni:[],convert:6,coordin:[],copi:[3,6,7],copper:6,copyright:9,corner:[3,7],corpor:[],correl:[],correspond:6,cost:[2,3,6,7],could:[],count:6,counter:[],countri:1,coupl:[],cover:[],coverag:[],creat:[3,7],creation:[],credenti:[],credit:[],criteria:6,critic:3,crop:[],cross:[],crosshair:[],crosstab1:[],crosstab:[],crystal:[],css:[],csv:[],ctrl:[],cture:[],cuid:[],cumul:[3,6],currenc:[],current:[3,4,5,6,7],curser:3,cursor:[],curtab:[],curtain:[],curv:[],custom:[6,8,10],customiz:[],dafault:[],dai:[],dalla:[],dark:6,dash:[],dashboard1:[],dashboard2:[],dashboard3:[],dashboard:[],dashstyl:[],data:[0,7,9],datalabel:[],dataprovider_1:[],dataset:[],datasourc:[],date:[3,4,9],ddd:[],dddd:[],deactiv:[],deal:[],dec:[0,6,7],decemb:[3,7],decid:[6,7],decim:6,decor:6,decreas:6,defect:[],defer:[],defin:[3,7],definit:[3,9],degre:[],delai:[],delet:[3,6,7],delimit:[],delimitt:[],delta:7,demo:[3,6],demodashboard:[],demograph:[],denot:[3,6,8],depart:3,depend:3,depict:[],deploi:[],depth:[],deriv:[2,6],descend:6,describ:3,descript:[3,5,6],descripti:[],deselect:[],deselectal:[],design:[1,3,6],desir:[3,6],desktop:[],destin:[],destroyfilt:[],detail:[0,3,6,7,10],determin:[],develop:[],deviant:6,deviat:[],deviatio:[],devic:[3,5],diagram:3,dial:[],dialog:[],diamet:[],diamond:[],dice:[],did:3,diesel:3,differ:[0,3,6,7,8,10],differentdata:[],differenti:6,digit:[],dimens:6,dimesnion:[],direct:3,directli:[2,3,6,7],disabl:6,disbal:[],discoumt:[],discount:[],discov:[],discuss:[],displac:[],displai:[0,7,9],distanc:[],distance_:[],distinct:[],distribut:[],diverg:[],divid:6,divis:[],doc:[],document:[1,3,5,9],doe:[],doesn:[3,5],doing:[],domain:[],don:3,donald:[],done:[3,6,7,8],donut:[],dot:3,doubl:[6,7],down:[6,7,9],download:[3,6],downward:7,drag:[3,6],draggabl:[],draw:[],drawn:[],drill:9,drilldown:[],drillup:[],driven:[],driver:[2,4,6,8,9],drop:[3,6,7],dropbox:[],dropdown:[],ds_1:[],ds_2:[],dsx:[],dsxaddfacet:[],dsxaddlistitem:[],dsxaddmeasurecalculationconditionalrul:[],dsxaddpag:[],dsxaddpagewithselectedcompon:[],dsxaddsinglemeasureconditionalrul:[],dsxaddtargetvaluecalculationconditionalrul:[],dsxaddtimefram:[],dsxclearallpag:[],dsxclearselect:[],dsxcleartext:[],dsxdeleteconditionalrul:[],dsxeditmeasurecalculationconditionalrul:[],dsxeditsinglemeasureconditionalrul:[],dsxedittargetvaluecalculationconditionalrul:[],dsxenablefiscalyear:[],dsxexportallpageaspdf:[],dsxexportallpageasppt:[],dsxexportasdoc:[],dsxexportaspdf:[],dsxexportasppt:[],dsxexportselectedcompon:[],dsxget:[],dsxgetactiveprofil:[],dsxgetadvancedtext:[],dsxgetalllay:[],dsxgetaspectratio:[],dsxgetattachmenttyp:[],dsxgetaxislabel:[],dsxgetbackgroundcolor:[],dsxgetbardatacustom:[],dsxgetbaselay:[],dsxgetbccmailid:[],dsxgetccmailid:[],dsxgetchartbackgroundcolor:[],dsxgetchartbordercolor:[],dsxgetchartborderwidth:[],dsxgetchartbottommargin:[],dsxgetchartbottompad:[],dsxgetchartleftmargin:[],dsxgetchartleftpad:[],dsxgetchartpan:[],dsxgetchartpankei:[],dsxgetchartpinchtyp:[],dsxgetchartrightmargin:[],dsxgetchartrightpad:[],dsxgetcharttitl:[],dsxgetcharttitleen:[],dsxgetcharttopmargin:[],dsxgetcharttoppad:[],dsxgetcharttyp:[],dsxgetchartvalu:[],dsxgetchartvalueen:[],dsxgetchartwidth:[],dsxgetchartzoomtyp:[],dsxgetcontainerbackgroundcolor:[],dsxgetcontainerbordercolor:[],dsxgetcontextmenuselecteditem:[],dsxgetdashstyl:[],dsxgetdataalign:[],dsxgetdatacolor:[],dsxgetdatafontfamili:[],dsxgetdatafonts:[],dsxgetdatafontweight:[],dsxgetdatalabelen:[],dsxgetdatalabelfontfamili:[],dsxgetdatalabelfonts:[],dsxgetdatalabelfontweight:[],dsxgetdatalabelnoofdecim:[],dsxgetdatalabelprefix:[],dsxgetdatalabelsuffix:[],dsxgetdatalabeltextcolor:[],dsxgetdatapoint:[],dsxgetdataselect:[],dsxgetdataseriesnam:[],dsxgetdatatyp:[],dsxgetdatatypevalu:[],dsxgetdatavalu:[],dsxgetdatavaluecolor:[],dsxgetdateformat:[],dsxgetdecimalsepar:[],dsxgetdecimalseper:[],dsxgetdefaultvalu:[],dsxgetdimens:[],dsxgetdisplaytyp:[],dsxgetdocumentnam:[],dsxgetdrilldownlevel:[],dsxgetdrilldownmemb:[],dsxgetdrilldownmemberkei:[],dsxgetdrilldownmembertext:[],dsxgetdrillupmemb:[],dsxgetdrillupmemberkei:[],dsxgetdrillupmembertext:[],dsxgetedit:[],dsxgetenablecl:[],dsxgetenablenoui:[],dsxgetenabletempl:[],dsxgetendi:[],dsxgetendm:[],dsxgetendrang:[],dsxgetendvalu:[],dsxgetendyear:[],dsxgetevenrowcolor:[],dsxgetfifthdimens:[],dsxgetfifthdimensionarrai:[],dsxgetfillediconcolor:[],dsxgetfirstdimens:[],dsxgetfirstdimensionarrai:[],dsxgetfiscalmonthdisplai:[],dsxgetfiscalstartingmonth:[],dsxgetfiscalstartingyear:[],dsxgetfiscalyeardisplai:[],dsxgetfiscalyearlabel:[],dsxgetfittopag:[],dsxgetfontcolor:[],dsxgetfonts:[],dsxgetfooteralign:[],dsxgetfootercolor:[],dsxgetfooterd:[],dsxgetfooterfontcolor:[],dsxgetfooterfontfamili:[],dsxgetfooterfonts:[],dsxgetfooterfontweight:[],dsxgetfooterpagenumb:[],dsxgetfootertext:[],dsxgetfourthdimens:[],dsxgetfourthdimensionarrai:[],dsxgetgaugemaxvalu:[],dsxgetgaugeminvalu:[],dsxgetgaugeprimarymaxvalu:[],dsxgetgaugeprimaryminvalu:[],dsxgetgaugesecondarymaxvalu:[],dsxgetgaugesecondaryminvalu:[],dsxgetgaugetyp:[],dsxgetgriddata:[],dsxgetheadercolor:[],dsxgetheaderd:[],dsxgetheaderpagenumb:[],dsxgetheadertext:[],dsxgethorizontalzoombuttonalign:[],dsxgeticoncolor:[],dsxgeticonrot:[],dsxgeticons:[],dsxgeticonstaticdata:[],dsxgeticonsymbol:[],dsxgeticonurl:[],dsxgeticonwidth:[],dsxgetindividualscal:[],dsxgetintermediaterang:[],dsxgetislayervis:[],dsxgetismobil:[],dsxgetisportrait:[],dsxgetkpibackgroundcolor:[],dsxgetkpibordercolor:[],dsxgetkpiborderradiu:[],dsxgetkpiborderstyl:[],dsxgetkpiborderwidth:[],dsxgetkpidecimalsepar:[],dsxgetkpifontcolor:[],dsxgetkpifontcolorgoodbad:[],dsxgetkpifontfamili:[],dsxgetkpifonts:[],dsxgetkpiiconcolorgoodbad:[],dsxgetkpiiconrotationgoodbad:[],dsxgetkpiicons:[],dsxgetkpiiconsymbolgoodbad:[],dsxgetkpiincreaseisgood:[],dsxgetkpinoofdecim:[],dsxgetkpipercentincreasedecreas:[],dsxgetkpiprefix:[],dsxgetkpishowscalingfactor:[],dsxgetkpishowunit:[],dsxgetkpistaticdata:[],dsxgetkpisuffix:[],dsxgetkpithousandsepar:[],dsxgetkpititlecolor:[],dsxgetkpititlefontfamili:[],dsxgetkpititlefonts:[],dsxgetkpititlefontweight:[],dsxgetlassoselect:[],dsxgetlay:[],dsxgetleftmargin:[],dsxgetmailbodi:[],dsxgetmailsubject:[],dsxgetmarkerobject:[],dsxgetmaxdataselect:[],dsxgetmaximumvalu:[],dsxgetmaxvalu:[],dsxgetminimumvalu:[],dsxgetminimumwidth:[],dsxgetnonfillediconcolor:[],dsxgetnoofdecim:[],dsxgetnumericdatavalu:[],dsxgetoddrowcolor:[],dsxgetonbehalf:[],dsxgetoperatortyp:[],dsxgetpageorient:[],dsxgetpages:[],dsxgetpanelvis:[],dsxgetplotshadow:[],dsxgetprimarygaugedatavalu:[],dsxgetrespons:[],dsxgetresultarrai:[],dsxgetrowheight:[],dsxgetscaletofit:[],dsxgetsearchedtext:[],dsxgetsearchresultarrai:[],dsxgetsecondarygaugedatavalu:[],dsxgetseconddimens:[],dsxgetseconddimensionarrai:[],dsxgetselectechartdimens:[],dsxgetselectedchart:[],dsxgetselectedchartdimens:[],dsxgetselectedchildrenexternalkei:[],dsxgetselectedchildreninternalkei:[],dsxgetselectedchildrenkei:[],dsxgetselectedchildrentext:[],dsxgetselectedcontain:[],dsxgetselecteddescendantsextern:[],dsxgetselecteddescendantsintern:[],dsxgetselecteddescendantstext:[],dsxgetselecteddimens:[],dsxgetselectedheadervalu:[],dsxgetselectedkei:[],dsxgetselectedlassodataselect:[],dsxgetselectedlassomemb:[],dsxgetselectedlassomemberskei:[],dsxgetselectedlassomemberstext:[],dsxgetselectedmeasur:[],dsxgetselectedmeasureinchart:[],dsxgetselectedmeasurekei:[],dsxgetselectedmeasureskei:[],dsxgetselectedmeasurestext:[],dsxgetselectedmeasuretext:[],dsxgetselectedmemb:[],dsxgetselectedmemberkei:[],dsxgetselectedmemberobject:[],dsxgetselectedmemberobjectarrai:[],dsxgetselectedmembersexternalkei:[],dsxgetselectedmembersinternalkei:[],dsxgetselectedmemberskei:[],dsxgetselectedmemberstext:[],dsxgetselectedmembertext:[],dsxgetselectedmembertextinchart:[],dsxgetselectedmonth:[],dsxgetselectedmontharrai:[],dsxgetselectedparentexternalkei:[],dsxgetselectedparentinternalkei:[],dsxgetselectedparentkei:[],dsxgetselectedparenttext:[],dsxgetselectedpoint:[],dsxgetselectedquart:[],dsxgetselectedquarterarrai:[],dsxgetselectedrangecolor:[],dsxgetselectedshap:[],dsxgetselectedtext:[],dsxgetselectedvalu:[],dsxgetselectedvaluearr:[],dsxgetselectedvaluefloat:[],dsxgetselectedvalueindateformat:[],dsxgetselectedvalueindateformatar:[],dsxgetselectedvalueint:[],dsxgetselectedvaluesfloat:[],dsxgetselectedyear:[],dsxgetselectedyeararrai:[],dsxgetseletedquart:[],dsxgetserverurl:[],dsxgetsetnodechildreninternalkei:[],dsxgetsetnodechildrenkei:[],dsxgetsetnodechildrentext:[],dsxgetsixthdimens:[],dsxgetsixthdimensionarrai:[],dsxgetsorttyp:[],dsxgetsparklinebulletcomparisonm:[],dsxgetsparklinebulletperformancem:[],dsxgetsparklinebulletqualitativ:[],dsxgetsparklinebulletqualitativem:[],dsxgetsparklinechartcolor:[],dsxgetsparklinecharttyp:[],dsxgetsparklinelosscolor:[],dsxgetsparklinewincolor:[],dsxgetstackedvalu:[],dsxgetstarti:[],dsxgetstartm:[],dsxgetstartrang:[],dsxgetstartvalu:[],dsxgetstartyear:[],dsxgetstatusindicatorcalculationo:[],dsxgetstatusindicatorcallout:[],dsxgetstatusindicatorcallouts:[],dsxgetstatusindicatorcallouttop:[],dsxgetstatusindicatorcolor:[],dsxgetstatusindicatordatasourc:[],dsxgetstatusindicatoren:[],dsxgetstatusindicatorpercentincr:[],dsxgetstatusindicatorresulttyp:[],dsxgetstatusindicatorsymbol:[],dsxgetstatusindicatorsymbolcolor:[],dsxgetstatusindicatorsymbolrotati:[],dsxgetstatusindicatorsymbols:[],dsxgetstatusindicatorsymboltop:[],dsxgetstatusindicatorvaluedynam:[],dsxgetstatusindicatorvaluestat:[],dsxgetstatusindicatorvaluetyp:[],dsxgetstatusindicatorwidth:[],dsxgetsubfooterfontcolor:[],dsxgetsubfooterfontfamili:[],dsxgetsubfooterfonts:[],dsxgetsubfootertext:[],dsxgetsubtitlealign:[],dsxgetsubtitlecolor:[],dsxgetsubtitlefontcolor:[],dsxgetsubtitlefontfamili:[],dsxgetsubtitlefonts:[],dsxgetsubtitlefontweight:[],dsxgetsubtitletext:[],dsxgetsuffixalign:[],dsxgetsuffixcolor:[],dsxgetsuffixfontfamili:[],dsxgetsuffixfonts:[],dsxgetsuffixfontweight:[],dsxgettemplateppt:[],dsxgettext:[],dsxgettextcolor:[],dsxgettextplacehold:[],dsxgettextplaceholder1:[],dsxgetthirddimens:[],dsxgetthirddimensionarrai:[],dsxgetthousandsepar:[],dsxgetthousandseper:[],dsxgettitlealign:[],dsxgettitlecolor:[],dsxgettitlefontcolor:[],dsxgettitlefontfamili:[],dsxgettitlefonts:[],dsxgettitlefontweight:[],dsxgettitletext:[],dsxgettomailid:[],dsxgettooltipen:[],dsxgettopmargin:[],dsxgetvalueaxis1labelen:[],dsxgetvalueaxis1labelprefix:[],dsxgetvalueaxis1labelsuffix:[],dsxgetvalueaxis1titleen:[],dsxgetvalueaxis1titletext:[],dsxgetvalueaxis2labelen:[],dsxgetvalueaxis2labelprefix:[],dsxgetvalueaxis2labelsuffix:[],dsxgetvalueaxis2titleen:[],dsxgetvalueaxis2titletext:[],dsxgetvalueaxismajortickinterv:[],dsxgetvalueaxisminortickinterv:[],dsxgetvalueaxistitletext:[],dsxgetvaluetyp:[],dsxgetverticalzoombuttonalign:[],dsxgetvis:[],dsxgetxaxislabelprefix:[],dsxgetxaxislabelsuffix:[],dsxgetxaxisplotbandcolor:[],dsxgetxaxisplotbanden:[],dsxgetxaxisplotbandfrom:[],dsxgetxaxisplotbandto:[],dsxgetxaxisplotlinecolor:[],dsxgetxaxisplotlineen:[],dsxgetxaxisplotlinevalu:[],dsxgetxaxistitletext:[],dsxgetyaxis2labelprefix:[],dsxgetyaxis2labelsuffix:[],dsxgetyaxis2maximum:[],dsxgetyaxis2minimum:[],dsxgetyaxis2plotbandcolor:[],dsxgetyaxis2plotbanden:[],dsxgetyaxis2plotbandfrom:[],dsxgetyaxis2plotbandto:[],dsxgetyaxis2plotlinecolor:[],dsxgetyaxis2plotlineen:[],dsxgetyaxis2plotlinevalu:[],dsxgetyaxis2titletext:[],dsxgetyaxisceil:[],dsxgetyaxisfloor:[],dsxgetyaxislabelprefix:[],dsxgetyaxislabelsuffix:[],dsxgetyaxismax:[],dsxgetyaxismin:[],dsxgetyaxisminortickinterv:[],dsxgetyaxisplotbandcolor:[],dsxgetyaxisplotbanden:[],dsxgetyaxisplotbandfrom:[],dsxgetyaxisplotbandto:[],dsxgetyaxisplotlinecolor:[],dsxgetyaxisplotlineen:[],dsxgetyaxisplotlinevalu:[],dsxgetyaxistickinterv:[],dsxgetyaxistitletext:[],dsxgetyaxistooltipvalueprefix:[],dsxgetyaxistooltipvaluesuffix:[],dsxgetzoombuttonbackgroundcolor:[],dsxgetzoombuttonhoverbackgroundco:[],dsxgetzoombuttonhovertextcolor:[],dsxgetzoombuttonradiu:[],dsxgetzoombuttontextcolor:[],dsxgetzoomlevel:[],dsxgetzoomselectionareabackground:[],dsxhidelay:[],dsxhideload:[],dsxhidemeasur:[],dsxhideseri:[],dsxiscontrolcharttypebyselector:[],dsxisfiscalyearen:[],dsxonchang:[],dsxonclick:[],dsxonent:[],dsxonselect:[],dsxplotbandreset:[],dsxremovefacet:[],dsxremovelassoselect:[],dsxsendmail:[],dsxsetactiveprofil:[],dsxsetadvancedtext:[],dsxsetaspectratio:[],dsxsetattachmenttyp:[],dsxsetaxistyp:[],dsxsetbackgroundcolor:[],dsxsetbardatacustom:[],dsxsetbaselay:[],dsxsetbccmailid:[],dsxsetbubblemeasur:[],dsxsetccmailid:[],dsxsetchartbackgroundcolor:[],dsxsetchartbordercolor:[],dsxsetchartborderwidth:[],dsxsetchartbottommargin:[],dsxsetchartbottompad:[],dsxsetchartcolor:[],dsxsetchartcontainertyp:[],dsxsetchartleftmargin:[],dsxsetchartleftpad:[],dsxsetchartorient:[],dsxsetchartpan:[],dsxsetchartpankei:[],dsxsetchartpinchtyp:[],dsxsetchartrightmargin:[],dsxsetchartrightpad:[],dsxsetcharttitl:[],dsxsetcharttitleen:[],dsxsetcharttopmargin:[],dsxsetcharttoppad:[],dsxsetcharttyp:[],dsxsetchartvalu:[],dsxsetchartvalueen:[],dsxsetchartwidth:[],dsxsetchartzoomtyp:[],dsxsetcod:[],dsxsetcolumnlimit:[],dsxsetcolumnvis:[],dsxsetcontainerbackgroundcolor:[],dsxsetcontainerbordercolor:[],dsxsetcontrolcharttypebyselector:[],dsxsetdai:[],dsxsetdashstyl:[],dsxsetdataalign:[],dsxsetdatacolor:[],dsxsetdatafloatvalu:[],dsxsetdatafontfamili:[],dsxsetdatafonts:[],dsxsetdatafontweight:[],dsxsetdataintvalu:[],dsxsetdatalabelen:[],dsxsetdatalabelfontfamili:[],dsxsetdatalabelfonts:[],dsxsetdatalabelfontweight:[],dsxsetdatalabelnoofdecim:[],dsxsetdatalabelprefix:[],dsxsetdatalabelsuffix:[],dsxsetdatalabeltextcolor:[],dsxsetdatapoint:[],dsxsetdataselect:[],dsxsetdataseriesnam:[],dsxsetdatatyp:[],dsxsetdatatypevalu:[],dsxsetdatautil:[],dsxsetdatautilitybyindex:[],dsxsetdatavalu:[],dsxsetdatavaluecolor:[],dsxsetdatavaluefillcolor:[],dsxsetdateformat:[],dsxsetdecimalsepar:[],dsxsetdecimalseper:[],dsxsetdefaultvalu:[],dsxsetdelimitt:[],dsxsetdimens:[],dsxsetdimensionfilterrul:[],dsxsetdisplaytyp:[],dsxsetdocumentnam:[],dsxsetdomain:[],dsxsetdomainrang:[],dsxsetedit:[],dsxsetel:[],dsxsetemptycolor:[],dsxsetenablecl:[],dsxsetenablenoui:[],dsxsetenablesearch:[],dsxsetenabletempl:[],dsxsetenablezoomrang:[],dsxsetendi:[],dsxsetendm:[],dsxsetendrang:[],dsxsetendvalu:[],dsxsetendyear:[],dsxsetevenrowcolor:[],dsxsetexpandlevel:[],dsxsetexportedfilenam:[],dsxsetfacetcontroltyp:[],dsxsetfacetdisplai:[],dsxsetfacetwidth:[],dsxsetfacetwidthinpixel:[],dsxsetfillediconcolor:[],dsxsetfiscalmonthdisplai:[],dsxsetfiscalstartingmonth:[],dsxsetfiscalstartingyear:[],dsxsetfiscalyeardisplai:[],dsxsetfiscalyearlabel:[],dsxsetfittopag:[],dsxsetfontcolor:[],dsxsetfonts:[],dsxsetfooteralign:[],dsxsetfootercolor:[],dsxsetfooterd:[],dsxsetfooterfontcolor:[],dsxsetfooterfontfamili:[],dsxsetfooterfonts:[],dsxsetfooterfontweight:[],dsxsetfooterpagenumb:[],dsxsetfooterstatictext:[],dsxsetfootertext:[],dsxsetgaugemaxvalu:[],dsxsetgaugeminvalu:[],dsxsetgaugeprimarymaxvalu:[],dsxsetgaugeprimaryminvalu:[],dsxsetgaugesecondarymaxvalu:[],dsxsetgaugesecondaryminvalu:[],dsxsetgaugetyp:[],dsxsetgriddata:[],dsxsetheadercolor:[],dsxsetheaderd:[],dsxsetheaderpagenumb:[],dsxsetheadertext:[],dsxsethiddencolumnbyindex:[],dsxsethierarchydimensionkei:[],dsxsethierarchydimensiontext:[],dsxsethorizontalscrollbaren:[],dsxsethorizontalzoombuttonalign:[],dsxsethtmlcod:[],dsxseticoncolor:[],dsxseticondynamicdata:[],dsxseticonrot:[],dsxseticons:[],dsxseticonstaticdata:[],dsxseticonsymbol:[],dsxseticonurl:[],dsxsetindividualscal:[],dsxsetinitiallatitud:[],dsxsetinitiallongitud:[],dsxsetintermediaterang:[],dsxsetitemmemb:[],dsxsetkpibackgroundcolor:[],dsxsetkpibordercolor:[],dsxsetkpiborderradiu:[],dsxsetkpiborderstyl:[],dsxsetkpiborderwidth:[],dsxsetkpicalculationdata:[],dsxsetkpidecimalsepar:[],dsxsetkpidynamicdata:[],dsxsetkpifontcolor:[],dsxsetkpifontcolorgoodbad:[],dsxsetkpifontfamili:[],dsxsetkpifonts:[],dsxsetkpiiconcolorgoodbad:[],dsxsetkpiiconrotationgoodbad:[],dsxsetkpiicons:[],dsxsetkpiiconsymbolgoodbad:[],dsxsetkpiincreaseisgood:[],dsxsetkpinoofdecim:[],dsxsetkpipercentincreasedecreas:[],dsxsetkpiprefix:[],dsxsetkpishowscalingfactor:[],dsxsetkpishowunit:[],dsxsetkpistaticdata:[],dsxsetkpisuffix:[],dsxsetkpithousandsepar:[],dsxsetkpititlecolor:[],dsxsetkpititlefontfamili:[],dsxsetkpititlefonts:[],dsxsetkpititlefontweight:[],dsxsetleftmargin:[],dsxsetloadingind:[],dsxsetloadingindicatortext:[],dsxsetmailbodi:[],dsxsetmailsubject:[],dsxsetmapposit:[],dsxsetmaxd:[],dsxsetmaxdataselect:[],dsxsetmaxfloatvalu:[],dsxsetmaximumvalu:[],dsxsetmaximumvaluefloat:[],dsxsetmaxintvalu:[],dsxsetmaxvalu:[],dsxsetmeasur:[],dsxsetmeasureaxisindex:[],dsxsetmind:[],dsxsetminimumvalu:[],dsxsetminimumwidth:[],dsxsetmonth:[],dsxsetmonthyeardateformat:[],dsxsetnonfillediconcolor:[],dsxsetnoofdecim:[],dsxsetnumericdatavalu:[],dsxsetoddrowcolor:[],dsxsetonbehalf:[],dsxsetpageorient:[],dsxsetpages:[],dsxsetpanelheight:[],dsxsetpanelvis:[],dsxsetpanelwidth:[],dsxsetperiodrang:[],dsxsetplotbackgroundcolor:[],dsxsetplotbandvalu:[],dsxsetplotbandvaluejson:[],dsxsetplotshadow:[],dsxsetprevnextstep:[],dsxsetprimarygaugedatavalu:[],dsxsetprimarygaugedynamicdatavalu:[],dsxsetqualitativerang:[],dsxsetqualitativerangeconfigurati:[],dsxsetquart:[],dsxsetquarteryeardateformat:[],dsxsetrespons:[],dsxsetrowheight:[],dsxsetrowlimit:[],dsxsetruntimedimensionhierarchi:[],dsxsetscaletofit:[],dsxsetsecondarygaugedatavalu:[],dsxsetsecondarygaugedynamicdatavalu:[],dsxsetselectedcontain:[],dsxsetselectedkei:[],dsxsetselectedmeasur:[],dsxsetselectedrangecolor:[],dsxsetselectedtext:[],dsxsetselectedvalu:[],dsxsetserverurl:[],dsxsetsliderdatedisplayformat:[],dsxsetsliderdateinputformat:[],dsxsetsliderdatereturnformat:[],dsxsetsparklinebulletcomparisonm:[],dsxsetsparklinebulletperformancem:[],dsxsetsparklinebulletqualitativ:[],dsxsetsparklinebulletqualitativem:[],dsxsetsparklinechartcolor:[],dsxsetsparklinechartdata:[],dsxsetsparklinecharttyp:[],dsxsetsparklinelosscolor:[],dsxsetsparklinewincolor:[],dsxsetstackedvalu:[],dsxsetstartd:[],dsxsetstarti:[],dsxsetstartm:[],dsxsetstartrang:[],dsxsetstartvalu:[],dsxsetstartyear:[],dsxsetstatusindicatorcallout:[],dsxsetstatusindicatorcallouts:[],dsxsetstatusindicatorcallouttop:[],dsxsetstatusindicatorcolor:[],dsxsetstatusindicatordatasourc:[],dsxsetstatusindicatoren:[],dsxsetstatusindicatorsymbol:[],dsxsetstatusindicatorsymbolcolor:[],dsxsetstatusindicatorsymbolrotati:[],dsxsetstatusindicatorsymbols:[],dsxsetstatusindicatorsymboltop:[],dsxsetstatusindicatorvaluecalcula:[],dsxsetstatusindicatorvaluedynam:[],dsxsetstatusindicatorvaluestat:[],dsxsetstatusindicatorwidth:[],dsxsetsubdomain:[],dsxsetsubfooterfontcolor:[],dsxsetsubfooterfontfamili:[],dsxsetsubfooterfonts:[],dsxsetsubfooterstatictext:[],dsxsetsubtitlealign:[],dsxsetsubtitlecolor:[],dsxsetsubtitleen:[],dsxsetsubtitlefontcolor:[],dsxsetsubtitlefontfamili:[],dsxsetsubtitlefonts:[],dsxsetsubtitlefontweight:[],dsxsetsubtitlestatictext:[],dsxsetsubtitletext:[],dsxsetsuffixalign:[],dsxsetsuffixcolor:[],dsxsetsuffixfontfamili:[],dsxsetsuffixfonts:[],dsxsetsuffixfontweight:[],dsxsettableapi:[],dsxsettemplateppt:[],dsxsettext:[],dsxsettextcolor:[],dsxsettextplacehold:[],dsxsettextplaceholder1:[],dsxsetthousandsepar:[],dsxsettimeperiod:[],dsxsettitlealign:[],dsxsettitlecolor:[],dsxsettitleen:[],dsxsettitlefontcolor:[],dsxsettitlefontfamili:[],dsxsettitlefonts:[],dsxsettitlefontweight:[],dsxsettitlestatictext:[],dsxsettitletext:[],dsxsettomailid:[],dsxsettooltipen:[],dsxsettooltipnoofdecim:[],dsxsettooltipvalueprefix:[],dsxsettooltipvaluesuffix:[],dsxsettopmargin:[],dsxsettotalvaluefillcolor:[],dsxsettyp:[],dsxsetvalueaxis1labelen:[],dsxsetvalueaxis1labelprefix:[],dsxsetvalueaxis1labelsuffix:[],dsxsetvalueaxis1titleen:[],dsxsetvalueaxis1titletext:[],dsxsetvalueaxis2labelen:[],dsxsetvalueaxis2labelprefix:[],dsxsetvalueaxis2labelsuffix:[],dsxsetvalueaxis2titleen:[],dsxsetvalueaxis2titletext:[],dsxsetvalueaxislabelprefix:[],dsxsetvalueaxislabelsuffix:[],dsxsetvalueaxismajortickinterv:[],dsxsetvalueaxisminortickinterv:[],dsxsetvalueaxistitletext:[],dsxsetvaluetyp:[],dsxsetverticalscrollbaren:[],dsxsetverticalzoombuttonalign:[],dsxsetviewnam:[],dsxsetvis:[],dsxsetweek:[],dsxsetweekstart:[],dsxsetxaxisboxlabelen:[],dsxsetxaxislabelen:[],dsxsetxaxislabelprefix:[],dsxsetxaxislabelsuffix:[],dsxsetxaxisplotband:[],dsxsetxaxisplotbandcolor:[],dsxsetxaxisplotbanden:[],dsxsetxaxisplotbandfrom:[],dsxsetxaxisplotbandto:[],dsxsetxaxisplotlin:[],dsxsetxaxisplotlinecolor:[],dsxsetxaxisplotlineen:[],dsxsetxaxisplotlinevalu:[],dsxsetxaxistitleen:[],dsxsetxaxistitletext:[],dsxsetyaxis2labelen:[],dsxsetyaxis2labelprefix:[],dsxsetyaxis2labelsuffix:[],dsxsetyaxis2maximum:[],dsxsetyaxis2minimum:[],dsxsetyaxis2plotbandcolor:[],dsxsetyaxis2plotbanden:[],dsxsetyaxis2plotbandfrom:[],dsxsetyaxis2plotbandto:[],dsxsetyaxis2plotlinecolor:[],dsxsetyaxis2plotlineen:[],dsxsetyaxis2plotlinevalu:[],dsxsetyaxis2titleen:[],dsxsetyaxis2titletext:[],dsxsetyaxisfloor:[],dsxsetyaxislabelen:[],dsxsetyaxislabelprefix:[],dsxsetyaxislabelsuffix:[],dsxsetyaxismaximum:[],dsxsetyaxisminimum:[],dsxsetyaxisminortickinterv:[],dsxsetyaxisplotband:[],dsxsetyaxisplotbandcolor:[],dsxsetyaxisplotbanden:[],dsxsetyaxisplotbandfrom:[],dsxsetyaxisplotbandto:[],dsxsetyaxisplotlin:[],dsxsetyaxisplotlinecolor:[],dsxsetyaxisplotlineen:[],dsxsetyaxisplotlinevalu:[],dsxsetyaxistickinterv:[],dsxsetyaxistitleen:[],dsxsetyaxistitletext:[],dsxsetyaxistooltipvalueprefix:[],dsxsetyaxistooltipvaluesuffix:[],dsxsetyear:[],dsxsetzoombuttonbackgroundcolor:[],dsxsetzoombuttonhoverbackgroundco:[],dsxsetzoombuttonhovertextcolor:[],dsxsetzoombuttonradiu:[],dsxsetzoombuttontextcolor:[],dsxsetzoominvalu:[],dsxsetzoomlevel:[],dsxsetzoomoutvalu:[],dsxsetzoomrangemaxvalu:[],dsxsetzoomrangeminvalu:[],dsxsetzoomselectionareabackground:[],dsxshowlay:[],dsxshowload:[],dsxshowmeasur:[],dsxshowseri:[],dsxtogglekpitilesid:[],dual:[],dualaxeschart:[],duplic:[],durat:[],dure:6,dwm:[],dxsgetresultarrai:[],dynam:3,e8a84b037d9547d3995c31445e21aa97:[],each:[3,6,8],earl:[],easi:[],easili:[],easurecolor:[],edg:[],edit:[3,6],editor:[3,9],eee:[],effect:6,effici:4,effort:1,eginn:6,either:3,electr:[],electron:1,element:6,ellipt:[],els:3,elsewher:[],email:[],embed:[],employe:[],empti:[6,7],enabl:[5,6,7],end:[3,6,7],eneabl:[],energi:[],enforc:[],english:[],enhanc:[],ensur:[1,5],enter:[6,7],entir:[3,6,7],entri:6,environ:[],epx:[],equal:7,equat:3,equip:[],equival:3,error:1,especi:[],esri:[],essenti:[],establish:[],etc:3,evalu:[],even:5,event:[],eventhough:[],everi:[1,3],exact:[],exactli:6,examp:[],exampl:[0,3,6,7],excel:3,except:6,exchang:[],exclud:[],execut:[],exist:[3,6,7],exit:6,expand:[6,7,9],expandal:[],expect:[],expens:[],experienc:[],experiment:[],expert:[],explain:[0,6,7,8],explor:6,exponenti:[],exportdataascsv:[],exportdataasexcel:[],expos:6,express:[1,3],exprofil:[],extend:6,extens:[],extent:[],extern:[],extra:[],extract:3,facet:[],fact:[],factor:3,fall:[0,6],fals:[],famili:[],far:[],fashion:[],fast:3,faster:[],favor:[3,6],fax:[],fcst:7,feasibl:[],featur:[6,8,9],feb:[0,6],februari:[],feel:[],fetch:[],few:[],ff0000:[],fgure:[],field:[6,7,10],figr:[],figur:[0,3,6,7,8,10],file:3,filenam:[],fill:[],filter:[0,6,9],filtershow:[],financ:6,find:[3,6],finger:[],finish:[],finishfinish:[],finishstart:[],fiori:[],first:[0,3,6],fiscal:6,fit:[],five:6,fix:3,fixedcolumnchart:[],flexibl:[],flip:[],floor:[],florida:[],flow:6,focu:3,focus:3,folder:[],follow:[0,3,6],font:[3,6],fontawesom:[],food:[],footbal:[],footer:6,forc:[],foreach:[],forecast:[0,3,4,6,7],foreign:1,form:[1,6],format:[1,3,7],formula:[3,6],forward:[],fotr:[],found:[],four:10,fourth:[],franc:[],freeli:[],fresh:[],fridai:[],from:[0,3,7,10],front:[],fuel:3,full:[3,6,7,9],funnel:[],further:[3,6,7],futur:[3,6],gain:3,ganesh:[],gantt:[],gap:[],gaug:[],gender:[],gener:[2,8,9],geograph:[],geojson_layer1:[],geomap:[],germani:[],gestur:[],get:[6,7,9],getelementbyid:[],getreportblock:[],getselectedtabindex:[],gimag:[],give:[],given:[3,6],global:6,globe:[],going:[3,4],good:6,googl:[],gpu:[],gradient:[],grain:3,granular:[],graph:6,graphic:[],greater:6,green:[3,6],grei:3,grid:[0,6],gridbox_1:[],gross:6,ground:[],group:[],groupstackedcolumnbarchart:[],growth:[3,6],guid:[3,9],guidelin:[],gutter:[],hair:[],half:[3,9],hana:[],hand:3,handl:[],handwrit:[],happen:7,has:[0,1,3,5,6,7,8,10],have:[0,3,6,7],head:[],header:6,health:[],heat:[],heatmap:[],heatmapchart:[],hebraic:[],height:[],held:1,help:[6,7,9],henc:6,here:[3,6,7],herein:1,hexbin:[],hidden:6,hide:[3,6],hierarch:[],hierarchi:[2,3,6],hierarchialfilter_1:[],hierarchicalfilter1:[],high:[],higher:3,highest:[],highght:[],highlight:[3,6,7],hint:6,histori:9,hit:3,hold:3,hollow:[],home:[],horizon:[],horizont:6,host:[],hour:[3,6],hourglass:[],hover:[3,6],how:[3,6,7],howev:3,html:[],http:[3,6],huge:7,hyperlink:[],icon:[3,6,7],ident:[],identifi:[3,6],idocid:[],ids:6,ignor:[],illustr:7,imag:[],image100:[],image101:[],image102:[],image103:[],image104:[],image105:[],image106:[],image107:[],image108:[],image109:[],image10:[],image110:[],image111:[],image112:[],image113:[],image114:[],image115:[],image116:[],image117:[],image118:[],image119:[],image11:[],image120:[],image121:[],image122:[],image123:[],image124:[],image125:[],image126:[],image127:[],image128:[],image129:[],image12:[],image130:[],image131:[],image132:[],image133:[],image134:[],image135:[],image136:[],image137:[],image138:[],image139:[],image13:[],image140:[],image141:[],image142:[],image143:[],image144:[],image145:[],image146:[],image147:[],image148:[],image14:[],image15:[],image16:[],image17:[],image18:[],image19:[],image20:[],image22:[],image23:[],image27:[],image28:[],image29:[],image2:[],image30:[],image32:[],image33:[],image34:[],image35:[],image36:[],image37:[],image38:[],image39:[],image40:[],image41:[],image44:[],image45:[],image46:[],image48:[],image4:[],image51:[],image52:[],image53:[],image54:[],image55:[],image56:[],image57:[],image58:[],image59:[],image60:[],image61:[],image62:[],image63:[],image64:[],image66:[],image67:[],image68:[],image69:[],image70:[],image71:[],image72:[],image73:[],image74:[],image75:[],image76:[],image77:[],image78:[],image79:[],image7:[],image80:[],image82:[],image83:[],image84:[],image85:[],image86:[],image87:[],image88:[],image89:[],image8:[],image90:[],image91:[],image92:[],image93:[],image94:[],image95:[],image96:[],image97:[],image98:[],image99:[],image9:[],immedi:[2,3],impact:[3,7],implement:3,impli:[],impress:[],improv:3,inc:1,includ:[0,1,3,6],incom:6,incorpor:[],incorrect:[],increas:[3,6,7],increment:[],independ:[],index:[],india:[],indic:[3,6,7],individu:[0,3],indoor:[],industri:6,influenc:[2,4],infoobject:[],infoprovid:[],inform:[2,6,9],inherit:6,inish:[],initi:6,inlin:[],inner:[],innerhtml:[],inplac:[],input:[6,9,10],insert:[],insid:[],instal:[],instanc:3,instead:3,instruct:[6,9],intact:[],integ:[],integr:[],intellig:[],intens:[],interact:[],interest:6,interfac:5,intermedi:[],intern:1,interna:[],internet:[],interpol:[],intersect:[],interv:3,intervaltyp:[],introduct:9,intuit:[],invest:6,involv:4,ipad:3,iphon:3,iport:[],irrespect:7,issu:9,item:[3,6],its:[1,6],itself:[],jack:[],jame:[],jan:[0,3,6,7],januari:[],java:[],javascript:[],jeremi:[],jpeg:[],json:6,judi:[],jul:0,juli:4,jump:3,jun:0,june:[],just:3,justin:[],k2000:[],k2001:[],k2002:[],k2003:[],k2004:[],k2005:[],k2006:[],keep:3,kei:[2,6,9],kevin:[],kimber:[],kimberlei:[],king:[],kitchen:[],know:3,known:9,kpi:[2,4,6,9],label:3,labor:[],land:[],landscap:[],languag:1,laptop:[],larg:3,larger:[],larri:[],lasso:[],last:[3,6],later:[],latest:[3,6],latitud:[],launch:[],launchpad:[],laura:[],law:1,layer:[],layernam:[],layout:[],lazi:[],lead:[],leaf:[],least:[3,6],leav:0,left:[3,6,8],legal:[],legend:3,length:[],less:[],lesser:[],let:3,letter:6,level:[2,3,6,7,8],leverag:4,licenc:[],licens:[],lie:6,light:6,like:[1,3,6],limit:[3,9],line:[3,6,7],linear:[],linechart1:[],linechart:[],linechart_1:[],link:[2,3,4,6],list:[3,5,6,7,10],literatur:[],litr:3,littl:3,live:[],load:[6,7],local:[],locat:[3,6],lock:[3,6,7],loess:[],log:[],logarithm:[],logic:[],logo:1,logon:[],longitud:[],look:[3,7],lor:[],loss:3,lost:[],lot:[],lower:[],lowest:[],lumira:[],lym:[],lyq:[],m10:[],m11:[],m12:[],machin:[],made:[1,3],mai:[1,3,4,6],mail:[],main:[3,6,7],mainatain:[],maintain:6,major:4,make:3,manag:[2,4],mandatori:6,mani:3,manner:3,manual:[1,3,6],map:[3,6],mar:[0,6,7],march:6,margin:[],marimekko:[],marin:[],mark:[],maroon:[],match:6,materi:[1,3],mathemat:[2,4],matrix:[],matter:[],max:[],maximum:[3,6],mean:[1,3,6],meant:4,measu:[],measur:6,mechan:1,median:[],medium:6,meet:[],member:6,ment:[],mention:[0,1],menu:[3,6],merg:[],messag:6,met:[],meta:[],metadata:[],method:[3,7],metric:[3,6],meu:[],michal:[],microsoft:[2,3,4,6],middl:3,might:[],mike:[],mileston:[],mill:3,million:6,millisecond:[],min:[],mind:[],mine:[3,6],miniatur:[],minim:[3,6],minimap:[],minimum:6,minor:4,minu:[],minut:[],miscellan:[],miss:[],misunderstand:[],mmm:[],mmmm:[],mobil:[],mode:[3,6,7],model:[2,4,7,9,10],modifi:[],modul:[],mon:[],mondai:[],monospac:[],month:[0,3,6,7],monthli:[3,9],moor:[],more:[1,6,9],most:[3,7],mountain:[],mous:3,move:[3,7],movecolumn:[],movecolumnbyindex:[],movement:[],movi:[],mtd:[],mth:[],much:3,multi:[],multilevel:[],multilin:[],multipl:[3,7],multipleaxeschart:[],multipli:6,multiscreen:[],multiselect:[],multiyear:3,music:[],must:1,mutiselect:[],name:[1,3,6,7,10],narrow:[],nativ:[],natur:3,navig:[3,8],neag:[],necessari:[],necessarili:3,need:[6,7],neg:[3,6],neither:6,net:[3,6],network:3,newli:7,next:6,nine:[],node:[2,8,9],non:[],none:6,nor:6,normal:6,note:[0,3,6],noth:3,notic:1,novemb:3,now:[0,3,6,7],nth:[],number:[0,3,7],numer:[],oauth:[],object:[],observ:[0,3,6],occur:[],occurr:[],oct:0,odata:[],odd:[],off:[],offer:[3,4],offic:[],offset:[],often:[2,3],olap:[],olymp:[],onbehalf:[],onc:[3,7],onclick:[],ondrilldown:[],ondrillup:[],one:[1,2,3,6],onent:[],onli:[3,7],onlin:5,ons:[],onselect:[],onto:[],onward:[3,7],opac:[],open:[7,9],openstreet:[],oper:[2,3,4,6],operand:[],operatornam:[],opportun:3,opposit:[],option:[0,3,6,7,8,10],orang:3,order:[6,7],organ:[],orient:[],origin:3,osm:[],other:[1,3,6,9],otherwis:[],ough:[],our:[0,3,6,7],out:3,outcom:[],outer:[],outlier:[],outlin:[],outsid:6,oval:[],over:3,overal:3,overcapac:3,overlap:[],overload:[],overrid:[],overview:[],overwhelm:[],overwrit:[3,6,7],overwritten:3,own:6,owner:1,ownership:1,packag:[],pad:[],page:[3,6],pagin:[],pai:3,pair:6,pallet:[],pan:9,pane:[3,6],panel:[3,7,8,10],paper:[],parallel:3,paramet:6,parent:[2,6,7],parregion:[],pars:[],part:[1,3,6,7],parti:1,partial:[],particular:[3,6],particularli:3,pass:[],password:[],past:[3,6],patch:4,patent:9,path:[],pattern:[],paul:[],pct:[3,6],pdf:6,pen:3,pencil:3,pend:1,per:[3,6],perat:[],percent:[],percentag:[3,7],perfect:[],perform:[0,3],period:[0,6,7,9],period_mon:6,permiss:1,person:6,peter:[],phase:[],phone:[],physic:3,pick:[],pictogram:[],pictur:[],pie:[],piechart_1:[],pin:[],pinch:[3,5],pink:7,pivot:[],pivotmod:[],pixel:[],place:6,placehold:[],placement:[],plan:[3,6,9,10],plann:[],plano:[],platform:[],pleas:6,plot:[],plu:[],png:[],point:[3,5],pointer:[],polar:[],polarchart:[],polit:[],poor:6,pop:[3,6,7],popul:[],popup:6,port:[],portion:[],portrait:[],posit:3,possess:[],possibl:3,post:3,postal:[],potenti:[],power:[2,3,6],powerpoint:[],ppt:[],pptx:[],pre:[],prebuilt:[],precis:[],predefin:[],prefer:[],prefix:6,prepopul:[],present:[],preserv:[],press:[],preview:6,previou:[],previous:3,price:[3,4,6],primar:[],primari:[3,6,7],print:1,prior:6,probabl:[],proce:6,procedur:[],process:3,product:[1,2,3,6],proerti:[],profit:[3,6],progr:[],progress:[],project:6,promot:[],prompt:6,properti:[1,3],proport:[],proprietari:1,protect:1,protocol:[],provid:[3,6,7],provis:1,proxim:[],publish:[],purchas:[],purpl:[],purpos:[1,3],pyramid:[],qqq:[],qqqq:[],qtd:[],qualifi:[],qualit:[],qualiti:[],quantil:[],quantit:[],quantiti:[],quantiz:[],quarter:9,quartil:[],queri:6,query1:[],query2:[],quick:3,quickli:[],quit:[],radar:[],radarchart:[],radial:[],radio:[],radiu:[],rai:[],randi:[],rang:6,rangeslider_1:[],rate:3,ratio:6,raw:[],reach:[],react:[],read:9,readabl:[],readili:[],real:[3,4],realis:6,realiti:3,reason:3,reassign:[],recalcul:3,receiv:[],recent:6,recipi:[],recommend:[],reconfigur:[],record:[0,1],recov:[],rectangl:[],rectangular:[],red:[3,6],redirect:3,redraw:[],redrawn:[],reduc:[],reduct:[],ref:[],refer:[2,3,6],referenc:6,reflect:[5,6],refresh:[],regard:[],region:[],regist:1,registr:[],regular:[],reimport:6,rel:[],relat:[2,3],relationship:4,releas:[3,4,6,7],relev:[],remain:[3,6,7],remov:[],renam:7,render:6,rent:7,reorder:[3,6],repeat:[],replac:6,replic:3,report:3,repositori:[],repres:[3,6,7,8],represent:[],reproduc:1,request:[],requir:[0,3,6,7],rerout:[],resembl:[],reserv:1,reset:[3,7],resiz:[],resolut:[],resourc:[],respect:[1,3],respond:[],respons:1,rest:0,restart:[],restor:7,restrict:[],result:[3,6,7],resultset:[],retail:[],retain:[1,6],retriev:[],reusabl:[],revenu:[3,6,7],revers:[],review:[],reword:[],rfc:[],rich:[],right:[1,3,6,7,8],rightmost:[],risk:[],river:[],roboto:[],roll:3,root:6,rotat:[],round:[],row:[6,7],rtl:[],rug:[],rule1:[],rule:[3,6,7],run:[],runtim:3,ryan:[],safe:[],safeti:[],sai:3,salari:6,sale:[3,6,7],same:[0,3,6,7],samp:[],sampl:7,sample_data:[],samuel:[],san:[],sankei:[],sap:[],sapui5m:[],sat:[],satisfi:[],saturdai:[],save:[6,9],scale:[3,7],scatter:[],scenario:[4,6,9],scheme:[],scienc:[],scratch:6,screen:[0,3,6,7,10],screennumb:[],screenshot:3,script:[],scroll:[3,6],scrollabl:[],scrollbar:[],sdk:[],search:[6,7],searchbox_1:[],second:6,secondari:[3,6],section12:[],section:[3,6,7,8,10],secur:[],see:[0,3,6,7,8,10],seen:3,segment:[],select:[0,3,7],selectal:[],selectedmemb:[],selectedmemberkei:[],selectedmembertext:[],selector:[],self:[],semant:[],semi:[],semicircl:[],semicolon:[],send:[],sender:[],sensit:[],sent:[],sep:0,separ:[0,6],septemb:3,sequenti:[],seri:[0,3,7,9],serial:[],serif:[],serv:[],server:3,servic:1,session:[],set:[3,7,9],setcolumnpin:[],setcolumnvis:[],setcolumnwidth:[],setfilt:[],setfilterext:[],setheaderheight:[],setquickfilt:[],settext:[],setup:[],sever:6,sfi1:[],shadow:[],shape:[],share:3,sheet:[],shift:[],shop:[],shot:6,should:[0,3,6,7,9],show:[0,3,6],shown:[0,3,4,6,7],showtoolpanel:[],sid:[],side:3,sign:[],signific:[],significantli:3,sim:3,similar:[0,3,6,7],similari:[],similarli:[3,6],simpl:3,simpli:[],simplifi:3,simul:[4,9,10],simultan:[],sinc:6,singl:6,situat:[],six:[],size:6,sizecolumnstofit:[],slash:[],slice:[],slicer:[],slide:3,slider:[3,5,6],slightli:[],slope:[],slopechart:[],slot:[],sm1:[],small:6,smaller:6,smallest:[],smartphon:[],smoki:[],smooth:[],smtp:[],snaghtml95dcd268:[],snaghtmla5e88063:[],snaghtmlba665f5:[],snap:[],soap:[],softwar:1,sold:6,solid:[],solut:1,solutin:[],some:3,someth:[],somewhat:[],soon:[],sort:[],sound:1,sourc:[0,3,6,7],space:6,spark:6,sparklin:6,sparklingwater_grosssal:6,special:[3,6],specialti:[],specif:[3,6,7],specifi:[],speciic:[],spectrum:[],speed:[],spiderfi:[],spie:[],spline:[],split:[],sport:[],spotlight:[],spous:6,spouse1:6,spread:7,spreadsheet:3,squar:[],squarifi:[],sso:[],stack:[],stackedareachart:[],stackedcolumnbarchart:[],staf:[],staff:[],stage:[],stagger:[],stai:[],stakehold:[2,4],stamp:[],stand:[],standard:[3,6],stare:[],start:[3,6],startf:[],startfinish:[],startstart:[],startup:[],state:[1,5],statement:[],stationeri:[],statu:[3,6],status:[],stem:[],step:[6,7],still:3,stop:[],storag:[],store:[],stori:[],straight:[],stream:[],streamgraph:[],street:[],stretch:[],string:[],strip:[],stripe:[],stroke:[],structur:[6,7],studi:[],studio:[],style:6,sub:[6,9],subcategori:[],subdomain:[],subfoot:[],subject:1,submenu:[],submit:[],subscript:6,subset:[],subtitl:[],subtot:[],subtract:6,subtre:[],succeed:[],success:[],suffix:6,suit:[],sum:[3,6],sum_:[],summari:[],summat:[],sun:[],sundai:[],supercombinationchart:[],superior:[],suppli:[],support:[3,5,7],suppos:[],suppress:[],sure:[],svg:[],swap:[],swipe:[],symbol:[],sync:[],synchron:[],syntax:[],system:6,tab:[0,3,7,8,9,10],tabl:[3,4,6],table1:[],tablet:[],tabstrib:[],tabstrip:[],tabstrip_1:[],tag:[],take:6,taken:[6,7],tap:[],target:3,tart:[],task:[],team:[],technic:[3,6],technolog:[],teh:[],temp:[],templat:3,tere:[],term:6,tester:[],text:[3,6],text_1:[],text_1_tf1:[],than:3,thei:[0,3,6,7],them:[3,6,7],theme:[],therefor:[1,3],theses:[],thi:[1,2,3,5,6,7,9],thick:[],thin:[],thing:[2,3,4],thinner:[],third:3,those:0,though:[],thousand:6,three:[3,6,7],threshold:6,through:[6,7],throughout:[],throughput:3,thursdai:[],tick:[],tile:[],till:[6,7],time:[3,4,5],timefram:[],timelin:[],timeseri:[],timeslicer_1:[],tion:[],tip:[],titl:[1,3,6],to1:6,togeth:[],toggl:[],tonn:3,too:[],tool:[],toolbar:6,tooltip:3,top:[0,3,6,7],topic:[],topojson:[],tor:[],tori:[],total:[6,7],total__cost:6,touch:5,toward:[],track:3,trademark:9,transfer:[],translat:1,transmit:1,transpar:[],transport:[],travel:[],treat:1,treati:1,trebuchet:[],tree:[2,7,8,9],trelli:[],trend:[3,6,7],triangl:[],trigger:[],trillion:6,truli:[],tue:[],tuesdai:[],turn:7,tutori:6,two:[3,6,8],type:[6,7],typic:[3,6],unabl:[],unassign:[],under:[1,3,6],undergo:6,underli:[3,6],underlin:[],underscor:6,understand:[6,9,10],undo:[],unformat:3,unhid:[],uniqu:[2,6],unit:[1,2],univers:[],unlik:3,unlock:[6,7],unselect:[],unsur:[],until:[],upcom:10,updat:[3,5,6,7],uplo:6,upload:6,upon:6,upper:3,upto:6,url:[3,6],usa:[],usag:[],usd:[],use:[3,4,6,7],used:[3,6],useful:[3,6],user:[3,4,5,6,7],usernam:[],uses:[],using:[3,6,7],usual:6,util:6,vale:[],valeu:[],valid:4,valq:[2,6,8],valu:[0,2,4,6,7,8,9],value1:[],value2:[],varaianc:[],vari:3,variabl:3,varianc:[0,7,9],variat:3,varieti:[],variou:[1,3],vbx:[],vector:[],veri:6,versa:[3,6],versi9on:[],version:[3,4,5,6],versu:0,vertic:[6,7],vew:[],via:6,vice:[3,6],video:3,view:[0,6,9],viewer:[],viewport:[],virtual:[],visibl:6,visit:[],visuabi:[],visual:[1,2,6,8,10],visualbi:[],visualis:2,volum:[3,4],w52:[],waffl:[],wai:[2,3,4,6],walkthr:[],want:3,warehous:[],waterfal:[3,6],web:6,web_service_demo:[],web_service_wsdl_demo:[],webmap:[],websit:[],wed:[],wednesdai:[],week1:[],week52:[],week:0,weekli:9,weight:[3,6,7],well:[1,3,6],were:3,what:[2,9],wheel:3,when:[0,3,5,6,7],whenev:[],where:[3,6,7,8],wherea:[],whether:6,which:[0,3,4,6,7,8],whichev:[],whisker:[],white:[3,6],who:9,whole:[],whose:[],wide:[],wider:[],widget:[2,6,9],width:[],wildcard:[],win:[],window:[3,5,6,7],wish:3,wit:[],within:[0,1,5],without:[1,3,6],word:[],work:[3,5],workflow:[],workspac:[],world:3,wors:3,worthwhil:[],would:[3,6,7],write:[3,5,6,7],writeback:[],written:[1,6],wrong:[],wsdl:[],www:[],x_cordin:[],xampl:[],xaxi:[],xls:[],xml:[3,6],y_cordin:[],yaxismax:[],yaxismin:[],year:[3,6,7,9],yellow:[3,6],you:[0,1,3,6,7,10],your:[3,6,7],yqm:[],yqmm:[],ytd:3,yyi:[],yyyi:[],yyyymm:[],yyyymmdd:[],yyyymmm:[],zero:[6,7],zoom:[5,6,9]},titles:["Analyze Category","Copyright","Definitions","General Features of valQ Custom Visual","Introduction","Known Issues and Limitations","Model Category","Plan Category","Simulate Category","Welcome to valQ Custom Visual for Microsoft Power BI!","valQ in Power BI"],titleterms:{"boolean":[],"default":[],"export":6,"final":[],"function":[3,7],"import":6,"new":6,"return":[],"static":[],"super":[],AND:[],Adding:7,Axes:[],One:[],Using:[],With:[],XLS:[],abil:[],about:3,action:[],activ:[],actual:[],adapt:[],addit:6,advanc:6,aggreg:6,alert:[],all:[],alloc:7,allow:[],analysi:3,analyt:[],analyz:0,angular:[],anim:[],annot:[],api:[],appear:[],area:[],assign:[],autos:[],avail:[],axi:[],background:[],balanc:[],band:[],bar:[],base:[],bind:[],border:[],box:[],bubbl:[],bullet:[],busi:6,businessobject:[],calcul:6,calendar:[],canva:6,capabl:[],categori:[0,6,7,8],chang:[],chart:[],checkbox:[],children:7,choropleth:[],click:[],close:[],cloud:[],cluster:[],collaps:3,color:6,colum:[],column:[],combin:[],combo:[],common:7,comparison:[],compon:4,composit:6,condit:6,conduct:3,config:[],configur:6,constant:[],constraint:3,contain:[],content:[],context:[],contextu:3,contribut:6,coordin:[],copi:[],copyright:1,count:[],creat:6,creation:[],css:[],custom:[3,4,9],data:[3,6],datasourc:[],date:0,definit:[2,6],descend:[],design:[],detail:[],deviat:[],devic:[],dialog:[],differ:[],dimens:[],disabl:[],displai:[3,6],doc:[],document:4,donut:[],down:3,drill:3,drilldown:[],driver:3,dual:[],dwm:[],dynam:6,edit:[],editor:[6,7],element:[],email:[],empti:[],enabl:[],entri:[],error:[],esri:[],event:[],excel:6,exist:[],expand:3,extens:[],facet:[],featur:[3,7],file:6,filter:[3,7],fiscal:[],fit:[],fix:[],flow:[],focus:[],font:[],footer:[],format:6,freez:[],from:6,full:0,funnel:[],gantt:[],gaug:[],gener:[3,6],geo:[],geojson:[],geomap:[],german:[],get:3,global:[],googl:[],graph:[],grid:[],gridlin:[],group:[],guid:4,half:0,have:[],header:[],heat:[],help:3,hide:[],hierarch:[],hierarchi:[],high:[],histori:[4,7],horizon:[],horizont:[],how:[],html:[],icon:[],ident:[],imag:[],index:[],indic:[],indoor:[],inform:[1,3],input:[3,7],instruct:3,integr:[],intellig:[],interact:[],interest:[],interim:[],introduct:4,intuit:[],issu:5,kei:3,keyboard:[],known:5,kpi:3,label:6,larg:[],lasso:[],launch:[],layer:[],layout:[],legend:[],level:[],licens:6,limit:5,line:[],linear:[],list:[],load:[],local:[],locat:[],logic:[],loss:[],lumira:[],mail:[],manag:6,map:[],margin:[],marimekko:[],marker:[],master:[],matrix:[],maxim:[],measur:[],member:[],menu:[],messag:[],method:6,microsoft:[1,9],minim:[],minimap:[],miscellan:[],mobil:[],mode:[],model:[3,6],month:[],monthli:0,more:3,multi:[],multipl:[],multiselect:[],navig:6,neg:[],node:[3,6,7],note:7,number:6,numer:[],odata:[],offset:[],one:[],onli:6,open:[3,6],opendocu:[],option:[],order:[],other:7,overview:[],overwrit:[],pad:[],page:[],pagebook:[],pan:3,panel:6,parallel:[],pareto:[],part:[],patent:1,pattern:[],pbx:[],pdf:[],per:[],percentag:6,perform:6,period:3,pictogram:[],pie:[],pin:[],pivot:[],placehold:[],plan:7,platform:[],plot:[],point:[],polar:[],posit:[],power:[1,4,9,10],ppt:[],pre:[],preview:[],profil:[],progress:[],properti:6,pyramid:[],quarter:0,quick:6,radar:[],rang:[],rank:[],read:[4,6],registr:6,relationship:[],repeat:[],report:[],requir:[],requisit:[],reset:[],resourc:[],respons:[],restor:[],retain:[],revers:[],risk:[],rule:[],run:[],runtim:[],sampl:6,sankei:[],sap:[],save:3,scale:6,scatter:[],scenario:[3,7],scheme:[],scratch:[],screen:[],script:[],scrollbar:[],search:[],select:6,selector:[],self:[],semicircl:[],seri:6,servic:[],set:6,setup:[],sheet:[],should:4,show:[],side:[],simpl:6,simul:[3,6,8],singl:[],size:[],slicer:[],slider:[],slope:[],small:[],solid:[],sort:6,sourc:[],sparklin:[],special:[],specif:[],spie:[],spreadsheet:[],stack:[],standard:[],start:[],statu:[],step:[],stream:[],studio:[],style:[],sub:3,subtitl:[],suit:[],sunburst:[],support:[],swap:[],tab:6,tabl:[],tag:[],target:[],technic:[],templat:6,text:[],theme:6,thi:4,tick:[],tile:[],time:6,titl:[],tool:[],tooltip:[],total:[],trademark:1,tree:[3,6],trelli:[],trend:[],trendlin:[],type:[],understand:3,use:[],user:[],using:[],util:[],valq:[3,4,9,10],valu:3,varianc:[3,6],variant:[],vbx:[],vertic:[],via:[],view:[3,7],visual:[3,4,9],waffl:[],waterfal:[],web:[],weekli:0,welcom:9,what:[3,4],who:4,widget:3,width:[],win:[],window:[],work:[],workspac:[],wrap:[],writeback:6,wsdl:[],year:0,yqm:[],zoom:3}}) \ No newline at end of file diff --git a/valQ.html b/build/html/valQ.html similarity index 100% rename from valQ.html rename to build/html/valQ.html diff --git a/make.bat b/make.bat new file mode 100644 index 0000000..c811c5a --- /dev/null +++ b/make.bat @@ -0,0 +1,36 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build +set SPHINXPROJ=DocumentationManagementforSAPLumira + +if "%1" == "" goto help + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.http://sphinx-doc.org/ + exit /b 1 +) + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% + +:end +popd diff --git a/objects.inv b/objects.inv deleted file mode 100644 index 5e718da..0000000 Binary files a/objects.inv and /dev/null differ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2f4860f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,22 @@ +alabaster==0.7.10 +Babel==2.5.3 +certifi==2018.4.16 +chardet==3.0.4 +colorama==0.3.9 +docutils==0.14 +guzzle-sphinx-theme==0.7.11 +idna==2.6 +imagesize==1.0.0 +Jinja2==2.10 +MarkupSafe==1.0 +packaging==17.1 +Pygments==2.2.0 +pyparsing==2.2.0 +pytz==2018.4 +requests==2.18.4 +six==1.11.0 +snowballstemmer==1.2.1 +Sphinx==1.7.4 +sphinx-rtd-theme==0.3.1 +sphinxcontrib-websupport==1.0.1 +urllib3==1.22 diff --git a/searchindex.js b/searchindex.js deleted file mode 100644 index f86ab19..0000000 --- a/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -Search.setIndex({docnames:["AnalyzeCategory","Copyright","Definitions","Generalfeatures","Introduction","Knownissues","ModelCategory","PlanCategory","SimulateCategory","index","valQ"],envversion:53,filenames:["AnalyzeCategory.rst","Copyright.rst","Definitions.rst","Generalfeatures.rst","Introduction.rst","Knownissues.rst","ModelCategory.rst","PlanCategory.rst","SimulateCategory.rst","index.rst","valQ.rst"],objects:{},objnames:{},objtypes:{},terms:{"00b":[],"00m":[],"00t":[],"0caldai":[],"0d_nw_cntry":[],"11valq":[],"15th":[],"1st":0,"2x2":[],"3x3":[],"4x4":[],"52nd":0,"5px":[],"5th":[],"5x5":[],"6x6":[],"7x7":[],"boolean":[],"break":3,"case":[3,6,7],"class":[],"default":[3,6],"export":3,"final":[],"float":[],"function":[6,8,9],"import":3,"long":[],"new":[3,7,9],"null":6,"return":[3,6],"short":[],"static":[],"super":[],"switch":3,"true":[],"try":[],"var":[],"while":[],AND:[],Added:[],Adding:6,And:[],Axes:[],But:6,Eye:6,For:[0,3,6,7],IDs:[],Not:[],One:3,Such:3,The:[0,1,2,3,5,6,7,8,10],There:[3,6,7],These:[3,6],Use:[],Used:[],Using:[0,6,7],With:[3,6,7],XLS:[],Yes:6,_static:[],aaa:[],aad_sdk_max_cel:[],abbrevi:6,abil:0,abl:[0,3,6,7,10],about:[2,4,9],abov:[0,2,3,6,7,10],absolut:[0,6,7],accent:6,accept:[],access:[3,5],accompani:1,accord:[],accordingli:[],account:6,accur:1,achiev:3,across:7,act:[],actiavt:[],action:6,activ:[0,3,6,7],actual:[3,6],add:[6,7],added:[3,5,6],adding:6,addit:[0,2,3],addition:[],additon:[],address:[],adjust:[3,7],administr:[],adob:[],adopt:[],ads:6,advanc:3,advancedcolumnbarchart:[],advancedkpitile_1:[],advertis:[],affect:3,affili:[],after:[3,6,7],again:[],against:6,aggreg:3,alert:6,alia:[],align:[],all:[1,3,6,7],alloc:[],allow:[3,6],alon:0,along:[6,10],alpha:[],alphabet:[],alreadi:[6,8],also:[0,3,6,7],alt:[],altern:[],alwai:6,amber:6,america:[],among:3,amount:[3,7],ampl:[],analys:[3,4],analysi:[0,7,9],analyt:[],analytics_1:[],analyz:[9,10],ang:[],angela:[],angl:[],angular:[],ani:[0,1,3,5,6],anim:[],annual:[],anoth:[1,6,7],anymor:[],anywher:3,api:[],app:[3,4],apparel:[],appdata:[],appear:[3,6],append:7,appli:[3,6,7],applianc:[],applic:1,applica:[],appropri:6,apr:[0,6,7],april:7,arab:[],archit:[],architectur:[],area:[3,6],areachart:[],arial:[],around:3,arrai:[],arrang:[],arrow:[3,6],ascend:6,asedecreas:[],asia:[],ask:3,aspect:3,assgn:[],assign:[0,6,7],assum:3,assumpt:[3,6],asurecolor:[],ata:[],attach:[],attent:3,attribut:[],audio:[],audit:[],aug:7,august:[3,7],authent:[],auto:[],autofit:[],automat:6,autos:[],autosizecolumn:[],avail:[3,6,7],averag:[3,6],avg:[],avoid:[],awai:[],awar:[],awesom:[],axes:[],axi:3,back:[3,6],backgorund:[],background:6,backwar:[],backward:[],bad:6,band:6,bar:[3,6,7],base:[0,3,6,7],baselin:[3,6],basemap1:[],basemap:[],basi:[],basic:[],baslin:[],bbb:[],bcc:[],becaus:[],becom:[3,6],bed:[],been:[0,1,3,5,6,7,8],befor:6,begin:6,beginn:6,behalf:[],behav:[],behavior:[],behind:[],being:[0,3,6,7],beliz:[],belong:[],below:[0,2,3,4,5,6,7,8,10],belt:[],benchmark:[2,6],beneath:[],best:[],beta:[],better:3,between:[1,6],bex:[],beyond:3,bi4client:[],bil:[],bill:[],billion:6,bind:[],bit:[],black:[],blank:[],blind:[],block:[],blog:[3,6],blue:3,blur:[],bodi:[],bold:6,bonni:[],book:1,border:[],both:[0,3,6,7],bottom:3,bound:[],boundari:[],box:6,boxplotchart:[],bracket:[],branch:3,brewer:[],bring:[],broken:[],brown:[],brows:6,browser:[],bubbl:[],bucket:[],budget:[0,3,4,6,7],build:6,bulb:[],bullet:[],busi:[2,4,7],businessobject:[],button:[3,6],button_1:[],button_2:[],button_3:[],button_4:[],byod:[],cab:6,calc:6,calcul:[2,3],calendar:[],call:3,callout:[],camera:[],can:[0,2,3,4,6,7,8],canada:6,cannot:[0,6],canva:[3,8],capabl:3,capac:3,captur:[],car:[],care:[2,4],carri:[],cascad:6,categor:6,categori:[9,10],caution:[],ccc:[],cdn:[],ceil:[],cell:7,center:[],central:[],certain:3,chair:[],chang:[1,2,3,4,6,7],charact:6,characterist:[],charl:[],chart1:[],chart2:[],chart:[3,6],chart_1:[],chart_2:[],check:[3,6],chennai:[],chevron:[],child:[6,7],children:[2,3,6],china:[],choic:[3,6],choos:[3,6],chose:[],chosen:[],circl:[],circular:[],citi:[],classic:[],clcik:[],clear:[],cleric:1,click:[0,3,6,7],client:[],clipboard:[],close:3,closer:[],cloud:[],clue:[],cluster:[],code:[],cofigur:[],collaps:[6,9],collapseal:[],colleagu:[],collect:[0,2,3],colleg:[],color:[3,7],colr:[],column:[0,3,6,7],columnbarchartnew:[],columnbarchartnew_1:[],columnchart1:[],com:[3,6],combin:0,combinationchart:[],combo:[],come:[],comma:6,comment:7,common:[3,6,8,9],compani:[1,3],compar:[0,3,4,7],comparison:[3,6,7],complet:[3,7],complex:3,compon:[3,9],composit:[],compound:3,comput:[],concept:3,conceptu:[2,4],concret:[],concurr:6,condens:[],condit:[],condtion:[],conduct:9,config:[],configur:[3,7],confirm:6,conflict:[],conjunct:3,connec:[],connect:[],connector:6,connectori:[],connectorlin:[],consequ:[],consid:[0,6],consist:3,constant:[3,7],constraint:[6,9],construct:[],consum:3,consumpt:3,contain:[1,3,6],container_14:[],container_1:[],content:[6,9],context:3,contextu:9,contin:[],continu:6,contract:[],contribut:3,control:[],conveni:[],convert:6,coordin:[],copi:[3,6,7],copper:6,copyright:9,corner:[3,7],corpor:[],correl:[],correspond:6,cost:[2,3,6,7],could:[],count:6,counter:[],countri:1,coupl:[],cover:[],coverag:[],creat:[3,7],creation:[],credenti:[],credit:[],criteria:6,critic:3,crop:[],cross:[],crosshair:[],crosstab1:[],crosstab:[],crystal:[],css:[],csv:[],ctrl:[],cture:[],cuid:[],cumul:[3,6],currenc:[],current:[3,4,5,6,7],curser:3,cursor:[],curtab:[],curtain:[],curv:[],custom:[6,8,10],customiz:[],dafault:[],dai:[],dalla:[],dark:6,dash:[],dashboard1:[],dashboard2:[],dashboard3:[],dashboard:[],dashstyl:[],data:[0,7,9],datalabel:[],dataprovider_1:[],dataset:[],datasourc:[],date:[3,4,9],ddd:[],dddd:[],deactiv:[],deal:[],dec:[0,6,7],decemb:[3,7],decid:[6,7],decim:6,decor:6,decreas:6,defect:[],defer:[],defin:[3,7],definit:[3,9],degre:[],delai:[],delet:[3,6,7],delimit:[],delimitt:[],delta:7,demo:[3,6],demodashboard:[],demograph:[],denot:[3,6,8],depart:3,depend:3,depict:[],deploi:[],depth:[],deriv:[2,6],descend:6,describ:3,descript:[3,5,6],descripti:[],deselect:[],deselectal:[],design:[1,3,6],desir:[3,6],desktop:[],destin:[],destroyfilt:[],detail:[0,3,6,7,10],determin:[],develop:[],deviant:6,deviat:[],deviatio:[],devic:[3,5],diagram:3,dial:[],dialog:[],diamet:[],diamond:[],dice:[],did:3,diesel:3,differ:[0,3,6,7,8,10],differentdata:[],differenti:6,digit:[],dimens:6,dimesnion:[],direct:3,directli:[2,3,6,7],disabl:6,disbal:[],discoumt:[],discount:[],discov:[],discuss:[],displac:[],displai:[0,7,9],distanc:[],distance_:[],distinct:[],distribut:[],diverg:[],divid:6,divis:[],doc:[],document:[1,3,5,9],doe:[],doesn:[3,5],doing:[],domain:[],don:3,donald:[],done:[3,6,7,8],donut:[],dot:3,doubl:[6,7],down:[6,7,9],download:[3,6],downward:7,drag:[3,6],draggabl:[],draw:[],drawn:[],drill:9,drilldown:[],drillup:[],driven:[],driver:[2,4,6,8,9],drop:[3,6,7],dropbox:[],dropdown:[],ds_1:[],ds_2:[],dsx:[],dsxaddfacet:[],dsxaddlistitem:[],dsxaddmeasurecalculationconditionalrul:[],dsxaddpag:[],dsxaddpagewithselectedcompon:[],dsxaddsinglemeasureconditionalrul:[],dsxaddtargetvaluecalculationconditionalrul:[],dsxaddtimefram:[],dsxclearallpag:[],dsxclearselect:[],dsxcleartext:[],dsxdeleteconditionalrul:[],dsxeditmeasurecalculationconditionalrul:[],dsxeditsinglemeasureconditionalrul:[],dsxedittargetvaluecalculationconditionalrul:[],dsxenablefiscalyear:[],dsxexportallpageaspdf:[],dsxexportallpageasppt:[],dsxexportasdoc:[],dsxexportaspdf:[],dsxexportasppt:[],dsxexportselectedcompon:[],dsxget:[],dsxgetactiveprofil:[],dsxgetadvancedtext:[],dsxgetalllay:[],dsxgetaspectratio:[],dsxgetattachmenttyp:[],dsxgetaxislabel:[],dsxgetbackgroundcolor:[],dsxgetbardatacustom:[],dsxgetbaselay:[],dsxgetbccmailid:[],dsxgetccmailid:[],dsxgetchartbackgroundcolor:[],dsxgetchartbordercolor:[],dsxgetchartborderwidth:[],dsxgetchartbottommargin:[],dsxgetchartbottompad:[],dsxgetchartleftmargin:[],dsxgetchartleftpad:[],dsxgetchartpan:[],dsxgetchartpankei:[],dsxgetchartpinchtyp:[],dsxgetchartrightmargin:[],dsxgetchartrightpad:[],dsxgetcharttitl:[],dsxgetcharttitleen:[],dsxgetcharttopmargin:[],dsxgetcharttoppad:[],dsxgetcharttyp:[],dsxgetchartvalu:[],dsxgetchartvalueen:[],dsxgetchartwidth:[],dsxgetchartzoomtyp:[],dsxgetcontainerbackgroundcolor:[],dsxgetcontainerbordercolor:[],dsxgetcontextmenuselecteditem:[],dsxgetdashstyl:[],dsxgetdataalign:[],dsxgetdatacolor:[],dsxgetdatafontfamili:[],dsxgetdatafonts:[],dsxgetdatafontweight:[],dsxgetdatalabelen:[],dsxgetdatalabelfontfamili:[],dsxgetdatalabelfonts:[],dsxgetdatalabelfontweight:[],dsxgetdatalabelnoofdecim:[],dsxgetdatalabelprefix:[],dsxgetdatalabelsuffix:[],dsxgetdatalabeltextcolor:[],dsxgetdatapoint:[],dsxgetdataselect:[],dsxgetdataseriesnam:[],dsxgetdatatyp:[],dsxgetdatatypevalu:[],dsxgetdatavalu:[],dsxgetdatavaluecolor:[],dsxgetdateformat:[],dsxgetdecimalsepar:[],dsxgetdecimalseper:[],dsxgetdefaultvalu:[],dsxgetdimens:[],dsxgetdisplaytyp:[],dsxgetdocumentnam:[],dsxgetdrilldownlevel:[],dsxgetdrilldownmemb:[],dsxgetdrilldownmemberkei:[],dsxgetdrilldownmembertext:[],dsxgetdrillupmemb:[],dsxgetdrillupmemberkei:[],dsxgetdrillupmembertext:[],dsxgetedit:[],dsxgetenablecl:[],dsxgetenablenoui:[],dsxgetenabletempl:[],dsxgetendi:[],dsxgetendm:[],dsxgetendrang:[],dsxgetendvalu:[],dsxgetendyear:[],dsxgetevenrowcolor:[],dsxgetfifthdimens:[],dsxgetfifthdimensionarrai:[],dsxgetfillediconcolor:[],dsxgetfirstdimens:[],dsxgetfirstdimensionarrai:[],dsxgetfiscalmonthdisplai:[],dsxgetfiscalstartingmonth:[],dsxgetfiscalstartingyear:[],dsxgetfiscalyeardisplai:[],dsxgetfiscalyearlabel:[],dsxgetfittopag:[],dsxgetfontcolor:[],dsxgetfonts:[],dsxgetfooteralign:[],dsxgetfootercolor:[],dsxgetfooterd:[],dsxgetfooterfontcolor:[],dsxgetfooterfontfamili:[],dsxgetfooterfonts:[],dsxgetfooterfontweight:[],dsxgetfooterpagenumb:[],dsxgetfootertext:[],dsxgetfourthdimens:[],dsxgetfourthdimensionarrai:[],dsxgetgaugemaxvalu:[],dsxgetgaugeminvalu:[],dsxgetgaugeprimarymaxvalu:[],dsxgetgaugeprimaryminvalu:[],dsxgetgaugesecondarymaxvalu:[],dsxgetgaugesecondaryminvalu:[],dsxgetgaugetyp:[],dsxgetgriddata:[],dsxgetheadercolor:[],dsxgetheaderd:[],dsxgetheaderpagenumb:[],dsxgetheadertext:[],dsxgethorizontalzoombuttonalign:[],dsxgeticoncolor:[],dsxgeticonrot:[],dsxgeticons:[],dsxgeticonstaticdata:[],dsxgeticonsymbol:[],dsxgeticonurl:[],dsxgeticonwidth:[],dsxgetindividualscal:[],dsxgetintermediaterang:[],dsxgetislayervis:[],dsxgetismobil:[],dsxgetisportrait:[],dsxgetkpibackgroundcolor:[],dsxgetkpibordercolor:[],dsxgetkpiborderradiu:[],dsxgetkpiborderstyl:[],dsxgetkpiborderwidth:[],dsxgetkpidecimalsepar:[],dsxgetkpifontcolor:[],dsxgetkpifontcolorgoodbad:[],dsxgetkpifontfamili:[],dsxgetkpifonts:[],dsxgetkpiiconcolorgoodbad:[],dsxgetkpiiconrotationgoodbad:[],dsxgetkpiicons:[],dsxgetkpiiconsymbolgoodbad:[],dsxgetkpiincreaseisgood:[],dsxgetkpinoofdecim:[],dsxgetkpipercentincreasedecreas:[],dsxgetkpiprefix:[],dsxgetkpishowscalingfactor:[],dsxgetkpishowunit:[],dsxgetkpistaticdata:[],dsxgetkpisuffix:[],dsxgetkpithousandsepar:[],dsxgetkpititlecolor:[],dsxgetkpititlefontfamili:[],dsxgetkpititlefonts:[],dsxgetkpititlefontweight:[],dsxgetlassoselect:[],dsxgetlay:[],dsxgetleftmargin:[],dsxgetmailbodi:[],dsxgetmailsubject:[],dsxgetmarkerobject:[],dsxgetmaxdataselect:[],dsxgetmaximumvalu:[],dsxgetmaxvalu:[],dsxgetminimumvalu:[],dsxgetminimumwidth:[],dsxgetnonfillediconcolor:[],dsxgetnoofdecim:[],dsxgetnumericdatavalu:[],dsxgetoddrowcolor:[],dsxgetonbehalf:[],dsxgetoperatortyp:[],dsxgetpageorient:[],dsxgetpages:[],dsxgetpanelvis:[],dsxgetplotshadow:[],dsxgetprimarygaugedatavalu:[],dsxgetrespons:[],dsxgetresultarrai:[],dsxgetrowheight:[],dsxgetscaletofit:[],dsxgetsearchedtext:[],dsxgetsearchresultarrai:[],dsxgetsecondarygaugedatavalu:[],dsxgetseconddimens:[],dsxgetseconddimensionarrai:[],dsxgetselectechartdimens:[],dsxgetselectedchart:[],dsxgetselectedchartdimens:[],dsxgetselectedchildrenexternalkei:[],dsxgetselectedchildreninternalkei:[],dsxgetselectedchildrenkei:[],dsxgetselectedchildrentext:[],dsxgetselectedcontain:[],dsxgetselecteddescendantsextern:[],dsxgetselecteddescendantsintern:[],dsxgetselecteddescendantstext:[],dsxgetselecteddimens:[],dsxgetselectedheadervalu:[],dsxgetselectedkei:[],dsxgetselectedlassodataselect:[],dsxgetselectedlassomemb:[],dsxgetselectedlassomemberskei:[],dsxgetselectedlassomemberstext:[],dsxgetselectedmeasur:[],dsxgetselectedmeasureinchart:[],dsxgetselectedmeasurekei:[],dsxgetselectedmeasureskei:[],dsxgetselectedmeasurestext:[],dsxgetselectedmeasuretext:[],dsxgetselectedmemb:[],dsxgetselectedmemberkei:[],dsxgetselectedmemberobject:[],dsxgetselectedmemberobjectarrai:[],dsxgetselectedmembersexternalkei:[],dsxgetselectedmembersinternalkei:[],dsxgetselectedmemberskei:[],dsxgetselectedmemberstext:[],dsxgetselectedmembertext:[],dsxgetselectedmembertextinchart:[],dsxgetselectedmonth:[],dsxgetselectedmontharrai:[],dsxgetselectedparentexternalkei:[],dsxgetselectedparentinternalkei:[],dsxgetselectedparentkei:[],dsxgetselectedparenttext:[],dsxgetselectedpoint:[],dsxgetselectedquart:[],dsxgetselectedquarterarrai:[],dsxgetselectedrangecolor:[],dsxgetselectedshap:[],dsxgetselectedtext:[],dsxgetselectedvalu:[],dsxgetselectedvaluearr:[],dsxgetselectedvaluefloat:[],dsxgetselectedvalueindateformat:[],dsxgetselectedvalueindateformatar:[],dsxgetselectedvalueint:[],dsxgetselectedvaluesfloat:[],dsxgetselectedyear:[],dsxgetselectedyeararrai:[],dsxgetseletedquart:[],dsxgetserverurl:[],dsxgetsetnodechildreninternalkei:[],dsxgetsetnodechildrenkei:[],dsxgetsetnodechildrentext:[],dsxgetsixthdimens:[],dsxgetsixthdimensionarrai:[],dsxgetsorttyp:[],dsxgetsparklinebulletcomparisonm:[],dsxgetsparklinebulletperformancem:[],dsxgetsparklinebulletqualitativ:[],dsxgetsparklinebulletqualitativem:[],dsxgetsparklinechartcolor:[],dsxgetsparklinecharttyp:[],dsxgetsparklinelosscolor:[],dsxgetsparklinewincolor:[],dsxgetstackedvalu:[],dsxgetstarti:[],dsxgetstartm:[],dsxgetstartrang:[],dsxgetstartvalu:[],dsxgetstartyear:[],dsxgetstatusindicatorcalculationo:[],dsxgetstatusindicatorcallout:[],dsxgetstatusindicatorcallouts:[],dsxgetstatusindicatorcallouttop:[],dsxgetstatusindicatorcolor:[],dsxgetstatusindicatordatasourc:[],dsxgetstatusindicatoren:[],dsxgetstatusindicatorpercentincr:[],dsxgetstatusindicatorresulttyp:[],dsxgetstatusindicatorsymbol:[],dsxgetstatusindicatorsymbolcolor:[],dsxgetstatusindicatorsymbolrotati:[],dsxgetstatusindicatorsymbols:[],dsxgetstatusindicatorsymboltop:[],dsxgetstatusindicatorvaluedynam:[],dsxgetstatusindicatorvaluestat:[],dsxgetstatusindicatorvaluetyp:[],dsxgetstatusindicatorwidth:[],dsxgetsubfooterfontcolor:[],dsxgetsubfooterfontfamili:[],dsxgetsubfooterfonts:[],dsxgetsubfootertext:[],dsxgetsubtitlealign:[],dsxgetsubtitlecolor:[],dsxgetsubtitlefontcolor:[],dsxgetsubtitlefontfamili:[],dsxgetsubtitlefonts:[],dsxgetsubtitlefontweight:[],dsxgetsubtitletext:[],dsxgetsuffixalign:[],dsxgetsuffixcolor:[],dsxgetsuffixfontfamili:[],dsxgetsuffixfonts:[],dsxgetsuffixfontweight:[],dsxgettemplateppt:[],dsxgettext:[],dsxgettextcolor:[],dsxgettextplacehold:[],dsxgettextplaceholder1:[],dsxgetthirddimens:[],dsxgetthirddimensionarrai:[],dsxgetthousandsepar:[],dsxgetthousandseper:[],dsxgettitlealign:[],dsxgettitlecolor:[],dsxgettitlefontcolor:[],dsxgettitlefontfamili:[],dsxgettitlefonts:[],dsxgettitlefontweight:[],dsxgettitletext:[],dsxgettomailid:[],dsxgettooltipen:[],dsxgettopmargin:[],dsxgetvalueaxis1labelen:[],dsxgetvalueaxis1labelprefix:[],dsxgetvalueaxis1labelsuffix:[],dsxgetvalueaxis1titleen:[],dsxgetvalueaxis1titletext:[],dsxgetvalueaxis2labelen:[],dsxgetvalueaxis2labelprefix:[],dsxgetvalueaxis2labelsuffix:[],dsxgetvalueaxis2titleen:[],dsxgetvalueaxis2titletext:[],dsxgetvalueaxismajortickinterv:[],dsxgetvalueaxisminortickinterv:[],dsxgetvalueaxistitletext:[],dsxgetvaluetyp:[],dsxgetverticalzoombuttonalign:[],dsxgetvis:[],dsxgetxaxislabelprefix:[],dsxgetxaxislabelsuffix:[],dsxgetxaxisplotbandcolor:[],dsxgetxaxisplotbanden:[],dsxgetxaxisplotbandfrom:[],dsxgetxaxisplotbandto:[],dsxgetxaxisplotlinecolor:[],dsxgetxaxisplotlineen:[],dsxgetxaxisplotlinevalu:[],dsxgetxaxistitletext:[],dsxgetyaxis2labelprefix:[],dsxgetyaxis2labelsuffix:[],dsxgetyaxis2maximum:[],dsxgetyaxis2minimum:[],dsxgetyaxis2plotbandcolor:[],dsxgetyaxis2plotbanden:[],dsxgetyaxis2plotbandfrom:[],dsxgetyaxis2plotbandto:[],dsxgetyaxis2plotlinecolor:[],dsxgetyaxis2plotlineen:[],dsxgetyaxis2plotlinevalu:[],dsxgetyaxis2titletext:[],dsxgetyaxisceil:[],dsxgetyaxisfloor:[],dsxgetyaxislabelprefix:[],dsxgetyaxislabelsuffix:[],dsxgetyaxismax:[],dsxgetyaxismin:[],dsxgetyaxisminortickinterv:[],dsxgetyaxisplotbandcolor:[],dsxgetyaxisplotbanden:[],dsxgetyaxisplotbandfrom:[],dsxgetyaxisplotbandto:[],dsxgetyaxisplotlinecolor:[],dsxgetyaxisplotlineen:[],dsxgetyaxisplotlinevalu:[],dsxgetyaxistickinterv:[],dsxgetyaxistitletext:[],dsxgetyaxistooltipvalueprefix:[],dsxgetyaxistooltipvaluesuffix:[],dsxgetzoombuttonbackgroundcolor:[],dsxgetzoombuttonhoverbackgroundco:[],dsxgetzoombuttonhovertextcolor:[],dsxgetzoombuttonradiu:[],dsxgetzoombuttontextcolor:[],dsxgetzoomlevel:[],dsxgetzoomselectionareabackground:[],dsxhidelay:[],dsxhideload:[],dsxhidemeasur:[],dsxhideseri:[],dsxiscontrolcharttypebyselector:[],dsxisfiscalyearen:[],dsxonchang:[],dsxonclick:[],dsxonent:[],dsxonselect:[],dsxplotbandreset:[],dsxremovefacet:[],dsxremovelassoselect:[],dsxsendmail:[],dsxsetactiveprofil:[],dsxsetadvancedtext:[],dsxsetaspectratio:[],dsxsetattachmenttyp:[],dsxsetaxistyp:[],dsxsetbackgroundcolor:[],dsxsetbardatacustom:[],dsxsetbaselay:[],dsxsetbccmailid:[],dsxsetbubblemeasur:[],dsxsetccmailid:[],dsxsetchartbackgroundcolor:[],dsxsetchartbordercolor:[],dsxsetchartborderwidth:[],dsxsetchartbottommargin:[],dsxsetchartbottompad:[],dsxsetchartcolor:[],dsxsetchartcontainertyp:[],dsxsetchartleftmargin:[],dsxsetchartleftpad:[],dsxsetchartorient:[],dsxsetchartpan:[],dsxsetchartpankei:[],dsxsetchartpinchtyp:[],dsxsetchartrightmargin:[],dsxsetchartrightpad:[],dsxsetcharttitl:[],dsxsetcharttitleen:[],dsxsetcharttopmargin:[],dsxsetcharttoppad:[],dsxsetcharttyp:[],dsxsetchartvalu:[],dsxsetchartvalueen:[],dsxsetchartwidth:[],dsxsetchartzoomtyp:[],dsxsetcod:[],dsxsetcolumnlimit:[],dsxsetcolumnvis:[],dsxsetcontainerbackgroundcolor:[],dsxsetcontainerbordercolor:[],dsxsetcontrolcharttypebyselector:[],dsxsetdai:[],dsxsetdashstyl:[],dsxsetdataalign:[],dsxsetdatacolor:[],dsxsetdatafloatvalu:[],dsxsetdatafontfamili:[],dsxsetdatafonts:[],dsxsetdatafontweight:[],dsxsetdataintvalu:[],dsxsetdatalabelen:[],dsxsetdatalabelfontfamili:[],dsxsetdatalabelfonts:[],dsxsetdatalabelfontweight:[],dsxsetdatalabelnoofdecim:[],dsxsetdatalabelprefix:[],dsxsetdatalabelsuffix:[],dsxsetdatalabeltextcolor:[],dsxsetdatapoint:[],dsxsetdataselect:[],dsxsetdataseriesnam:[],dsxsetdatatyp:[],dsxsetdatatypevalu:[],dsxsetdatautil:[],dsxsetdatautilitybyindex:[],dsxsetdatavalu:[],dsxsetdatavaluecolor:[],dsxsetdatavaluefillcolor:[],dsxsetdateformat:[],dsxsetdecimalsepar:[],dsxsetdecimalseper:[],dsxsetdefaultvalu:[],dsxsetdelimitt:[],dsxsetdimens:[],dsxsetdimensionfilterrul:[],dsxsetdisplaytyp:[],dsxsetdocumentnam:[],dsxsetdomain:[],dsxsetdomainrang:[],dsxsetedit:[],dsxsetel:[],dsxsetemptycolor:[],dsxsetenablecl:[],dsxsetenablenoui:[],dsxsetenablesearch:[],dsxsetenabletempl:[],dsxsetenablezoomrang:[],dsxsetendi:[],dsxsetendm:[],dsxsetendrang:[],dsxsetendvalu:[],dsxsetendyear:[],dsxsetevenrowcolor:[],dsxsetexpandlevel:[],dsxsetexportedfilenam:[],dsxsetfacetcontroltyp:[],dsxsetfacetdisplai:[],dsxsetfacetwidth:[],dsxsetfacetwidthinpixel:[],dsxsetfillediconcolor:[],dsxsetfiscalmonthdisplai:[],dsxsetfiscalstartingmonth:[],dsxsetfiscalstartingyear:[],dsxsetfiscalyeardisplai:[],dsxsetfiscalyearlabel:[],dsxsetfittopag:[],dsxsetfontcolor:[],dsxsetfonts:[],dsxsetfooteralign:[],dsxsetfootercolor:[],dsxsetfooterd:[],dsxsetfooterfontcolor:[],dsxsetfooterfontfamili:[],dsxsetfooterfonts:[],dsxsetfooterfontweight:[],dsxsetfooterpagenumb:[],dsxsetfooterstatictext:[],dsxsetfootertext:[],dsxsetgaugemaxvalu:[],dsxsetgaugeminvalu:[],dsxsetgaugeprimarymaxvalu:[],dsxsetgaugeprimaryminvalu:[],dsxsetgaugesecondarymaxvalu:[],dsxsetgaugesecondaryminvalu:[],dsxsetgaugetyp:[],dsxsetgriddata:[],dsxsetheadercolor:[],dsxsetheaderd:[],dsxsetheaderpagenumb:[],dsxsetheadertext:[],dsxsethiddencolumnbyindex:[],dsxsethierarchydimensionkei:[],dsxsethierarchydimensiontext:[],dsxsethorizontalscrollbaren:[],dsxsethorizontalzoombuttonalign:[],dsxsethtmlcod:[],dsxseticoncolor:[],dsxseticondynamicdata:[],dsxseticonrot:[],dsxseticons:[],dsxseticonstaticdata:[],dsxseticonsymbol:[],dsxseticonurl:[],dsxsetindividualscal:[],dsxsetinitiallatitud:[],dsxsetinitiallongitud:[],dsxsetintermediaterang:[],dsxsetitemmemb:[],dsxsetkpibackgroundcolor:[],dsxsetkpibordercolor:[],dsxsetkpiborderradiu:[],dsxsetkpiborderstyl:[],dsxsetkpiborderwidth:[],dsxsetkpicalculationdata:[],dsxsetkpidecimalsepar:[],dsxsetkpidynamicdata:[],dsxsetkpifontcolor:[],dsxsetkpifontcolorgoodbad:[],dsxsetkpifontfamili:[],dsxsetkpifonts:[],dsxsetkpiiconcolorgoodbad:[],dsxsetkpiiconrotationgoodbad:[],dsxsetkpiicons:[],dsxsetkpiiconsymbolgoodbad:[],dsxsetkpiincreaseisgood:[],dsxsetkpinoofdecim:[],dsxsetkpipercentincreasedecreas:[],dsxsetkpiprefix:[],dsxsetkpishowscalingfactor:[],dsxsetkpishowunit:[],dsxsetkpistaticdata:[],dsxsetkpisuffix:[],dsxsetkpithousandsepar:[],dsxsetkpititlecolor:[],dsxsetkpititlefontfamili:[],dsxsetkpititlefonts:[],dsxsetkpititlefontweight:[],dsxsetleftmargin:[],dsxsetloadingind:[],dsxsetloadingindicatortext:[],dsxsetmailbodi:[],dsxsetmailsubject:[],dsxsetmapposit:[],dsxsetmaxd:[],dsxsetmaxdataselect:[],dsxsetmaxfloatvalu:[],dsxsetmaximumvalu:[],dsxsetmaximumvaluefloat:[],dsxsetmaxintvalu:[],dsxsetmaxvalu:[],dsxsetmeasur:[],dsxsetmeasureaxisindex:[],dsxsetmind:[],dsxsetminimumvalu:[],dsxsetminimumwidth:[],dsxsetmonth:[],dsxsetmonthyeardateformat:[],dsxsetnonfillediconcolor:[],dsxsetnoofdecim:[],dsxsetnumericdatavalu:[],dsxsetoddrowcolor:[],dsxsetonbehalf:[],dsxsetpageorient:[],dsxsetpages:[],dsxsetpanelheight:[],dsxsetpanelvis:[],dsxsetpanelwidth:[],dsxsetperiodrang:[],dsxsetplotbackgroundcolor:[],dsxsetplotbandvalu:[],dsxsetplotbandvaluejson:[],dsxsetplotshadow:[],dsxsetprevnextstep:[],dsxsetprimarygaugedatavalu:[],dsxsetprimarygaugedynamicdatavalu:[],dsxsetqualitativerang:[],dsxsetqualitativerangeconfigurati:[],dsxsetquart:[],dsxsetquarteryeardateformat:[],dsxsetrespons:[],dsxsetrowheight:[],dsxsetrowlimit:[],dsxsetruntimedimensionhierarchi:[],dsxsetscaletofit:[],dsxsetsecondarygaugedatavalu:[],dsxsetsecondarygaugedynamicdatavalu:[],dsxsetselectedcontain:[],dsxsetselectedkei:[],dsxsetselectedmeasur:[],dsxsetselectedrangecolor:[],dsxsetselectedtext:[],dsxsetselectedvalu:[],dsxsetserverurl:[],dsxsetsliderdatedisplayformat:[],dsxsetsliderdateinputformat:[],dsxsetsliderdatereturnformat:[],dsxsetsparklinebulletcomparisonm:[],dsxsetsparklinebulletperformancem:[],dsxsetsparklinebulletqualitativ:[],dsxsetsparklinebulletqualitativem:[],dsxsetsparklinechartcolor:[],dsxsetsparklinechartdata:[],dsxsetsparklinecharttyp:[],dsxsetsparklinelosscolor:[],dsxsetsparklinewincolor:[],dsxsetstackedvalu:[],dsxsetstartd:[],dsxsetstarti:[],dsxsetstartm:[],dsxsetstartrang:[],dsxsetstartvalu:[],dsxsetstartyear:[],dsxsetstatusindicatorcallout:[],dsxsetstatusindicatorcallouts:[],dsxsetstatusindicatorcallouttop:[],dsxsetstatusindicatorcolor:[],dsxsetstatusindicatordatasourc:[],dsxsetstatusindicatoren:[],dsxsetstatusindicatorsymbol:[],dsxsetstatusindicatorsymbolcolor:[],dsxsetstatusindicatorsymbolrotati:[],dsxsetstatusindicatorsymbols:[],dsxsetstatusindicatorsymboltop:[],dsxsetstatusindicatorvaluecalcula:[],dsxsetstatusindicatorvaluedynam:[],dsxsetstatusindicatorvaluestat:[],dsxsetstatusindicatorwidth:[],dsxsetsubdomain:[],dsxsetsubfooterfontcolor:[],dsxsetsubfooterfontfamili:[],dsxsetsubfooterfonts:[],dsxsetsubfooterstatictext:[],dsxsetsubtitlealign:[],dsxsetsubtitlecolor:[],dsxsetsubtitleen:[],dsxsetsubtitlefontcolor:[],dsxsetsubtitlefontfamili:[],dsxsetsubtitlefonts:[],dsxsetsubtitlefontweight:[],dsxsetsubtitlestatictext:[],dsxsetsubtitletext:[],dsxsetsuffixalign:[],dsxsetsuffixcolor:[],dsxsetsuffixfontfamili:[],dsxsetsuffixfonts:[],dsxsetsuffixfontweight:[],dsxsettableapi:[],dsxsettemplateppt:[],dsxsettext:[],dsxsettextcolor:[],dsxsettextplacehold:[],dsxsettextplaceholder1:[],dsxsetthousandsepar:[],dsxsettimeperiod:[],dsxsettitlealign:[],dsxsettitlecolor:[],dsxsettitleen:[],dsxsettitlefontcolor:[],dsxsettitlefontfamili:[],dsxsettitlefonts:[],dsxsettitlefontweight:[],dsxsettitlestatictext:[],dsxsettitletext:[],dsxsettomailid:[],dsxsettooltipen:[],dsxsettooltipnoofdecim:[],dsxsettooltipvalueprefix:[],dsxsettooltipvaluesuffix:[],dsxsettopmargin:[],dsxsettotalvaluefillcolor:[],dsxsettyp:[],dsxsetvalueaxis1labelen:[],dsxsetvalueaxis1labelprefix:[],dsxsetvalueaxis1labelsuffix:[],dsxsetvalueaxis1titleen:[],dsxsetvalueaxis1titletext:[],dsxsetvalueaxis2labelen:[],dsxsetvalueaxis2labelprefix:[],dsxsetvalueaxis2labelsuffix:[],dsxsetvalueaxis2titleen:[],dsxsetvalueaxis2titletext:[],dsxsetvalueaxislabelprefix:[],dsxsetvalueaxislabelsuffix:[],dsxsetvalueaxismajortickinterv:[],dsxsetvalueaxisminortickinterv:[],dsxsetvalueaxistitletext:[],dsxsetvaluetyp:[],dsxsetverticalscrollbaren:[],dsxsetverticalzoombuttonalign:[],dsxsetviewnam:[],dsxsetvis:[],dsxsetweek:[],dsxsetweekstart:[],dsxsetxaxisboxlabelen:[],dsxsetxaxislabelen:[],dsxsetxaxislabelprefix:[],dsxsetxaxislabelsuffix:[],dsxsetxaxisplotband:[],dsxsetxaxisplotbandcolor:[],dsxsetxaxisplotbanden:[],dsxsetxaxisplotbandfrom:[],dsxsetxaxisplotbandto:[],dsxsetxaxisplotlin:[],dsxsetxaxisplotlinecolor:[],dsxsetxaxisplotlineen:[],dsxsetxaxisplotlinevalu:[],dsxsetxaxistitleen:[],dsxsetxaxistitletext:[],dsxsetyaxis2labelen:[],dsxsetyaxis2labelprefix:[],dsxsetyaxis2labelsuffix:[],dsxsetyaxis2maximum:[],dsxsetyaxis2minimum:[],dsxsetyaxis2plotbandcolor:[],dsxsetyaxis2plotbanden:[],dsxsetyaxis2plotbandfrom:[],dsxsetyaxis2plotbandto:[],dsxsetyaxis2plotlinecolor:[],dsxsetyaxis2plotlineen:[],dsxsetyaxis2plotlinevalu:[],dsxsetyaxis2titleen:[],dsxsetyaxis2titletext:[],dsxsetyaxisfloor:[],dsxsetyaxislabelen:[],dsxsetyaxislabelprefix:[],dsxsetyaxislabelsuffix:[],dsxsetyaxismaximum:[],dsxsetyaxisminimum:[],dsxsetyaxisminortickinterv:[],dsxsetyaxisplotband:[],dsxsetyaxisplotbandcolor:[],dsxsetyaxisplotbanden:[],dsxsetyaxisplotbandfrom:[],dsxsetyaxisplotbandto:[],dsxsetyaxisplotlin:[],dsxsetyaxisplotlinecolor:[],dsxsetyaxisplotlineen:[],dsxsetyaxisplotlinevalu:[],dsxsetyaxistickinterv:[],dsxsetyaxistitleen:[],dsxsetyaxistitletext:[],dsxsetyaxistooltipvalueprefix:[],dsxsetyaxistooltipvaluesuffix:[],dsxsetyear:[],dsxsetzoombuttonbackgroundcolor:[],dsxsetzoombuttonhoverbackgroundco:[],dsxsetzoombuttonhovertextcolor:[],dsxsetzoombuttonradiu:[],dsxsetzoombuttontextcolor:[],dsxsetzoominvalu:[],dsxsetzoomlevel:[],dsxsetzoomoutvalu:[],dsxsetzoomrangemaxvalu:[],dsxsetzoomrangeminvalu:[],dsxsetzoomselectionareabackground:[],dsxshowlay:[],dsxshowload:[],dsxshowmeasur:[],dsxshowseri:[],dsxtogglekpitilesid:[],dual:[],dualaxeschart:[],duplic:[],durat:[],dure:6,dwm:[],dxsgetresultarrai:[],dynam:3,e8a84b037d9547d3995c31445e21aa97:[],each:[3,6,8],earl:[],easi:[],easili:[],easurecolor:[],edg:[],edit:[3,6],editor:[3,9],eee:[],effect:6,effici:4,effort:1,eginn:6,either:3,electr:[],electron:1,element:6,ellipt:[],els:3,elsewher:[],email:[],embed:[],employe:[],empti:[6,7],enabl:[5,6,7],end:[3,6,7],eneabl:[],energi:[],enforc:[],english:[],enhanc:[],ensur:[1,5],enter:[6,7],entir:[3,6,7],entri:6,environ:[],epx:[],equal:7,equat:3,equip:[],equival:3,error:1,especi:[],esri:[],essenti:[],establish:[],etc:3,evalu:[],even:5,event:[],eventhough:[],everi:[1,3],exact:[],exactli:6,examp:[],exampl:[0,3,6,7],excel:3,except:6,exchang:[],exclud:[],execut:[],exist:[3,6,7],exit:6,expand:[6,7,9],expandal:[],expect:[],expens:[],experienc:[],experiment:[],expert:[],explain:[0,6,7,8],explor:6,exponenti:[],exportdataascsv:[],exportdataasexcel:[],expos:6,express:[1,3],exprofil:[],extend:6,extens:[],extent:[],extern:[],extra:[],extract:3,facet:[],fact:[],factor:3,fall:[0,6],fals:[],famili:[],far:[],fashion:[],fast:3,faster:[],favor:[3,6],fax:[],fcst:7,feasibl:[],featur:[6,8,9],feb:[0,6],februari:[],feel:[],fetch:[],few:[],ff0000:[],fgure:[],field:[6,7,10],figr:[],figur:[0,3,6,7,8,10],file:3,filenam:[],fill:[],filter:[0,6,9],filtershow:[],financ:6,find:[3,6],finger:[],finish:[],finishfinish:[],finishstart:[],fiori:[],first:[0,3,6],fiscal:6,fit:[],five:6,fix:3,fixedcolumnchart:[],flexibl:[],flip:[],floor:[],florida:[],flow:6,focu:3,focus:3,folder:[],follow:[0,3,6],font:[3,6],fontawesom:[],food:[],footbal:[],footer:6,forc:[],foreach:[],forecast:[0,3,4,6,7],foreign:1,form:[1,6],format:[1,3,7],formula:[3,6],forward:[],fotr:[],found:[],four:10,fourth:[],franc:[],freeli:[],fresh:[],fridai:[],from:[0,3,7,10],front:[],fuel:3,full:[3,6,7,9],funnel:[],further:[3,6,7],futur:[3,6],gain:3,ganesh:[],gantt:[],gap:[],gaug:[],gender:[],gener:[2,8,9],geograph:[],geojson_layer1:[],geomap:[],germani:[],gestur:[],get:[6,7,9],getelementbyid:[],getreportblock:[],getselectedtabindex:[],gimag:[],give:[],given:[3,6],global:6,globe:[],going:[3,4],good:6,googl:[],gpu:[],gradient:[],grain:3,granular:[],graph:6,graphic:[],greater:6,green:[3,6],grei:3,grid:[0,6],gridbox_1:[],gross:6,ground:[],group:[],groupstackedcolumnbarchart:[],growth:[3,6],guid:[3,9],guidelin:[],gutter:[],hair:[],half:[3,9],hana:[],hand:3,handl:[],handwrit:[],happen:7,has:[0,1,3,5,6,7,8,10],have:[0,3,6,7],head:[],header:6,health:[],heat:[],heatmap:[],heatmapchart:[],hebraic:[],height:[],held:1,help:[6,7,9],henc:6,here:[3,6,7],herein:1,hexbin:[],hidden:6,hide:[3,6],hierarch:[],hierarchi:[2,3,6],hierarchialfilter_1:[],hierarchicalfilter1:[],high:[],higher:3,highest:[],highght:[],highlight:[3,6,7],hint:6,histori:9,hit:3,hold:3,hollow:[],home:[],horizon:[],horizont:6,host:[],hour:[3,6],hourglass:[],hover:[3,6],how:[3,6,7],howev:3,html:[],http:[3,6],huge:7,hyperlink:[],icon:[3,6,7],ident:[],identifi:[3,6],idocid:[],ids:6,ignor:[],illustr:7,imag:[],image100:[],image101:[],image102:[],image103:[],image104:[],image105:[],image106:[],image107:[],image108:[],image109:[],image10:[],image110:[],image111:[],image112:[],image113:[],image114:[],image115:[],image116:[],image117:[],image118:[],image119:[],image11:[],image120:[],image121:[],image122:[],image123:[],image124:[],image125:[],image126:[],image127:[],image128:[],image129:[],image12:[],image130:[],image131:[],image132:[],image133:[],image134:[],image135:[],image136:[],image137:[],image138:[],image139:[],image13:[],image140:[],image141:[],image142:[],image143:[],image144:[],image145:[],image146:[],image147:[],image148:[],image14:[],image15:[],image16:[],image17:[],image18:[],image19:[],image20:[],image22:[],image23:[],image27:[],image28:[],image29:[],image2:[],image30:[],image32:[],image33:[],image34:[],image35:[],image36:[],image37:[],image38:[],image39:[],image40:[],image41:[],image44:[],image45:[],image46:[],image48:[],image4:[],image51:[],image52:[],image53:[],image54:[],image55:[],image56:[],image57:[],image58:[],image59:[],image60:[],image61:[],image62:[],image63:[],image64:[],image66:[],image67:[],image68:[],image69:[],image70:[],image71:[],image72:[],image73:[],image74:[],image75:[],image76:[],image77:[],image78:[],image79:[],image7:[],image80:[],image82:[],image83:[],image84:[],image85:[],image86:[],image87:[],image88:[],image89:[],image8:[],image90:[],image91:[],image92:[],image93:[],image94:[],image95:[],image96:[],image97:[],image98:[],image99:[],image9:[],immedi:[2,3],impact:[3,7],implement:3,impli:[],impress:[],improv:3,inc:1,includ:[0,1,3,6],incom:6,incorpor:[],incorrect:[],increas:[3,6,7],increment:[],independ:[],index:[],india:[],indic:[3,6,7],individu:[0,3],indoor:[],industri:6,influenc:[2,4],infoobject:[],infoprovid:[],inform:[2,6,9],inherit:6,inish:[],initi:6,inlin:[],inner:[],innerhtml:[],inplac:[],input:[6,9,10],insert:[],insid:[],instal:[],instanc:3,instead:3,instruct:[6,9],intact:[],integ:[],integr:[],intellig:[],intens:[],interact:[],interest:6,interfac:5,intermedi:[],intern:1,interna:[],internet:[],interpol:[],intersect:[],interv:3,intervaltyp:[],introduct:9,intuit:[],invest:6,involv:4,ipad:3,iphon:3,iport:[],irrespect:7,issu:9,item:[3,6],its:[1,6],itself:[],jack:[],jame:[],jan:[0,3,6,7],januari:[],java:[],javascript:[],jeremi:[],jpeg:[],json:6,judi:[],jul:0,juli:4,jump:3,jun:0,june:[],just:3,justin:[],k2000:[],k2001:[],k2002:[],k2003:[],k2004:[],k2005:[],k2006:[],keep:3,kei:[2,6,9],kevin:[],kimber:[],kimberlei:[],king:[],kitchen:[],know:3,known:9,kpi:[2,4,6,9],label:3,labor:[],land:[],landscap:[],languag:1,laptop:[],larg:3,larger:[],larri:[],lasso:[],last:[3,6],later:[],latest:[3,6],latitud:[],launch:[],launchpad:[],laura:[],law:1,layer:[],layernam:[],layout:[],lazi:[],lead:[],leaf:[],least:[3,6],leav:0,left:[3,6,8],legal:[],legend:3,length:[],less:[],lesser:[],let:3,letter:6,level:[2,3,6,7,8],leverag:4,licenc:[],licens:[],lie:6,light:6,like:[1,3,6],limit:[3,9],line:[3,6,7],linear:[],linechart1:[],linechart:[],linechart_1:[],link:[2,3,4,6],list:[3,5,6,7,10],literatur:[],litr:3,littl:3,live:[],load:[6,7],local:[],locat:[3,6],lock:[3,6,7],loess:[],log:[],logarithm:[],logic:[],logo:1,logon:[],longitud:[],look:[3,7],lor:[],loss:3,lost:[],lot:[],lower:[],lowest:[],lumira:[],lym:[],lyq:[],m10:[],m11:[],m12:[],machin:[],made:[1,3],mai:[1,3,4,6],mail:[],main:[3,6,7],mainatain:[],maintain:6,major:4,make:3,manag:[2,4],mandatori:6,mani:3,manner:3,manual:[1,3,6],map:[3,6],mar:[0,6,7],march:6,margin:[],marimekko:[],marin:[],mark:[],maroon:[],match:6,materi:[1,3],mathemat:[2,4],matrix:[],matter:[],max:[],maximum:[3,6],mean:[1,3,6],meant:4,measu:[],measur:6,mechan:1,median:[],medium:6,meet:[],member:6,ment:[],mention:[0,1],menu:[3,6],merg:[],messag:6,met:[],meta:[],metadata:[],method:[3,7],metric:[3,6],meu:[],michal:[],microsoft:[2,3,4,6],middl:3,might:[],mike:[],mileston:[],mill:3,million:6,millisecond:[],min:[],mind:[],mine:[3,6],miniatur:[],minim:[3,6],minimap:[],minimum:6,minor:4,minu:[],minut:[],miscellan:[],miss:[],misunderstand:[],mmm:[],mmmm:[],mobil:[],mode:[3,6,7],model:[2,4,7,9,10],modifi:[],modul:[],mon:[],mondai:[],monospac:[],month:[0,3,6,7],monthli:[3,9],moor:[],more:[1,6,9],most:[3,7],mountain:[],mous:3,move:[3,7],movecolumn:[],movecolumnbyindex:[],movement:[],movi:[],mtd:[],mth:[],much:3,multi:[],multilevel:[],multilin:[],multipl:[3,7],multipleaxeschart:[],multipli:6,multiscreen:[],multiselect:[],multiyear:3,music:[],must:1,mutiselect:[],name:[1,3,6,7,10],narrow:[],nativ:[],natur:3,navig:[3,8],neag:[],necessari:[],necessarili:3,need:[6,7],neg:[3,6],neither:6,net:[3,6],network:3,newli:7,next:6,nine:[],node:[2,8,9],non:[],none:6,nor:6,normal:6,note:[0,3,6],noth:3,notic:1,novemb:3,now:[0,3,6,7],nth:[],number:[0,3,7],numer:[],oauth:[],object:[],observ:[0,3,6],occur:[],occurr:[],oct:0,odata:[],odd:[],off:[],offer:[3,4],offic:[],offset:[],often:[2,3],olap:[],olymp:[],onbehalf:[],onc:[3,7],onclick:[],ondrilldown:[],ondrillup:[],one:[1,2,3,6],onent:[],onli:[3,7],onlin:5,ons:[],onselect:[],onto:[],onward:[3,7],opac:[],open:[7,9],openstreet:[],oper:[2,3,4,6],operand:[],operatornam:[],opportun:3,opposit:[],option:[0,3,6,7,8,10],orang:3,order:[6,7],organ:[],orient:[],origin:3,osm:[],other:[1,3,6,9],otherwis:[],ough:[],our:[0,3,6,7],out:3,outcom:[],outer:[],outlier:[],outlin:[],outsid:6,oval:[],over:3,overal:3,overcapac:3,overlap:[],overload:[],overrid:[],overview:[],overwhelm:[],overwrit:[3,6,7],overwritten:3,own:6,owner:1,ownership:1,packag:[],pad:[],page:[3,6],pagin:[],pai:3,pair:6,pallet:[],pan:9,pane:[3,6],panel:[3,7,8,10],paper:[],parallel:3,paramet:6,parent:[2,6,7],parregion:[],pars:[],part:[1,3,6,7],parti:1,partial:[],particular:[3,6],particularli:3,pass:[],password:[],past:[3,6],patch:4,patent:9,path:[],pattern:[],paul:[],pct:[3,6],pdf:6,pen:3,pencil:3,pend:1,per:[3,6],perat:[],percent:[],percentag:[3,7],perfect:[],perform:[0,3],period:[0,6,7,9],period_mon:6,permiss:1,person:6,peter:[],phase:[],phone:[],physic:3,pick:[],pictogram:[],pictur:[],pie:[],piechart_1:[],pin:[],pinch:[3,5],pink:7,pivot:[],pivotmod:[],pixel:[],place:6,placehold:[],placement:[],plan:[3,6,9,10],plann:[],plano:[],platform:[],pleas:6,plot:[],plu:[],png:[],point:[3,5],pointer:[],polar:[],polarchart:[],polit:[],poor:6,pop:[3,6,7],popul:[],popup:6,port:[],portion:[],portrait:[],posit:3,possess:[],possibl:3,post:3,postal:[],potenti:[],power:[2,3,6],powerpoint:[],ppt:[],pptx:[],pre:[],prebuilt:[],precis:[],predefin:[],prefer:[],prefix:6,prepopul:[],present:[],preserv:[],press:[],preview:6,previou:[],previous:3,price:[3,4,6],primar:[],primari:[3,6,7],print:1,prior:6,probabl:[],proce:6,procedur:[],process:3,product:[1,2,3,6],proerti:[],profit:[3,6],progr:[],progress:[],project:6,promot:[],prompt:6,properti:[1,3],proport:[],proprietari:1,protect:1,protocol:[],provid:[3,6,7],provis:1,proxim:[],publish:[],purchas:[],purpl:[],purpos:[1,3],pyramid:[],qqq:[],qqqq:[],qtd:[],qualifi:[],qualit:[],qualiti:[],quantil:[],quantit:[],quantiti:[],quantiz:[],quarter:9,quartil:[],queri:6,query1:[],query2:[],quick:3,quickli:[],quit:[],radar:[],radarchart:[],radial:[],radio:[],radiu:[],rai:[],randi:[],rang:6,rangeslider_1:[],rate:3,ratio:6,raw:[],reach:[],react:[],read:9,readabl:[],readili:[],real:[3,4],realis:6,realiti:3,reason:3,reassign:[],recalcul:3,receiv:[],recent:6,recipi:[],recommend:[],reconfigur:[],record:[0,1],recov:[],rectangl:[],rectangular:[],red:[3,6],redirect:3,redraw:[],redrawn:[],reduc:[],reduct:[],ref:[],refer:[2,3,6],referenc:6,reflect:[5,6],refresh:[],regard:[],region:[],regist:1,registr:[],regular:[],reimport:6,rel:[],relat:[2,3],relationship:4,releas:[3,4,6,7],relev:[],remain:[3,6,7],remov:[],renam:7,render:6,rent:7,reorder:[3,6],repeat:[],replac:6,replic:3,report:3,repositori:[],repres:[3,6,7,8],represent:[],reproduc:1,request:[],requir:[0,3,6,7],rerout:[],resembl:[],reserv:1,reset:[3,7],resiz:[],resolut:[],resourc:[],respect:[1,3],respond:[],respons:1,rest:0,restart:[],restor:7,restrict:[],result:[3,6,7],resultset:[],retail:[],retain:[1,6],retriev:[],reusabl:[],revenu:[3,6,7],revers:[],review:[],reword:[],rfc:[],rich:[],right:[1,3,6,7,8],rightmost:[],risk:[],river:[],roboto:[],roll:3,root:6,rotat:[],round:[],row:[6,7],rtl:[],rug:[],rule1:[],rule:[3,6,7],run:[],runtim:3,ryan:[],safe:[],safeti:[],sai:3,salari:6,sale:[3,6,7],same:[0,3,6,7],samp:[],sampl:7,sample_data:[],samuel:[],san:[],sankei:[],sap:[],sapui5m:[],sat:[],satisfi:[],saturdai:[],save:[6,9],scale:[3,7],scatter:[],scenario:[4,6,9],scheme:[],scienc:[],scratch:6,screen:[0,3,6,7,10],screennumb:[],screenshot:3,script:[],scroll:[3,6],scrollabl:[],scrollbar:[],sdk:[],search:[6,7],searchbox_1:[],second:6,secondari:[3,6],section12:[],section:[3,6,7,8,10],secur:[],see:[0,3,6,7,8,10],seen:3,segment:[],select:[0,3,7],selectal:[],selectedmemb:[],selectedmemberkei:[],selectedmembertext:[],selector:[],self:[],semant:[],semi:[],semicircl:[],semicolon:[],send:[],sender:[],sensit:[],sent:[],sep:0,separ:[0,6],septemb:3,sequenti:[],seri:[0,3,7,9],serial:[],serif:[],serv:[],server:3,servic:1,session:[],set:[3,7,9],setcolumnpin:[],setcolumnvis:[],setcolumnwidth:[],setfilt:[],setfilterext:[],setheaderheight:[],setquickfilt:[],settext:[],setup:[],sever:6,sfi1:[],shadow:[],shape:[],share:3,sheet:[],shift:[],shop:[],shot:6,should:[0,3,6,7,9],show:[0,3,6],shown:[0,3,4,6,7],showtoolpanel:[],sid:[],side:3,sign:[],signific:[],significantli:3,sim:3,similar:[0,3,6,7],similari:[],similarli:[3,6],simpl:3,simpli:[],simplifi:3,simul:[4,9,10],simultan:[],sinc:6,singl:6,situat:[],six:[],size:6,sizecolumnstofit:[],slash:[],slice:[],slicer:[],slide:3,slider:[3,5,6],slightli:[],slope:[],slopechart:[],slot:[],sm1:[],small:6,smaller:6,smallest:[],smartphon:[],smoki:[],smooth:[],smtp:[],snaghtml95dcd268:[],snaghtmla5e88063:[],snaghtmlba665f5:[],snap:[],soap:[],softwar:1,sold:6,solid:[],solut:1,solutin:[],some:3,someth:[],somewhat:[],soon:[],sort:[],sound:1,sourc:[0,3,6,7],space:6,spark:6,sparklin:6,sparklingwater_grosssal:6,special:[3,6],specialti:[],specif:[3,6,7],specifi:[],speciic:[],spectrum:[],speed:[],spiderfi:[],spie:[],spline:[],split:[],sport:[],spotlight:[],spous:6,spouse1:6,spread:7,spreadsheet:3,squar:[],squarifi:[],sso:[],stack:[],stackedareachart:[],stackedcolumnbarchart:[],staf:[],staff:[],stage:[],stagger:[],stai:[],stakehold:[2,4],stamp:[],stand:[],standard:[3,6],stare:[],start:[3,6],startf:[],startfinish:[],startstart:[],startup:[],state:[1,5],statement:[],stationeri:[],statu:[3,6],status:[],stem:[],step:[6,7],still:3,stop:[],storag:[],store:[],stori:[],straight:[],stream:[],streamgraph:[],street:[],stretch:[],string:[],strip:[],stripe:[],stroke:[],structur:[6,7],studi:[],studio:[],style:6,sub:[6,9],subcategori:[],subdomain:[],subfoot:[],subject:1,submenu:[],submit:[],subscript:6,subset:[],subtitl:[],subtot:[],subtract:6,subtre:[],succeed:[],success:[],suffix:6,suit:[],sum:[3,6],sum_:[],summari:[],summat:[],sun:[],sundai:[],supercombinationchart:[],superior:[],suppli:[],support:[3,5,7],suppos:[],suppress:[],sure:[],svg:[],swap:[],swipe:[],symbol:[],sync:[],synchron:[],syntax:[],system:6,tab:[0,3,7,8,9,10],tabl:[3,4,6],table1:[],tablet:[],tabstrib:[],tabstrip:[],tabstrip_1:[],tag:[],take:6,taken:[6,7],tap:[],target:3,tart:[],task:[],team:[],technic:[3,6],technolog:[],teh:[],temp:[],templat:3,tere:[],term:6,tester:[],text:[3,6],text_1:[],text_1_tf1:[],than:3,thei:[0,3,6,7],them:[3,6,7],theme:[],therefor:[1,3],theses:[],thi:[1,2,3,5,6,7,9],thick:[],thin:[],thing:[2,3,4],thinner:[],third:3,those:0,though:[],thousand:6,three:[3,6,7],threshold:6,through:[6,7],throughout:[],throughput:3,thursdai:[],tick:[],tile:[],till:[6,7],time:[3,4,5],timefram:[],timelin:[],timeseri:[],timeslicer_1:[],tion:[],tip:[],titl:[1,3,6],to1:6,togeth:[],toggl:[],tonn:3,too:[],tool:[],toolbar:6,tooltip:3,top:[0,3,6,7],topic:[],topojson:[],tor:[],tori:[],total:[6,7],total__cost:6,touch:5,toward:[],track:3,trademark:9,transfer:[],translat:1,transmit:1,transpar:[],transport:[],travel:[],treat:1,treati:1,trebuchet:[],tree:[2,7,8,9],trelli:[],trend:[3,6,7],triangl:[],trigger:[],trillion:6,truli:[],tue:[],tuesdai:[],turn:7,tutori:6,two:[3,6,8],type:[6,7],typic:[3,6],unabl:[],unassign:[],under:[1,3,6],undergo:6,underli:[3,6],underlin:[],underscor:6,understand:[6,9,10],undo:[],unformat:3,unhid:[],uniqu:[2,6],unit:[1,2],univers:[],unlik:3,unlock:[6,7],unselect:[],unsur:[],until:[],upcom:10,updat:[3,5,6,7],uplo:6,upload:6,upon:6,upper:3,upto:6,url:[3,6],usa:[],usag:[],usd:[],use:[3,4,6,7],used:[3,6],useful:[3,6],user:[3,4,5,6,7],usernam:[],uses:[],using:[3,6,7],usual:6,util:6,vale:[],valeu:[],valid:4,valq:[2,6,8],valu:[0,2,4,6,7,8,9],value1:[],value2:[],varaianc:[],vari:3,variabl:3,varianc:[0,7,9],variat:3,varieti:[],variou:[1,3],vbx:[],vector:[],veri:6,versa:[3,6],versi9on:[],version:[3,4,5,6],versu:0,vertic:[6,7],vew:[],via:6,vice:[3,6],video:3,view:[0,6,9],viewer:[],viewport:[],virtual:[],visibl:6,visit:[],visuabi:[],visual:[1,2,6,8,10],visualbi:[],visualis:2,volum:[3,4],w52:[],waffl:[],wai:[2,3,4,6],walkthr:[],want:3,warehous:[],waterfal:[3,6],web:6,web_service_demo:[],web_service_wsdl_demo:[],webmap:[],websit:[],wed:[],wednesdai:[],week1:[],week52:[],week:0,weekli:9,weight:[3,6,7],well:[1,3,6],were:3,what:[2,9],wheel:3,when:[0,3,5,6,7],whenev:[],where:[3,6,7,8],wherea:[],whether:6,which:[0,3,4,6,7,8],whichev:[],whisker:[],white:[3,6],who:9,whole:[],whose:[],wide:[],wider:[],widget:[2,6,9],width:[],wildcard:[],win:[],window:[3,5,6,7],wish:3,wit:[],within:[0,1,5],without:[1,3,6],word:[],work:[3,5],workflow:[],workspac:[],world:3,wors:3,worthwhil:[],would:[3,6,7],write:[3,5,6,7],writeback:[],written:[1,6],wrong:[],wsdl:[],www:[],x_cordin:[],xampl:[],xaxi:[],xls:[],xml:[3,6],y_cordin:[],yaxismax:[],yaxismin:[],year:[3,6,7,9],yellow:[3,6],you:[0,1,3,6,7,10],your:[3,6,7],yqm:[],yqmm:[],ytd:3,yyi:[],yyyi:[],yyyymm:[],yyyymmdd:[],yyyymmm:[],zero:[6,7],zoom:[5,6,9]},titles:["Analyze Category","Copyright","Definitions","General Features of valQ Custom Visual","Introduction","Known Issues and Limitations","Model Category","Plan Category","Simulate Category","Welcome to valQ Custom Visual for Microsoft Power BI!","valQ in Power BI"],titleterms:{"boolean":[],"default":[],"export":6,"final":[],"function":[3,7],"import":6,"new":6,"return":[],"static":[],"super":[],AND:[],Adding:7,Axes:[],One:[],Using:[],With:[],XLS:[],abil:[],about:3,action:[],activ:[],actual:[],adapt:[],addit:6,advanc:6,aggreg:6,alert:[],all:[],alloc:7,allow:[],analysi:3,analyt:[],analyz:0,angular:[],anim:[],annot:[],api:[],appear:[],area:[],assign:[],autos:[],avail:[],axi:[],background:[],balanc:[],band:[],bar:[],base:[],bind:[],border:[],box:[],bubbl:[],bullet:[],busi:6,businessobject:[],calcul:6,calendar:[],canva:6,capabl:[],categori:[0,6,7,8],chang:[],chart:[],checkbox:[],children:7,choropleth:[],click:[],close:[],cloud:[],cluster:[],collaps:3,color:6,colum:[],column:[],combin:[],combo:[],common:7,comparison:[],compon:4,composit:6,condit:6,conduct:3,config:[],configur:6,constant:6,constraint:3,contain:[],content:[],context:[],contextu:3,contribut:6,coordin:[],copi:[],copyright:1,count:[],creat:6,creation:[],css:[],custom:[3,4,9],data:[3,6],datasourc:[],date:0,definit:[2,6],descend:[],design:[],detail:[],deviat:[],devic:[],dialog:[],differ:[],dimens:[],disabl:[],displai:[3,6],doc:[],document:4,donut:[],down:3,drill:3,drilldown:[],driver:3,dual:[],dwm:[],dynam:6,edit:[],editor:[6,7],element:[],email:[],empti:[],enabl:[],entri:[],error:[],esri:[],event:[],excel:6,exist:[],expand:3,extens:[],facet:[],featur:[3,7],file:6,filter:[3,7],fiscal:[],fit:[],fix:[],flow:[],focus:[],font:[],footer:[],format:6,freez:[],from:6,full:0,funnel:[],gantt:[],gaug:[],gener:[3,6],geo:[],geojson:[],geomap:[],german:[],get:3,global:[],googl:[],graph:[],grid:[],gridlin:[],group:[],guid:4,half:0,have:[],header:[],heat:[],help:3,hide:[],hierarch:[],hierarchi:[],high:[],histori:[4,7],horizon:[],horizont:[],how:[],html:[],icon:[],ident:[],imag:[],index:[],indic:[],indoor:[],inform:[1,3],input:[3,7],instruct:3,integr:[],intellig:[],interact:[],interest:[],interim:[],introduct:4,intuit:[],issu:5,kei:3,keyboard:[],known:5,kpi:3,label:6,larg:[],lasso:[],launch:[],layer:[],layout:[],legend:[],level:[],licens:6,limit:5,line:[],linear:[],list:[],load:[],local:[],locat:[],logic:[],loss:[],lumira:[],mail:[],manag:6,map:[],margin:[],marimekko:[],marker:[],master:[],matrix:[],maxim:[],measur:[],member:[],menu:[],messag:[],method:6,microsoft:[1,9],minim:[],minimap:[],miscellan:[],mobil:[],mode:[],model:[3,6],month:[],monthli:0,more:3,multi:[],multipl:[],multiselect:[],navig:6,neg:[],node:[3,6,7],note:7,number:6,numer:[],odata:[],offset:[],one:[],onli:6,open:[3,6],opendocu:[],option:[],order:[],other:7,overview:[],overwrit:[],pad:[],page:[],pagebook:[],pan:3,panel:6,parallel:[],pareto:[],part:[],patent:1,pattern:[],pbx:[],pdf:[],per:[],percentag:6,perform:6,period:3,pictogram:[],pie:[],pin:[],pivot:[],placehold:[],plan:7,platform:[],plot:[],point:[],polar:[],posit:[],power:[1,4,9,10],ppt:[],pre:[],preview:[],profil:[],progress:[],properti:6,pyramid:[],quarter:0,quick:6,radar:[],rang:[],rank:[],read:[4,6],registr:6,relationship:[],repeat:[],report:[],requir:[],requisit:[],reset:[],resourc:[],respons:[],restor:[],retain:[],revers:[],risk:[],rule:[],run:[],runtim:[],sampl:6,sankei:[],sap:[],save:3,scale:6,scatter:[],scenario:[3,7],scheme:[],scratch:[],screen:[],script:[],scrollbar:[],search:[],select:6,selector:[],self:[],semicircl:[],seri:6,servic:[],set:6,setup:[],sheet:[],should:4,show:[],side:[],simpl:6,simul:[3,6,8],singl:[],size:[],slicer:[],slider:[],slope:[],small:[],solid:[],sort:6,sourc:[],sparklin:[],special:[],specif:[],spie:[],spreadsheet:[],stack:[],standard:[],start:[],statu:[],step:[],stream:[],studio:[],style:[],sub:3,subtitl:[],suit:[],sunburst:[],support:[],swap:[],tab:6,tabl:[],tag:[],target:[],technic:[],templat:6,text:[],theme:6,thi:4,tick:[],tile:[],time:6,titl:[],tool:[],tooltip:[],total:[],trademark:1,tree:[3,6],trelli:[],trend:[],trendlin:[],type:[],understand:3,use:[],user:[],using:[],util:[],valq:[3,4,9,10],valu:3,varianc:[3,6],variant:[],vbx:[],vertic:[],via:[],view:[3,7],visual:[3,4,9],waffl:[],waterfal:[],web:[],weekli:0,welcom:9,what:[3,4],who:4,widget:3,width:[],win:[],window:[],work:[],workspac:[],wrap:[],writeback:6,wsdl:[],year:0,yqm:[],zoom:3}}) \ No newline at end of file diff --git a/source/AnalyzeCategory.rst b/source/AnalyzeCategory.rst new file mode 100644 index 0000000..a7684c9 --- /dev/null +++ b/source/AnalyzeCategory.rst @@ -0,0 +1,217 @@ +Analyze Category +================ + +Using the Analyze Category, you will be able to perform the Variance Analysis for the Base Series versus +Compared Series. By clicking the Analyze Tab, you will be able to view the Variance Analysis option +(see Figure below). + +.. figure:: _static/varan1.png + :align: center + :alt: alternate text + + Analyze Category + +By clicking the Variance Analysis option, you will be able to view the Variance Analysis screen (see Figure below). +Now you can perform the Variance Analysis for the Base Series versus Compared Series by selecting the required +Period and Filters. For our example, both the Base and Compared Series will have the Budget and Forecast values. +Also they can have additional series values based on the Data Source that you assign and those values +can be considered for the Base Series versus Compared Series. For our example, Base Series has been selected as +“Budget” and the Compared Series has been selected as “Forecast” + +.. figure:: _static/van3.png + :align: center + :width: 1000 + :alt: alternate text + + Variance Analysis with Base Series versus Compared Series + +The Period selection includes the following options: + +1. Weekly +2. Monthly +3. Quarter-to- date +4. Quarter +5. Half Year +6. Half Year-to-date +7. Year-to date +8. Year-to-go +9. Full Year +  +The details for the individual Period Selection has been explained below: + +Weekly +------ + +When the Period is selected as “Weekly”, then the Variance Analysis for the Base Series versus +Compared Series will be based on the week selection that falls within a year which is from 1st to 52nd week. + +Monthly +------- + +When the Period is selected as “Monthly”, then the Variance Analysis for the Base Series versus +Compared Series will be based on the month selection that falls within a year which is from Jan to Dec. + +Quarter-to-date +--------------- + +When the Period is selected as “Quarter-to-date”, then the Variance Analysis for the +Base Series versus Compared Series will be based on the Quarter-to-date selection that +falls within a Quarter in Year. For example, if the Base Period is selected as “Feb”, then the +Variance Analysis will be performed for Jan and Feb months alone (see Figure below). + +.. figure:: _static/van4.png + :align: center + :width: 1000 + :alt: alternate text + + Period selected as Quarter-to-date + +Quarter +------- + +When the Period is selected as “Quarter”, then the Variance Analysis for the Base Series versus Compared Series +will be based on the Quarter selection that falls within a year which is from Jan to Mar, Apr to Jun, +Jul to Sep and Oct to Dec. For example, if the Base Period is selected as “Feb”, then the +Variance Analysis will be performed for the first Quarter from Jan to Mar month (see Figure below). + +.. figure:: _static/van5.png + :align: center + :width: 1000 + :alt: alternate text + + Period selected as Quarter + +Half Year +--------- + +When the Period is selected as “Half Year”, then the Variance Analysis for the Base Series versus +Compared Series will be based on the Half Year selection that falls within a year which is from Jan to Jun +and Jul to Dec. For example, if the Base Period is selected as “Feb”, then the +Variance Analysis will be performed for the first Half Year which is from Jan to Jun month (see Figure below). + +.. figure:: _static/van6.png + :align: center + :width: 1000 + :alt: alternate text + + Period selected as Half Year + +Half Year-to-date +----------------- + +When the Period is selected as “Half Year-to-date”, then the Variance Analysis for the Base Series versus +Compared Series will be based on the Half Year-to-date selection that falls within a Half Year. +For example, if the Base Period is selected as “Apr”, then the Variance Analysis will be +performed from Jan to Apr month which falls in the First Half Year period (see Figure below). + +.. figure:: _static/van7.png + :align: center + :width: 1000 + :alt: alternate text + + Period selected as Half Year-to-date + +Year-to-date +------------ + +When the Period is selected as “Year-to-date”, then the Variance Analysis for the Base Series versus +Compared Series will be based on the Year-to-date selection that falls within a Year. For example, if the +Base Period is selected as “Oct”, then the Variance Analysis will be performed from Jan to Oct month +which falls in a Year period (see Figure below). + +.. figure:: _static/van8.png + :align: center + :width: 1000 + :alt: alternate text + + Period selected as Year-to-date + +Year-to-go +---------- + +When the Period is selected as “Year-to-go”, then the Variance Analysis for the Base Series versus +Compared Series will be based on the Year-to-go selection that falls within a Year. For example, if the +Base Period is selected as “Feb”, then the Variance Analysis will be performed from Mar to Dec month +leaving the rest of the months from Jan to Feb (see Figure below). + +.. figure:: _static/van9.png + :align: center + :width: 1000 + :alt: alternate text + + Period selected as Year-to-go + +Full Year +--------- + +When the Period is selected as “Full Year”, then the Variance Analysis for the Base Series versus +Compared Series will be based on the Full Year selection that falls within a year which is from Jan to Dec. +For example, if the Base Period is selected as “Jul”, then the Variance Analysis will be performed for the +Full Year which is from Jan to Dec month (see Figure below). + +.. figure:: _static/van10.png + :align: center + :width: 1000 + :alt: alternate text + + Period selected as Full Year + +The Variance Analysis for the Base Series versus Compared Series can be also performed based on comparing the +same Base Period or comparing to different Base Period (see Figure below). The above mentioned Period +selections have been explained based on the Base Period being selected as “Compare same period”. + +.. figure:: _static/van11.png + :align: center + :width: 1000 + :alt: alternate text + + Budget vs Forecast for the same Base Period + +As an example, the below Figure shows the Variance Analysis that was performed based on comparing the +different Base Period. + +.. figure:: _static/van11a.png + :align: center + :width: 1000 + :alt: alternate text + + Budget vs Forecast for the different Base Period + +It is to be noted that the Base Series selection and the Compared Series selection should not have the +similar option for the same Base Period. As an example, Budget selected as Base Series cannot be compared with +Budget selected as Compared Series for any Base Period. + +The Periods can be also selected collectively and the Variance Analysis for the selected combination +will be displayed as shown in the below Figure. In our example, the Period has been collectively selected +as Monthly and Half Year. + +.. figure:: _static/van12.png + :align: center + :width: 1000 + :alt: alternate text + + Period selected as Monthly and Half Year + +From the above Figure, you can observe that the Variance Analysis has been performed for the periods +“Monthly” and “Half Year”. Also the Base Period for Budget is selected as “Jan” and the Base Period for +the Forecast is selected as “Mar”. +  +The Filter option has the ability to filter the records based on the Variance values. It shows the +Top number of Variance values for the selected Period (see Figure below). + +.. figure:: _static/van13.png + :align: center + :width: 1000 + :alt: alternate text + + Top 10 Variance Values for the Period being selected as Monthly, Half Year and Year-to-date. + +The options Show Absolute Variance and Show % Variance when activated will display the Absolute Variance +and % Variance values in a separate column in the grid. + +.. figure:: _static/van14.png + :align: center + :width: 1000 + :alt: alternate text + + Absolute Variance and % Variance values \ No newline at end of file diff --git a/source/Copyright.rst b/source/Copyright.rst new file mode 100644 index 0000000..63c990c --- /dev/null +++ b/source/Copyright.rst @@ -0,0 +1,42 @@ +Copyright +######### + +©Visual BI Solutions, Inc. (“Visual BI”). All rights reserved. No part +of this document may be reproduced or transmitted in any form or by any +means, electronic or mechanical, for any purpose, without the express +written permission of Visual BI. Under the law, reproducing includes +translating into another language or format. + +As between the parties, Visual BI retains title to, and ownership of, +all proprietary rights with respect to the software contained within its +products. The software is protected by United States copyright laws and +international treaty provision. Therefore, you must treat the software +like any other copyrighted material (e.g. a book or sound recording). + +Every effort has been made to ensure that the information in this manual +is accurate. Visual BI Solutions is not responsible for printing or +clerical errors. Information in this document is subject to change +without notice. + +Trademark Information +********************* + +Visual BI® and the Visual BI logo design are trademarks of Visual BI. in +the United States and various other countries. All other trademarks are +the property of their respective owners. + +Patent Information +****************** + +The accompanying product is protected by one or more U.S. and foreign +patents and/or pending patent applications held by Visual BI. + +Microsoft Power BI Trademarks +***************************** + +Microsoft Power BI and the services mentioned herein as well as their +respective logos are trademarks or registered trademarks of Microsoft +Power BI. All other product and service names mentioned are the +trademarks of their respective companies. + + diff --git a/source/Definitions.rst b/source/Definitions.rst new file mode 100644 index 0000000..1ec1e80 --- /dev/null +++ b/source/Definitions.rst @@ -0,0 +1,38 @@ +Definitions +########### + ++-----------------------------------+-----------------------------------+ +| Power BI | Microsoft Power BI | ++-----------------------------------+-----------------------------------+ +| valQ | valQ for Microsoft Power BI | ++-----------------------------------+-----------------------------------+ +| Value Driver Tree | Mathematical or conceptual | +| | business models visualised in a | +| | way that links the business KPI’s | +| | (what management or stakeholders | +| | care about) to the operational | +| | drivers (the things that can be | +| | influenced to change the KPI’s). | ++-----------------------------------+-----------------------------------+ +| Node | A generic reference to a unique | +| | KPI or Value Driver in a value | +| | driver tree | ++-----------------------------------+-----------------------------------+ +| Node Widget | The visualization of a KPI or | +| | Value Driver in a value driver | +| | tree | ++-----------------------------------+-----------------------------------+ +| Derived Node | Additional Information for a node | +| | but not directly related to the | +| | calculation hierarchy. This will | +| | often be key benchmarking KPI’s | +| | such as cost/production unit. | ++-----------------------------------+-----------------------------------+ +| Parent | A reference to the Node one level | +| | above in the Value Driver Tree | ++-----------------------------------+-----------------------------------+ +| Children | A reference to the collection of | +| | nodes immediately below a Node | ++-----------------------------------+-----------------------------------+ + +*Definitions* \ No newline at end of file diff --git a/source/Generalfeatures.rst b/source/Generalfeatures.rst new file mode 100644 index 0000000..b62be3b --- /dev/null +++ b/source/Generalfeatures.rst @@ -0,0 +1,1348 @@ +.. _GFV: + +General Features of valQ Custom Visual +====================================== + +Instructions for valQ Custom Visual +------------------------------------ + +The valQ Custom Visual provides various components that the Designer can +use in conjunction with Microsoft Power BI. The valQ custom visual also +offers many configuration options. + +In this guide, we will describe the common end user functionality using +a demo as an example. It is however important to understand that your +specific implementation may differ. + +Once your designer has implemented and configured the valQ Custom +Visual, it will be accessed the same way you access your current Power +BI Apps. + +When you open a valQ Custom Visual, it will open in a similar manner at +the screenshot below: + +.. figure:: _static/4.1.png + :align: center + :width: 1000 + :alt: alternate text + + valQ Screen + +The left panel is the navigation panel and on the canvas you will find +the value driver tree. By default, the tree is open on collapsed mode at +a level defined by the designer. This is typically completely collapsed. + +As part of the New Release, you will be able to hide the Navigation Panel in the Runtime by clicking the Collapse button as shown in the below Figure. + +.. figure:: _static/navp.png + :align: center + :width: 1000 + :alt: alternate text + + Hiding Navigation Panel in Runtime + +As part of the New Release, you can also switch over from Table View Mode to Tree View Mode and vice versa using the button as shown in +the below Figure. + +.. figure:: _static/tbt.png + :align: center + :width: 1000 + :alt: alternate text + + Table/Tree View Mode + + +Input Data +---------- + +The valQ Custom Visual works with two input data series – the primary +and the comparison data series. A common way of using this is to compare +Forecast vs Budget, Budget vs Last Year Actuals etc. The data series is +at a certain time grain. This would typically be 1 year by 12 months or +a multiyear view like 5 years plan by year. + +The selecting of the time series will often be based on Filters or +Variables. A typical scenario is where the designer has defined 4 +variables on the underlying data sources: + +Primary: + +Version: ie. Defaulted to Forecast + +Year: ie. Defaulted to Current Year + +Comparison: + +Version ie. Defaulted to Budget + +Year ie. Defaulted to Current Year + +This allows the users to compare different versions and years in the +value driver tree model. + +The valQ Custom Visual can display individual periods but can also apply +time aggregation such as Full Year, Year-to-Date. You can see the +currently selected Value Display aggregation on the Navigation Panel. In +the screenshot above, Full Year is selected. The primary value displayed +on the Widgets is therefore in this instance the Full Year aggregated +data. + +Tree Drill Down +--------------- + +Nodes that has children will have an expand ‘>’ button to the right of +the Widget as highlighted below: + +.. figure:: _static/4.2.png + :align: center + :alt: alternate text + + Nodes with children + +You can drill down the tree by clicking the expand button. + +The tree will focus on the branches that are being expanded. You can +collapse any specific node by clicking the ‘<’ collapse button on the +right of a widget. + +Value Driver Trees are in reality networks. The same driver may impact +multiple aspects of the Tree. The component therefore contains a concept +of linked nodes. Such nodes have a link |..image::_static/image4| icon that you can click +which will jump to where the linked node is defined and highlight the +node: + +.. figure:: _static/4.3.png + :align: center + :alt: alternate text + + Link + +.. figure:: _static/4.4.png + :align: center + :width: 1000 + :alt: alternate text + + Linked Nodes + +To collapse all nodes, click on the collapse icon on the bottom left of +the canvas |..image::_static/image7| + +Zoom and Pan +------------ + +Value Driver Trees can be large. You can zoom and pan the canvas view. +If you are using an iPad or iPhone, you can zoom by pinching and pan by +dragging the same way you would navigate a map. + +If you are using a mouse with a scroll wheel, you can point your curser +anywhere in the canvas and scroll the wheel to zoom in and out. + +To pan, click and hold the left bottom of the mouse and drag the tree +around. + +You can also use the zoom button to zoom if your device doesn’t support +other options |..image::_static/image8| + + +Expand/Collapse of Tree View +---------------------------- + +As part of the New Release, you will be able to expand/collapse the Node Hierarchy at the required level using the Go To Level button (see Figure below). + +.. figure:: _static/exl.png + :align: center + :width: 1000 + :alt: alternate text + + Expand/collapse one level + +For our example, the Node Hierarchy level has been selected as third level. + +Value Display and Simulation Period +----------------------------------- + +.. figure:: _static/4.5.png + :align: center + :alt: alternate text + + Value Display + +With the ‘Value Display’ functionality you can choose the time +aggregation you want to display as the primary value. The designer can +link certain nodes to a user selected scaling. You can select the scale +you wish to display by selecting this under the Value Display section. +Note that the options here can be configured so they may differ. It is +important to note that not all notes are scaled using this as the value +driver tree typically contains both amounts, prices, rates and physical +volumes. + +In addition to the primary display value, the designer can also choose a +secondary value to be displayed. I.e. if you are showing Full Year as +primary, in the below example, it has been configured to visualize the +Month data as secondary: + +.. figure:: _static/4.6.png + :align: center + :width: 1000 + :alt: alternate text + + Value Display + +The time aggregation and display relates to the Simulation Period +selected. + +When **Month** is selected, it shows the first month of the simulation +interval selected. By default, the simulation period is the selected +period and the future. This is an important concept as when we simulate, +we generally don’t want to apply a change to the past as we can’t change +it. It is possible to also set the ‘to’ period in a simulation, just +click |..image::_static/image11| and highlight the month you want as the end period of a +simulation. This is however a special scenario. + +.. figure:: _static/4.7.png + :align: center + :width: 1000 + :alt: alternate text + + Simulation Period + +**YTD** – the selected period -1 is the year to date data (eg. selected +simulation period is September to December, the YTD data will be from +Jan to August). + +Note: Simulation of future periods will not impact the YTD data. + +.. figure:: _static/4.8.png + :align: center + :width: 1000 + :alt: alternate text + + Value Display and Simulation Period + +**Full Year** – Shows the full year cumulated data + +.. figure:: _static/4.9.png + :align: center + :width: 1000 + :alt: alternate text + + Value Display and Simulation Period + +**Sim. Period** – to simulate a specific period, for example a 3 month +rolling forecast from September to November, click the first month +September then click |..image::_static/image15|\ and click the last month November for +simulation. You can then choose to only show the values aggregated for +the selected simulation periods + +.. figure:: _static/4.10.png + :align: center + :width: 1000 + :alt: alternate text + + Value Display and Simulation Period + +As part of the New Release, you will be able to view the Tooltip for all the Value Displays. +For our example, the Tooltip for the Month Value Display is shown in the below Figure. + +.. figure:: _static/vd1.png + :align: center + :alt: alternate text + + Tooltip for Month Value Display + +Similarly you can view the Tooltip for other Value Displays. + +Sub Models - Filters +-------------------- + +If your Value Driver Tree is large, the designer may have defined +specific sub views. These would be listed under the Sub Models Section +of the Navigation Panel. When clicking on one of these views, the tree +will be filtered and the specific node will be made the top node. +Calculation dependencies are still respected but this significantly +improves the navigation as it focuses the tree on a specific area. + +In this example, the options defined are: + +- Open all company level: Net Profit + +- Open per department: Mining, Processing or the operational tree for + Mill Throughput + +.. figure:: _static/4.11.png + :align: center + :alt: alternate text + + Sub Models – Filters + +KPIs +---- + +The Navigation Panel can be configured to list a set of KPI’s from the +value driver tree. You are able to navigate to each of them for a fast +view on the simulation impact on a given KPI. Click on the KPI to +navigate to the node. + +.. figure:: _static/4.12.png + :align: center + :width: 1000 + :alt: alternate text + + KPIs + +Data Simulation +--------------- + +There are 2 options to simulate: + +- Hover over a desired node to simulate, slide the scaling button to + right for positive impact or left for negative impact. The simulation + will be showed on the right hand side. A window will open displaying + the changes. The pencil icon will display the change in percentage + that has been made: |..image::_static/image19|, and a legend with percentage showing + if the adjust has made the scenario better or worse |..image::_static/image20|. + +.. figure:: _static/4.13.png + :align: center + :alt: alternate text + + Data Simulation + +- Click on the arrow icon of the node |..image::_static/image22| then click ‘Edit Key + Input’ |..image::_static/image23| and manually edit the changes in simulation per + period. Click X to close manual input table. + +Notes + +- You can update the periods highlighted in YELLOW based on the + selected simulation period. + +.. figure:: _static/4.14.png + :align: center + :width: 1000 + :alt: alternate text + + Simulation Periods + +The edit icon will indicate the months that have been edited. + +.. figure:: _static/4.15.png + :align: center + :width: 1000 + :alt: alternate text + + Simulation Periods + +- You can update the ‘Variation’ column which will overwrite the + numbers in the selected simulation periods. Any manual updates in + period will not be overwritten by the ‘Variation’ column. In the + example below, in blue are the months which were manually edited and + in orange are highlighted the variation and in this case the month to + which the variation was applied. + +.. figure:: _static/4.16.png + :align: center + :width: 1000 + :alt: alternate text + + Simulation Periods + +Click reset icon to return to the original data |..image::_static/image27|. + +As part of the New Release, you can simulate the Node having "0" as the value. When the slider is moved to the right end, it will show positive values and when the +slider is moved to the left end, it will show negative values. The property of the Simulation remains the same for the Change Percentage, +Manual, Growth Percentage and Constant options. + +.. figure:: _static/zero1.png + :align: center + :width: 1000 + :alt: alternate text + + Simulated Node having "0" as values + +From the above Figure, you can observe that the Growth Percentage has been selected as an option. + + +Key Inputs +----------- + +Key Inputs is available on the left side panel to directly simulate key +cost drivers without going into the node details. + +Click the ‘Edit Key Input’ icon |..image::_static/image28| and manually edit the changes +in simulation per periods. + +.. figure:: _static/4.17.png + :align: center + :alt: alternate text + + Key Inputs + +Notes: + +- Can update the periods highlighted in YELLOW based on the selected + simulation period. All the changes in the Key Assumptions are + highlighted in the left side panel side. + +.. figure:: _static/4.18.png + :align: center + :width: 1000 + :alt: alternate text + + Simulation Periods + +Click X to close manual input table. + +- Click a Key Assumption or Key Performance Indicator and it will + highlight the source nodes to further check the details. + +.. figure:: _static/4.19.png + :align: center + :width: 1000 + :alt: alternate text + + Key Inputs + +All simulations are highlighted in the upper right corner. + +|..image::_static/image32| + +Click |..image::_static/image33| to return to the original selected version without any +simulation. + +When more number of simulations are done, you will be able to view the More button in the upper right corner. By clicking +the More button, you will be able to see the remaining simulations as shown in the below Figure. + +.. figure:: _static/more.png + :align: center + :width: 1000 + :alt: alternate text + + Simulations - More option button + + +Scenarios Functionality +------------------------ + +You can create multiple scenarios in parallel, compare them as well as +sharing the collection with others. + +This is how you do it. + +- Create a Scenario 1 by clicking the “+” button in the Navigation + Panel (see Figure below). + +.. figure:: _static/sf1.png + :align: center + :alt: alternate text + + Create Scenario + +- You can view the Context Drop Down Menu as shown in the below Figure. + +.. figure:: _static/sf2.png + :align: center + :alt: alternate text + + Context Drop Down Menu + +- After clicking the Context Drop Down Menu, you will be able to view + the Menu items such as Copy Scenario, Edit and Delete Functions (see + Figure below). + +.. figure:: _static/sf3.png + :align: center + :alt: alternate text + + Context Drop Down Menu Items + +- When you click the “Copy Scenario” Menu Item, you will be able to + create the Scenario 2 with the same configuration as done for + Scenario 1. + +.. figure:: _static/sf4.png + :align: center + :width: 1000 + :alt: alternate text + + Scenario 1 + +The above Figure shows the settings for Scenario 1. When you click the +“Copy Scenario” Menu Item, you will be able to view the Scenario 2 being +created with the same set of configuration done for Scenario 1 (see +Figure below). + +.. figure:: _static/sf5.png + :align: center + :width: 1000 + :alt: alternate text + + Scenario 2 + +The copied scenario is the replicate of the last scenario (e.g. Scenario +2 will have the same data from the copied Scenario 1. + +- By clicking the “Edit” Menu Item, you will be able to edit the + Scenario (see Figure below). + +.. figure:: _static/sf6.png + :align: center + :alt: alternate text + + Scenario 1 Edit + +From the above Figure, you can observe that you will be able to edit the +labels for the Title and Description for the selected Scenario. + +- By clicking the “Delete” Menu Item, you will be able to delete the + entire Scenario. + +- Click ‘Create a new Scenario and make it the active scenario’ icon as shown below + +.. figure:: _static/sfi1.png + :align: center + :alt: alternate text + + Create a new Scenario and make it the active scenario icon + +This will create a new Scenario and will highlight the created Scenario as the active scenario. + +- Click ‘Compare Scenario’ icon to generate a report comparison format with the key Assumptions and KPI’s (see Figure below). + +.. figure:: _static/sfi2.png + :align: center + :alt: alternate text + + Compare Scenario icon + +- Comparison report compares all scenarios that have been created in + the active collection. It also shows the Simulated Data Scenario + (Baseline: Full Year), Comparison Version (Full Year) and Simulated + Data Scenario Year to Date (Baseline: YTD). + +- From the below Figure, the GREEN fonts denotes the most favorable + results and the RED fonts denotes the least favorable result in the + scenario comparison report. + +.. figure:: _static/sf7.png + :align: center + :width: 1000 + :alt: alternate text + + Full Year Scenario Comparison + +.. figure:: _static/sf8.png + :align: center + :width: 1000 + :alt: alternate text + + Full Year Scenario Comparison + +As part of the New Release, you will be able to download the excel file of the compared scenarios based on your choice by clicking the "Download to Excel" option +in the Scenario Comparison screen as shown below. + +.. figure:: _static/scom1.png + :align: center + :width: 1000 + :alt: alternate text + + Download option in Scenario Comparison screen + +You can select the Scenario and download the excel file as shown in the below Figure. + +.. figure:: _static/scom2.png + :align: center + :alt: alternate text + + Scenario selection + + +- You have the option to make additional simulation in the new scenario + or click the icon appearing in the top most right pane to + return to the original selected version without any simulation and + then make a new simulation (see Figure below). + +.. figure:: _static/sfi3.png + :align: center + :alt: alternate text + + Reset All icon + +- Click the Download icon located in the Scenarios Section to extract the report in xml format (see Figure below). + +.. figure:: _static/sfi4.png + :align: center + :alt: alternate text + + Download icon + +- Click the icon for write back functionality (see Figure below). By clicking + this option you will be able to write back/post valQ data to a + configured URL in the server. + +.. figure:: _static/sfi5.png + :align: center + :alt: alternate text + + Write back icon + +By clicking the Configure URL to write back the current scenario option, you will be able to select any one among the two different options to write back the current scenario +to the configured URL in the server (see Figure below). + +.. figure:: _static/wb1.png + :align: center + :width: 300 + :alt: alternate text + + Write back options + + +- The created Scenarios can be reordered based on our choice by a + simple drag and drop options. For our example, you have reordered the + Scenarios as shown in the below Figure. + +.. figure:: _static/sf9.png + :align: center + :alt: alternate text + + Reordered Scenarios + +Based on the reordered scenarios, you will be able to view the +Comparison Report with the similar reordered hierarchy as shown in the +below Figure. + +.. figure:: _static/sf10.png + :align: center + :width: 1000 + :alt: alternate text + + Comparison Report with reordered Scenarios + +Constraints +----------- + +Constraints are also available in the left side panel that identifies +the metrics that are overcapacity (highlighted in RED fonts) or still +have opportunities for further improvements (WHITE fonts). + +Notes: + +- RED fonts means over capacity as compared to the maximum limit. (e.g. + Production Rate 1.680 tonnes per hour is over capacity as compared to + the maximum limit of 1.600 tonnes per hour). + +- WHITE fonts means still have opportunities for improvement as + compared to the maximum limit. + +.. figure:: _static/4.23.png + :align: center + :alt: alternate text + + Constraints + +.. figure:: _static/4.24.png + :align: center + :alt: alternate text + + Constraints + +Visualization +------------- + +Visualization is available in the left side Navigation panel which helps the users view the Tree in the Table or Tree format based on their choice. +By using the View Mode, the user can select three different view modes namely Full, Standard and Minimal to view the +Tree or Table Format. + +The below Figure represents the Tree View Format with the View Mode being selected as "Full". Here you can observe that the +Nodes will be displayed in Full mode. + +.. figure:: _static/4.25.png + :align: center + :width: 1000 + :alt: alternate text + + Visualization - Display as Tree and View Mode selected as Full + +The below Figure represents the Table View Format with the View Mode being selected as "Standard". Here you can observe that the +Table view will show the Primary value, Comparison value, Variance and Variance % values for the Full Year. + +.. figure:: _static/4.26.png + :align: center + :width: 1000 + :alt: alternate text + + Visualization - Display as Table and View Mode selected as Standard + +When the View Mode is selected as "Full", then you will be able to view the Table with Primary value, Comparison value, Variance and Variance % values for the Full Year and also the same set of values for the Month. + +When the View Mode is selected as "Minimal", then you will be able to view only the Primary value and Comparison value for the Full Year. + +Contextual Help Information +--------------------------- + +As part of the New Release, the Contextual Help Information feature has been included in the Advance Editor window by which the user can be +directed to the specific help page. For our example, navigate to the Settings Tab and click the +Navigation Panel. You can view the Contextual Help Information icon (see Figure below). + +.. figure:: _static/con1.png + :align: center + :alt: alternate text + + Icon for Contextual Help Information + +By clicking the Contextual Help Information icon, you will be redirected to the Help Information page for the Navigation Panel. + + + +Understanding Variances +======================= + +The starting point for a simulation is a selection of two versions - +**Primary Version** and a **Comparison Version** and a year. For +instance a forecast vs current budget. + +Once we start simulating, changes are applied to the primary version. We +call this changing version the Simulation. + +To understand the improvements we achieve, we also keep track of the +original values from the primary version without simulation changes. We +therefore have 3 data series in the model that we calculate and compare: + +1. Simulation (The Primary Version including applied variations) + +2. Original (The Primary Version without variations) + +3. Target (The Comparison Version) + +Based on the above, we calculate the following variances: + +- Simulated Variance (Simulation vs Target) + +Q: If we changed these things, would we hit target? + +- Simulation Impact (Simulation vs Original) + +Q: How much would we improve if we made these changes? + +- Original Variance (Original vs. Target) + +Q: What was our variance if we did nothing? + +Understanding the Node Widget Information +========================================= + +The Node Widget for a Value Driver displays key information such as +value, variance, simulation impacts and trend without having to navigate +further. + +.. figure:: _static/6.1.png + :align: center + :width: 1000 + :alt: alternate text + + Node Widget Information + +Conducting what-if analysis +=========================== + +One of the main aspects of the valQ Custom Visual is to be able to +simulate the impacts changes to key drivers such as prices have on the +full year forecast. As we can’t change the past, such a simulated change +should only be applied to future period. The valQ Custom Visual have +this capability. When performing what-if analysis, the period that a +simulation should be applied from is selected in the Side Panel (current +period is default): + +.. figure:: _static/7.1.png + :align: center + :width: 1000 + :alt: alternate text + + What-if-Analysis + +Assuming that we calculate fuel cost based on litre per month and price +as $/l and we are at the end of period 9, the simulated cost should be +calculated first at the monthly level with the % change applied to +period 9 and onwards. Once the individual months are calculated, they +can then be aggregated based on the rule of the node (sum for diesel +cost, weighted average for diesel price): + +.. figure:: _static/formula.png + :align: center + :alt: alternate text + +When hovering over a node, the bottom half of the node becomes a slider. +Drag the slider left to vary the node by a negatively, drag right for +positive. As you drag, the values for the selected node is dynamically +recalculated and displayed. When releasing, the tree will immediately +recalculate all dependent nodes and show the result. + +.. figure:: _static/7.2.png + :align: center + :alt: alternate text + + Simulation + +A simulation change is either a pct. Change, a fixed future price or a +pct. Growth depending on the simulation model defined for the value +driver. + +The default method for the driver can be seen on the simulation tooltip. +You can also change the selected model by selecting at the bottom of the +tooltip. + +.. figure:: _static/7.3.png + :align: center + :alt: alternate text + + Simulation Tooltip + +Understanding that a change is applied to the selected periods only is +particularly important to understand when displaying the Full Year value +and the node is using a weighted average. The displayed value is the +weighted average value for the full year, not the value for future +periods. + +A simplified example will help understanding this critical concept. +Let’s assume that the diesel price is $1.014 for all periods and the +monthly fuel consumption is constant as well at 1m litres and we have +selected period 9 as we want to apply the simulation to the remaining +periods of the year. + +We now drag the slider for the fuel price to the right and the node will +show the new weighted average value. Let’s say we drag it to the right +so the full year weighted average is $1.030. As the first 8 periods were +$1.014, the weighted average of $1.030 means that the simulated price +change is equivalent of a future fuel price of $1.20. To better +understand the individual future period simulations when looking a Full +Year aggregated number, it is useful to pay attention to the Month Data +also shown on the node. The real world is a little more complex as the +price is not necessarily the same every month and the fuel consumed is +unlikely to be constant as well. Below is an example of such a +simulation based on a real data set: + +.. figure:: _static/7.4.png + :align: center + :alt: alternate text + + Simulation + +The weighted average price was 1.014. We now simulated a 2% increase in +the prices selected and future periods which equates to a new weighted +average price of 1.030. If you look at the month Value, you can see for +the selected month, this equates to the higher price of 1.195. + +Multiple variations can be applied in parallel as they are expressed as +pct. The top left % indicate the cumulative impact on this particular +node of all simulation that impacts it. + +Any node with a variation will have the blue pen icon in the top middle +showing the percentage the node has been varied with. For quick what-if +analysis at any level and a dynamic work process from the general to the +specific, you can apply a simulation on any level. + +Certain nodes may have been locked from changes in the model. This is +generally when there is a specific reason not to vary this node directly +for consistency purposes. A locked node will not have the grey pen icon +|..image::_static/image48|\ or a slider when hovering. + +Certain nodes may be displayed multiple times in the tree. An example is +Material Moved as it affects Mining and Mill Throughput. In these +scenarios, one node is linked to the other. If you simulate a change in +a linked node, the node it is pointing to is instead changed so it +applies both to the selected node and anywhere else where the driver is +used. If a node is a linked node, it has the Linked node text in the +bottom right corner: + +.. figure:: _static/7.5.png + :align: center + :alt: alternate text + + Simulation + +Getting more information about a Value driver +============================================= + +If you click on a node Widget, a Pop up screen is displayed with +additional information on the selected node. + +.. figure:: _static/8.1.png + :align: center + :width: 1000 + :alt: alternate text + + Information on Value Driver + +For some nodes, the designer may have added a description beyond the +title. If so, this will be displayed below the title. + +If a node is calculated, a simplified version of the formula is +displayed. This is the technical formula that is used to calculate +individual period values. To calculate the real values, all simulation +variations that affects the node are applied to selected and future +periods and the aggregation rules for the node is applied (sum or +weighted average). + +The trend chart compares the simulated value to the comparison version +as well as showing the original value as the dotted line on the bar if +simulation variations are active. If you hover over the bar, you will +the see the details for the period. + +The table on the top right shows the period and full year values and the +variance calculations as per the definition previously in this document. + +The valQ Custom Visual also analyses all the active simulations to see +if any impacts this particular node. If so, it then analyses how much +each of the active simulation changes contributes to the overall impact +on this node and generates a waterfall diagram with the break down which +is displayed in the bottom right panel. + +In some scenarios, you may vary multiple factors impacting the same node +in a compound nature. I.e. you vary both sales volume and sales price +and want to know the impact on revenue. As the sum of both changes is +more than the impact of each individually, the waterfall chart breaks +down each of the individual impacts and a compound impact bar. + +As part of the latest Release, you will be able to view the Value Display Tooltip by hovering the mouse over the Trend Chart Area +in the Pop up screen (see Figure below). Also you can view the data labels for the X Axis. The values representing the loss status will be in Red +color and the values representing the gain status will be in Green color as shown in the below Figure. + +.. figure:: _static/12.25a.png + :align: center + :width: 1000 + :alt: alternate text + + Pop up screen Display + +For more details on Pop up screen, you can refer the link: https://valq.com/blogs/video-valq-pop-up-screen-nodes + +Saving and Opening Scenarios +============================= + +The standard valQ Custom Visual template contains functionality for +saving and opening a scenario collection. + +When clicking the Edit button |..image::_static/image51| , you will be asked to provide a +Scenario Title Name. + +.. figure:: _static/9.1.png + :align: center + :alt: alternate text + + Scenario Title Name + +You will be also able to delete the existing scenario from there using +the Delete button |..image::_static/image53|. + +There is also an option to export the value driver tree data set to xml. +It will create an unformatted spreadsheet with the tree and all the node +data. + +.. |visualBI_final| image:: media/image1.png + :width: 2.30208in + :height: 0.88542in +.. |..image::_static/image2| image:: media/image2.png + :width: 7.08194in + :height: 4.01458in +.. |4| image:: media/image3.jpeg + :width: 5.90625in + :height: 3.61458in +.. |..image::_static/image4| image:: media/image4.png + :width: 0.14583in + :height: 0.17708in +.. |..image::_static/image7| image:: media/image7.png + :width: 1.26656in + :height: 0.19667in +.. |..image::_static/image8| image:: media/image7.png + :width: 1.26656in + :height: 0.19667in +.. |..image::_static/image9| image:: media/image8.png + :width: 2.81215in + :height: 1.11444in +.. |..image::_static/image10| image:: media/image9.png + :width: 7.08194in + :height: 4.00833in +.. |..image::_static/image11| image:: media/image10.png + :width: 0.25in + :height: 0.23958in +.. |..image::_static/image12| image:: media/image11.png + :width: 7.08194in + :height: 3.97639in +.. |..image::_static/image13| image:: media/image12.png + :width: 7.08194in + :height: 3.13681in +.. |..image::_static/image14| image:: media/image13.png + :width: 7.08194in + :height: 3.22778in +.. |..image::_static/image15| image:: media/image10.png + :width: 0.25in + :height: 0.23958in +.. |..image::_static/image16| image:: media/image14.png + :width: 7.08194in + :height: 3.09583in +.. |..image::_static/image17| image:: media/image15.png + :width: 2.79132in + :height: 1.02071in +.. |..image::_static/image18| image:: media/image16.png + :width: 7.08194in + :height: 1.87431in +.. |..image::_static/image19| image:: media/image17.png + :width: 0.28125in + :height: 0.29167in +.. |..image::_static/image20| image:: media/image18.png + :width: 0.5625in + :height: 0.25in +.. |..image::_static/image22| image:: media/image20.png + :width: 0.1875in + :height: 0.16667in +.. |..image::_static/image23| image:: media/image21.png + :width: 0.16667in + :height: 0.1875in +.. |..image::_static/image27| image:: media/image25.png + :width: 0.21875in + :height: 0.21875in +.. |..image::_static/image28| image:: media/image26.png + :width: 0.16665in + :height: 0.18748in +.. |..image::_static/image29| image:: media/image27.png + :width: 2.68716in + :height: 1.18735in +.. |C:\Users\GANESH~1\AppData\Local\Temp\SNAGHTMLa5e88063.PNG| image:: media/image29.png + :width: 7.00759in + :height: 3.51042in +.. |..image::_static/image32| image:: media/image30.png + :width: 2.31221in + :height: 0.31246in +.. |..image::_static/image33| image:: media/image31.png + :width: 0.14581in + :height: 0.1354in +.. |..image::_static/image34| image:: media/image32.png + :width: 0.21872in + :height: 0.14581in +.. |..image::_static/image35| image:: media/image33.png + :width: 6.63459in + :height: 3.08295in +.. |..image::_static/image36| image:: media/image34.png + :width: 0.35417in + :height: 0.20833in +.. |..image::_static/image37| image:: media/image35.png + :width: 0.21872in + :height: 0.16665in +.. |..image::_static/image38| image:: media/image36.png + :width: 0.17706in + :height: 0.1354in +.. |..image::_static/image39| image:: media/image37.png + :width: 7.08194in + :height: 3.42222in +.. |..image::_static/image41| image:: media/image39.png + :width: 2.82292in + :height: 0.97917in +.. |6| image:: media/image41.jpeg + :width: 7.07292in + :height: 3.65625in +.. |..image::_static/image44| image:: media/image42.png + :width: 7.08194in + :height: 2.85347in +.. |7| image:: media/image43.jpeg + :width: 4.09375in + :height: 1.91667in +.. |..image::_static/image48| image:: media/image46.png + :width: 0.19792in + :height: 0.13542in +.. |8| image:: media/image48.jpeg + :width: 7.08194in + :height: 3.98194in +.. |..image::_static/image51| image:: media/image49.png + :width: 0.21872in + :height: 0.19789in +.. |..image::_static/image52| image:: media/image50.png + :width: 3.43707in + :height: 2.6455in +.. |..image::_static/image53| image:: media/image51.png + :width: 0.18748in + :height: 0.15623in +.. |..image::_static/image54| image:: media/image52.png + :width: 0.20833in + :height: 0.19231in +.. |..image::_static/image55| image:: media/image53.png + :width: 0.17708in + :height: 0.17708in +.. |..image::_static/image56| image:: media/image54.png + :width: 7.08194in + :height: 3.30625in +.. |..image::_static/image57| image:: media/image55.png + :width: 7.08194in + :height: 3.29722in +.. |..image::_static/image58| image:: media/image56.png + :width: 7.08194in + :height: 3.39097in +.. |..image::_static/image59| image:: media/image57.png + :width: 6.90625in + :height: 4.96147in +.. |..image::_static/image60| image:: media/image58.png + :width: 7.08194in + :height: 3.42639in +.. |..image::_static/image61| image:: media/image59.png + :width: 2.66597in + :height: 5.02083in +.. |..image::_static/image62| image:: media/image60.png + :width: 4.34375in + :height: 3.64192in +.. |..image::_static/image63| image:: media/image61.png + :width: 7.08194in + :height: 3.24931in +.. |..image::_static/image64| image:: media/image62.png + :width: 7.08194in + :height: 4.00694in +.. |C:\Users\GANESH~1\AppData\Local\Temp\SNAGHTML95dcd268.PNG| image:: media/image63.png + :width: 6.50377in + :height: 3.66038in +.. |..image::_static/image66| image:: media/image64.png + :width: 2.75in + :height: 3.59891in +.. |..image::_static/image67| image:: media/image65.png + :width: 6.07292in + :height: 3.72426in +.. |..image::_static/image68| image:: media/image66.png + :width: 4.28555in + :height: 3.59375in +.. |..image::_static/image69| image:: media/image67.png + :width: 7.08194in + :height: 4.00139in +.. |..image::_static/image70| image:: media/image68.png + :width: 4.25in + :height: 3.55574in +.. |..image::_static/image71| image:: media/image69.png + :width: 4.20365in + :height: 3.54167in +.. |..image::_static/image72| image:: media/image70.png + :width: 7.08194in + :height: 3.76458in +.. |..image::_static/image73| image:: media/image71.png + :width: 7.08194in + :height: 3.68819in +.. |..image::_static/image74| image:: media/image72.png + :width: 3.8934in + :height: 3.25in +.. |..image::_static/image75| image:: media/image73.png + :width: 6.25795in + :height: 3.22639in +.. |..image::_static/image76| image:: media/image74.png + :width: 3.68627in + :height: 4.40625in +.. |..image::_static/image77| image:: media/image75.png + :width: 7.08194in + :height: 3.99583in +.. |..image::_static/image78| image:: media/image76.png + :width: 7.08194in + :height: 3.99722in +.. |..image::_static/image79| image:: media/image77.png + :width: 3.47938in + :height: 2.95008in +.. |..image::_static/image80| image:: media/image78.png + :width: 5.79813in + :height: 4.35661in +.. |C:\Users\GANESH~1\AppData\Local\Temp\SNAGHTMLba665f5.PNG| image:: media/image79.png + :width: 4.0625in + :height: 3.04352in +.. |..image::_static/image82| image:: media/image78.png + :width: 2.03125in + :height: 2.65625in +.. |..image::_static/image83| image:: media/image80.png + :width: 6.70694in + :height: 3.88056in +.. |..image::_static/image84| image:: media/image81.png + :width: 3.75319in + :height: 3.67708in +.. |..image::_static/image85| image:: media/image82.png + :width: 7.08194in + :height: 4.00625in +.. |..image::_static/image86| image:: media/image83.png + :width: 7.08194in + :height: 3.29722in +.. |..image::_static/image87| image:: media/image84.png + :width: 7.08194in + :height: 3.28125in +.. |..image::_static/image88| image:: media/image85.png + :width: 7.08194in + :height: 3.525in +.. |..image::_static/image89| image:: media/image86.png + :width: 7.08194in + :height: 3.09097in +.. |..image::_static/image90| image:: media/image87.png + :width: 4.29613in + :height: 3.59375in +.. |..image::_static/image91| image:: media/image88.png + :width: 4.45313in + :height: 3.75in +.. |..image::_static/image92| image:: media/image89.png + :width: 7.08194in + :height: 4.03542in +.. |..image::_static/image93| image:: media/image90.png + :width: 7.08194in + :height: 4.03056in +.. |..image::_static/image94| image:: media/image91.png + :width: 4.58276in + :height: 3.89535in +.. |..image::_static/image95| image:: media/image92.png + :width: 7.08194in + :height: 3.98889in +.. |..image::_static/image96| image:: media/image93.png + :width: 4.19429in + :height: 3.44792in +.. |..image::_static/image97| image:: media/image94.png + :width: 7.08194in + :height: 4.02639in +.. |..image::_static/image98| image:: media/image95.png + :width: 7.08194in + :height: 4.00833in +.. |..image::_static/image99| image:: media/image96.png + :width: 7.08194in + :height: 4.06042in +.. |..image::_static/image100| image:: media/image97.png + :width: 5.17221in + :height: 1.625in +.. |..image::_static/image101| image:: media/image98.png + :width: 5.08333in + :height: 1.72568in +.. |..image::_static/image102| image:: media/image99.png + :width: 3.95314in + :height: 3.33333in +.. |..image::_static/image103| image:: media/image100.png + :width: 4.2054in + :height: 3.53125in +.. |..image::_static/image104| image:: media/image101.png + :width: 7.08194in + :height: 3.96181in +.. |..image::_static/image105| image:: media/image102.png + :width: 7.08194in + :height: 4.05208in +.. |..image::_static/image106| image:: media/image103.png + :width: 7.08194in + :height: 4.01181in +.. |..image::_static/image107| image:: media/image104.png + :width: 7.08194in + :height: 1.71042in +.. |..image::_static/image108| image:: media/image105.png + :width: 2.51042in + :height: 5.21734in +.. |..image::_static/image109| image:: media/image106.png + :width: 7.08194in + :height: 4.05625in +.. |..image::_static/image110| image:: media/image107.png + :width: 2.34375in + :height: 6.9482in +.. |..image::_static/image111| image:: media/image108.png + :width: 7.08194in + :height: 4.02986in +.. |..image::_static/image112| image:: media/image109.png + :width: 2.56915in + :height: 5.23958in +.. |..image::_static/image113| image:: media/image110.png + :width: 7.08194in + :height: 3.33889in +.. |..image::_static/image114| image:: media/image111.png + :width: 2.39583in + :height: 5.7632in +.. |..image::_static/image115| image:: media/image112.png + :width: 7.08194in + :height: 4.06389in +.. |..image::_static/image116| image:: media/image113.png + :width: 2.28516in + :height: 7.03831in +.. |..image::_static/image117| image:: media/image114.png + :width: 7.08194in + :height: 4.025in +.. |..image::_static/image118| image:: media/image115.png + :width: 6.64094in + :height: 3.27033in +.. |..image::_static/image119| image:: media/image116.png + :width: 7.08194in + :height: 4.03056in +.. |..image::_static/image120| image:: media/image117.png + :width: 7.08194in + :height: 3.93611in +.. |..image::_static/image121| image:: media/image118.png + :width: 2.26458in + :height: 9.81806in +.. |..image::_static/image122| image:: media/image119.png + :width: 7.08194in + :height: 3.99028in +.. |..image::_static/image123| image:: media/image120.png + :width: 7.08194in + :height: 3.93542in +.. |..image::_static/image124| image:: media/image121.png + :width: 7.08194in + :height: 3.93194in +.. |..image::_static/image125| image:: media/image122.png + :width: 6.97917in + :height: 3.92963in +.. |..image::_static/image126| image:: media/image123.png + :width: 2.34536in + :height: 4.85499in +.. |..image::_static/image127| image:: media/image124.png + :width: 7.08194in + :height: 3.99792in +.. |..image::_static/image128| image:: media/image125.png + :width: 2.4349in + :height: 5.83566in +.. |..image::_static/image129| image:: media/image126.png + :width: 7.08194in + :height: 3.99792in +.. |..image::_static/image130| image:: media/image127.png + :width: 2.5538in + :height: 4.0625in +.. |..image::_static/image131| image:: media/image128.png + :width: 7.08194in + :height: 3.525in +.. |..image::_static/image132| image:: media/image129.png + :width: 2.08905in + :height: 5.4474in +.. |..image::_static/image133| image:: media/image130.png + :width: 7.08194in + :height: 3.9625in +.. |..image::_static/image134| image:: media/image131.png + :width: 3.00341in + :height: 1.85724in +.. |..image::_static/image135| image:: media/image131.png + :width: 3.5245in + :height: 1.25111in +.. |..image::_static/image136| image:: media/image131.png + :width: 3.27752in + :height: 1.92063in +.. |..image::_static/image137| image:: media/image132.png + :width: 7.08194in + :height: 3.98125in +.. |..image::_static/image138| image:: media/image131.png + :width: 2.66026in + :height: 2.71066in +.. |..image::_static/image139| image:: media/image131.png + :width: 2.87005in + :height: 2.02208in +.. |..image::_static/image140| image:: media/image131.png + :width: 2.5347in + :height: 2.93203in +.. |..image::_static/image141| image:: media/image131.png + :width: 2.75138in + :height: 2.44786in +.. |..image::_static/image142| image:: media/image131.png + :width: 2.71702in + :height: 2.45061in +.. |..image::_static/image143| image:: media/image131.png + :width: 2.11442in + :height: 3.2169in +.. |..image::_static/image144| image:: media/image133.png + :width: 7.08194in + :height: 3.93819in +.. |..image::_static/image145| image:: media/image134.png + :width: 7.0625in + :height: 3.525in +.. |..image::_static/image146| image:: media/image135.png + :width: 7.08194in + :height: 4.11667in +.. |..image::_static/image147| image:: media/image136.png + :width: 7.08194in + :height: 2.86667in +.. |..image::_static/image148| image:: media/image137.png + :width: 1.95in + :height: 4.0581in diff --git a/source/Introduction.rst b/source/Introduction.rst new file mode 100644 index 0000000..a3a48e5 --- /dev/null +++ b/source/Introduction.rst @@ -0,0 +1,35 @@ +Introduction +============ + +Document History +**************** + +This document is valid for the releases shown in the Table below: + ++---------------+---------------+-------+----------------+ +| Major Release | Minor Release | Patch | Date | ++===============+===============+=======+================+ +| **1** | **0** | **0** | **May 2019\*** | ++---------------+---------------+-------+----------------+ +| 1 | 1 | 0 | July 2019 | ++---------------+---------------+-------+----------------+ + +*Document History* + +Who should read this guide? +*************************** + +This User Guide for valQ as Custom Visual for Microsoft Power BI offered +by Visual BI is meant for users that are going to use Apps leveraging +the valQ Custom Visual to analyse value driver relationships, compare +versions such as Forecast vs Current Budget and simulate what*if +scenarios such a change in price, volumes and efficiencies real*time. + +What is the Visual BI valQ for Power BI as a Custom Visual Component? +********************************************************************** + +valQ for Microsoft Power BI is a custom visual component which involves +mathematical or conceptual business models visualized in a way that +links the business KPI’s (what management or stakeholders care about) to +the operational drivers (the things that can be influenced to change the +KPI’s). \ No newline at end of file diff --git a/source/Knownissues.rst b/source/Knownissues.rst new file mode 100644 index 0000000..ef04076 --- /dev/null +++ b/source/Knownissues.rst @@ -0,0 +1,20 @@ +Known Issues and Limitations +============================ + +Below are the known issue as of the writing of the document. This list +will be updated in the online version to reflect the current state at +any point in time. + ++-----------------------------------+-----------------------------------+ +| **Known Issues and Limitations** | **Description** | ++-----------------------------------+-----------------------------------+ +| Pinch zoom is not supported in IE | The Pinch zoom doesn’t work | +| on Windows touch enabled devices | within Windows touch interfaces. | +| | A zoom slider has been added to | +| | ensure users has access to zoom | +| | even when | ++-----------------------------------+-----------------------------------+ + +*Known Issues and Limitations* + + diff --git a/source/ModelCategory.rst b/source/ModelCategory.rst new file mode 100644 index 0000000..d435d4a --- /dev/null +++ b/source/ModelCategory.rst @@ -0,0 +1,2500 @@ +Model Category +############## + +The Model category has two panels in which the left panel represents the Advanced Editor and the right panel +denotes the canvas which represents the Value Driver Tree visuals (see Figure below). + +.. figure:: _static/catg.png + :align: center + :alt: alternate text + + Left Panel and Right Canvas + +The Model Category has five different Tab options (see Figure below). + +.. figure:: _static/tabs.png + :align: center + :alt: alternate text + + Tab option for the Model Category + +The Tab options for the Model Category has been listed below: + + +1. New Tab – To configure the design for the Value Driver Tree using the + options such as Sample Demo Tree, Create a Simple Dynamic Tree, + Import an Advanced Tree and Create a New value driver tree from the + scratch. + +2. Node Tab – To configure the settings of Nodes and Child Nodes for the + Value Driver Tree + +3. Data Series Tab – To configure the data settings such as Data Series Manager, Time Aggregation Labels + and Data Sorting. + +4. Settings Tab – To configure the settings parameters such as Navigational Panel, Nodes, Canvas, Number Formatting, Conditional Formatting and Color Theme. + +5. General Tab – To configure the General settings such as License Registration, Export and Writeback functions. + +In the next sections, you will be able to understand on how to design a value driver tree +using these five different Tab categories in detail. + +As an initial step, follow the below steps to configure the design for +the value driver tree in Power BI. + +1. Navigate to the “Visualizations Panel” and “Fields” Panel in Power BI + (see Figure below). + +.. figure:: _static/11.1.png + :align: center + :width: 1000 + :alt: alternate text + + Power BI with Visualizations and Fields Panel + +2. In the Visualizations Panel, select the valQ Custom Visual and extend + the screen to its full view as shown in the Figure below. + +.. figure:: _static/eleven.png + :align: center + :width: 1000 + :alt: alternate text + + valQ Screen - Measures to be assigned + +3. To create a value driver tree (valQ) in Power BI, it is mandatory to + assign a Data Source to the value driver tree. For our example, a + data source (sample data shown below) has been assigned to the value + driver tree. + +.. figure:: _static/11.2.png + :align: center + :width: 1000 + :alt: alternate text + + Sample Data + +4. Now at least one Measure Value has to be assigned to the property + “Values” in Visualizations panel. In our example, we have assigned + the Measure Value “∑ Actual” to the property “Values” by clicking the + check box option against the Measure Value “∑ Actual” (see Figure + below). + +.. figure:: _static/11.3.png + :align: center + :width: 1000 + :alt: alternate text + + Assigning the Measure Value + +New Tab +======= + +The Value Driver Tree can be created in Power BI using the below listed +options by clicking the New Tab in the left panel (see Figure below) + +- Open a Sample Model + +- Create a Simple Model + +- Create an Advanced Model + +- Import an Advanced Model + +.. figure:: _static/12.1.png + :align: center + :alt: alternate text + + New Tab + +.. _OSM: + +Open a Sample Model +------------------- + +Click the “New” Tab in the left panel. Now navigate to the Open a Sample +Model option. You will be able to explore a Demo Tree. By clicking the +Open a Sample Model option, you will be able to view the Loading sample screen as shown below and also you +can search for the specific sample to get loaded (see Figure below). + +.. figure:: _static/12.2a.png + :align: center + :alt: alternate text + + Loading screen + +For our example, the sample “Mining Industry” has been selected. + +.. figure:: _static/12.2.png + :align: center + :alt: alternate text + + Selection of sample model + +Based on the selection, you will be able to view the valQ screen as shown +below. As part of the latest Release, each Node in the Advance Editor panel will be having an Icon +which represents the Node Type. + +.. figure:: _static/12.3.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Nodes settings + +The Nodes hierarchy will be displayed in the Advance Editor option as +shown in the above Figure. Here you will be able to add number of child +nodes from the parent node “Net Profit”. By clicking the Parent Node, +you will be able to add number of child nodes as shown below. Also you +will be able to expand, collapse and delete the entire Nodes Hierarchy +using the options “Expand”, “Collapse” and “Delete” (see Figure above). + +As part of the New Release, the "Lock" and "Unlock" options have been included in the +Advance Editor for the Node Tab (see Figure below). By clicking the lock option, you will not +be able to edit the configuration done for the Node (see Figure below). + +.. figure:: _static/lck1.png + :align: center + :width: 1000 + :alt: alternate text + + Lock option in Node Tab + +By clicking the Unlock option, you will be able to edit the configuration done for the Node (see Figure below). + +.. figure:: _static/lck2.png + :align: center + :width: 1000 + :alt: alternate text + + Unlock option in Node Tab + +By providing the Node Name in the Search option on the right canvas, you +will be able to search for the particular Node when there are more +number of nodes appearing on the right canvas. + +.. figure:: _static/12.4.png + :align: center + :width: 1000 + :alt: alternate text + + Node Search option in right canvas + +For our example, the Node name is given as “Operating Hours” and based +on the search you will be able to view the Node as shown in the Figure +below. + +.. figure:: _static/12.5.png + :align: center + :width: 1000 + :alt: alternate text + + Display of the Searched Node + +.. figure:: _static/12.6.png + :align: center + :alt: alternate text + + Nodes Structure with Add option + +In the above Figure, you can observe that by clicking the “+” button, a +Node “Copy of Net Profit” has been added. Similarly you can edit the +Parent Node details by clicking the Edit button as shown below. For our +example, the Edit button has been clicked. + +.. figure:: _static/12.7.png + :align: center + :alt: alternate text + + Nodes Structure with Edit option + +By clicking the Edit option you will be able to view the Edit Settings +for the Node. The Edit Settings are categorized as follows: + +1. General + +2. Configuration + +3. Display + +4. Simulation + +5. Business Definition + +6. Conditional Formatting + + + +General +~~~~~~~ + +In General settings you will be able to configure the Node details such +as Unique ID, Title and the Title Prefix when outside the Tree with the +values as shown in the below Figure. The Title Prefix can be set at Node +Level and during simulation it is useful to identify at which node the +parameter value changes. The additional properties of the Node Tab has +been listed in Section 13.2. + +.. figure:: _static/12.8.png + :align: center + :alt: alternate text + + Edit Node – General Settings + +Based on the above configuration, you will be able to view the valQ +screen as shown below. + +.. figure:: _static/12.9.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with General settings + +From the above Figure, you can observe that the Unique ID for the Parent +Node is “TOP” and the Title of the Parent Node is “Net Profit”. + +In our other example as shown below, we have configured the Title Prefix +for two different Nodes (see Figures below). + +.. figure:: _static/12.10.png + :align: center + :alt: alternate text + + Node with Prefix value as Spouse 1 + +.. figure:: _static/12.11.png + :align: center + :alt: alternate text + + Node with Prefix value as Spouse 2 + +Based on the above set of configurations, you will be able to view the +valQ screens as shown below. + +.. figure:: _static/12.12.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Spouse 1 Prefix + +.. figure:: _static/12.13.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Spouse 2 Prefix + +From the above two Figures you can observe that the “Gross Salary” is +the common Title for two different Nodes. In order to differentiate +them, we have provided the value for “Title Prefix when outside the +Tree” as Spouse1 for one Node and Spouse 2 for the other Node. After +simulation, you can see which Node’s value has been changed. + +Configuration +~~~~~~~~~~~~~~ + +In Configuration Settings, you will be able to configure the Node +details such as Calculation Method, Time Aggregation, Desired Trend and +Value Range with the values as shown in the below Figure. + +.. figure:: _static/12.14.png + :align: center + :alt: alternate text + + Edit Node – Configuration Settings + +Based on the above Configuration settings, you will be able to view the +valQ screen as shown in the below Figure. + +.. figure:: _static/12.15.png + :align: center + :width: 1000 + :alt: alternate text + + valQ with Configuration settings + +From the above Figure you can observe that in the Navigation Panel, the +value that is displayed in the Constraints section will lie in the range +from minimum 10 to maximum 100 for a specific month based on the +configuration done for the Value Range. In our example, the calculation +method is selected as “Subtract Children (a-b-c)” meaning that the child +node having greater value will get subtracted from the child node having +smaller value and its result will be displayed in the Parent Node. The +Time Aggregation is set to Sum of Periods where we have considered 12 +months as period. As the result of simulation, each Node will display +the values based on the Sum of Periods. Also the “Desired Trend” has +been set to the Increase option. When simulated, the desired Trend for +the Revenue will be increasing and the value for the Total Cost will be +decreasing. + +For other options of calculation method, you can refer the link: https://valq.com/blogs/assigning-values-to-nodes-in-valq/ + +For the Calculation Method being selected as "Data Source", you can follow the steps as explained in the following link : https://valq.com/blogs/3-methods-of-mapping-valq-nodes-to-data/ + +Template Nodes selection in Calculation Method +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Also you can create a Template Node for the already existing Node. It +is very specific that the Template Nodes should not map the Parent +Node. You need to select the particular Node and copy a Node under the +selected Node for creating the Template Node. + +In the below Figure as an example, you can observe that a copy of +Revenue Node has been created by the right click copy and paste actions. +Now the copied Revenue Node version is labelled as “Revenue 2” in +General Property of the Edit Node Window (see Figure below). + +.. figure:: _static/13.3.png + :align: center + :alt: alternate text + + Edit Node: Copy of Revenue Node labelled as Revenue 2 + +Now navigate to the Configuration property of the Edit Node Window. Set +the Calculation Method to the option Template based on the node. Also +set the Node to use as Template to the option 1:Revenue (see Figure +below). + +.. figure:: _static/13.4.png + :align: center + :alt: alternate text + + Edit Node: Calculation Method selected as Template based on other node and Revenue Node to be used as Template + +Based on the above configuration, you will be able to view the Templated +Node Revenue 2 having all its Nodes similar to the Revenue Node as per +our example. + +.. figure:: _static/13.5.png + :align: center + :width: 1000 + :alt: alternate text + + Templated Node + +Display +~~~~~~~~ + +In the Display Settings, you will be able to configure the Node Display +settings such as Node Display, Scale, Value Decimal Places, Value +Prefix, Value Suffix and Details on Click with the +values as shown in the below Figure. + +.. figure:: _static/12.16.png + :align: center + :alt: alternate text + + Edit Node – Display Settings + +Based on the above Display settings, you will be able to view the valQ +screen as shown in the below Figure. + +.. figure:: _static/12.17.png + :align: center + :width: 1000 + :alt: alternate text + + valQ with Display settings + +From the above Figure, you can observe that the Node Display is set to +“Show” option. The Scale has been set to the User Selected option and +now you can edit the Scaling options in the Value Display under Settings +Tab. When the Scale is set to other options you will not be able to edit +the Scaling options in the Value Display. You can also view the Nodes +with the values configured with Value Decimal Places as “0”, Value +Prefix as “$” and Value Suffix as “r”. + +Since the Details on Click option is enabled in the Display settings, +you can observe the Pop up screen being displayed after clicking the Node +“Net Profit” (see Figure below). If the Details on Click option is +disabled in the Display settings, then you will not be able to view the +Pop up screen. + +.. figure:: _static/12.18.png + :align: center + :width: 1000 + :alt: alternate text + + Pop up screen + +Composite Node Display +~~~~~~~~~~~~~~~~~~~~~~ + +A Node in a tree can now be added with a maximum of two composite nodes which can be taken from any nodes. +For our example, the below Figure shows the Tree structure with several nodes. + +.. figure:: _static/cnd1.png + :align: center + :width: 1000 + :alt: alternate text + + Tree with several nodes + +For our example, two child nodes from the Node “Total Cost” needs to be included as composite nodes to the +Node “Revenue”. For adding the composite nodes, go to the configuration settings window of the Node “Revenue” +by clicking the Edit and Configure Node option (see Figure below). + +.. figure:: _static/cnd2.png + :align: center + :width: 1000 + :alt: alternate text + + Adding Composite Nodes + +In the Edit Node panel, go to the Display settings and add the Nodes “10:Production Cost” and +“36: Realisation Cost” as Composite Nodes to the Node Revenue (see Figure above). Now the Tree +structure will get configured based on the above settings (see Figure below). + +.. figure:: _static/cnd3.png + :align: center + :width: 1000 + :alt: alternate text + + Tree with composite nodes + +You can observe that the Nodes “10:Production Cost” and “36: Realisation Cost” have been added as the +composite nodes to the node “Revenue”. Also when a simulation is done in the actual +Nodes (10:Production Cost” and “36: Realisation Cost), the similar simulation will get reflected in the +composite nodes and it is vice versa (see Figure below). + +.. figure:: _static/cnd4.png + :align: center + :width: 1000 + :alt: alternate text + + Composite Node with simulated values + +The composite nodes will have no effect in the Table view structure of the Tree. +In the Quick Editor screen, you can view the composite node ids in a separate column by enabling +the composite node option from the “selected columns” drop down menu (see Figure below). + +.. figure:: _static/cnd5.png + :align: center + :width: 1000 + :alt: alternate text + + Quick Editor with composite node id display + +Simulation +~~~~~~~~~~ + +In the Simulation Settings, you will be able to configure Simulation details such as selection +of Default Simulation Method and assigning the Node for the Linked Simulation (see Figure below). +You have the option to enable/disable the Simulation function for the Node (see Figure below). + +.. figure:: _static/12.19.png + :align: center + :alt: alternate text + + valQ with Simulation Settings + +In this Simulation Settings, you have selected the Default Method as +“Constant" for the Simulation and you have selected the Node for the +Linked Simulation as “First Node” (see Figure above). Based on the above +settings you will be able to view the valQ page as shown in the Figure +below. The other options for the Default Simulation Method are Change +Percentage, Manual and Growth Percentage. + +.. figure:: _static/12.20.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Constant value selection + +From the above Figure, you will be able to view the pop window as shown +in the above screen by clicking the Arrow icon in the Net Profit Node as +shown in the Figure below. + +.. figure:: _static/12.21.png + :align: center + :alt: alternate text + + Net Profit Node + +Now click the Edit option in the pop window as shown in the Figure +below. + +.. figure:: _static/12.22.png + :align: center + :width: 1000 + :alt: alternate text + + Edit option + +By clicking the Edit option, you will be able to view and edit the input +values for the Simulation Period (see Figure below). + +.. figure:: _static/12.23.png + :align: center + :width: 1000 + :alt: alternate text + + Edit Inputs for Simulation Periods + +For our example, the value for March month has been edited and as a +result it gets reflected for all the Nodes. + +Business Definition +~~~~~~~~~~~~~~~~~~~ + +Using this option, you will be able to configure the Business Definition +details such as Description, Header, Footer and Technical Notes with the +values as shown in the below Figure. + +.. figure:: _static/12.24.png + :align: center + :alt: alternate text + + valQ with Business Definition Settings + +Based on the above settings, you will be able to view the Business +Definitions details in the Pop up screen as shown below. + +.. figure:: _static/12.25.png + :align: center + :width: 1000 + :alt: alternate text + + Pop up screen with Business Definitions + +Conditional Formatting +~~~~~~~~~~~~~~~~~~~~~~ + +Using the Conditional Formatting option, you will be able to apply the Alert Thresholds and Rules at the specific Node Level (see Figure below). For our example, the Node "Revenue" +has been selected. + +.. figure:: _static/cfn1.png + :align: center + :alt: alternate text + + Conditional Formatting Settings for Node + +In the Conditional Formatting settings for the Node "Revenue", you have 3 different options as highlighted in the above Figure. + +When the option "Global or Inherited Rule" is selected, then the Conditional Formatting Rules configured as Global Level in the Settings Tab +will be applied here. + +Now set the option as "Custom Rule: Overwrites default or any inherited rules" as shown in the below Figure. + +.. figure:: _static/cfn2.png + :align: center + :alt: alternate text + + Conditional Formatting Settings for Node - Custom Rule option with Percentage selection + +The Custom Rule option can be configured based on variance percentage values and the values applied at period level (see Figure above). + +For our first example, set the option for the Custom Rule as "Percentage" and also enable the property "Apply to Descendants". Set the Threshold values as shown in the above Figure. +After simulation, you can find that the Variance percentage value for the Node "Revenue" falls in the Threshold range (4%)* which is between -10% to -1% and based on that condition, the status bar for the Node Revenue is yellow color (see Figure below). + +.. figure:: _static/cfn3.png + :align: center + :width: 1000 + :alt: alternate text + + Custom Rule option with Percentage value selection for the Node "Revenue" + +Also you can observe that the Descendant Node "Copper Price" has been updated with the same Threshold settings based on our configuration. +The Variance percentage value for the Descendant Node "Copper Price" falls in the Threshold range (8%)* which is Above 1% and based on that condition, the status bar for the Descendant Node "Copper Price" is green color (see Figure below). + +.. figure:: _static/cfn4.png + :align: center + :width: 1000 + :alt: alternate text + + Custom Rule option with Percentage value selection for the Descendant Node "Copper Price" + +For our second example, set the option for the Custom Rule as "Value (applied at Period Level) - see Figure below. + +.. figure:: _static/cfn5.png + :align: center + :alt: alternate text + + Custom Rule option with value selection for the Node "Revenue" + +Set the Threshold values as shown in the above Figure. After simulation, you can find that the +Metric value for the Node "Revenue" falls in the Threshold range (522.3)* which is Above 1 +and based on that condition, the status bar for the Node Revenue is green color (see Figure below). + +.. figure:: _static/cfn6.png + :align: center + :width: 1000 + :alt: alternate text + + Custom Rule option with Value selection for the Node "Revenue" + +**Note:** +"*" denotes that the Metric values get calculated based on the Period Level. For example when it is a Year, it will take the value of 12 being multiplied with the range value that we provide. + +Now set the option to "Hidden: No Rule will be applied to this Node". You can observe that no range values can be provided for the Conditional Formatting and since there will be no status color for that Node being simulated. + +Create a Simple Model +--------------------- + +Using this option, it is very simple for the beginners to create a tree +automatically based on their own data source. By clicking the Create a +Simple Model option, you will be able to view the valQ screen as shown +in the below Figure. + +.. figure:: _static/12.26.png + :align: center + :width: 1000 + :alt: alternate text + + Simple Dynamic Tree created with one single Measure + +By default, the Measure “Actual” has been selected as a Mandatory +criteria for getting the Tree widget. Now you can select the other +Measures and Dimensions based on your choice as indicated in the Figure +below. + +.. figure:: _static/12.27.png + :align: center + :width: 1000 + :alt: alternate text + + Simple Dynamic Tree created with Measures and Dimensions + +From the above Figure, you can observe that the other Measure “Forecast” +is assigned to “Value” and the Dimensions namely Account and Product has +been assigned to the “Category” and the Period_MON is assigned to “Time +period”. Now based the assigned data source, the Tree is being +configured. Hence now you can create a tree directly from your data. For +step by step instructions on how to get started to build a Dynamic +Model, please follow this link: +`https://ValQ.com/wp-content/uploads/ValQ-for-microsoft-power-bi-beginners-tutorial.pdf `__. + +**Note**: For Dynamic Model, you will be able to view the Root Node and +first three Nodes in the next level hierarchy under the Sub Models +section of the Navigation Panel (see Figure below). + +.. figure:: _static/dsm.png + :align: center + :width: 1000 + :alt: alternate text + + Sub Models Section showing the Root Node and first three Nodes in the next level hierarchy + + +Read only Dynamic Tree in Editor +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +When Dynamic Model is selected, you will be able to only view the value +driver tree with Parent and Children Nodes and you cannot undergo any +configuration part on it. But you can generate a copy of the Parent Node +and proceed with configuration part based on your choice (see Figure +below). + +.. figure:: _static/12.28.png + :align: center + :width: 1000 + :alt: alternate text + + Read Only Dynamic Tree + +Dynamic Scaling on Dynamic Tree +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Based on your data source, the value driver tree will get generated and +the Number Scaling for all the Nodes will be updated appropriately based +on the data source (see Figure below). For our example, the Number +Scaling is “0.0b”. + +.. figure:: _static/12.29.png + :align: center + :width: 1000 + :alt: alternate text + + Dynamic Scaling on Dynamic Tree + +As part of the New Release, you have the option to convert the Dynamic Model to an Advanced Model (see Figure below). + +.. figure:: _static/conv1.png + :align: center + :width: 1000 + :alt: alternate text + + Option for converting Dynamic Model to an Advanced Model + +When the option is clicked, now you will be prompted for the Message window as shown below. + +.. figure:: _static/conv1a.png + :align: center + :alt: alternate text + + Confirmation Message + +After clicking Yes, you will be able to edit the configuration for all the level of Nodes similar +to the Advance Model (see Figure below). + +.. figure:: _static/conv2.png + :align: center + :width: 1000 + :alt: alternate text + + Dynamic Model converted to an Advanced Model + +Create an Advanced Model +------------------------ + +This option is used to create a Tree in valQ manually Node by Node based +on your choice. By clicking the Create New from Scratch option, you will +be able to view the valQ screen as shown in the below Figure. + +.. figure:: _static/12.38.png + :align: center + :width: 1000 + :alt: alternate text + + Create New from Scratch + +For our example we have created a Parent Node and two child Nodes (see +Figure below). + +.. figure:: _static/12.39.png + :align: center + :width: 1000 + :alt: alternate text + + Tree with one Parent Node and two Child Nodes + +Now with the help of :ref:`Section: Open a Sample Model `, you will be able +to configure the General, Configuration, Display, Simulation, Business Definition and Conditional Formatting settings for the Tree (Please refer :ref:`Section: Open a Sample Model ` for +more details). + +Import an Advanced Model +------------------------ + +Using the “Import an Advanced Model” option, you will be able to import +data through two different options as shown below. + +.. figure:: _static/12.30.png + :align: center + :alt: alternate text + + valQ – Import from Excel + +Import from Excel +~~~~~~~~~~~~~~~~~ + +Using the option “Import from Excel”, you will be able to paste the JSON +File Data Format text into the Text Editor as shown in the below Figure. + +.. figure:: _static/12.31.png + :align: center + :alt: alternate text + + Configuration Data from Excel Format + +Now based on the above configuration, you will be able to view the Tree +formed with Nodes in the valQ screen. + +.. figure:: _static/12.32.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen derived from Excel Data + +As part of the New Release, you will be able to retain the existing Navigation +Panel configuration and apply the same for the next Tree configuration. +For our example, the Figure below shows the Navigation panel for the +first Tree configuration. + +.. figure:: _static/12.33.png + :align: center + :width: 1000 + :alt: alternate text + + Navigation Panel for the first tree configuration + +Now navigate to the Import an Advanced Model option in New Tab and paste +the JSON File Data Format text for the second tree into the Text Editor +as shown in the below Figure. + +.. figure:: _static/12.34.png + :align: center + :alt: alternate text + + Import a Tree + +Now select the option “I am reimporting the current model – retain my +settings” so that you will able to view the second tree configuration +being applied with the Navigation Panel settings already configured for +the first tree (see Figure below). + +.. figure:: _static/12.35.png + :align: center + :width: 1000 + :alt: alternate text + + Navigation Panel for the second tree configuration + +.. _IEF: + +Import from an Export File +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Using this option “Import from an Export File”, you will be able to +paste the Export file data format from an already exported tree data as +shown in the below Figure. This Export File will be generated by +navigating to the Settings Tab and by clicking the Export button. + +.. figure:: _static/12.36.png + :align: center + :alt: alternate text + + Configuration Data from Export File Data Format + +Now based on the above configuration, you will be able to view the Tree +formed with Nodes in the valQ screen. + +.. figure:: _static/12.37.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen derived from Export File Data Format + +Additional Properties of New Tab +-------------------------------- + ++-----------------------------------+-----------------------------------+ +| **Property** | **Description** | ++===================================+===================================+ +| Open a Sample Model | Using this model, you can load | +| | the required model from the | +| | sample valQ Models. The sample | +| | Models are Mining Industry, P&L | +| | for Small and Medium-Size | +| | Business, Personal Finance and | +| | Simple Sales Projections. | ++-----------------------------------+-----------------------------------+ +| Create a Simple Model | Using this Model, you can build a | +| | Dynamic valQ Model (For details, | +| | please refer: | +| | `https://ValQ.com/wp-content/uplo | +| | ads/ValQ-for-microsoft-power-bi-b | +| | eginners-tutorial.pdf `__ | +| | ) | ++-----------------------------------+-----------------------------------+ +| Create an Advanced Model | Using this Model, you can import | +| | a Tree by selecting the data from | +| | an Excel file or by selecting the | +| | data from an Export File. | ++-----------------------------------+-----------------------------------+ +| Import an Advanced Model | This Model can be used for | +| | creating a Tree with Nodes right | +| | from the beginning. | ++-----------------------------------+-----------------------------------+ + +*Additional Properties of New Tab* + +Node Tab +======== + +Each node represents a metric, and can contain the following: + +- Name of the value driver or KPI + +- A sparkline graph indicating the recent trend + +- The value of the metric in bold letters + +.. figure:: _static/13.1.png + :align: center + :alt: alternate text + + Node Details + +In addition, each node also contains several performance metrics (see +Figure below). They are listed as follows: + +- The Fiscal Year variance of the metric vs. a benchmark (in this case, + Sales Forecast vs. Sales Budget) – this is shown in both % and + absolute terms + +- Absolute value of the metric for the current month (usually the first + period in the series) + +- Variance of the metric vs. a benchmark for the current month – this + is shown in both % and absolute terms. + +A node may be decorated by a performance indicator color band on the +left – typically Green (for good), Amber (neither good nor bad) and Red +(Poor). + +.. figure:: _static/13.2.png + :align: center + :alt: alternate text + + Node Details + +The entire configuration part of the Node Tab has been already explained +in detail in :ref:`Section: Open a Sample Model `. + + +Quick Editor in Node Tab +------------------------ + +Using the Quick Editor option in the Node Tab, you will be able to view +the entire Tree Hierarchy in a Grid View. For our example, the below +Figure shows the normal Tree Hierarchy View. + +.. figure:: _static/qe1.png + :align: center + :width: 1000 + :alt: alternate text + + Normal Tree Hierarchy View + +After clicking the Quick Editor option as shown in the above Figure, you +will be able to view the Grid View as shown below. You can observe that +there will be a Business View information in the Formula column and it +will get displayed when you select the Business View option (see Figure +below). + +.. figure:: _static/qe2.png + :align: center + :width: 1000 + :alt: alternate text + + Grid View + +In the Grid View, you will be able to edit the changes and save it so +that the changes will get reflected in the Tree Structure which can be +viewed in the canvas. In the Grid View, you can also Expand and Collapse +the Node Structure using the Expand and Collapse icons (see Figure +below). + +.. figure:: _static/qe3.png + :align: center + :width: 1000 + :alt: alternate text + + Grid View in Expanded Form + +For our example, the above Figure shows the expanded form of the Grid +View. The below Figure shows the collapsed form of the Grid View. + +.. figure:: _static/qe4.png + :align: center + :width: 1000 + :alt: alternate text + + Grid View in Collapsed Form + +You will be able to import and export the data in the form of excel file +using the Import from Excel and Export to Excel buttons as shown in the +below Figure. + +.. figure:: _static/qe5.png + :align: center + :width: 1000 + :alt: alternate text + + Grid View - Import from Excel and Export to Excel + +The Export to Excel File button will be only functional in the web +version of the Power BI (see Figure below). + +.. figure:: _static/qe6.png + :align: center + :width: 1000 + :alt: alternate text + + Export to Excel File + +The exported file can be edited and it can be imported by clicking the +Import from Excel File button. + +.. figure:: _static/qe7.png + :align: center + :width: 1000 + :alt: alternate text + + Import from Excel File + +The import function can be done by browsing the location of the file +(see Figure below). + +.. figure:: _static/qe8.png + :align: center + :width: 1000 + :alt: alternate text + + File Location + +The Columns cab be filtered based on the selection from “Selected +Columns” Drop Down (see Figure below). All the Columns can be selected +to get displayed in the grid or the user can select the columns of their +choice. + +.. figure:: _static/qe9.png + :align: center + :width: 1000 + :alt: alternate text + + Filtering Columns in the grid + +The below Figure shows that all the columns are being selected and they +are displayed in the grid. The user can scroll the Horizontal scroll bar +in order to view the remaining columns. + +.. figure:: _static/qe10.png + :align: center + :width: 1000 + :alt: alternate text + + Grid Display with all the columns being selected. + +The below Figure shows that only the selected columns get displayed in +the grid. + +.. figure:: _static/qe11.png + :align: center + :width: 1000 + :alt: alternate text + + Grid Display with the selected columns + +Also the user has the option to edit the properties like Formula, +Calculation Method and Aggregation Method directly in the Grid view +where it gets updated in the actual properties in the Advanced Editor. +In our example, you can view that the Formula has been double clicked +for editing (see Figure below). + +.. figure:: _static/qe12.png + :align: center + :width: 1000 + :alt: alternate text + + Grid view edit for Formula Column + +The above Figure shows that the Formula for the row item Copper Sold has +been edited. As another example, the below Figure shows that the +Calculation Method has been edited. + +.. figure:: _static/qe13.png + :align: center + :width: 1000 + :alt: alternate text + + Grid view edit for Calculation Method Column + +In a similar way, the following columns can be edited in the Grid view. + +- Manual Data for Primary + +- Manual Data for Comparison + +The below Figures represents the screen shots for both Manual Data for +Primary and Manual Data for Secondary. + +.. figure:: _static/qe14.png + :align: center + :width: 1000 + :alt: alternate text + + Grid View Edit for Primary Data + +.. figure:: _static/qe15.png + :align: center + :width: 1000 + :alt: alternate text + + Grid View Edit for Comparison Data + +The Node Search for the columns Linked Node, Linked Simulation Node and +Weighted Average Node in the Data Grid will be in Drop Down List and the +user can select the appropriate Node from the Drop Down List. For our +example, the Node Search for the Linked Simulation Node has been done +(see Figure below). + +.. figure:: _static/qe16.png + :align: center + :width: 1000 + :alt: alternate text + + Node Search for Linked Simulation Node Column + +Similarly the Node Search for the Source Key Column will be in Drop Down +List showing the Nodes from the assigned Data Source and the user can +select the appropriate Node from the Drop Down List (see Figure below). + +.. figure:: _static/qe17.png + :align: center + :width: 1000 + :alt: alternate text + + Node Search for Source Key Column + +There is an option to lock the simulation for the Node in the Grid View. +The same function can be also done in the exported Excel File and the +Excel file can be imported in the Grid to see the updates done for the +locked simulation. + +The below Figure shows the Locked Simulation in the Grid View. + +.. figure:: _static/qe18.png + :align: center + :width: 1000 + :alt: alternate text + + Locked Simulation in Grid View + +The below Figure shows the Locked Simulation in the Excel File which can +be imported to the Grid view. + +.. figure:: _static/qe19.png + :align: center + :width: 1000 + :alt: alternate text + + Locked Simulation in Excel File + +The rows can be reordered for the child nodes which exists under a +Parent Node. The below Figure shows the Grid view before reordering the +child nodes. + +.. figure:: _static/qe20.png + :align: center + :width: 1000 + :alt: alternate text + + Grid view before reordering the child nodes + +The below Figure shows the Grid view after reordering the child nodes. + +.. figure:: _static/qe21.png + :align: center + :width: 1000 + :alt: alternate text + + Grid view after reordering the child nodes + +Additional Properties of Node Tab +--------------------------------- + ++-----------------------+-----------------------+-----------------------+ +| **Area** | **Property** | **Description** | ++=======================+=======================+=======================+ +| General | Unique ID | This property shows | +| | | the Unique ID for the | +| | | Node and it can be | +| | | edited. | ++-----------------------+-----------------------+-----------------------+ +| | Title | This property sets | +| | | the Title for Node. | ++-----------------------+-----------------------+-----------------------+ +| | Title Prefix when | This property sets | +| | outside Tree | the Title Prefix for | +| | | the Node when outside | +| | | the Tree. | ++-----------------------+-----------------------+-----------------------+ +| Configuration | Calculation Method | This property sets | +| | | the Calculation | +| | | Method for the Node. | +| | | The options are Data | +| | | Source, Sum Children | +| | | (a+b+c….), Subtract | +| | | Children (a-b-c….), | +| | | Multiply Children | +| | | (a*b*c….), Divide | +| | | Children (a/b/c….), | +| | | Formula, Linked to | +| | | Node, Manual and | +| | | Templated based on | +| | | other node. | +| | | | +| | | **Note:** When the | +| | | Calc. Method is | +| | | selected as Linked to | +| | | Node option, then you | +| | | can select the | +| | | desired Node from the | +| | | Nodes List. | ++-----------------------+-----------------------+-----------------------+ +| | Source Key | This property sets | +| | | the Source Key for | +| | | the Node. You can map | +| | | the Node value with | +| | | data source using the | +| | | source key. | ++-----------------------+-----------------------+-----------------------+ +| | Time Aggregation | This property sets | +| | | the Time Aggregation | +| | | for the Node. The | +| | | options are Sum of | +| | | Periods, Average, | +| | | Formula, Last and | +| | | Cumulative. | ++-----------------------+-----------------------+-----------------------+ +| | Desired Trend | This property sets | +| | | the Desired Trend for | +| | | the Node. The options | +| | | are Decrease and | +| | | Increase. | +| | | | +| | | For example, the | +| | | desired Trend for the | +| | | Revenue usually | +| | | increases and the | +| | | desired Trend for the | +| | | Cost decreases. | ++-----------------------+-----------------------+-----------------------+ +| | Value Range | This property sets | +| | | the Value Range for | +| | | the Node. | ++-----------------------+-----------------------+-----------------------+ +| | Dynamic Children from | If the referenced | +| | Data Source | data source row is a | +| | | hierarchy node with | +| | | children or has | +| | | dimension below in | +| | | the data source, the | +| | | children can be | +| | | automatically | +| | | generated based on | +| | | the data source. | +| | | | +| | | If Node Mapping | +| | | selected is | +| | | "Automatic based on | +| | | text" then any | +| | | special character and | +| | | space in the member | +| | | text will be replaced | +| | | by "__"(double | +| | | underscore) in the | +| | | Unique Id for the | +| | | Node. Eg. "Total | +| | | Cost" will become | +| | | "Total__Cost". | ++-----------------------+-----------------------+-----------------------+ +| | Dynamic Children | Children settings | +| | Simulation | will generally be | +| | | cascaded from the | +| | | configuration of this | +| | | node except | +| | | visualization, | +| | | calculation method | +| | | and simulation. The | +| | | children will always | +| | | be with visual style | +| | | normal. Aggregation | +| | | formulas can | +| | | dynamically be | +| | | generated and | +| | | simulation feature | +| | | set based on the | +| | | below options like | +| | | All, Nodes w/o | +| | | children and None. | ++-----------------------+-----------------------+-----------------------+ +| Display | Node display | This property decides | +| | | on how the Node will | +| | | be displayed in the | +| | | Tree Widget. The | +| | | options are Show, | +| | | Derived and Hidden. | ++-----------------------+-----------------------+-----------------------+ +| | Scale | This property sets | +| | | the Scale for the | +| | | Node. The options are | +| | | None, User Selected, | +| | | 0m, 0k and Pct. | ++-----------------------+-----------------------+-----------------------+ +| | Value Decimal Places | This property sets | +| | | the Value Decimal | +| | | Places for the Node. | +| | | The range is from 0 | +| | | to 7. | ++-----------------------+-----------------------+-----------------------+ +| | Value Prefix | This property sets | +| | | the Prefix Value for | +| | | the Node. | ++-----------------------+-----------------------+-----------------------+ +| | Value Suffix | This property sets | +| | | the Suffix Value for | +| | | the Node. | ++-----------------------+-----------------------+-----------------------+ +| | Details On Click | This property shows | +| | | the Pop up screen upon| +| | | clicking. | ++-----------------------+-----------------------+-----------------------+ +| Simulation | Enable Simulation | This property enables | +| | | or disables the | +| | | Simulation. | ++-----------------------+-----------------------+-----------------------+ +| | Default Method | This property sets | +| | | the Default Method | +| | | for the Simulation. | +| | | The options are | +| | | | +| | | 1. Change Percentage: | +| | | | +| | | % Change applied | +| | | to baseline in | +| | | future periods. | +| | | | +| | | 2. Manual: | +| | | | +| | | Values set | +| | | manually for each | +| | | period. | +| | | | +| | | 3. Growth Percentage: | +| | | | +| | | % Growth applied | +| | | to baseline in | +| | | future periods. | +| | | | +| | | 4. Constant: | +| | | | +| | | Constant Value for | +| | | future periods. | ++-----------------------+-----------------------+-----------------------+ +| | Linked Simulation | Using this property, | +| | | you can select the | +| | | desired Node from the | +| | | Nodes List for Linked | +| | | Simulation. It updates| +| | | the simulation | +| | | concurrently with the | +| | | Linked Node. | ++-----------------------+-----------------------+-----------------------+ +| Business Definition | | This information will | +| | | be included in each | +| | | node's details page | +| | | (open by clicking on | +| | | the node in the tree | +| | | widget). They are | +| | | listed as follows: | +| | | | +| | | 1. Description: | +| | | | +| | | This property sets | +| | | the Description | +| | | for the Node. | +| | | | +| | | 2. Header: | +| | | | +| | | This property sets | +| | | the Header for the | +| | | Node. | +| | | | +| | | 3. Footer: | +| | | | +| | | This property sets | +| | | the Footer for the | +| | | Node. | +| | | | +| | | 4. Technical Notes: | +| | | | +| | | This property sets | +| | | the Technical | +| | | Notes for the | +| | | Node. | ++-----------------------+-----------------------+-----------------------+ +| Conditional | | The Conditional | +| Formatting | | Formatting Rules can | +| | | be set for the Tree. | +| | | The options are | +| | | | +| | | 1. Global or | +| | | Inherited Rule | +| | | | +| | | 2. Custom Rule: | +| | | Overwrites default | +| | | or any inherited | +| | | rule. | +| | | | +| | | 3. Hidden: No Rule | +| | | will be applied to | +| | | the Node | +| | | | +| | | You can set the | +| | | values for the Color | +| | | Range. | +| | | | +| | | When the option is | +| | | selected as “Custom | +| | | Rule”, then you can | +| | | configure the Range | +| | | values at | +| | | Simulation/Variance | +| | | Percentage and Node | +| | | values applied at | +| | | Period Level. | ++-----------------------+-----------------------+-----------------------+ + +*Additional Properties of Node Tab* + +Data Series Tab +=============== + +Using the “Data Series” Tab, you will be able to configure the Data settings +for the Tree created in valQ. There are 3 different options as listed +below to configure the data settings for the Tree (see Figure below). + +1. Data Series Manager + +2. Time Aggregation Labels + +3. Data Sorting + +.. figure:: _static/dma.png + :align: center + :alt: alternate text + + Data Series Tab + +Data Series Manager +------------------- + +Using the option "Data Series Manager", you will be able to configure the +Periods and Data Series for the Tree (see Figure below). + +.. figure:: _static/dm1.png + :align: center + :alt: alternate text + + Data Series Tab – Data Series Manager + +For our example, we have the data source having periods from Jan to Dec, Budget and Forecast values. The Budget values will be the Comparison values and the Forecast values will be the Baseline values. +Follow the below steps for configuring the values in the Data Series Manager. + +1. Set the property Period(s) per data series to the value 5. +2. Configure the Period Labels as Jan, Feb, Mar, Apr, May (see Figure above). +3. Enable the property Include comparison data series. You can view both the Baseline and Comparison values. +4. When the property Include comparison data series is disabled, then you will be able to view only the Baseline Series. +5. Since our data set has the Additional values Additional 1 and Additional 2, it will be displayed as Additional Series (see Figure above). +6. When you click the Baseline label, you will be able view the Baseline values as Forecast values as shown below. + +.. figure:: _static/dm2.png + :align: center + :width: 1000 + :alt: alternate text + + Baseline Values + +7. When you click the Comparison label, you will be able view the Comparison values as the Budget values as shown below + +.. figure:: _static/dm3.png + :align: center + :width: 1000 + :alt: alternate text + + Comparison Values + +Based on the above set of configuration steps, you will be able to view the valQ screen as shown below. + +.. figure:: _static/dm4.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen configured with Periods and Data Series + +You can observe from the above Figure that after simulating the Node +Sale Allowances, you will be able to view the Baseline data in comparison +with simulated Baseline data. + +Time Aggregation Labels +----------------------- + +Using the option “Time Aggregation Labels”, you will be able to +configure the Active Period, Till Prior Period, All Periods and +Simulation Period settings (see Figure below). + +.. figure:: _static/14.7.png + :align: center + :alt: alternate text + + Data Label – Time Aggregation Labels + +Based on the above configuration, you will be able to view the valQ +screen as shown below. + +.. figure:: _static/14.8.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with time aggregation labels + +From the above Figure, you will be able to view the Time Aggregation +Labels as highlighted in the valQ screen. + +Data Sorting +------------ + +Using the Data Sorting settings, you will be able to view and customize +your Data Source. You will be able to select the Sort fields, sort the +data with Ascending or Descending Order and select the Start With field +with the required Month (see Figure below). + +.. figure:: _static/14.13.png + :align: center + :width: 1000 + :alt: alternate text + + Data Sorting Settings + +Additional Properties of Data Series Tab +----------------------------------------- + ++-----------------------+-----------------------+-----------------------+ +| Area | Property | Description | ++=======================+=======================+=======================+ +| Data Series Manager | Periods | Period(s) per data | +| | | series: It indicates | +| | | the number of values | +| | | in the series. As an | +| | | example, the series | +| | | with Jan, Feb and Mar | +| | | can be entered as 3 | +| | | periods. | ++-----------------------+-----------------------+-----------------------+ +| | | Period Label(s): The | +| | | Labels can be given | +| | | as Jan, Feb, Mar | +| | | (being separated by | +| | | commas. | ++-----------------------+-----------------------+-----------------------+ +| | Data Series | By enabling this | +| | | property, you will be | +| | | able to include the | +| | | Comparison Data | +| | | Series. | ++-----------------------+-----------------------+-----------------------+ +| | | The Preview shows all | +| | | the available Data | +| | | Series (both Baseline | +| | | and Comparison) and | +| | | the Additional | +| | | Series. | ++-----------------------+-----------------------+-----------------------+ +| Time Aggregation | | These labels are used | +| Labels | | in the navigation | +| | | panel, nodes and | +| | | popup screens. | ++-----------------------+-----------------------+-----------------------+ +| | Active period | This property sets | +| | | only one period of | +| | | interest. A Label and | +| | | a three letter | +| | | abbreviation can be | +| | | provided for this | +| | | property. | ++-----------------------+-----------------------+-----------------------+ +| | Till Prior Period | This property sets | +| | | Total value from | +| | | beginning to a | +| | | specific period. A | +| | | Label and a three | +| | | letter abbreviation | +| | | can be provided for | +| | | this property. | ++-----------------------+-----------------------+-----------------------+ +| | All periods | This property sets | +| | | Total value of all | +| | | periods in the | +| | | series. A Label and a | +| | | three letter | +| | | abbreviation can be | +| | | provided for this | +| | | property. | ++-----------------------+-----------------------+-----------------------+ +| | Simulation Period | This property sets a | +| | | specific set of | +| | | continuous periods. A | +| | | Label and a three | +| | | letter abbreviation | +| | | can be provided for | +| | | this property. | ++-----------------------+-----------------------+-----------------------+ +| Data Sorting | | The data can be | +| | | sorted using the | +| | | below filters: | +| | | | +| | | 1. Choose Sort | +| | | Field(s) from the | +| | | data source | +| | | | +| | | 2. Sort By: | +| | | Ascending/Descending | +| | | | +| | | 3. Start with entry | +| | | from the data source | ++-----------------------+-----------------------+-----------------------+ + +*Additional Properties of Data Series Tab* + +Settings Tab +============ + +Using the Settings Tab, you will be able to configure the settings for +the Navigation Panel, Nodes, Canvas, Number Formatting, Conditional Formatting and Color Theme. + +Navigation Panel +---------------- + +In the Settings Tab, you can enable/disable the Navigation Panel as shown in the below Figure. + +.. figure:: _static/edn.png + :align: center + :alt: alternate text + + Enable /Disable Navigation Panel + +In the Navigation Panel settings, you will be able to configure the entire settings for the Navigation Panel. The following properties can be configured for the Navigation Panel. + +1. Scenarios - You can enable/disable the Visibility option for the Scenarios using the Eye icon and also set the Label for the Scenario using the Edit icon in the Navigation Panel (see Figure below). + +.. figure:: _static/nav1.png + :align: center + :alt: alternate text + + Scenarios + +You will be also able to download the xml files of the Scenarios from the Scenario Window in the Navigation Panel by clicking the Download option (see Figure below). In our example, the data for the Scenario 2 has been downloaded. + +.. figure:: _static/16.4.png + :align: center + :width: 1000 + :alt: alternate text + + xml download of the Scenario 2 data + +2. Sub Models - You can enable/disable the Visibility option for the Sub Models using the Eye icon and set the Label for the Sub Models using the Edit icon and further select the Nodes from Tree/Sub-Tree List from the Navigation Panel. You can also enable/disable the property for filtering the list based on the selected sub tree (see Figure below). + +.. figure:: _static/nav2.png + :align: center + :alt: alternate text + + Scenarios + +3. Simulation Period - You can enable/disable the Visibility option for the Simulation Period using the Eye icon and also set the Label for the Simulation Period using the Edit icon in the Navigation Panel (see Figure below). + You can also set the Simulation Period Start and Simulation Period End. When you need to start the simulation from the + current month, then you can select the "Start to current Month" option (see Figure below). + +.. figure:: _static/nav3.png + :align: center + :alt: alternate text + + Simulation Period + +4. Value Display - You can enable/disable the Visibility option for the Value Display using the Eye icon and set the Label for the Value Display using the Edit icon. You can select the Primary Period, Scaling options and Default Scaling options for the Value Display in the Navigation Panel (see Figure below). + +.. figure:: _static/nav4.png + :align: center + :alt: alternate text + + Value Display + +5. Key Inputs - You can enable/disable the Visibility option for the Key Inputs using the Eye icon and set the Label for the Key Inputs using the Edit icon. Further you can also select the Key Assumptions to be displayed as List by selecting the required Nodes in the Navigation Panel (see Figure below). + +.. figure:: _static/nav5.png + :align: center + :alt: alternate text + + Key Inputs + +6. KPIs - You can enable/disable the Visibility option for the KPIs using the Eye icon, set the Label for the KPIs using the Edit icon and further select the KPIs to be displayed as List by selecting the required Nodes in the Navigation Panel (see Figure below). + +.. figure:: _static/nav6.png + :align: center + :alt: alternate text + + KPIs + +7. Constraints - You can enable/disable the Visibility option for the Constraints using the Eye icon, set the Label for the Constraints using the Edit icon and further select the Constraints to be displayed as List by selecting the required Nodes in the Navigation Panel. You can also enable/disable the property for sorting the constraints based on utilization (see Figure below). + +.. figure:: _static/nav7.png + :align: center + :alt: alternate text + + Constraints + +Based on the above settings, you will be able to view the valQ screen with "Exit Design Mode" button (see Figure below). + +.. figure:: _static/nav8.png + :align: center + :width: 1000 + :alt: alternate text + + Exit Design Mode + + +By clicking the Exit Design Mode button in the right canvas, you will be able to view the valQ screen with Navigation Panel based on the above set of configurations, (see Figure below). + +.. figure:: _static/nav9.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Navigation Panel + +Nodes +----- + +This Node settings allows you to map the Nodes to queries in the ID, Text or ID + Text Formats. In the Node Mapping settings in valQ, the Data Mapping Format has 2 options as listed below: +listed below (see Figure below). + +1. Map based on ID or Text - For example, you can use this option if the field value exactly matches your Node’s unique + ID or Text (e.g., Text - ‘Canada’) + +2. Map based on ID-Text Pair - For example, you can use this option if your field has a key-text format + (e.g., ‘CA:Canada’), and your Node’s ID corresponds to a key (e.g.,‘CA’). + +.. figure:: _static/nm1.png + :align: center + :alt: alternate text + + Data Mapping Format + +For our example, we would explore the settings for Map based on ID-Text Pair. The data source which is +assigned for the Node Mapping is shown below: + +.. figure:: _static/14.11.png + :align: center + :alt: alternate text + + Excel Data Source with Node Mapping + +From the above Figure, you will be able to view the Node ID as 6 and +Category as 6:SparklingWater_GrossSales. + +Based on the above configuration, you will be able to view the valQ +screen as shown below. + +.. figure:: _static/14.12.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Node Mapping + +From the above Figure, you will be able to observe that the key-text +format here is 6:SparklingWater_GrossSales. + +You will be also able to configure the Default Node Style with three different options namely Standard, Full and Minimal as shown in the +below Figure. + +.. figure:: _static/nm3.png + :align: center + :alt: alternate text + + Default Node Style + +You will be able to enable/disable the Node Elements like Variance, Trend Spark Line, Secondary Value/Variance and Descendant Node Count (see Figure below). + +.. figure:: _static/nm4.png + :align: center + :alt: alternate text + + Node Settings + +By enabling the option "Data Source Exception", you can use the Data provided in "Manual" Calculation Method +when the Data Source Method returns no value for the Node. + +For our example, the Waterfall Chart Type is selected as "Horizontal". Based on the above settings you will be able to +view the valQ screen as shown below. + +.. figure:: _static/nm5.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Node Settings + +From the above Figure, you can observe that the Node Styles is set to +“Standard” Type and the Node Elements like Variance, Trend Spark Line, +Secondary Value/Variance and Descendant Node Count are displayed in the Node +based on the configuration. + +By clicking the Node, you will observe that the Waterfall chart type in the Pop up screen is rendered as Horizontal Chart Type based on our settings (see Figure below). + +.. figure:: _static/nm6.png + :align: center + :width: 1000 + :alt: alternate text + + Pop up screen showing Horizontal Chart Type + +As part of the New Release, when the Node Style is selected as "Standard", you can view the Node Elements Variance, Trend Spark Line and Secondary Value/Variance being selected by default (see Figure below). + +.. figure:: _static/va1.png + :align: center + :alt: alternate text + + Node Elements for Standard Node Style + +When the Node Style is being selected as "Minimal", then you will be able to view only the Node element Variance being selected by default (see Figure below). + +.. figure:: _static/va2.png + :align: center + :alt: alternate text + + Node Element for Minimal Node Style + +When the Node Style is being selected as "Full", then you will be able to view all the Node elements without any default selection. + +Contribution and Performance Variance Percentage +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +As part of the New Release, you will be now able to view the Contribution and Performance Variance Percentage +being displayed at the Node Level. For our example, the Node Style has been selected as "Full" and the Node Elements: Variance, Contribution Percentage, Performance Variance Percentage, Trend Spark Line and Secondary Value/Variance +have been selected (see Figure below). + +.. figure:: _static/va3.png + :align: center + :alt: alternate text + + Node Style and Node Element Selection + +For our example, the property Sort Based On is set to the option "Contribution Percentage" and the property +Sort Order has been set to the option "Ascending" (see Figure above). + +Based on the above settings, you will be able view the Nodes displaying the Contribution Percentage values in Ascending order (see Figure below). + +.. figure:: _static/va4.png + :align: center + :width: 1000 + :alt: alternate text + + Node showing Contribution Percentage values in Ascending order + +Similarly, you will be also able to view the Performance Variance Percentage values in the Ascending Order +based on the configuration (see Figure below). + +.. figure:: _static/va5.png + :align: center + :width: 1000 + :alt: alternate text + + Node showing Performance Variance Percentage values in Ascending order + + +Canvas +------ + +In the Canvas settings, you will be able to configure the following properties: + +1. You can set the property Default Visual to the option Tree or Table based on your choice. For our + example, the property has been set to the option Table (see Figure below). + +.. figure:: _static/cv1.png + :align: center + :alt: alternate text + + Canvas with Default Visual settings + +Based on the above settings, you will be able to view the valQ screen with the Table appearance (see Figure below). + +.. figure:: _static/cv2.png + :align: center + :width: 1000 + :alt: alternate text + + Canvas with default Table Visual + +2. For our example, set the property "Start the model with the following KPI" to the option "9:Total Cost" (see Figure below). + +.. figure:: _static/cv3.png + :align: center + :alt: alternate text + + Canvas Settings + +3. Set the property " Expand hierarchy upto the following number of levels by default" to the value 2 (see Figure above). + +4. In the area Footer Toolbar, enable the property Enable Node Search and enable the property Enable Hiding Empty Nodes. + +5. Set the property Default Canvas Zoom (%) to the value 100. + +6. Set the property Default Table Style to the option "Standard". This settings for the Table can be visualized only when the property "Default Visual" is selected as "Table". + +7. Set the property Hint Text as "Hover a node and drag the slider left or right to simulate changes". + +Based on the above configuration, you will be able to view the valQ screen as shown below. + +.. figure:: _static/cv4.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Canvas Settings + +From the above Figure, you can observe that the first node starts with Total Cost. By default the Hierarchy of the Nodes are maintained upto 2 level. +The Node level Search is enabled and you will not be able to visualize the Nodes with empty values based on the above configuration. You will be able to view the Canvas zoomed at 100% and the Hint is appearing with the +Text as given in the settings. + + +Number Formatting +----------------- + +In the Number Formatting settings, you will be able to configure the following properties: + +1. In the area Scale Suffix, set the property Thousands to "k" (see Figure below). + +.. figure:: _static/nf1.png + :align: center + :alt: alternate text + + Number Formatting Settings + +2. Set the property Millions to "m" (see Figure above). +3. Set the property Billions to "b". +4. Set the property Trillions to "t". +5. In the area Display Formatting, set the property Display zeroes as to the option "0". +6. Set the property Display Negative values as to the option "(0)". +7. Set the property Decimal Separator to ".". +8. Set the property Thousands Separator to ",". + +Based on the above configuration, you will be able to view the valQ screen as shown below. + +.. figure:: _static/nf2.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Number Formatting Settings + +From the above Figure, you can observe that the zero value is displayed as "0" based on our configuration. The negative value has been +represented as "(5,690)". The thousand separator is represented as 6,942. The scale suffix settings will be displayed based on the +data set that we use. + +Conditional Formatting +---------------------- + +In the Conditional Formatting settings, you will be able to set Alert Threshold and Rules. You will be able to configure the +following properties for the Conditional Formatting. + +1. You can enable/disable the property Enable Conditional Formatting as shown in the below. + +.. figure:: _static/cf1.png + :align: center + :alt: alternate text + + Conditional Formatting Settings + +2. In the area Format based on, select the option Variance as shown in the above Figure. Now configure the + Formatting Threshold values as highlighted in the above Figure. Based on the above settings, you will + be able to view the Tree as shown below. + +.. figure:: _static/cf2.png + :align: center + :width: 1000 + :alt: alternate text + + Conditional Formatting - Format based on Variance Percentage + +3. After simulation, you can observe that the variance percentage value for the Node "Income" falls in the Threshold range 22% which is + above 0% and based on that condition, the status bar for the Node is green color (see Figure above). Similarly the variance percentage value for + the Node "Investment and Others" falls in the Threshold range (26%)* which is below -10% and based on that condition, the status bar for the Node is red color. + +4. Now select the option Simulation as shown in the below Figure. + +.. figure:: _static/cf3.png + :align: center + :alt: alternate text + + Conditional Formatting Settings + +5. Based on the above settings, you will be able to view the Tree as shown below. + +.. figure:: _static/cf4.png + :align: center + :width: 1000 + :alt: alternate text + + Conditional Formatting - Format based on Simulation Percentage + +6. After simulation, you can observe that the simulation percentage value for the Node "Income" falls in the Threshold range 29% which is + above 0% and based on that condition, the status bar for the Node is green color (see Figure above). Similarly the simulation percentage value for + the Node "Investment and Others" falls in the Threshold range (37%)* which is below -10% and based on that condition, the status bar for the Node is red color. + +Note: * indicates the negative values. + + +Color Theme +----------- + +In the Color Theme settings, you will be able to configure the following properties: + +1. You will be able to select the Light Theme or Dark Theme based on your choice (see Figure below). For our example, the Light Theme has been selected. + +.. figure:: _static/clr1.png + :align: center + :alt: alternate text + + Color Theme Settings + +2. Set the property "Choose Navigational Panel Theme" to the option Dark. +3. Set the Main and Accent color for the Canvas to the color as shown in the above Figure. +4. For the Tree Widget, set the colors for the properties Font Color, Background, Derived Nodes, Highlighted and Connectors to the required colors as shown + in the above Figure. +5. You will be able to view the valQ screen having Light Theme color along with different colors + selected for both the canvas as well as the tree widget based on the configured settings. + +.. figure:: _static/clr2.png + :align: center + :width: 1000 + :alt: alternate text + + valQ screen with Color Theme Settings + +Also you can observe that the Navigation Panel will be shown in Dark Theme based on the configuration. + +.. figure:: _static/clr3.png + :align: center + :width: 1000 + :alt: alternate text + + Navigation Panel with Dark Theme + +For our example, you have configured the Highlighted color for the Node as Red Color (see Figure below). + +.. figure:: _static/hc1.png + :align: center + :width: 1000 + :alt: alternate text + + Highlighted Color Settings for Node + +Based on the above configuration, you can observe that when you click and Node in the Navigation panel, the Node in the +right pane will be highlighted based on the color selection. For our example, the Node is being highlighted in Red color. + +.. figure:: _static/hc2.png + :align: center + :width: 1000 + :alt: alternate text + + Node Highlighted color appearing in Red color + + +Additional Properties of Settings Tab +------------------------------------- + +The Navigation Panel in the valQ screen will be configured based on the below listed properties. + ++-----------------------+-----------------------+-----------------------+ +| Area | Property | Description | ++=======================+=======================+=======================+ +| Navigation Panel | Enable Navigation | This property | +| | Panel | enables/disables the | +| | | Navigation Panel in | +| | | the valQ screen. | ++-----------------------+-----------------------+-----------------------+ +| | Scenarios | You can | +| | | enable/disable the | +| | | Visibility option for | +| | | the Scenarios using | +| | | the Eye icon and also | +| | | set the Label for the | +| | | Scenario using the | +| | | Edit icon in the | +| | | Navigation Panel | +| | | Settings. | ++-----------------------+-----------------------+-----------------------+ +| | Sub Models | You can | +| | | enable/disable the | +| | | Visibility option for | +| | | the Sub Models using | +| | | the Eye icon and set | +| | | the Label for the Sub | +| | | Models using the Edit | +| | | icon in the | +| | | Navigation Panel | +| | | Settings. You can | +| | | select the Nodes from | +| | | Tree/Sub-Tree List. | +| | | You can also | +| | | enable/disable the | +| | | property for | +| | | filtering the list | +| | | based on the selected | +| | | sub tree. | ++-----------------------+-----------------------+-----------------------+ +| | Simulation Period | You can | +| | | enable/disable the | +| | | Visibility option for | +| | | the Simulation Period | +| | | using the Eye icon | +| | | and also set the | +| | | Label for the | +| | | Simulation Period | +| | | using the Edit icon | +| | | in the Navigation | +| | | Panel Settings. | +| | | | +| | | You can also set the | +| | | Simulation Period | +| | | Start and Simulation | +| | | Period End. When you | +| | | need to start the | +| | | simulation from the | +| | | current month, then | +| | | you can select the | +| | | "Start to current | +| | | Month" option | ++-----------------------+-----------------------+-----------------------+ +| | Value Display | You can | +| | | enable/disable the | +| | | Visibility option for | +| | | the Value Display | +| | | using the Eye icon | +| | | and set the Label for | +| | | the Value Display | +| | | using the Edit icon. | +| | | You can select the | +| | | Primary Period, | +| | | Scaling options and | +| | | Default Scaling | +| | | options for the Value | +| | | Display in the | +| | | Navigation Panel. | ++-----------------------+-----------------------+-----------------------+ +| | Key Inputs | You can | +| | | enable/disable the | +| | | Visibility option for | +| | | the Key Inputs using | +| | | the Eye icon and set | +| | | the Label for the Key | +| | | Inputs using the Edit | +| | | icon. Further you can | +| | | also select the Key | +| | | Assumptions to be | +| | | displayed as List by | +| | | selecting the | +| | | required Nodes in the | +| | | Navigation Panel | ++-----------------------+-----------------------+-----------------------+ +| | KPIs | You can | +| | | enable/disable the | +| | | Visibility option for | +| | | the KPIs using the | +| | | Eye icon, set the | +| | | Label for the KPIs | +| | | using the Edit icon | +| | | and further select | +| | | the KPIs to be | +| | | displayed as List by | +| | | selecting the | +| | | required Nodes in the | +| | | Navigation Panel. | ++-----------------------+-----------------------+-----------------------+ +| | Constraints | You can | +| | | enable/disable the | +| | | Visibility option for | +| | | the Constraints using | +| | | the Eye icon, set the | +| | | Label for the | +| | | Constraints using the | +| | | Edit icon and further | +| | | select the | +| | | Constraints to be | +| | | displayed as List by | +| | | selecting the | +| | | required Nodes in the | +| | | Navigation Panel. You | +| | | can also | +| | | enable/disable the | +| | | property for sorting | +| | | the constraints based | +| | | on utilization. | ++-----------------------+-----------------------+-----------------------+ +| Nodes | Data Mapping Format | This Node settings | +| | | allows you to map the | +| | | Nodes to queries in | +| | | the ID, Text or ID + | +| | | Text Formats. | ++-----------------------+-----------------------+-----------------------+ +| | Map based on ID or | For example, you can | +| | Text | use this option if | +| | | the field value | +| | | exactly matches your | +| | | Node’s unique ID or | +| | | Text (e.g., Text - | +| | | ‘Canada’) | ++-----------------------+-----------------------+-----------------------+ +| | Map based on ID-Text | For example, you can | +| | Pair | use this option if | +| | | your field has a | +| | | key-text format | +| | | (e.g., ‘CA:Canada’), | +| | | and your Node’s ID | +| | | corresponds to a key | +| | | (e.g.,‘CA’). | ++-----------------------+-----------------------+-----------------------+ +| | ID-Text Pair | You can provide the | +| | Separator | inputs for the | +| | | ID-Text Pair format. | ++-----------------------+-----------------------+-----------------------+ +| | Default Node Style | This property is used | +| | | to configure the | +| | | style of the Node. | +| | | The options are | +| | | Standard, Full and | +| | | Minimal. | ++-----------------------+-----------------------+-----------------------+ +| | Node Elements | This property is used | +| | | to display the below | +| | | listed elements in | +| | | the Node: | +| | | | +| | | 1. Variance | +| | | | +| | | 2. Trend Sparkline | +| | | | +| | | 3. Secondary | +| | | Value/Variance | +| | | | +| | | 4. Descendant Node | +| | | Count | ++-----------------------+-----------------------+-----------------------+ +| | Data Source | By enabling the | +| | Exceptions | option "Data Source | +| | | Exception", you can | +| | | use the Data provided | +| | | in "Manual" | +| | | Calculation Method | +| | | when the Data Source | +| | | Method returns no | +| | | value for the Node. | ++-----------------------+-----------------------+-----------------------+ +| | Waterfall Chart Type | The Pop up screen will| +| | | be appearing with the | +| | | type of the Waterfall | +| | | Chart being selected. | +| | | The options are | +| | | Vertical and | +| | | Horizontal. | ++-----------------------+-----------------------+-----------------------+ +| Number Formatting | Scale Suffix | This property sets | +| | | the Thousands, | +| | | Millions, Billions | +| | | and Trillions Suffix | +| | | for the scale. | ++-----------------------+-----------------------+-----------------------+ +| | Display Formatting | This property sets | +| | | the Number Formatting | +| | | for the following | +| | | fields: | +| | | | +| | | 1. Display zeroes as | +| | | None, - or 0 | +| | | | +| | | 2. Display Negative | +| | | Value as ( 0), -0 | +| | | or 0- | +| | | | +| | | 3. Decimal Separator | +| | | as “.” | +| | | | +| | | 4. Thousand Separator | +| | | as “,” | ++-----------------------+-----------------------+-----------------------+ +| Canvas | Default Visual | This property sets | +| | | the Default Visual as | +| | | Tree or Table in the | +| | | right pane. | ++-----------------------+-----------------------+-----------------------+ +| | Start the Model with | The Model will get | +| | the following KPI | started based on the | +| | | on the selection the | +| | | specific Node from | +| | | the list. | ++-----------------------+-----------------------+-----------------------+ +| | Expand Hierarchy upto | Using this property, | +| | the following number | you can expand the | +| | of levels by default | hierarchy upto the | +| | | following number of | +| | | levels by default. | +| | | The minimum level is | +| | | 2. | ++-----------------------+-----------------------+-----------------------+ +| | Footer Toolbar – | This property | +| | Enable Node Search | enables/disables the | +| | | Node Search in the | +| | | canvas. | ++-----------------------+-----------------------+-----------------------+ +| | Footer Toolbar – | This property hide | +| | Enable hiding empty | Nodes that have no | +| | nodes | value mapped to it or | +| | | have null value for | +| | | all its periods. | ++-----------------------+-----------------------+-----------------------+ +| | Default canvas zoom | This property sets | +| | (%) | the default zoom | +| | | ratio for the canvas. | ++-----------------------+-----------------------+-----------------------+ +| | Enable Conditional | This property | +| | Formatting | enables/disables the | +| | | Conditional | +| | | Formatting | ++-----------------------+-----------------------+-----------------------+ +| | Default Table Style | This property is used | +| | | to configure the | +| | | style of the Table. | +| | | The options are | +| | | Standard and Full. | ++-----------------------+-----------------------+-----------------------+ +| | Hint | This property sets | +| | | the Hint which | +| | | appears at the top of | +| | | the canvas. | ++-----------------------+-----------------------+-----------------------+ +| Conditional | Enable Conditional | This property | +| Formatting | Formatting | enables/disables the | +| | | Conditional | +| | | Formatting property. | ++-----------------------+-----------------------+-----------------------+ +| | Format based on | Each node will have a | +| | | status bar property | +| | | to indicate whether | +| | | the trend of values | +| | | is favorable and this | +| | | property can be | +| | | configured using | +| | | these options | +| | | Variance and | +| | | Simulation. | ++-----------------------+-----------------------+-----------------------+ +| | Formatting Thresholds | The Status bar color | +| | (%) | will be changed based | +| | | on the percentage of | +| | | deviant from initial | +| | | value. The color | +| | | ranges are given | +| | | below: | +| | | | +| | | 1. Red - Below:- 10% | +| | | | +| | | 2. Yellow - Between: | +| | | -10% to-1% | +| | | | +| | | 3. White - Between: | +| | | -1% to1% | +| | | | +| | | 4. Green - Above: 1% | ++-----------------------+-----------------------+-----------------------+ +| Color Theme | Choose Canvas Theme | This Property sets | +| | | the Theme for the | +| | | Node. The options are | +| | | Light Theme and Dark | +| | | Theme. | ++-----------------------+-----------------------+-----------------------+ +| | Choose Navigation | This property sets | +| | Panel Theme | the color for the | +| | | Navigational Theme. | +| | | The options are Dark | +| | | and Light. | ++-----------------------+-----------------------+-----------------------+ +| | Canvas | This property sets | +| | | the Main Color and | +| | | Accent Color for the | +| | | Canvas. | ++-----------------------+-----------------------+-----------------------+ +| | Tree widget | This property sets | +| | | the Font color, | +| | | Background color, | +| | | Derived Nodes color, | +| | | Highlighted Node | +| | | color and Node | +| | | Connectors color | +| | | for the Tree Widget. | ++-----------------------+-----------------------+-----------------------+ + +*Additional Properties of Settings Tab* + + +General Tab +=========== + +Using the General Tab, you will be able to configure the settings for +the License Registration, Export and Writeback Functions. + +License Registration +-------------------- + +You will be able to enter the Subscription License Key in the License Key Text Box to unlock the Additional Features of the valQ (see Figure below). + +.. figure:: _static/lcs.png + :align: center + :alt: alternate text + + License Registration + +Export +------ + +In the Export settings, you will be able to configure the export functionality. There is also an option to +include the navigation settings panel in the Export File (see Figure below). + +.. figure:: _static/epf.png + :align: center + :alt: alternate text + + Export option + +The saved file can be exported and this exported file can be used in the +“Import from Excel” option in “Import an Advanced Model” +category (:ref:`Refer Section: Import from an Export File `). + +Writeback +--------- + +You will be able to export the Scenarios configured in the valQ through an URL by entering the Writeback URL in the Text Box (see Figure below). + +.. figure:: _static/wrb.png + :align: center + :alt: alternate text + + Export Scenarios via Writeback URL + +The different simulations of planning results can be written back to the underlying systems using the URL exposed +as part of the valQ. Using the URL, the user can do write-back scenario nodes to the underlying system. + +For more details on Writeback Functionality, you can refer the link: https://valq.com/blogs/writeback-valq-data-using-microsoft-flow + + +Additional Properties of the General Tab +---------------------------------------- + ++-----------------------+-----------------------+-----------------------+ +| Area | Property | Description | ++=======================+=======================+=======================+ +| License Registration | License Key | You will be able to | +| | | enter the | +| | | Subscription License | +| | | Key in the License | +| | | Key Text Box to | +| | | unlock the Additional | +| | | Features of the valQ. | ++-----------------------+-----------------------+-----------------------+ +| Export | Include navigation | This property when | +| | panel settings in the | activated exports the | +| | export file | file along with | +| | | Navigation Panel | +| | | settings. | ++-----------------------+-----------------------+-----------------------+ +| Writeback | Export Scenarios via | You will be able to | +| | Writeback URL | export the Scenarios | +| | | configured in the | +| | | valQ through an URL | +| | | by entering the | +| | | Writeback URL in the | +| | | Text Box. | ++-----------------------+-----------------------+-----------------------+ + +*Additional Properties of General Tab* \ No newline at end of file diff --git a/source/PlanCategory.rst b/source/PlanCategory.rst new file mode 100644 index 0000000..e10641b --- /dev/null +++ b/source/PlanCategory.rst @@ -0,0 +1,436 @@ +Plan Category +============= + +The Plan Category has an Input Editor screen through which the user can create multiple series. +By clicking the Plan Tab, you will be able to view the Input Editor screen as shown below. + +.. figure:: _static/pll1.png + :align: center + :alt: alternate text + + Input Editor + +The series which are created using the Input Editor are the Planning Series. +The created planning series will get listed as drop down values in the top most panel (see Figure below). + +.. figure:: _static/pll2.png + :align: center + :alt: alternate text + + Data Series Display + +After selecting the required series for both the Primary and Comparison Series, the Tree will get displayed +based on the selection (see Figure below). For our example, the Primary Series has been selected as “Budget” +and the Comparison Series has been selected as “Forecast”. + +.. figure:: _static/pll3.png + :align: center + :alt: alternate text + + Tree Structure for the selected Primary and Comparison Series + +Input Editor Functionality +-------------------------- + +For our example, the below Figure represents the sample Data Source being assigned for the Planning Series. + +.. figure:: _static/pl4.png + :align: center + :alt: alternate text + + Sample Data Source + +With the help of the above shown Data Source, you will be able to create a New series using the Input Editor. +The below steps explains us on how to create a Series in the Input Editor. + +1. By clicking the Plan Category, you will be able to view the Input Editor screen. Now you will be able to view the New Series screen as shown below. + +.. figure:: _static/pl5.png + :align: center + :width: 400 + :alt: alternate text + + New Series window + +2. For our example, lock the Tree Structure as shown in the above Figure. This would lock the node structure and to add the new nodes you need to unlock the structure. You need to lock the structure in order to enable the top down adjustments to the rules applied at parent nodes. +3. Now enter the name for the New series. In our example, it is being named as “Aug Fcst” (as it represents the August Forecast) and it is user defined. Select the Base Series and Budget will be the Primary in our case (see Figure below). + +.. figure:: _static/pl6.png + :align: center + :width: 400 + :alt: alternate text + + Series Name with Base Series Selection + +The Primary Series is the Main Data that will get displayed on the node. The Comparison Series will be the Variance data that will get displayed on the node and it is be compared to this series. + +New Series can be also created from Empty Series : Zero based budgeting and also based on Primary or Comparison series. + +4. At the top of the panel, you will be able to view the Tabs which would highlight the names of the series (see Figure below). + +.. figure:: _static/pl7.png + :align: center + :alt: alternate text + + Series Name at the Top Panel + +You can also click on the New Series as shown in the above Figure and create a new series. This can be created on existing series, empty series or the newly created series. + +It is to be noted that the Series created using the Input Editor screen will be also listed in the Variance Analysis screen as drop down fields for Base Series and Compared Series. + +In the settings section, you can set the newly created series as primary or the comparative series. We can also rename or delete the series as shown in the below Figure. + +.. figure:: _static/pl8.png + :align: center + :width: 200 + :alt: alternate text + + Series Settings + +5. There are three different methods of Planning and they are listed below (see Figure below). + +• Weight +• Equals +• Trend + +.. figure:: _static/pl9.png + :align: center + :alt: alternate text + + Planning Methods + +Once when the values are allocated for the periods we have the option to allocate the values across the period to different nodes. Here the planning can happen based on Weight or Equal. + +6. The Planning Methods that are available at Year Level are “Weight” and “Equals” (see Figure below). Based on the user selection of the cell, the Planning Methods will get activated. + +.. figure:: _static/pl10.png + :align: center + :width: 400 + :alt: alternate text + + User defined cell and planning methods + +**Note:** +The Number format and scaling will be taken from the tree. The Number bar will have the absolute value irrespective of the format and scaling. + +7. For our example, there are different scenarios for illustrating the Planning Methods and they are explained below: +  +Scenario 1 +~~~~~~~~~~ + +Increase the total revenue by 10%, other revenue remains same and move the Impact to sales revenue. + +a. For our example, expand the Total Revenue. Now select the node “Other Revenue” and lock the node (see Figure below). + +.. figure:: _static/pl11.png + :align: center + :alt: alternate text + + Scenario 1 + +b. Now select the Total Cell for node “Total Revenue” as shown in the below Figure. + +.. figure:: _static/pl12.png + :align: center + :width: 400 + :alt: alternate text + + Cell Selection + +You can also update the number by double clicking the cell, enter the number directly in the number bar or enter the number in the Pop up. + +c. Now double click the total cell and type “+10%” at the end of the number and Click on “Weight” as shown in the below Figure. + +.. figure:: _static/pl13.png + :align: center + :width: 400 + :alt: alternate text + + Total cell value increased to 10 % + +d. Click on Weight option as shown in the above Figure and you will be able to view the Spread by Weights + +.. figure:: _static/pl14.png + :align: center + :width: 400 + :alt: alternate text + + Spread by Weights + +Now select the current node and the current series and select the “Overwrite Values” option. You can also select different weights to allocate. You can further decide to allocate the full amount or the delta amount (see Figure above). + +The Overwrite Values option will delete the existing number and re writes the new allocated value and the Append option will add the delta value to the existing value and only the delta value gets allocated in the selected weights (see Figure above). +For our example, the Overwrite option has been selected. + +e. As an end result of the Scenario 1, you will be able to view the Input Editor screen loaded with the configured values (see Figure below). The cells where the planning was impacted turns pink color. + +.. figure:: _static/pl15.png + :align: center + :alt: alternate text + + Scenario 1 with configured values + +Scenario 2 +~~~~~~~~~~ + +Increase cost of sale by 10% from April Onwards + +a. For our example, select the Node “Cost of Sales” for April month (see Figure below). + +.. figure:: _static/pl16.png + :align: center + :alt: alternate text + + Cell Selection + +b. Increase the cell value by 10% and click Enter (see Figure below). + +.. figure:: _static/pl17.png + :align: center + :alt: alternate text + + Cost of Sales for April increased by 10% + +c. Now click the “Copy To” icon to copy the value from April across the periods till December (see Figure below) + +.. figure:: _static/pl18.png + :align: center + :width: 75 + :alt: alternate text + + Copy-to icon + +d. After clicking the Copy to icon, the Input Editor screen looks similar to the Figure shown below. + +.. figure:: _static/pl19.png + :align: center + :alt: alternate text + + Constant cell values from Apr to Dec + +**Note:** +There is another copy-to function icon as shown in the below Figure. + +.. figure:: _static/pl20.png + :align: center + :alt: alternate text + + Copy-to Icon + +This icon when clicked copies the value vertically downwards for the parent node to parent node and from child node to child node as shown in the below Figure. The value is “100” for the parent node and “50” for the child node (see Figure below). + +.. figure:: _static/pl21.png + :align: center + :alt: alternate text + + Constant Cell values for parent to parent and child to child nodes + +Scenario 3 +~~~~~~~~~~ + +Increase other costs a trend of 2% month on month + +a. For our example, select the Node “Other Costs” for Jan month (see Figure below). + +.. figure:: _static/pl22.png + :align: center + :width: 400 + :alt: alternate text + + Cell Selection + +b. Now click the “Trend” icon (see Figure below) + +.. figure:: _static/pl23.png + :align: center + :width: 60 + :alt: alternate text + + Trend icon + +c. Now the Trend pop up opens. For our example, select the “By Percentage” option and enter value 2 in the Increase Trend section. Now select the Overwrite Values option and click “Apply” (see Figure below). + +.. figure:: _static/pl24.png + :align: center + :width: 400 + :alt: alternate text + + Increased Trend by 2 % + +d. Based on the above configuration, you will be able to view the Input Editor screen as shown below. + +.. figure:: _static/pl25.png + :align: center + :alt: alternate text + + Scenario 3 with configured values from Jan to Dec + +Scenario 4 +~~~~~~~~~~ + +There is no increase in Support Costs at Total level but costs should be allocated in line with the Cost of Sales spread. + +a. For our example, select the Node “Support Costs” for Total column (see Figure below). + +.. figure:: _static/pl26.png + :align: center + :alt: alternate text + + Cell Selection + +b. Now click the “Weight” icon (see Figure below) + +.. figure:: _static/pl27.png + :align: center + :alt: alternate text + + Weight icon + +c. Now the Spread by Weight pop up opens. For our example, select the Node as “Cost of Sales”. Select the Overwrite Values option and click “Apply” (see Figure below). The Total Value which is the Support Costs value can be also changed based on your requirement. + +.. figure:: _static/pl28.png + :align: center + :width: 400 + :alt: alternate text + + Spreads by Weights + +d. As an end result of the Scenario 4, you will be able to view the Input Editor screen loaded with the configured values (see Figure below). + +.. figure:: _static/pl29.png + :align: center + :alt: alternate text + + Scenario 4 with configured values + + +Scenario 5 +~~~~~~~~~~ + +Increase Rent by 5% for Q1 and 10% from Q2 Onwards. + +a. Select the Node Rent and lock the entire Row for the Node Rent. +b. Release the lock for the Cells from Jan to Mar. +c. Now select the cell “Jan” for the Node Rent. Increase the value by 5% (see Figure below). + +.. figure:: _static/pl30.png + :align: center + :width: 400 + :alt: alternate text + + Rent increased by 5% for Jan Month + +d. Now copy it across the cells. The Input Editor looks similar to the Figure as shown below. + +.. figure:: _static/pl31.png + :align: center + :alt: alternate text + + Rent increased by 5% across the cells in the Row + +e. Now release the lock for the complete Row of the Node Rent. +f. Select the cell “Apr” for the Node Rent. Increase the value by 10% (see Figure below). + +.. figure:: _static/pl32.png + :align: center + :alt: alternate text + + Rent increased by 10% for Apr Month + +g. Now copy it across the cells. The Input Editor looks similar to the Figure as shown below. + +.. figure:: _static/pl33.png + :align: center + :alt: alternate text + + Rent increased by 10% across the cells in the Row from Apr till Dec Month + +  +Other common features of the Input Editor +----------------------------------------- + +Allocate Children +~~~~~~~~~~~~~~~~~ + +There are 2 different options namely "Weight" and "Equal" for the Children Node allocation (see Figure below). + +.. figure:: _static/plch.png + :align: center + :alt: alternate text + + Allocate Children Nodes + +As part of the Business Scenario, the allocation for the children nodes will be based on the weight option and also the cell values will be only applied for the delta values. + +Adding a Note +~~~~~~~~~~~~~ + +a. In the Input Editor, select the Node “Rent” for Total column (see Figure below). + +.. figure:: _static/pl34.png + :align: center + :width: 500 + :alt: alternate text + + Cell Selection + +b. Now click on the Note Icon as shown below. + +.. figure:: _static/pl35.png + :align: center + :alt: alternate text + + Note Icon + +c. Enter the details in the note pop up as shown below. + +.. figure:: _static/pl36.png + :align: center + :alt: alternate text + + Comments for the cell + +d. Once a note is entered, the cell would look similar to the Figure as shown below. On the right top corner, you can view a Note Indicator. + +.. figure:: _static/pl37.png + :align: center + :alt: alternate text + + Note Indicator + +View History +~~~~~~~~~~~~ + +Using the View History option, you will be able to view the Change Histories that have been done in the cells for different planning. You can select the specific history and restore them. You can also reset all the Histories by using the Reset All option (see Figure below). + +.. figure:: _static/pl38.png + :align: center + :width: 400 + :alt: alternate text + + View History + +Nodes Filtering +~~~~~~~~~~~~~~~ + +Using the Search option in the Input Editor screen, you can filter the Nodes by providing the Node Name in the Search option as shown below. + +.. figure:: _static/pl39.png + :align: center + :width: 500 + :alt: alternate text + + Search option for Nodes Filtering + +**Note:** +For the huge models, you can use this filter mode to only see the main node and children node. + + +Input Editor Functionality + +For our example, the below Figure represents the sample Data Source being assigned for the Planning Series. + +Sample Data Source +With the help of the above shown Data Source, you will be able to create a New series using the Input Editor. The below steps explains us on how to create a Series in the Input Editor. + + diff --git a/source/SimulateCategory.rst b/source/SimulateCategory.rst new file mode 100644 index 0000000..bbc3880 --- /dev/null +++ b/source/SimulateCategory.rst @@ -0,0 +1,15 @@ +Simulate Category +================= + +The Simulate category has two panels in which the left panel represents the Navigation Panel and the right panel +denotes the canvas which represents the Value Driver Tree visuals with different Nodes where the simulation can +be done at each Node Level (see Figure below). + +.. figure:: _static/simu1.png + :align: center + :alt: alternate text + + Simulate Tab option + +The common functionalities of the Simulate Tab has been already explained in +:ref:`Section: General Features of valQ Custom Visual ` \ No newline at end of file diff --git a/source/_static/10.1.png b/source/_static/10.1.png new file mode 100644 index 0000000..6dee3f2 Binary files /dev/null and b/source/_static/10.1.png differ diff --git a/source/_static/11.1.png b/source/_static/11.1.png new file mode 100644 index 0000000..ba6ceb6 Binary files /dev/null and b/source/_static/11.1.png differ diff --git a/source/_static/11.2.png b/source/_static/11.2.png new file mode 100644 index 0000000..a49e56d Binary files /dev/null and b/source/_static/11.2.png differ diff --git a/source/_static/11.3.png b/source/_static/11.3.png new file mode 100644 index 0000000..06ddd25 Binary files /dev/null and b/source/_static/11.3.png differ diff --git a/source/_static/12,17.png b/source/_static/12,17.png new file mode 100644 index 0000000..da03bd9 Binary files /dev/null and b/source/_static/12,17.png differ diff --git a/source/_static/12.1.png b/source/_static/12.1.png new file mode 100644 index 0000000..0b626a4 Binary files /dev/null and b/source/_static/12.1.png differ diff --git a/source/_static/12.10.png b/source/_static/12.10.png new file mode 100644 index 0000000..4c895ba Binary files /dev/null and b/source/_static/12.10.png differ diff --git a/source/_static/12.11.png b/source/_static/12.11.png new file mode 100644 index 0000000..ee1becd Binary files /dev/null and b/source/_static/12.11.png differ diff --git a/source/_static/12.12.png b/source/_static/12.12.png new file mode 100644 index 0000000..5b46b37 Binary files /dev/null and b/source/_static/12.12.png differ diff --git a/source/_static/12.13.png b/source/_static/12.13.png new file mode 100644 index 0000000..3667e16 Binary files /dev/null and b/source/_static/12.13.png differ diff --git a/source/_static/12.14.png b/source/_static/12.14.png new file mode 100644 index 0000000..f7d7c14 Binary files /dev/null and b/source/_static/12.14.png differ diff --git a/source/_static/12.15.png b/source/_static/12.15.png new file mode 100644 index 0000000..7afaaaa Binary files /dev/null and b/source/_static/12.15.png differ diff --git a/source/_static/12.16.png b/source/_static/12.16.png new file mode 100644 index 0000000..b34a69f Binary files /dev/null and b/source/_static/12.16.png differ diff --git a/source/_static/12.17.png b/source/_static/12.17.png new file mode 100644 index 0000000..66b553c Binary files /dev/null and b/source/_static/12.17.png differ diff --git a/source/_static/12.18.png b/source/_static/12.18.png new file mode 100644 index 0000000..5ae39bf Binary files /dev/null and b/source/_static/12.18.png differ diff --git a/source/_static/12.19.png b/source/_static/12.19.png new file mode 100644 index 0000000..3aa5802 Binary files /dev/null and b/source/_static/12.19.png differ diff --git a/source/_static/12.2.png b/source/_static/12.2.png new file mode 100644 index 0000000..24318de Binary files /dev/null and b/source/_static/12.2.png differ diff --git a/source/_static/12.20.png b/source/_static/12.20.png new file mode 100644 index 0000000..f642602 Binary files /dev/null and b/source/_static/12.20.png differ diff --git a/source/_static/12.21.png b/source/_static/12.21.png new file mode 100644 index 0000000..caa8188 Binary files /dev/null and b/source/_static/12.21.png differ diff --git a/source/_static/12.22.png b/source/_static/12.22.png new file mode 100644 index 0000000..b3f1551 Binary files /dev/null and b/source/_static/12.22.png differ diff --git a/source/_static/12.23.png b/source/_static/12.23.png new file mode 100644 index 0000000..974627f Binary files /dev/null and b/source/_static/12.23.png differ diff --git a/source/_static/12.24.png b/source/_static/12.24.png new file mode 100644 index 0000000..428aec5 Binary files /dev/null and b/source/_static/12.24.png differ diff --git a/source/_static/12.25.png b/source/_static/12.25.png new file mode 100644 index 0000000..2c3de01 Binary files /dev/null and b/source/_static/12.25.png differ diff --git a/source/_static/12.25a.png b/source/_static/12.25a.png new file mode 100644 index 0000000..456bbe9 Binary files /dev/null and b/source/_static/12.25a.png differ diff --git a/source/_static/12.26.png b/source/_static/12.26.png new file mode 100644 index 0000000..ac6d3f0 Binary files /dev/null and b/source/_static/12.26.png differ diff --git a/source/_static/12.27.png b/source/_static/12.27.png new file mode 100644 index 0000000..7118f99 Binary files /dev/null and b/source/_static/12.27.png differ diff --git a/source/_static/12.28.png b/source/_static/12.28.png new file mode 100644 index 0000000..b76b13d Binary files /dev/null and b/source/_static/12.28.png differ diff --git a/source/_static/12.29.png b/source/_static/12.29.png new file mode 100644 index 0000000..7f7a154 Binary files /dev/null and b/source/_static/12.29.png differ diff --git a/source/_static/12.2a.png b/source/_static/12.2a.png new file mode 100644 index 0000000..a490f04 Binary files /dev/null and b/source/_static/12.2a.png differ diff --git a/source/_static/12.3.png b/source/_static/12.3.png new file mode 100644 index 0000000..6a53dd1 Binary files /dev/null and b/source/_static/12.3.png differ diff --git a/source/_static/12.30.png b/source/_static/12.30.png new file mode 100644 index 0000000..bdc5085 Binary files /dev/null and b/source/_static/12.30.png differ diff --git a/source/_static/12.31.png b/source/_static/12.31.png new file mode 100644 index 0000000..7d1eb0a Binary files /dev/null and b/source/_static/12.31.png differ diff --git a/source/_static/12.32.png b/source/_static/12.32.png new file mode 100644 index 0000000..d0c1d43 Binary files /dev/null and b/source/_static/12.32.png differ diff --git a/source/_static/12.33.png b/source/_static/12.33.png new file mode 100644 index 0000000..8c6dc2c Binary files /dev/null and b/source/_static/12.33.png differ diff --git a/source/_static/12.34.png b/source/_static/12.34.png new file mode 100644 index 0000000..f19d745 Binary files /dev/null and b/source/_static/12.34.png differ diff --git a/source/_static/12.35.png b/source/_static/12.35.png new file mode 100644 index 0000000..6a8714a Binary files /dev/null and b/source/_static/12.35.png differ diff --git a/source/_static/12.36.png b/source/_static/12.36.png new file mode 100644 index 0000000..0f7e209 Binary files /dev/null and b/source/_static/12.36.png differ diff --git a/source/_static/12.37.png b/source/_static/12.37.png new file mode 100644 index 0000000..2681fa4 Binary files /dev/null and b/source/_static/12.37.png differ diff --git a/source/_static/12.38.png b/source/_static/12.38.png new file mode 100644 index 0000000..9f2a2d2 Binary files /dev/null and b/source/_static/12.38.png differ diff --git a/source/_static/12.39.png b/source/_static/12.39.png new file mode 100644 index 0000000..15a9ba4 Binary files /dev/null and b/source/_static/12.39.png differ diff --git a/source/_static/12.4.png b/source/_static/12.4.png new file mode 100644 index 0000000..aeaa11c Binary files /dev/null and b/source/_static/12.4.png differ diff --git a/source/_static/12.5.png b/source/_static/12.5.png new file mode 100644 index 0000000..e27c454 Binary files /dev/null and b/source/_static/12.5.png differ diff --git a/source/_static/12.6.png b/source/_static/12.6.png new file mode 100644 index 0000000..097586b Binary files /dev/null and b/source/_static/12.6.png differ diff --git a/source/_static/12.7.png b/source/_static/12.7.png new file mode 100644 index 0000000..61ebbf6 Binary files /dev/null and b/source/_static/12.7.png differ diff --git a/source/_static/12.8.png b/source/_static/12.8.png new file mode 100644 index 0000000..1bdf6be Binary files /dev/null and b/source/_static/12.8.png differ diff --git a/source/_static/12.9.png b/source/_static/12.9.png new file mode 100644 index 0000000..246f1e3 Binary files /dev/null and b/source/_static/12.9.png differ diff --git a/source/_static/13,4.png b/source/_static/13,4.png new file mode 100644 index 0000000..4b49129 Binary files /dev/null and b/source/_static/13,4.png differ diff --git a/source/_static/13.1.png b/source/_static/13.1.png new file mode 100644 index 0000000..39d0bcc Binary files /dev/null and b/source/_static/13.1.png differ diff --git a/source/_static/13.2.png b/source/_static/13.2.png new file mode 100644 index 0000000..e486e2c Binary files /dev/null and b/source/_static/13.2.png differ diff --git a/source/_static/13.3.png b/source/_static/13.3.png new file mode 100644 index 0000000..2b4729d Binary files /dev/null and b/source/_static/13.3.png differ diff --git a/source/_static/13.4.png b/source/_static/13.4.png new file mode 100644 index 0000000..3ee3fa2 Binary files /dev/null and b/source/_static/13.4.png differ diff --git a/source/_static/13.5.png b/source/_static/13.5.png new file mode 100644 index 0000000..1f94a29 Binary files /dev/null and b/source/_static/13.5.png differ diff --git a/source/_static/13.6.png b/source/_static/13.6.png new file mode 100644 index 0000000..b9f48b5 Binary files /dev/null and b/source/_static/13.6.png differ diff --git a/source/_static/13.7.png b/source/_static/13.7.png new file mode 100644 index 0000000..08e92d4 Binary files /dev/null and b/source/_static/13.7.png differ diff --git a/source/_static/13.8.png b/source/_static/13.8.png new file mode 100644 index 0000000..d609712 Binary files /dev/null and b/source/_static/13.8.png differ diff --git a/source/_static/14.1.png b/source/_static/14.1.png new file mode 100644 index 0000000..0be32c2 Binary files /dev/null and b/source/_static/14.1.png differ diff --git a/source/_static/14.10.png b/source/_static/14.10.png new file mode 100644 index 0000000..21a0c48 Binary files /dev/null and b/source/_static/14.10.png differ diff --git a/source/_static/14.11.png b/source/_static/14.11.png new file mode 100644 index 0000000..cb67fc7 Binary files /dev/null and b/source/_static/14.11.png differ diff --git a/source/_static/14.12.png b/source/_static/14.12.png new file mode 100644 index 0000000..e4e0d2e Binary files /dev/null and b/source/_static/14.12.png differ diff --git a/source/_static/14.13.png b/source/_static/14.13.png new file mode 100644 index 0000000..42a6d5f Binary files /dev/null and b/source/_static/14.13.png differ diff --git a/source/_static/14.2.png b/source/_static/14.2.png new file mode 100644 index 0000000..04eec2b Binary files /dev/null and b/source/_static/14.2.png differ diff --git a/source/_static/14.3.png b/source/_static/14.3.png new file mode 100644 index 0000000..697660b Binary files /dev/null and b/source/_static/14.3.png differ diff --git a/source/_static/14.4.png b/source/_static/14.4.png new file mode 100644 index 0000000..8b6f0e8 Binary files /dev/null and b/source/_static/14.4.png differ diff --git a/source/_static/14.5.png b/source/_static/14.5.png new file mode 100644 index 0000000..881b4c7 Binary files /dev/null and b/source/_static/14.5.png differ diff --git a/source/_static/14.6.png b/source/_static/14.6.png new file mode 100644 index 0000000..c9be35c Binary files /dev/null and b/source/_static/14.6.png differ diff --git a/source/_static/14.7.png b/source/_static/14.7.png new file mode 100644 index 0000000..0614a93 Binary files /dev/null and b/source/_static/14.7.png differ diff --git a/source/_static/14.8.png b/source/_static/14.8.png new file mode 100644 index 0000000..a7c3995 Binary files /dev/null and b/source/_static/14.8.png differ diff --git a/source/_static/14.9.png b/source/_static/14.9.png new file mode 100644 index 0000000..e2777ef Binary files /dev/null and b/source/_static/14.9.png differ diff --git a/source/_static/15.1.png b/source/_static/15.1.png new file mode 100644 index 0000000..f4b219c Binary files /dev/null and b/source/_static/15.1.png differ diff --git a/source/_static/15.10.png b/source/_static/15.10.png new file mode 100644 index 0000000..925115c Binary files /dev/null and b/source/_static/15.10.png differ diff --git a/source/_static/15.11.png b/source/_static/15.11.png new file mode 100644 index 0000000..4214d37 Binary files /dev/null and b/source/_static/15.11.png differ diff --git a/source/_static/15.12.png b/source/_static/15.12.png new file mode 100644 index 0000000..47bb676 Binary files /dev/null and b/source/_static/15.12.png differ diff --git a/source/_static/15.2.png b/source/_static/15.2.png new file mode 100644 index 0000000..4fd8dc3 Binary files /dev/null and b/source/_static/15.2.png differ diff --git a/source/_static/15.3.png b/source/_static/15.3.png new file mode 100644 index 0000000..a1c63c4 Binary files /dev/null and b/source/_static/15.3.png differ diff --git a/source/_static/15.4.png b/source/_static/15.4.png new file mode 100644 index 0000000..24640bc Binary files /dev/null and b/source/_static/15.4.png differ diff --git a/source/_static/15.5.png b/source/_static/15.5.png new file mode 100644 index 0000000..58385b2 Binary files /dev/null and b/source/_static/15.5.png differ diff --git a/source/_static/15.6.png b/source/_static/15.6.png new file mode 100644 index 0000000..65bf60e Binary files /dev/null and b/source/_static/15.6.png differ diff --git a/source/_static/15.7.png b/source/_static/15.7.png new file mode 100644 index 0000000..d121dad Binary files /dev/null and b/source/_static/15.7.png differ diff --git a/source/_static/15.8.png b/source/_static/15.8.png new file mode 100644 index 0000000..19c3ab8 Binary files /dev/null and b/source/_static/15.8.png differ diff --git a/source/_static/15.9.png b/source/_static/15.9.png new file mode 100644 index 0000000..e5ff2e8 Binary files /dev/null and b/source/_static/15.9.png differ diff --git a/source/_static/16.1.png b/source/_static/16.1.png new file mode 100644 index 0000000..17b30af Binary files /dev/null and b/source/_static/16.1.png differ diff --git a/source/_static/16.10.png b/source/_static/16.10.png new file mode 100644 index 0000000..7b02296 Binary files /dev/null and b/source/_static/16.10.png differ diff --git a/source/_static/16.11.png b/source/_static/16.11.png new file mode 100644 index 0000000..cdb0e68 Binary files /dev/null and b/source/_static/16.11.png differ diff --git a/source/_static/16.12.png b/source/_static/16.12.png new file mode 100644 index 0000000..15be0d6 Binary files /dev/null and b/source/_static/16.12.png differ diff --git a/source/_static/16.13.png b/source/_static/16.13.png new file mode 100644 index 0000000..d97d768 Binary files /dev/null and b/source/_static/16.13.png differ diff --git a/source/_static/16.14.png b/source/_static/16.14.png new file mode 100644 index 0000000..f17b3ae Binary files /dev/null and b/source/_static/16.14.png differ diff --git a/source/_static/16.15.png b/source/_static/16.15.png new file mode 100644 index 0000000..f75711a Binary files /dev/null and b/source/_static/16.15.png differ diff --git a/source/_static/16.2.png b/source/_static/16.2.png new file mode 100644 index 0000000..51c8514 Binary files /dev/null and b/source/_static/16.2.png differ diff --git a/source/_static/16.3.png b/source/_static/16.3.png new file mode 100644 index 0000000..ba475d2 Binary files /dev/null and b/source/_static/16.3.png differ diff --git a/source/_static/16.4.png b/source/_static/16.4.png new file mode 100644 index 0000000..a5fa59e Binary files /dev/null and b/source/_static/16.4.png differ diff --git a/source/_static/16.5.png b/source/_static/16.5.png new file mode 100644 index 0000000..1bbf270 Binary files /dev/null and b/source/_static/16.5.png differ diff --git a/source/_static/16.6.png b/source/_static/16.6.png new file mode 100644 index 0000000..9775dda Binary files /dev/null and b/source/_static/16.6.png differ diff --git a/source/_static/16.7.png b/source/_static/16.7.png new file mode 100644 index 0000000..6a8f0a2 Binary files /dev/null and b/source/_static/16.7.png differ diff --git a/source/_static/16.8.png b/source/_static/16.8.png new file mode 100644 index 0000000..5b323fa Binary files /dev/null and b/source/_static/16.8.png differ diff --git a/source/_static/16.9.png b/source/_static/16.9.png new file mode 100644 index 0000000..6ab759f Binary files /dev/null and b/source/_static/16.9.png differ diff --git a/source/_static/2019-07-12_9-04-37.png b/source/_static/2019-07-12_9-04-37.png new file mode 100644 index 0000000..8b84c6a Binary files /dev/null and b/source/_static/2019-07-12_9-04-37.png differ diff --git a/source/_static/4.1.png b/source/_static/4.1.png new file mode 100644 index 0000000..43b0a05 Binary files /dev/null and b/source/_static/4.1.png differ diff --git a/source/_static/4.10.png b/source/_static/4.10.png new file mode 100644 index 0000000..411a2c0 Binary files /dev/null and b/source/_static/4.10.png differ diff --git a/source/_static/4.11.png b/source/_static/4.11.png new file mode 100644 index 0000000..4ab4eae Binary files /dev/null and b/source/_static/4.11.png differ diff --git a/source/_static/4.12.png b/source/_static/4.12.png new file mode 100644 index 0000000..6f81f9f Binary files /dev/null and b/source/_static/4.12.png differ diff --git a/source/_static/4.13.jpg b/source/_static/4.13.jpg new file mode 100644 index 0000000..fada0b6 Binary files /dev/null and b/source/_static/4.13.jpg differ diff --git a/source/_static/4.13.png b/source/_static/4.13.png new file mode 100644 index 0000000..dd4a702 Binary files /dev/null and b/source/_static/4.13.png differ diff --git a/source/_static/4.14.jpg b/source/_static/4.14.jpg new file mode 100644 index 0000000..70c7122 Binary files /dev/null and b/source/_static/4.14.jpg differ diff --git a/source/_static/4.14.png b/source/_static/4.14.png new file mode 100644 index 0000000..438b36a Binary files /dev/null and b/source/_static/4.14.png differ diff --git a/source/_static/4.15.jpg b/source/_static/4.15.jpg new file mode 100644 index 0000000..a71dc51 Binary files /dev/null and b/source/_static/4.15.jpg differ diff --git a/source/_static/4.15.png b/source/_static/4.15.png new file mode 100644 index 0000000..c24f39d Binary files /dev/null and b/source/_static/4.15.png differ diff --git a/source/_static/4.16.jpg b/source/_static/4.16.jpg new file mode 100644 index 0000000..8d5a053 Binary files /dev/null and b/source/_static/4.16.jpg differ diff --git a/source/_static/4.16.png b/source/_static/4.16.png new file mode 100644 index 0000000..0db4d8c Binary files /dev/null and b/source/_static/4.16.png differ diff --git a/source/_static/4.17.png b/source/_static/4.17.png new file mode 100644 index 0000000..80efc65 Binary files /dev/null and b/source/_static/4.17.png differ diff --git a/source/_static/4.18.jpg b/source/_static/4.18.jpg new file mode 100644 index 0000000..66a266a Binary files /dev/null and b/source/_static/4.18.jpg differ diff --git a/source/_static/4.18.png b/source/_static/4.18.png new file mode 100644 index 0000000..ecaf5e1 Binary files /dev/null and b/source/_static/4.18.png differ diff --git a/source/_static/4.19.png b/source/_static/4.19.png new file mode 100644 index 0000000..2745677 Binary files /dev/null and b/source/_static/4.19.png differ diff --git a/source/_static/4.2.jpg b/source/_static/4.2.jpg new file mode 100644 index 0000000..0005d8a Binary files /dev/null and b/source/_static/4.2.jpg differ diff --git a/source/_static/4.2.png b/source/_static/4.2.png new file mode 100644 index 0000000..53c90a2 Binary files /dev/null and b/source/_static/4.2.png differ diff --git a/source/_static/4.20.png b/source/_static/4.20.png new file mode 100644 index 0000000..88492fe Binary files /dev/null and b/source/_static/4.20.png differ diff --git a/source/_static/4.21.png b/source/_static/4.21.png new file mode 100644 index 0000000..86d9a45 Binary files /dev/null and b/source/_static/4.21.png differ diff --git a/source/_static/4.22.jpg b/source/_static/4.22.jpg new file mode 100644 index 0000000..1c56186 Binary files /dev/null and b/source/_static/4.22.jpg differ diff --git a/source/_static/4.22.png b/source/_static/4.22.png new file mode 100644 index 0000000..f32517d Binary files /dev/null and b/source/_static/4.22.png differ diff --git a/source/_static/4.23.png b/source/_static/4.23.png new file mode 100644 index 0000000..4182341 Binary files /dev/null and b/source/_static/4.23.png differ diff --git a/source/_static/4.24.jpg b/source/_static/4.24.jpg new file mode 100644 index 0000000..8804e8f Binary files /dev/null and b/source/_static/4.24.jpg differ diff --git a/source/_static/4.24.png b/source/_static/4.24.png new file mode 100644 index 0000000..151f1f9 Binary files /dev/null and b/source/_static/4.24.png differ diff --git a/source/_static/4.25.png b/source/_static/4.25.png new file mode 100644 index 0000000..a485cc4 Binary files /dev/null and b/source/_static/4.25.png differ diff --git a/source/_static/4.26.png b/source/_static/4.26.png new file mode 100644 index 0000000..a3f754d Binary files /dev/null and b/source/_static/4.26.png differ diff --git a/source/_static/4.3.jpg b/source/_static/4.3.jpg new file mode 100644 index 0000000..d548c9b Binary files /dev/null and b/source/_static/4.3.jpg differ diff --git a/source/_static/4.3.png b/source/_static/4.3.png new file mode 100644 index 0000000..4a063b7 Binary files /dev/null and b/source/_static/4.3.png differ diff --git a/source/_static/4.4.jpg b/source/_static/4.4.jpg new file mode 100644 index 0000000..c7bfce0 Binary files /dev/null and b/source/_static/4.4.jpg differ diff --git a/source/_static/4.4.png b/source/_static/4.4.png new file mode 100644 index 0000000..4b3539f Binary files /dev/null and b/source/_static/4.4.png differ diff --git a/source/_static/4.5.png b/source/_static/4.5.png new file mode 100644 index 0000000..19d0cb8 Binary files /dev/null and b/source/_static/4.5.png differ diff --git a/source/_static/4.6.png b/source/_static/4.6.png new file mode 100644 index 0000000..c686e18 Binary files /dev/null and b/source/_static/4.6.png differ diff --git a/source/_static/4.7.png b/source/_static/4.7.png new file mode 100644 index 0000000..c497d19 Binary files /dev/null and b/source/_static/4.7.png differ diff --git a/source/_static/4.8.png b/source/_static/4.8.png new file mode 100644 index 0000000..ec2e898 Binary files /dev/null and b/source/_static/4.8.png differ diff --git a/source/_static/4.9.png b/source/_static/4.9.png new file mode 100644 index 0000000..443aab7 Binary files /dev/null and b/source/_static/4.9.png differ diff --git a/source/_static/6.1.png b/source/_static/6.1.png new file mode 100644 index 0000000..4f67cef Binary files /dev/null and b/source/_static/6.1.png differ diff --git a/source/_static/7.1.png b/source/_static/7.1.png new file mode 100644 index 0000000..05c6644 Binary files /dev/null and b/source/_static/7.1.png differ diff --git a/source/_static/7.2.jpg b/source/_static/7.2.jpg new file mode 100644 index 0000000..16f7879 Binary files /dev/null and b/source/_static/7.2.jpg differ diff --git a/source/_static/7.2.png b/source/_static/7.2.png new file mode 100644 index 0000000..c5fa212 Binary files /dev/null and b/source/_static/7.2.png differ diff --git a/source/_static/7.3.jpg b/source/_static/7.3.jpg new file mode 100644 index 0000000..7aa9f16 Binary files /dev/null and b/source/_static/7.3.jpg differ diff --git a/source/_static/7.3.png b/source/_static/7.3.png new file mode 100644 index 0000000..e49ce0c Binary files /dev/null and b/source/_static/7.3.png differ diff --git a/source/_static/7.4.jpg b/source/_static/7.4.jpg new file mode 100644 index 0000000..e5cdbc1 Binary files /dev/null and b/source/_static/7.4.jpg differ diff --git a/source/_static/7.4.png b/source/_static/7.4.png new file mode 100644 index 0000000..1f5d1e0 Binary files /dev/null and b/source/_static/7.4.png differ diff --git a/source/_static/7.5.jpg b/source/_static/7.5.jpg new file mode 100644 index 0000000..d5fa886 Binary files /dev/null and b/source/_static/7.5.jpg differ diff --git a/source/_static/7.5.png b/source/_static/7.5.png new file mode 100644 index 0000000..09e5bb3 Binary files /dev/null and b/source/_static/7.5.png differ diff --git a/source/_static/8.1.png b/source/_static/8.1.png new file mode 100644 index 0000000..123edbb Binary files /dev/null and b/source/_static/8.1.png differ diff --git a/source/_static/9.1.png b/source/_static/9.1.png new file mode 100644 index 0000000..7e9c73e Binary files /dev/null and b/source/_static/9.1.png differ diff --git a/source/_static/catg.png b/source/_static/catg.png new file mode 100644 index 0000000..c7592fc Binary files /dev/null and b/source/_static/catg.png differ diff --git a/source/_static/cf1.png b/source/_static/cf1.png new file mode 100644 index 0000000..0e7dcbd Binary files /dev/null and b/source/_static/cf1.png differ diff --git a/source/_static/cf2.png b/source/_static/cf2.png new file mode 100644 index 0000000..45ba317 Binary files /dev/null and b/source/_static/cf2.png differ diff --git a/source/_static/cf3.png b/source/_static/cf3.png new file mode 100644 index 0000000..87e0af5 Binary files /dev/null and b/source/_static/cf3.png differ diff --git a/source/_static/cf4.png b/source/_static/cf4.png new file mode 100644 index 0000000..4247884 Binary files /dev/null and b/source/_static/cf4.png differ diff --git a/source/_static/cfn1.png b/source/_static/cfn1.png new file mode 100644 index 0000000..59a4a98 Binary files /dev/null and b/source/_static/cfn1.png differ diff --git a/source/_static/cfn2.png b/source/_static/cfn2.png new file mode 100644 index 0000000..94a5cd0 Binary files /dev/null and b/source/_static/cfn2.png differ diff --git a/source/_static/cfn3.png b/source/_static/cfn3.png new file mode 100644 index 0000000..cbfe771 Binary files /dev/null and b/source/_static/cfn3.png differ diff --git a/source/_static/cfn4.png b/source/_static/cfn4.png new file mode 100644 index 0000000..6805f83 Binary files /dev/null and b/source/_static/cfn4.png differ diff --git a/source/_static/cfn5.png b/source/_static/cfn5.png new file mode 100644 index 0000000..5ac464b Binary files /dev/null and b/source/_static/cfn5.png differ diff --git a/source/_static/cfn6.png b/source/_static/cfn6.png new file mode 100644 index 0000000..cbbbf0e Binary files /dev/null and b/source/_static/cfn6.png differ diff --git a/source/_static/clr1.png b/source/_static/clr1.png new file mode 100644 index 0000000..78be8a7 Binary files /dev/null and b/source/_static/clr1.png differ diff --git a/source/_static/clr2.png b/source/_static/clr2.png new file mode 100644 index 0000000..d3c6eef Binary files /dev/null and b/source/_static/clr2.png differ diff --git a/source/_static/clr3.png b/source/_static/clr3.png new file mode 100644 index 0000000..d7178dd Binary files /dev/null and b/source/_static/clr3.png differ diff --git a/source/_static/cnd1.png b/source/_static/cnd1.png new file mode 100644 index 0000000..f325cee Binary files /dev/null and b/source/_static/cnd1.png differ diff --git a/source/_static/cnd2.png b/source/_static/cnd2.png new file mode 100644 index 0000000..167a4cd Binary files /dev/null and b/source/_static/cnd2.png differ diff --git a/source/_static/cnd3.png b/source/_static/cnd3.png new file mode 100644 index 0000000..24080f1 Binary files /dev/null and b/source/_static/cnd3.png differ diff --git a/source/_static/cnd4.png b/source/_static/cnd4.png new file mode 100644 index 0000000..a7a3f48 Binary files /dev/null and b/source/_static/cnd4.png differ diff --git a/source/_static/cnd5.png b/source/_static/cnd5.png new file mode 100644 index 0000000..922df1d Binary files /dev/null and b/source/_static/cnd5.png differ diff --git a/source/_static/con1.png b/source/_static/con1.png new file mode 100644 index 0000000..1286711 Binary files /dev/null and b/source/_static/con1.png differ diff --git a/source/_static/conv1.png b/source/_static/conv1.png new file mode 100644 index 0000000..9cf8be4 Binary files /dev/null and b/source/_static/conv1.png differ diff --git a/source/_static/conv1a.png b/source/_static/conv1a.png new file mode 100644 index 0000000..f2f7d6d Binary files /dev/null and b/source/_static/conv1a.png differ diff --git a/source/_static/conv2.png b/source/_static/conv2.png new file mode 100644 index 0000000..011d8e0 Binary files /dev/null and b/source/_static/conv2.png differ diff --git a/source/_static/cv1.png b/source/_static/cv1.png new file mode 100644 index 0000000..14f4424 Binary files /dev/null and b/source/_static/cv1.png differ diff --git a/source/_static/cv2.png b/source/_static/cv2.png new file mode 100644 index 0000000..f737bef Binary files /dev/null and b/source/_static/cv2.png differ diff --git a/source/_static/cv3.png b/source/_static/cv3.png new file mode 100644 index 0000000..5102507 Binary files /dev/null and b/source/_static/cv3.png differ diff --git a/source/_static/cv4.png b/source/_static/cv4.png new file mode 100644 index 0000000..015fdce Binary files /dev/null and b/source/_static/cv4.png differ diff --git a/source/_static/dm1.png b/source/_static/dm1.png new file mode 100644 index 0000000..931f41c Binary files /dev/null and b/source/_static/dm1.png differ diff --git a/source/_static/dm2.png b/source/_static/dm2.png new file mode 100644 index 0000000..2829709 Binary files /dev/null and b/source/_static/dm2.png differ diff --git a/source/_static/dm3.png b/source/_static/dm3.png new file mode 100644 index 0000000..fb2c412 Binary files /dev/null and b/source/_static/dm3.png differ diff --git a/source/_static/dm4.png b/source/_static/dm4.png new file mode 100644 index 0000000..751a5cd Binary files /dev/null and b/source/_static/dm4.png differ diff --git a/source/_static/dma.png b/source/_static/dma.png new file mode 100644 index 0000000..e70097a Binary files /dev/null and b/source/_static/dma.png differ diff --git a/source/_static/dsm.png b/source/_static/dsm.png new file mode 100644 index 0000000..5524448 Binary files /dev/null and b/source/_static/dsm.png differ diff --git a/source/_static/edn.png b/source/_static/edn.png new file mode 100644 index 0000000..2f4fc07 Binary files /dev/null and b/source/_static/edn.png differ diff --git a/source/_static/eleven.png b/source/_static/eleven.png new file mode 100644 index 0000000..ca21af9 Binary files /dev/null and b/source/_static/eleven.png differ diff --git a/source/_static/en1.png b/source/_static/en1.png new file mode 100644 index 0000000..d4761c3 Binary files /dev/null and b/source/_static/en1.png differ diff --git a/source/_static/en2.png b/source/_static/en2.png new file mode 100644 index 0000000..e81c69f Binary files /dev/null and b/source/_static/en2.png differ diff --git a/source/_static/epf.png b/source/_static/epf.png new file mode 100644 index 0000000..47ef395 Binary files /dev/null and b/source/_static/epf.png differ diff --git a/source/_static/exl.png b/source/_static/exl.png new file mode 100644 index 0000000..600987e Binary files /dev/null and b/source/_static/exl.png differ diff --git a/source/_static/fifteen.png b/source/_static/fifteen.png new file mode 100644 index 0000000..df150d8 Binary files /dev/null and b/source/_static/fifteen.png differ diff --git a/source/_static/formula.png b/source/_static/formula.png new file mode 100644 index 0000000..213a76f Binary files /dev/null and b/source/_static/formula.png differ diff --git a/source/_static/hc1.png b/source/_static/hc1.png new file mode 100644 index 0000000..adc48db Binary files /dev/null and b/source/_static/hc1.png differ diff --git a/source/_static/hc2.png b/source/_static/hc2.png new file mode 100644 index 0000000..59bd086 Binary files /dev/null and b/source/_static/hc2.png differ diff --git a/source/_static/image1.png b/source/_static/image1.png new file mode 100644 index 0000000..bdb2baf Binary files /dev/null and b/source/_static/image1.png differ diff --git a/source/_static/image10.png b/source/_static/image10.png new file mode 100644 index 0000000..4708673 Binary files /dev/null and b/source/_static/image10.png differ diff --git a/source/_static/image100.png b/source/_static/image100.png new file mode 100644 index 0000000..969246c Binary files /dev/null and b/source/_static/image100.png differ diff --git a/source/_static/image101.png b/source/_static/image101.png new file mode 100644 index 0000000..f4f7cf0 Binary files /dev/null and b/source/_static/image101.png differ diff --git a/source/_static/image102.png b/source/_static/image102.png new file mode 100644 index 0000000..dc6ad55 Binary files /dev/null and b/source/_static/image102.png differ diff --git a/source/_static/image103.png b/source/_static/image103.png new file mode 100644 index 0000000..060510d Binary files /dev/null and b/source/_static/image103.png differ diff --git a/source/_static/image104.png b/source/_static/image104.png new file mode 100644 index 0000000..b7d69dd Binary files /dev/null and b/source/_static/image104.png differ diff --git a/source/_static/image105.png b/source/_static/image105.png new file mode 100644 index 0000000..0cb377a Binary files /dev/null and b/source/_static/image105.png differ diff --git a/source/_static/image106.png b/source/_static/image106.png new file mode 100644 index 0000000..93ea2f6 Binary files /dev/null and b/source/_static/image106.png differ diff --git a/source/_static/image107.png b/source/_static/image107.png new file mode 100644 index 0000000..ceb4929 Binary files /dev/null and b/source/_static/image107.png differ diff --git a/source/_static/image108.png b/source/_static/image108.png new file mode 100644 index 0000000..2794003 Binary files /dev/null and b/source/_static/image108.png differ diff --git a/source/_static/image109.png b/source/_static/image109.png new file mode 100644 index 0000000..f94466e Binary files /dev/null and b/source/_static/image109.png differ diff --git a/source/_static/image11.png b/source/_static/image11.png new file mode 100644 index 0000000..6e38afa Binary files /dev/null and b/source/_static/image11.png differ diff --git a/source/_static/image110.png b/source/_static/image110.png new file mode 100644 index 0000000..a1863ce Binary files /dev/null and b/source/_static/image110.png differ diff --git a/source/_static/image111.png b/source/_static/image111.png new file mode 100644 index 0000000..0bd83d9 Binary files /dev/null and b/source/_static/image111.png differ diff --git a/source/_static/image112.png b/source/_static/image112.png new file mode 100644 index 0000000..7c4cfca Binary files /dev/null and b/source/_static/image112.png differ diff --git a/source/_static/image113.png b/source/_static/image113.png new file mode 100644 index 0000000..66857ba Binary files /dev/null and b/source/_static/image113.png differ diff --git a/source/_static/image114.png b/source/_static/image114.png new file mode 100644 index 0000000..6f46ae0 Binary files /dev/null and b/source/_static/image114.png differ diff --git a/source/_static/image115.png b/source/_static/image115.png new file mode 100644 index 0000000..508f259 Binary files /dev/null and b/source/_static/image115.png differ diff --git a/source/_static/image116.png b/source/_static/image116.png new file mode 100644 index 0000000..15deeac Binary files /dev/null and b/source/_static/image116.png differ diff --git a/source/_static/image117.png b/source/_static/image117.png new file mode 100644 index 0000000..03e3d42 Binary files /dev/null and b/source/_static/image117.png differ diff --git a/source/_static/image118.png b/source/_static/image118.png new file mode 100644 index 0000000..5641438 Binary files /dev/null and b/source/_static/image118.png differ diff --git a/source/_static/image119.png b/source/_static/image119.png new file mode 100644 index 0000000..47d5e69 Binary files /dev/null and b/source/_static/image119.png differ diff --git a/source/_static/image12.png b/source/_static/image12.png new file mode 100644 index 0000000..67c764b Binary files /dev/null and b/source/_static/image12.png differ diff --git a/source/_static/image120.png b/source/_static/image120.png new file mode 100644 index 0000000..9b4e226 Binary files /dev/null and b/source/_static/image120.png differ diff --git a/source/_static/image121.png b/source/_static/image121.png new file mode 100644 index 0000000..6429464 Binary files /dev/null and b/source/_static/image121.png differ diff --git a/source/_static/image122.png b/source/_static/image122.png new file mode 100644 index 0000000..ec471af Binary files /dev/null and b/source/_static/image122.png differ diff --git a/source/_static/image123.png b/source/_static/image123.png new file mode 100644 index 0000000..f81ab26 Binary files /dev/null and b/source/_static/image123.png differ diff --git a/source/_static/image124.png b/source/_static/image124.png new file mode 100644 index 0000000..537133e Binary files /dev/null and b/source/_static/image124.png differ diff --git a/source/_static/image125.png b/source/_static/image125.png new file mode 100644 index 0000000..6f254f2 Binary files /dev/null and b/source/_static/image125.png differ diff --git a/source/_static/image126.png b/source/_static/image126.png new file mode 100644 index 0000000..20c5757 Binary files /dev/null and b/source/_static/image126.png differ diff --git a/source/_static/image127.png b/source/_static/image127.png new file mode 100644 index 0000000..f345371 Binary files /dev/null and b/source/_static/image127.png differ diff --git a/source/_static/image128.png b/source/_static/image128.png new file mode 100644 index 0000000..68c524d Binary files /dev/null and b/source/_static/image128.png differ diff --git a/source/_static/image129.png b/source/_static/image129.png new file mode 100644 index 0000000..a71a369 Binary files /dev/null and b/source/_static/image129.png differ diff --git a/source/_static/image13.png b/source/_static/image13.png new file mode 100644 index 0000000..ccf988d Binary files /dev/null and b/source/_static/image13.png differ diff --git a/source/_static/image130.png b/source/_static/image130.png new file mode 100644 index 0000000..5d6b970 Binary files /dev/null and b/source/_static/image130.png differ diff --git a/source/_static/image131.png b/source/_static/image131.png new file mode 100644 index 0000000..bdbc9b5 Binary files /dev/null and b/source/_static/image131.png differ diff --git a/source/_static/image132.png b/source/_static/image132.png new file mode 100644 index 0000000..c900794 Binary files /dev/null and b/source/_static/image132.png differ diff --git a/source/_static/image133.png b/source/_static/image133.png new file mode 100644 index 0000000..b3b683d Binary files /dev/null and b/source/_static/image133.png differ diff --git a/source/_static/image134.png b/source/_static/image134.png new file mode 100644 index 0000000..445ff70 Binary files /dev/null and b/source/_static/image134.png differ diff --git a/source/_static/image135.png b/source/_static/image135.png new file mode 100644 index 0000000..9b7fb24 Binary files /dev/null and b/source/_static/image135.png differ diff --git a/source/_static/image136.png b/source/_static/image136.png new file mode 100644 index 0000000..df13e40 Binary files /dev/null and b/source/_static/image136.png differ diff --git a/source/_static/image137.png b/source/_static/image137.png new file mode 100644 index 0000000..51e3203 Binary files /dev/null and b/source/_static/image137.png differ diff --git a/source/_static/image139.png b/source/_static/image139.png new file mode 100644 index 0000000..ed58b9d Binary files /dev/null and b/source/_static/image139.png differ diff --git a/source/_static/image14.png b/source/_static/image14.png new file mode 100644 index 0000000..7149d32 Binary files /dev/null and b/source/_static/image14.png differ diff --git a/source/_static/image15.png b/source/_static/image15.png new file mode 100644 index 0000000..246f0c4 Binary files /dev/null and b/source/_static/image15.png differ diff --git a/source/_static/image16.png b/source/_static/image16.png new file mode 100644 index 0000000..a86682d Binary files /dev/null and b/source/_static/image16.png differ diff --git a/source/_static/image17.png b/source/_static/image17.png new file mode 100644 index 0000000..220186d Binary files /dev/null and b/source/_static/image17.png differ diff --git a/source/_static/image18.png b/source/_static/image18.png new file mode 100644 index 0000000..aaa1d0a Binary files /dev/null and b/source/_static/image18.png differ diff --git a/source/_static/image19.jpeg b/source/_static/image19.jpeg new file mode 100644 index 0000000..d065082 Binary files /dev/null and b/source/_static/image19.jpeg differ diff --git a/source/_static/image2.png b/source/_static/image2.png new file mode 100644 index 0000000..8bc40ff Binary files /dev/null and b/source/_static/image2.png differ diff --git a/source/_static/image20.png b/source/_static/image20.png new file mode 100644 index 0000000..3226bd7 Binary files /dev/null and b/source/_static/image20.png differ diff --git a/source/_static/image21.png b/source/_static/image21.png new file mode 100644 index 0000000..ba52762 Binary files /dev/null and b/source/_static/image21.png differ diff --git a/source/_static/image22.jpeg b/source/_static/image22.jpeg new file mode 100644 index 0000000..76ff07a Binary files /dev/null and b/source/_static/image22.jpeg differ diff --git a/source/_static/image23.jpeg b/source/_static/image23.jpeg new file mode 100644 index 0000000..db7670e Binary files /dev/null and b/source/_static/image23.jpeg differ diff --git a/source/_static/image24.jpeg b/source/_static/image24.jpeg new file mode 100644 index 0000000..0dcd358 Binary files /dev/null and b/source/_static/image24.jpeg differ diff --git a/source/_static/image25.png b/source/_static/image25.png new file mode 100644 index 0000000..2f66466 Binary files /dev/null and b/source/_static/image25.png differ diff --git a/source/_static/image26.png b/source/_static/image26.png new file mode 100644 index 0000000..83d067d Binary files /dev/null and b/source/_static/image26.png differ diff --git a/source/_static/image27.png b/source/_static/image27.png new file mode 100644 index 0000000..fa8a292 Binary files /dev/null and b/source/_static/image27.png differ diff --git a/source/_static/image28.jpeg b/source/_static/image28.jpeg new file mode 100644 index 0000000..4777279 Binary files /dev/null and b/source/_static/image28.jpeg differ diff --git a/source/_static/image29.png b/source/_static/image29.png new file mode 100644 index 0000000..48bbd21 Binary files /dev/null and b/source/_static/image29.png differ diff --git a/source/_static/image30.png b/source/_static/image30.png new file mode 100644 index 0000000..d4c71b4 Binary files /dev/null and b/source/_static/image30.png differ diff --git a/source/_static/image31.png b/source/_static/image31.png new file mode 100644 index 0000000..e69c439 Binary files /dev/null and b/source/_static/image31.png differ diff --git a/source/_static/image32.png b/source/_static/image32.png new file mode 100644 index 0000000..4fed53c Binary files /dev/null and b/source/_static/image32.png differ diff --git a/source/_static/image33.png b/source/_static/image33.png new file mode 100644 index 0000000..7becb4e Binary files /dev/null and b/source/_static/image33.png differ diff --git a/source/_static/image34.png b/source/_static/image34.png new file mode 100644 index 0000000..cb303f0 Binary files /dev/null and b/source/_static/image34.png differ diff --git a/source/_static/image35.png b/source/_static/image35.png new file mode 100644 index 0000000..5c33d0b Binary files /dev/null and b/source/_static/image35.png differ diff --git a/source/_static/image36.png b/source/_static/image36.png new file mode 100644 index 0000000..42ef767 Binary files /dev/null and b/source/_static/image36.png differ diff --git a/source/_static/image37.png b/source/_static/image37.png new file mode 100644 index 0000000..4584487 Binary files /dev/null and b/source/_static/image37.png differ diff --git a/source/_static/image38.jpeg b/source/_static/image38.jpeg new file mode 100644 index 0000000..05eb10c Binary files /dev/null and b/source/_static/image38.jpeg differ diff --git a/source/_static/image39.png b/source/_static/image39.png new file mode 100644 index 0000000..4da4ffd Binary files /dev/null and b/source/_static/image39.png differ diff --git a/source/_static/image4.png b/source/_static/image4.png new file mode 100644 index 0000000..04dfee4 Binary files /dev/null and b/source/_static/image4.png differ diff --git a/source/_static/image40.jpeg b/source/_static/image40.jpeg new file mode 100644 index 0000000..c41d5d9 Binary files /dev/null and b/source/_static/image40.jpeg differ diff --git a/source/_static/image41.jpeg b/source/_static/image41.jpeg new file mode 100644 index 0000000..1792bc6 Binary files /dev/null and b/source/_static/image41.jpeg differ diff --git a/source/_static/image42.png b/source/_static/image42.png new file mode 100644 index 0000000..96b8883 Binary files /dev/null and b/source/_static/image42.png differ diff --git a/source/_static/image43.jpeg b/source/_static/image43.jpeg new file mode 100644 index 0000000..013feff Binary files /dev/null and b/source/_static/image43.jpeg differ diff --git a/source/_static/image44.jpeg b/source/_static/image44.jpeg new file mode 100644 index 0000000..7949cbe Binary files /dev/null and b/source/_static/image44.jpeg differ diff --git a/source/_static/image45.jpeg b/source/_static/image45.jpeg new file mode 100644 index 0000000..40db46f Binary files /dev/null and b/source/_static/image45.jpeg differ diff --git a/source/_static/image46.png b/source/_static/image46.png new file mode 100644 index 0000000..e65fa94 Binary files /dev/null and b/source/_static/image46.png differ diff --git a/source/_static/image47.jpeg b/source/_static/image47.jpeg new file mode 100644 index 0000000..7cf9b38 Binary files /dev/null and b/source/_static/image47.jpeg differ diff --git a/source/_static/image48.jpeg b/source/_static/image48.jpeg new file mode 100644 index 0000000..2309672 Binary files /dev/null and b/source/_static/image48.jpeg differ diff --git a/source/_static/image49.png b/source/_static/image49.png new file mode 100644 index 0000000..8867440 Binary files /dev/null and b/source/_static/image49.png differ diff --git a/source/_static/image5.jpeg b/source/_static/image5.jpeg new file mode 100644 index 0000000..74fdfae Binary files /dev/null and b/source/_static/image5.jpeg differ diff --git a/source/_static/image50.png b/source/_static/image50.png new file mode 100644 index 0000000..c4431ad Binary files /dev/null and b/source/_static/image50.png differ diff --git a/source/_static/image51.png b/source/_static/image51.png new file mode 100644 index 0000000..dad922b Binary files /dev/null and b/source/_static/image51.png differ diff --git a/source/_static/image52.png b/source/_static/image52.png new file mode 100644 index 0000000..16208aa Binary files /dev/null and b/source/_static/image52.png differ diff --git a/source/_static/image53.png b/source/_static/image53.png new file mode 100644 index 0000000..88ffc1f Binary files /dev/null and b/source/_static/image53.png differ diff --git a/source/_static/image54.png b/source/_static/image54.png new file mode 100644 index 0000000..1bf740b Binary files /dev/null and b/source/_static/image54.png differ diff --git a/source/_static/image55.png b/source/_static/image55.png new file mode 100644 index 0000000..1d17212 Binary files /dev/null and b/source/_static/image55.png differ diff --git a/source/_static/image56.png b/source/_static/image56.png new file mode 100644 index 0000000..e874f21 Binary files /dev/null and b/source/_static/image56.png differ diff --git a/source/_static/image57.png b/source/_static/image57.png new file mode 100644 index 0000000..f9cb94d Binary files /dev/null and b/source/_static/image57.png differ diff --git a/source/_static/image58.png b/source/_static/image58.png new file mode 100644 index 0000000..d30e907 Binary files /dev/null and b/source/_static/image58.png differ diff --git a/source/_static/image59.png b/source/_static/image59.png new file mode 100644 index 0000000..f70075f Binary files /dev/null and b/source/_static/image59.png differ diff --git a/source/_static/image6.jpeg b/source/_static/image6.jpeg new file mode 100644 index 0000000..12a07bd Binary files /dev/null and b/source/_static/image6.jpeg differ diff --git a/source/_static/image60.png b/source/_static/image60.png new file mode 100644 index 0000000..7c72bb3 Binary files /dev/null and b/source/_static/image60.png differ diff --git a/source/_static/image61.png b/source/_static/image61.png new file mode 100644 index 0000000..4a600df Binary files /dev/null and b/source/_static/image61.png differ diff --git a/source/_static/image62.png b/source/_static/image62.png new file mode 100644 index 0000000..005fa45 Binary files /dev/null and b/source/_static/image62.png differ diff --git a/source/_static/image63.png b/source/_static/image63.png new file mode 100644 index 0000000..dac1664 Binary files /dev/null and b/source/_static/image63.png differ diff --git a/source/_static/image64.png b/source/_static/image64.png new file mode 100644 index 0000000..bf41b1f Binary files /dev/null and b/source/_static/image64.png differ diff --git a/source/_static/image65.png b/source/_static/image65.png new file mode 100644 index 0000000..0f85cf6 Binary files /dev/null and b/source/_static/image65.png differ diff --git a/source/_static/image66.png b/source/_static/image66.png new file mode 100644 index 0000000..22a796c Binary files /dev/null and b/source/_static/image66.png differ diff --git a/source/_static/image67.png b/source/_static/image67.png new file mode 100644 index 0000000..6b95df9 Binary files /dev/null and b/source/_static/image67.png differ diff --git a/source/_static/image68.png b/source/_static/image68.png new file mode 100644 index 0000000..ed9ec49 Binary files /dev/null and b/source/_static/image68.png differ diff --git a/source/_static/image69.png b/source/_static/image69.png new file mode 100644 index 0000000..a3b16f5 Binary files /dev/null and b/source/_static/image69.png differ diff --git a/source/_static/image7.png b/source/_static/image7.png new file mode 100644 index 0000000..b403360 Binary files /dev/null and b/source/_static/image7.png differ diff --git a/source/_static/image70.png b/source/_static/image70.png new file mode 100644 index 0000000..7915341 Binary files /dev/null and b/source/_static/image70.png differ diff --git a/source/_static/image71.png b/source/_static/image71.png new file mode 100644 index 0000000..84c5209 Binary files /dev/null and b/source/_static/image71.png differ diff --git a/source/_static/image72.png b/source/_static/image72.png new file mode 100644 index 0000000..6e89b8d Binary files /dev/null and b/source/_static/image72.png differ diff --git a/source/_static/image73.png b/source/_static/image73.png new file mode 100644 index 0000000..c3551ee Binary files /dev/null and b/source/_static/image73.png differ diff --git a/source/_static/image74.png b/source/_static/image74.png new file mode 100644 index 0000000..9036137 Binary files /dev/null and b/source/_static/image74.png differ diff --git a/source/_static/image75.png b/source/_static/image75.png new file mode 100644 index 0000000..67f2e80 Binary files /dev/null and b/source/_static/image75.png differ diff --git a/source/_static/image76.png b/source/_static/image76.png new file mode 100644 index 0000000..d087854 Binary files /dev/null and b/source/_static/image76.png differ diff --git a/source/_static/image77.png b/source/_static/image77.png new file mode 100644 index 0000000..8340948 Binary files /dev/null and b/source/_static/image77.png differ diff --git a/source/_static/image78.png b/source/_static/image78.png new file mode 100644 index 0000000..d4feaa6 Binary files /dev/null and b/source/_static/image78.png differ diff --git a/source/_static/image79.png b/source/_static/image79.png new file mode 100644 index 0000000..bc4ee13 Binary files /dev/null and b/source/_static/image79.png differ diff --git a/source/_static/image8.png b/source/_static/image8.png new file mode 100644 index 0000000..beb764b Binary files /dev/null and b/source/_static/image8.png differ diff --git a/source/_static/image80.png b/source/_static/image80.png new file mode 100644 index 0000000..08659a1 Binary files /dev/null and b/source/_static/image80.png differ diff --git a/source/_static/image81.png b/source/_static/image81.png new file mode 100644 index 0000000..3edd1be Binary files /dev/null and b/source/_static/image81.png differ diff --git a/source/_static/image82.png b/source/_static/image82.png new file mode 100644 index 0000000..2370f14 Binary files /dev/null and b/source/_static/image82.png differ diff --git a/source/_static/image83.png b/source/_static/image83.png new file mode 100644 index 0000000..f5d0490 Binary files /dev/null and b/source/_static/image83.png differ diff --git a/source/_static/image84.png b/source/_static/image84.png new file mode 100644 index 0000000..18ab870 Binary files /dev/null and b/source/_static/image84.png differ diff --git a/source/_static/image85.png b/source/_static/image85.png new file mode 100644 index 0000000..a343237 Binary files /dev/null and b/source/_static/image85.png differ diff --git a/source/_static/image86.png b/source/_static/image86.png new file mode 100644 index 0000000..71b322e Binary files /dev/null and b/source/_static/image86.png differ diff --git a/source/_static/image87.png b/source/_static/image87.png new file mode 100644 index 0000000..28e4228 Binary files /dev/null and b/source/_static/image87.png differ diff --git a/source/_static/image88.png b/source/_static/image88.png new file mode 100644 index 0000000..d692c3e Binary files /dev/null and b/source/_static/image88.png differ diff --git a/source/_static/image89.png b/source/_static/image89.png new file mode 100644 index 0000000..82f1edd Binary files /dev/null and b/source/_static/image89.png differ diff --git a/source/_static/image9.png b/source/_static/image9.png new file mode 100644 index 0000000..c51c061 Binary files /dev/null and b/source/_static/image9.png differ diff --git a/source/_static/image90.png b/source/_static/image90.png new file mode 100644 index 0000000..4c137ae Binary files /dev/null and b/source/_static/image90.png differ diff --git a/source/_static/image91.png b/source/_static/image91.png new file mode 100644 index 0000000..f2eab8b Binary files /dev/null and b/source/_static/image91.png differ diff --git a/source/_static/image92.png b/source/_static/image92.png new file mode 100644 index 0000000..64148c1 Binary files /dev/null and b/source/_static/image92.png differ diff --git a/source/_static/image93.png b/source/_static/image93.png new file mode 100644 index 0000000..241e959 Binary files /dev/null and b/source/_static/image93.png differ diff --git a/source/_static/image94.png b/source/_static/image94.png new file mode 100644 index 0000000..4e9cd0b Binary files /dev/null and b/source/_static/image94.png differ diff --git a/source/_static/image95.png b/source/_static/image95.png new file mode 100644 index 0000000..ebdaa0b Binary files /dev/null and b/source/_static/image95.png differ diff --git a/source/_static/image96.png b/source/_static/image96.png new file mode 100644 index 0000000..1199c67 Binary files /dev/null and b/source/_static/image96.png differ diff --git a/source/_static/image97.png b/source/_static/image97.png new file mode 100644 index 0000000..710a4fe Binary files /dev/null and b/source/_static/image97.png differ diff --git a/source/_static/image98.png b/source/_static/image98.png new file mode 100644 index 0000000..7e51e42 Binary files /dev/null and b/source/_static/image98.png differ diff --git a/source/_static/image99.png b/source/_static/image99.png new file mode 100644 index 0000000..576cea5 Binary files /dev/null and b/source/_static/image99.png differ diff --git a/source/_static/key.png b/source/_static/key.png new file mode 100644 index 0000000..f7373b0 Binary files /dev/null and b/source/_static/key.png differ diff --git a/source/_static/lck1.png b/source/_static/lck1.png new file mode 100644 index 0000000..eae2cbf Binary files /dev/null and b/source/_static/lck1.png differ diff --git a/source/_static/lck2.png b/source/_static/lck2.png new file mode 100644 index 0000000..a01a32a Binary files /dev/null and b/source/_static/lck2.png differ diff --git a/source/_static/lcs.png b/source/_static/lcs.png new file mode 100644 index 0000000..b1f88f9 Binary files /dev/null and b/source/_static/lcs.png differ diff --git a/source/_static/mm1.png b/source/_static/mm1.png new file mode 100644 index 0000000..c16e23a Binary files /dev/null and b/source/_static/mm1.png differ diff --git a/source/_static/mm2.png b/source/_static/mm2.png new file mode 100644 index 0000000..cc27409 Binary files /dev/null and b/source/_static/mm2.png differ diff --git a/source/_static/more.png b/source/_static/more.png new file mode 100644 index 0000000..6a13b26 Binary files /dev/null and b/source/_static/more.png differ diff --git a/source/_static/nav1.png b/source/_static/nav1.png new file mode 100644 index 0000000..4d13567 Binary files /dev/null and b/source/_static/nav1.png differ diff --git a/source/_static/nav2.png b/source/_static/nav2.png new file mode 100644 index 0000000..c4125d4 Binary files /dev/null and b/source/_static/nav2.png differ diff --git a/source/_static/nav3.png b/source/_static/nav3.png new file mode 100644 index 0000000..460cd24 Binary files /dev/null and b/source/_static/nav3.png differ diff --git a/source/_static/nav4.png b/source/_static/nav4.png new file mode 100644 index 0000000..7c2ea2e Binary files /dev/null and b/source/_static/nav4.png differ diff --git a/source/_static/nav5.png b/source/_static/nav5.png new file mode 100644 index 0000000..912c269 Binary files /dev/null and b/source/_static/nav5.png differ diff --git a/source/_static/nav6.png b/source/_static/nav6.png new file mode 100644 index 0000000..976a6bd Binary files /dev/null and b/source/_static/nav6.png differ diff --git a/source/_static/nav7.png b/source/_static/nav7.png new file mode 100644 index 0000000..ccb3469 Binary files /dev/null and b/source/_static/nav7.png differ diff --git a/source/_static/nav8.png b/source/_static/nav8.png new file mode 100644 index 0000000..8b598a0 Binary files /dev/null and b/source/_static/nav8.png differ diff --git a/source/_static/nav9.png b/source/_static/nav9.png new file mode 100644 index 0000000..96b4e45 Binary files /dev/null and b/source/_static/nav9.png differ diff --git a/source/_static/navp.png b/source/_static/navp.png new file mode 100644 index 0000000..d12e28f Binary files /dev/null and b/source/_static/navp.png differ diff --git a/source/_static/nc1.png b/source/_static/nc1.png new file mode 100644 index 0000000..3a643d2 Binary files /dev/null and b/source/_static/nc1.png differ diff --git a/source/_static/nc2.png b/source/_static/nc2.png new file mode 100644 index 0000000..fc77614 Binary files /dev/null and b/source/_static/nc2.png differ diff --git a/source/_static/ncm2.png b/source/_static/ncm2.png new file mode 100644 index 0000000..072dc70 Binary files /dev/null and b/source/_static/ncm2.png differ diff --git a/source/_static/nf1.png b/source/_static/nf1.png new file mode 100644 index 0000000..1af724b Binary files /dev/null and b/source/_static/nf1.png differ diff --git a/source/_static/nf2.png b/source/_static/nf2.png new file mode 100644 index 0000000..3db6999 Binary files /dev/null and b/source/_static/nf2.png differ diff --git a/source/_static/nm1.png b/source/_static/nm1.png new file mode 100644 index 0000000..fdf1e21 Binary files /dev/null and b/source/_static/nm1.png differ diff --git a/source/_static/nm3.png b/source/_static/nm3.png new file mode 100644 index 0000000..91354c1 Binary files /dev/null and b/source/_static/nm3.png differ diff --git a/source/_static/nm4.png b/source/_static/nm4.png new file mode 100644 index 0000000..4279f1d Binary files /dev/null and b/source/_static/nm4.png differ diff --git a/source/_static/nm5.png b/source/_static/nm5.png new file mode 100644 index 0000000..8743d1f Binary files /dev/null and b/source/_static/nm5.png differ diff --git a/source/_static/nm6.png b/source/_static/nm6.png new file mode 100644 index 0000000..4e4c7cc Binary files /dev/null and b/source/_static/nm6.png differ diff --git a/source/_static/pl1.png b/source/_static/pl1.png new file mode 100644 index 0000000..caf1a6e Binary files /dev/null and b/source/_static/pl1.png differ diff --git a/source/_static/pl10.png b/source/_static/pl10.png new file mode 100644 index 0000000..0694000 Binary files /dev/null and b/source/_static/pl10.png differ diff --git a/source/_static/pl11.png b/source/_static/pl11.png new file mode 100644 index 0000000..d9dc3eb Binary files /dev/null and b/source/_static/pl11.png differ diff --git a/source/_static/pl12.png b/source/_static/pl12.png new file mode 100644 index 0000000..5cf427f Binary files /dev/null and b/source/_static/pl12.png differ diff --git a/source/_static/pl13.png b/source/_static/pl13.png new file mode 100644 index 0000000..6e0eb75 Binary files /dev/null and b/source/_static/pl13.png differ diff --git a/source/_static/pl14.png b/source/_static/pl14.png new file mode 100644 index 0000000..5718cb3 Binary files /dev/null and b/source/_static/pl14.png differ diff --git a/source/_static/pl15.png b/source/_static/pl15.png new file mode 100644 index 0000000..4e9b2ed Binary files /dev/null and b/source/_static/pl15.png differ diff --git a/source/_static/pl16.png b/source/_static/pl16.png new file mode 100644 index 0000000..4234ee7 Binary files /dev/null and b/source/_static/pl16.png differ diff --git a/source/_static/pl17.png b/source/_static/pl17.png new file mode 100644 index 0000000..a6b36f9 Binary files /dev/null and b/source/_static/pl17.png differ diff --git a/source/_static/pl18.png b/source/_static/pl18.png new file mode 100644 index 0000000..bc1cbbe Binary files /dev/null and b/source/_static/pl18.png differ diff --git a/source/_static/pl19.png b/source/_static/pl19.png new file mode 100644 index 0000000..c90cf33 Binary files /dev/null and b/source/_static/pl19.png differ diff --git a/source/_static/pl2.png b/source/_static/pl2.png new file mode 100644 index 0000000..8c126c8 Binary files /dev/null and b/source/_static/pl2.png differ diff --git a/source/_static/pl20.png b/source/_static/pl20.png new file mode 100644 index 0000000..6fd0bf9 Binary files /dev/null and b/source/_static/pl20.png differ diff --git a/source/_static/pl21.png b/source/_static/pl21.png new file mode 100644 index 0000000..a31a399 Binary files /dev/null and b/source/_static/pl21.png differ diff --git a/source/_static/pl22.png b/source/_static/pl22.png new file mode 100644 index 0000000..ad96abc Binary files /dev/null and b/source/_static/pl22.png differ diff --git a/source/_static/pl23.png b/source/_static/pl23.png new file mode 100644 index 0000000..6f2acef Binary files /dev/null and b/source/_static/pl23.png differ diff --git a/source/_static/pl24.png b/source/_static/pl24.png new file mode 100644 index 0000000..7048eaa Binary files /dev/null and b/source/_static/pl24.png differ diff --git a/source/_static/pl25.png b/source/_static/pl25.png new file mode 100644 index 0000000..13936a7 Binary files /dev/null and b/source/_static/pl25.png differ diff --git a/source/_static/pl26.png b/source/_static/pl26.png new file mode 100644 index 0000000..4aabae8 Binary files /dev/null and b/source/_static/pl26.png differ diff --git a/source/_static/pl27.png b/source/_static/pl27.png new file mode 100644 index 0000000..b09f354 Binary files /dev/null and b/source/_static/pl27.png differ diff --git a/source/_static/pl28.png b/source/_static/pl28.png new file mode 100644 index 0000000..98b725d Binary files /dev/null and b/source/_static/pl28.png differ diff --git a/source/_static/pl29.png b/source/_static/pl29.png new file mode 100644 index 0000000..05cfc53 Binary files /dev/null and b/source/_static/pl29.png differ diff --git a/source/_static/pl3.png b/source/_static/pl3.png new file mode 100644 index 0000000..d93e4cf Binary files /dev/null and b/source/_static/pl3.png differ diff --git a/source/_static/pl30.png b/source/_static/pl30.png new file mode 100644 index 0000000..9e3a463 Binary files /dev/null and b/source/_static/pl30.png differ diff --git a/source/_static/pl31.png b/source/_static/pl31.png new file mode 100644 index 0000000..5c1ba23 Binary files /dev/null and b/source/_static/pl31.png differ diff --git a/source/_static/pl32.png b/source/_static/pl32.png new file mode 100644 index 0000000..9358cde Binary files /dev/null and b/source/_static/pl32.png differ diff --git a/source/_static/pl33.png b/source/_static/pl33.png new file mode 100644 index 0000000..8848117 Binary files /dev/null and b/source/_static/pl33.png differ diff --git a/source/_static/pl34.png b/source/_static/pl34.png new file mode 100644 index 0000000..ffd2c71 Binary files /dev/null and b/source/_static/pl34.png differ diff --git a/source/_static/pl35.png b/source/_static/pl35.png new file mode 100644 index 0000000..8d6818a Binary files /dev/null and b/source/_static/pl35.png differ diff --git a/source/_static/pl36.png b/source/_static/pl36.png new file mode 100644 index 0000000..aa8aeea Binary files /dev/null and b/source/_static/pl36.png differ diff --git a/source/_static/pl37.png b/source/_static/pl37.png new file mode 100644 index 0000000..36ee4b5 Binary files /dev/null and b/source/_static/pl37.png differ diff --git a/source/_static/pl38.png b/source/_static/pl38.png new file mode 100644 index 0000000..cb2ee13 Binary files /dev/null and b/source/_static/pl38.png differ diff --git a/source/_static/pl39.png b/source/_static/pl39.png new file mode 100644 index 0000000..68ac0f4 Binary files /dev/null and b/source/_static/pl39.png differ diff --git a/source/_static/pl4.png b/source/_static/pl4.png new file mode 100644 index 0000000..8216aca Binary files /dev/null and b/source/_static/pl4.png differ diff --git a/source/_static/pl5.png b/source/_static/pl5.png new file mode 100644 index 0000000..7fd3f27 Binary files /dev/null and b/source/_static/pl5.png differ diff --git a/source/_static/pl6.png b/source/_static/pl6.png new file mode 100644 index 0000000..ad96055 Binary files /dev/null and b/source/_static/pl6.png differ diff --git a/source/_static/pl7.png b/source/_static/pl7.png new file mode 100644 index 0000000..8ca8bf0 Binary files /dev/null and b/source/_static/pl7.png differ diff --git a/source/_static/pl8.png b/source/_static/pl8.png new file mode 100644 index 0000000..0415289 Binary files /dev/null and b/source/_static/pl8.png differ diff --git a/source/_static/pl9.png b/source/_static/pl9.png new file mode 100644 index 0000000..fc3d8e7 Binary files /dev/null and b/source/_static/pl9.png differ diff --git a/source/_static/plch.png b/source/_static/plch.png new file mode 100644 index 0000000..be133f2 Binary files /dev/null and b/source/_static/plch.png differ diff --git a/source/_static/pll1.png b/source/_static/pll1.png new file mode 100644 index 0000000..d5f9e7b Binary files /dev/null and b/source/_static/pll1.png differ diff --git a/source/_static/pll2.png b/source/_static/pll2.png new file mode 100644 index 0000000..2b8f2a7 Binary files /dev/null and b/source/_static/pll2.png differ diff --git a/source/_static/pll3.png b/source/_static/pll3.png new file mode 100644 index 0000000..d93e4cf Binary files /dev/null and b/source/_static/pll3.png differ diff --git a/source/_static/qe1.png b/source/_static/qe1.png new file mode 100644 index 0000000..f576184 Binary files /dev/null and b/source/_static/qe1.png differ diff --git a/source/_static/qe10.png b/source/_static/qe10.png new file mode 100644 index 0000000..999cc22 Binary files /dev/null and b/source/_static/qe10.png differ diff --git a/source/_static/qe11.png b/source/_static/qe11.png new file mode 100644 index 0000000..041b369 Binary files /dev/null and b/source/_static/qe11.png differ diff --git a/source/_static/qe12.png b/source/_static/qe12.png new file mode 100644 index 0000000..ee6d5f3 Binary files /dev/null and b/source/_static/qe12.png differ diff --git a/source/_static/qe13.png b/source/_static/qe13.png new file mode 100644 index 0000000..96b82de Binary files /dev/null and b/source/_static/qe13.png differ diff --git a/source/_static/qe14.png b/source/_static/qe14.png new file mode 100644 index 0000000..71304c7 Binary files /dev/null and b/source/_static/qe14.png differ diff --git a/source/_static/qe15.png b/source/_static/qe15.png new file mode 100644 index 0000000..163922d Binary files /dev/null and b/source/_static/qe15.png differ diff --git a/source/_static/qe16.png b/source/_static/qe16.png new file mode 100644 index 0000000..e4f097c Binary files /dev/null and b/source/_static/qe16.png differ diff --git a/source/_static/qe17.png b/source/_static/qe17.png new file mode 100644 index 0000000..4e8627e Binary files /dev/null and b/source/_static/qe17.png differ diff --git a/source/_static/qe18.png b/source/_static/qe18.png new file mode 100644 index 0000000..24b4206 Binary files /dev/null and b/source/_static/qe18.png differ diff --git a/source/_static/qe19.png b/source/_static/qe19.png new file mode 100644 index 0000000..fa4ca55 Binary files /dev/null and b/source/_static/qe19.png differ diff --git a/source/_static/qe2.png b/source/_static/qe2.png new file mode 100644 index 0000000..6de7331 Binary files /dev/null and b/source/_static/qe2.png differ diff --git a/source/_static/qe20.png b/source/_static/qe20.png new file mode 100644 index 0000000..f2668fc Binary files /dev/null and b/source/_static/qe20.png differ diff --git a/source/_static/qe21.png b/source/_static/qe21.png new file mode 100644 index 0000000..25bbcaa Binary files /dev/null and b/source/_static/qe21.png differ diff --git a/source/_static/qe3.png b/source/_static/qe3.png new file mode 100644 index 0000000..247f75c Binary files /dev/null and b/source/_static/qe3.png differ diff --git a/source/_static/qe4.png b/source/_static/qe4.png new file mode 100644 index 0000000..4d2edc5 Binary files /dev/null and b/source/_static/qe4.png differ diff --git a/source/_static/qe5.png b/source/_static/qe5.png new file mode 100644 index 0000000..1fc05b2 Binary files /dev/null and b/source/_static/qe5.png differ diff --git a/source/_static/qe6.png b/source/_static/qe6.png new file mode 100644 index 0000000..53d9889 Binary files /dev/null and b/source/_static/qe6.png differ diff --git a/source/_static/qe7.png b/source/_static/qe7.png new file mode 100644 index 0000000..ffb898c Binary files /dev/null and b/source/_static/qe7.png differ diff --git a/source/_static/qe8.png b/source/_static/qe8.png new file mode 100644 index 0000000..e5fdd64 Binary files /dev/null and b/source/_static/qe8.png differ diff --git a/source/_static/qe9.png b/source/_static/qe9.png new file mode 100644 index 0000000..1f83930 Binary files /dev/null and b/source/_static/qe9.png differ diff --git a/source/_static/scom1.png b/source/_static/scom1.png new file mode 100644 index 0000000..a7aca03 Binary files /dev/null and b/source/_static/scom1.png differ diff --git a/source/_static/scom2.png b/source/_static/scom2.png new file mode 100644 index 0000000..2b44763 Binary files /dev/null and b/source/_static/scom2.png differ diff --git a/source/_static/sf1.png b/source/_static/sf1.png new file mode 100644 index 0000000..361e42a Binary files /dev/null and b/source/_static/sf1.png differ diff --git a/source/_static/sf10.png b/source/_static/sf10.png new file mode 100644 index 0000000..97c4bfb Binary files /dev/null and b/source/_static/sf10.png differ diff --git a/source/_static/sf2.png b/source/_static/sf2.png new file mode 100644 index 0000000..abcc8b9 Binary files /dev/null and b/source/_static/sf2.png differ diff --git a/source/_static/sf3.png b/source/_static/sf3.png new file mode 100644 index 0000000..33781d4 Binary files /dev/null and b/source/_static/sf3.png differ diff --git a/source/_static/sf4.png b/source/_static/sf4.png new file mode 100644 index 0000000..7802438 Binary files /dev/null and b/source/_static/sf4.png differ diff --git a/source/_static/sf5.png b/source/_static/sf5.png new file mode 100644 index 0000000..31e4c37 Binary files /dev/null and b/source/_static/sf5.png differ diff --git a/source/_static/sf6.png b/source/_static/sf6.png new file mode 100644 index 0000000..62edc02 Binary files /dev/null and b/source/_static/sf6.png differ diff --git a/source/_static/sf7.png b/source/_static/sf7.png new file mode 100644 index 0000000..86d9a45 Binary files /dev/null and b/source/_static/sf7.png differ diff --git a/source/_static/sf8.png b/source/_static/sf8.png new file mode 100644 index 0000000..f32517d Binary files /dev/null and b/source/_static/sf8.png differ diff --git a/source/_static/sf9.png b/source/_static/sf9.png new file mode 100644 index 0000000..febfe36 Binary files /dev/null and b/source/_static/sf9.png differ diff --git a/source/_static/sfi1.png b/source/_static/sfi1.png new file mode 100644 index 0000000..4fed53c Binary files /dev/null and b/source/_static/sfi1.png differ diff --git a/source/_static/sfi2.png b/source/_static/sfi2.png new file mode 100644 index 0000000..8071a64 Binary files /dev/null and b/source/_static/sfi2.png differ diff --git a/source/_static/sfi3.png b/source/_static/sfi3.png new file mode 100644 index 0000000..32734fc Binary files /dev/null and b/source/_static/sfi3.png differ diff --git a/source/_static/sfi4.png b/source/_static/sfi4.png new file mode 100644 index 0000000..ea70010 Binary files /dev/null and b/source/_static/sfi4.png differ diff --git a/source/_static/sfi5.png b/source/_static/sfi5.png new file mode 100644 index 0000000..499b8b4 Binary files /dev/null and b/source/_static/sfi5.png differ diff --git a/source/_static/simu1.png b/source/_static/simu1.png new file mode 100644 index 0000000..4c43c43 Binary files /dev/null and b/source/_static/simu1.png differ diff --git a/source/_static/simulate.png b/source/_static/simulate.png new file mode 100644 index 0000000..027e03b Binary files /dev/null and b/source/_static/simulate.png differ diff --git a/source/_static/sm1.png b/source/_static/sm1.png new file mode 100644 index 0000000..573e758 Binary files /dev/null and b/source/_static/sm1.png differ diff --git a/source/_static/smm1.png b/source/_static/smm1.png new file mode 100644 index 0000000..afeb038 Binary files /dev/null and b/source/_static/smm1.png differ diff --git a/source/_static/smm2.png b/source/_static/smm2.png new file mode 100644 index 0000000..a61b838 Binary files /dev/null and b/source/_static/smm2.png differ diff --git a/source/_static/stp1.png b/source/_static/stp1.png new file mode 100644 index 0000000..a4bdec0 Binary files /dev/null and b/source/_static/stp1.png differ diff --git a/source/_static/stp2.png b/source/_static/stp2.png new file mode 100644 index 0000000..ec74c5d Binary files /dev/null and b/source/_static/stp2.png differ diff --git a/source/_static/tabs.png b/source/_static/tabs.png new file mode 100644 index 0000000..852fcef Binary files /dev/null and b/source/_static/tabs.png differ diff --git a/source/_static/tbt.png b/source/_static/tbt.png new file mode 100644 index 0000000..c60bd6f Binary files /dev/null and b/source/_static/tbt.png differ diff --git a/source/_static/va1.png b/source/_static/va1.png new file mode 100644 index 0000000..5d15eaf Binary files /dev/null and b/source/_static/va1.png differ diff --git a/source/_static/va2.png b/source/_static/va2.png new file mode 100644 index 0000000..49a9d5e Binary files /dev/null and b/source/_static/va2.png differ diff --git a/source/_static/va3.png b/source/_static/va3.png new file mode 100644 index 0000000..dc6cd3c Binary files /dev/null and b/source/_static/va3.png differ diff --git a/_images/va4.png b/source/_static/va4.png similarity index 99% rename from _images/va4.png rename to source/_static/va4.png index 3e53bb1..5c1339d 100644 Binary files a/_images/va4.png and b/source/_static/va4.png differ diff --git a/_images/va5.png b/source/_static/va5.png similarity index 99% rename from _images/va5.png rename to source/_static/va5.png index 397af1f..f38f393 100644 Binary files a/_images/va5.png and b/source/_static/va5.png differ diff --git a/source/_static/van1.png b/source/_static/van1.png new file mode 100644 index 0000000..f0f882d Binary files /dev/null and b/source/_static/van1.png differ diff --git a/source/_static/van10.png b/source/_static/van10.png new file mode 100644 index 0000000..f16b987 Binary files /dev/null and b/source/_static/van10.png differ diff --git a/source/_static/van11.png b/source/_static/van11.png new file mode 100644 index 0000000..f6adc12 Binary files /dev/null and b/source/_static/van11.png differ diff --git a/source/_static/van11a.png b/source/_static/van11a.png new file mode 100644 index 0000000..3aeef6e Binary files /dev/null and b/source/_static/van11a.png differ diff --git a/source/_static/van12.png b/source/_static/van12.png new file mode 100644 index 0000000..914d094 Binary files /dev/null and b/source/_static/van12.png differ diff --git a/source/_static/van13.png b/source/_static/van13.png new file mode 100644 index 0000000..93b1909 Binary files /dev/null and b/source/_static/van13.png differ diff --git a/source/_static/van14.png b/source/_static/van14.png new file mode 100644 index 0000000..dcd11e9 Binary files /dev/null and b/source/_static/van14.png differ diff --git a/source/_static/van2.png b/source/_static/van2.png new file mode 100644 index 0000000..828279b Binary files /dev/null and b/source/_static/van2.png differ diff --git a/source/_static/van3.png b/source/_static/van3.png new file mode 100644 index 0000000..14a91b3 Binary files /dev/null and b/source/_static/van3.png differ diff --git a/source/_static/van4.png b/source/_static/van4.png new file mode 100644 index 0000000..caf72a4 Binary files /dev/null and b/source/_static/van4.png differ diff --git a/source/_static/van5.png b/source/_static/van5.png new file mode 100644 index 0000000..0b982e3 Binary files /dev/null and b/source/_static/van5.png differ diff --git a/source/_static/van6.png b/source/_static/van6.png new file mode 100644 index 0000000..25e1a9b Binary files /dev/null and b/source/_static/van6.png differ diff --git a/source/_static/van7.png b/source/_static/van7.png new file mode 100644 index 0000000..5d5dd2c Binary files /dev/null and b/source/_static/van7.png differ diff --git a/source/_static/van8.png b/source/_static/van8.png new file mode 100644 index 0000000..204d589 Binary files /dev/null and b/source/_static/van8.png differ diff --git a/source/_static/van9.png b/source/_static/van9.png new file mode 100644 index 0000000..7f6095b Binary files /dev/null and b/source/_static/van9.png differ diff --git a/source/_static/varan1.png b/source/_static/varan1.png new file mode 100644 index 0000000..eb0e228 Binary files /dev/null and b/source/_static/varan1.png differ diff --git a/source/_static/vbilogo.png b/source/_static/vbilogo.png new file mode 100644 index 0000000..90abb12 Binary files /dev/null and b/source/_static/vbilogo.png differ diff --git a/source/_static/vbilogog.png b/source/_static/vbilogog.png new file mode 100644 index 0000000..1bf3cfc Binary files /dev/null and b/source/_static/vbilogog.png differ diff --git a/source/_static/vd1.png b/source/_static/vd1.png new file mode 100644 index 0000000..877b99e Binary files /dev/null and b/source/_static/vd1.png differ diff --git a/source/_static/wb1.png b/source/_static/wb1.png new file mode 100644 index 0000000..8e8f3ad Binary files /dev/null and b/source/_static/wb1.png differ diff --git a/source/_static/wrb.png b/source/_static/wrb.png new file mode 100644 index 0000000..2290cd8 Binary files /dev/null and b/source/_static/wrb.png differ diff --git a/source/_static/zero1.png b/source/_static/zero1.png new file mode 100644 index 0000000..790df69 Binary files /dev/null and b/source/_static/zero1.png differ diff --git a/source/conf.py b/source/conf.py new file mode 100644 index 0000000..99653a7 --- /dev/null +++ b/source/conf.py @@ -0,0 +1,172 @@ +# -*- coding: utf-8 -*- +# +# Configuration file for the Sphinx documentation builder. +# +# This file does only contain a selection of the most common options. For a +# full list see the documentation: +# http://www.sphinx-doc.org/en/master/config + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +# +# import os +# import sys +# sys.path.insert(0, os.path.abspath('.')) + + +# -- Project information ----------------------------------------------------- + +project = 'valQ Custom Visual for Microsoft Power BI' +copyright = '2019, Visual BI Solutions' +author = 'Visual BI Solutions' + +# The short X.Y version +version = '' +# The full version, including alpha/beta/rc tags +release = '1.0.0' + + +# -- General configuration --------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +# +# needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ ] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# The suffix(es) of source filenames. +# You can specify multiple suffix as a list of string: +# +# source_suffix = ['.rst', '.md'] +source_suffix = '.rst' + +# The master toctree document. +master_doc = 'index' + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +# +# This is also used if you do content translation via gettext catalogs. +# Usually you set "language" from the command line for these cases. +language = None + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path . +exclude_patterns = [] + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = 'sphinx' + + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = 'sphinx_rtd_theme' + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +# +html_theme_options = { + "collapse_navigation": False +} +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] +html_context = { + 'css_files': [ + '_static/theme_overrides.css', # override wide tables in RTD theme + ], + } + +# Custom sidebar templates, must be a dictionary that maps document names +# to template names. +# +# The default sidebars (for documents that don't match any pattern) are +# defined by theme itself. Builtin themes are using these templates by +# default: ``['localtoc.html', 'relations.html', 'sourcelink.html', +# 'searchbox.html']``. +# +# html_sidebars = {} + + +# -- Options for HTMLHelp output --------------------------------------------- + +# Output file base name for HTML help builder. +htmlhelp_basename = 'DocumentationManagementforSAPLumiradoc' + + +# -- Options for LaTeX output ------------------------------------------------ + +latex_elements = { + # The paper size ('letterpaper' or 'a4paper'). + # + # 'papersize': 'letterpaper', + + # The font size ('10pt', '11pt' or '12pt'). + # + # 'pointsize': '10pt', + + # Additional stuff for the LaTeX preamble. + # + # 'preamble': '', + + # Latex figure (float) alignment + # + # 'figure_align': 'htbp', +} + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, +# author, documentclass [howto, manual, or own class]). +latex_documents = [ + (master_doc, 'DocumentationManagementforSAPLumira.tex', 'Documentation Management for SAP Lumira Documentation', + 'Visual BI Solutions', 'manual'), +] + + +# -- Options for manual page output ------------------------------------------ + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [ + (master_doc, 'documentationmanagementforsaplumira', 'Documentation Management for SAP Lumira Documentation', + [author], 1) +] + + +# -- Options for Texinfo output ---------------------------------------------- + +# Grouping the document tree into Texinfo files. List of tuples +# (source start file, target name, title, author, +# dir menu entry, description, category) +texinfo_documents = [ + (master_doc, 'DocumentationManagementforSAPLumira', 'Documentation Management for SAP Lumira Documentation', + author, 'DocumentationManagementforSAPLumira', 'One line description of project.', + 'Miscellaneous'), +] + +# Ganesh's Customisation + +html_logo = '_static/vbilogo.png' +html_show_sphinx = False +html_show_sourcelink = False + +# To start editing files +# Command: viewenv\Scripts\activate +# To build html +# Navigate to root directory +# Command: src\docs\admin\make.bat html diff --git a/source/index.rst b/source/index.rst new file mode 100644 index 0000000..55e53e9 --- /dev/null +++ b/source/index.rst @@ -0,0 +1,26 @@ +.. Documentation Management for SAP Lumira documentation master file, created by + sphinx-quickstart on Tue May 29 14:46:12 2018. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to valQ Custom Visual for Microsoft Power BI! +===================================================== + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + Copyright + Introduction + Definitions + Generalfeatures + valQ + ModelCategory + PlanCategory + SimulateCategory + AnalyzeCategory + Knownissues + + + + diff --git a/source/media/image1.png b/source/media/image1.png new file mode 100644 index 0000000..bdb2baf Binary files /dev/null and b/source/media/image1.png differ diff --git a/source/media/image10.png b/source/media/image10.png new file mode 100644 index 0000000..4708673 Binary files /dev/null and b/source/media/image10.png differ diff --git a/source/media/image100.png b/source/media/image100.png new file mode 100644 index 0000000..969246c Binary files /dev/null and b/source/media/image100.png differ diff --git a/source/media/image101.png b/source/media/image101.png new file mode 100644 index 0000000..f4f7cf0 Binary files /dev/null and b/source/media/image101.png differ diff --git a/source/media/image102.png b/source/media/image102.png new file mode 100644 index 0000000..dc6ad55 Binary files /dev/null and b/source/media/image102.png differ diff --git a/source/media/image103.png b/source/media/image103.png new file mode 100644 index 0000000..060510d Binary files /dev/null and b/source/media/image103.png differ diff --git a/source/media/image104.png b/source/media/image104.png new file mode 100644 index 0000000..b7d69dd Binary files /dev/null and b/source/media/image104.png differ diff --git a/source/media/image105.png b/source/media/image105.png new file mode 100644 index 0000000..0cb377a Binary files /dev/null and b/source/media/image105.png differ diff --git a/source/media/image106.png b/source/media/image106.png new file mode 100644 index 0000000..93ea2f6 Binary files /dev/null and b/source/media/image106.png differ diff --git a/source/media/image107.png b/source/media/image107.png new file mode 100644 index 0000000..ceb4929 Binary files /dev/null and b/source/media/image107.png differ diff --git a/source/media/image108.png b/source/media/image108.png new file mode 100644 index 0000000..2794003 Binary files /dev/null and b/source/media/image108.png differ diff --git a/source/media/image109.png b/source/media/image109.png new file mode 100644 index 0000000..f94466e Binary files /dev/null and b/source/media/image109.png differ diff --git a/source/media/image11.png b/source/media/image11.png new file mode 100644 index 0000000..6e38afa Binary files /dev/null and b/source/media/image11.png differ diff --git a/source/media/image110.png b/source/media/image110.png new file mode 100644 index 0000000..a1863ce Binary files /dev/null and b/source/media/image110.png differ diff --git a/source/media/image111.png b/source/media/image111.png new file mode 100644 index 0000000..0bd83d9 Binary files /dev/null and b/source/media/image111.png differ diff --git a/source/media/image112.png b/source/media/image112.png new file mode 100644 index 0000000..7c4cfca Binary files /dev/null and b/source/media/image112.png differ diff --git a/source/media/image113.png b/source/media/image113.png new file mode 100644 index 0000000..66857ba Binary files /dev/null and b/source/media/image113.png differ diff --git a/source/media/image114.png b/source/media/image114.png new file mode 100644 index 0000000..6f46ae0 Binary files /dev/null and b/source/media/image114.png differ diff --git a/source/media/image115.png b/source/media/image115.png new file mode 100644 index 0000000..508f259 Binary files /dev/null and b/source/media/image115.png differ diff --git a/source/media/image116.png b/source/media/image116.png new file mode 100644 index 0000000..15deeac Binary files /dev/null and b/source/media/image116.png differ diff --git a/source/media/image117.png b/source/media/image117.png new file mode 100644 index 0000000..03e3d42 Binary files /dev/null and b/source/media/image117.png differ diff --git a/source/media/image118.png b/source/media/image118.png new file mode 100644 index 0000000..5641438 Binary files /dev/null and b/source/media/image118.png differ diff --git a/source/media/image119.png b/source/media/image119.png new file mode 100644 index 0000000..47d5e69 Binary files /dev/null and b/source/media/image119.png differ diff --git a/source/media/image12.png b/source/media/image12.png new file mode 100644 index 0000000..67c764b Binary files /dev/null and b/source/media/image12.png differ diff --git a/source/media/image120.png b/source/media/image120.png new file mode 100644 index 0000000..9b4e226 Binary files /dev/null and b/source/media/image120.png differ diff --git a/source/media/image121.png b/source/media/image121.png new file mode 100644 index 0000000..6429464 Binary files /dev/null and b/source/media/image121.png differ diff --git a/source/media/image122.png b/source/media/image122.png new file mode 100644 index 0000000..ec471af Binary files /dev/null and b/source/media/image122.png differ diff --git a/source/media/image123.png b/source/media/image123.png new file mode 100644 index 0000000..f81ab26 Binary files /dev/null and b/source/media/image123.png differ diff --git a/source/media/image124.png b/source/media/image124.png new file mode 100644 index 0000000..537133e Binary files /dev/null and b/source/media/image124.png differ diff --git a/source/media/image125.png b/source/media/image125.png new file mode 100644 index 0000000..6f254f2 Binary files /dev/null and b/source/media/image125.png differ diff --git a/source/media/image126.png b/source/media/image126.png new file mode 100644 index 0000000..20c5757 Binary files /dev/null and b/source/media/image126.png differ diff --git a/source/media/image127.png b/source/media/image127.png new file mode 100644 index 0000000..f345371 Binary files /dev/null and b/source/media/image127.png differ diff --git a/source/media/image128.png b/source/media/image128.png new file mode 100644 index 0000000..68c524d Binary files /dev/null and b/source/media/image128.png differ diff --git a/source/media/image129.png b/source/media/image129.png new file mode 100644 index 0000000..a71a369 Binary files /dev/null and b/source/media/image129.png differ diff --git a/source/media/image13.png b/source/media/image13.png new file mode 100644 index 0000000..ccf988d Binary files /dev/null and b/source/media/image13.png differ diff --git a/source/media/image130.png b/source/media/image130.png new file mode 100644 index 0000000..5d6b970 Binary files /dev/null and b/source/media/image130.png differ diff --git a/source/media/image131.png b/source/media/image131.png new file mode 100644 index 0000000..bdbc9b5 Binary files /dev/null and b/source/media/image131.png differ diff --git a/source/media/image132.png b/source/media/image132.png new file mode 100644 index 0000000..c900794 Binary files /dev/null and b/source/media/image132.png differ diff --git a/source/media/image133.png b/source/media/image133.png new file mode 100644 index 0000000..b3b683d Binary files /dev/null and b/source/media/image133.png differ diff --git a/source/media/image134.png b/source/media/image134.png new file mode 100644 index 0000000..445ff70 Binary files /dev/null and b/source/media/image134.png differ diff --git a/source/media/image135.png b/source/media/image135.png new file mode 100644 index 0000000..9b7fb24 Binary files /dev/null and b/source/media/image135.png differ diff --git a/source/media/image136.png b/source/media/image136.png new file mode 100644 index 0000000..df13e40 Binary files /dev/null and b/source/media/image136.png differ diff --git a/source/media/image137.png b/source/media/image137.png new file mode 100644 index 0000000..51e3203 Binary files /dev/null and b/source/media/image137.png differ diff --git a/source/media/image138.png b/source/media/image138.png new file mode 100644 index 0000000..42a4eb4 Binary files /dev/null and b/source/media/image138.png differ diff --git a/source/media/image139.png b/source/media/image139.png new file mode 100644 index 0000000..ed58b9d Binary files /dev/null and b/source/media/image139.png differ diff --git a/source/media/image14.png b/source/media/image14.png new file mode 100644 index 0000000..7149d32 Binary files /dev/null and b/source/media/image14.png differ diff --git a/source/media/image15.png b/source/media/image15.png new file mode 100644 index 0000000..246f0c4 Binary files /dev/null and b/source/media/image15.png differ diff --git a/source/media/image16.png b/source/media/image16.png new file mode 100644 index 0000000..a86682d Binary files /dev/null and b/source/media/image16.png differ diff --git a/source/media/image17.png b/source/media/image17.png new file mode 100644 index 0000000..220186d Binary files /dev/null and b/source/media/image17.png differ diff --git a/source/media/image18.png b/source/media/image18.png new file mode 100644 index 0000000..aaa1d0a Binary files /dev/null and b/source/media/image18.png differ diff --git a/source/media/image19.jpeg b/source/media/image19.jpeg new file mode 100644 index 0000000..d065082 Binary files /dev/null and b/source/media/image19.jpeg differ diff --git a/source/media/image2.png b/source/media/image2.png new file mode 100644 index 0000000..8bc40ff Binary files /dev/null and b/source/media/image2.png differ diff --git a/source/media/image20.png b/source/media/image20.png new file mode 100644 index 0000000..3226bd7 Binary files /dev/null and b/source/media/image20.png differ diff --git a/source/media/image21.png b/source/media/image21.png new file mode 100644 index 0000000..ba52762 Binary files /dev/null and b/source/media/image21.png differ diff --git a/source/media/image22.jpeg b/source/media/image22.jpeg new file mode 100644 index 0000000..76ff07a Binary files /dev/null and b/source/media/image22.jpeg differ diff --git a/source/media/image23.jpeg b/source/media/image23.jpeg new file mode 100644 index 0000000..db7670e Binary files /dev/null and b/source/media/image23.jpeg differ diff --git a/source/media/image24.jpeg b/source/media/image24.jpeg new file mode 100644 index 0000000..0dcd358 Binary files /dev/null and b/source/media/image24.jpeg differ diff --git a/source/media/image25.png b/source/media/image25.png new file mode 100644 index 0000000..2f66466 Binary files /dev/null and b/source/media/image25.png differ diff --git a/source/media/image26.png b/source/media/image26.png new file mode 100644 index 0000000..83d067d Binary files /dev/null and b/source/media/image26.png differ diff --git a/source/media/image27.png b/source/media/image27.png new file mode 100644 index 0000000..fa8a292 Binary files /dev/null and b/source/media/image27.png differ diff --git a/source/media/image28.jpeg b/source/media/image28.jpeg new file mode 100644 index 0000000..4777279 Binary files /dev/null and b/source/media/image28.jpeg differ diff --git a/source/media/image29.png b/source/media/image29.png new file mode 100644 index 0000000..48bbd21 Binary files /dev/null and b/source/media/image29.png differ diff --git a/source/media/image3.jpeg b/source/media/image3.jpeg new file mode 100644 index 0000000..90ec78a Binary files /dev/null and b/source/media/image3.jpeg differ diff --git a/source/media/image30.png b/source/media/image30.png new file mode 100644 index 0000000..d4c71b4 Binary files /dev/null and b/source/media/image30.png differ diff --git a/source/media/image31.png b/source/media/image31.png new file mode 100644 index 0000000..e69c439 Binary files /dev/null and b/source/media/image31.png differ diff --git a/source/media/image32.png b/source/media/image32.png new file mode 100644 index 0000000..4fed53c Binary files /dev/null and b/source/media/image32.png differ diff --git a/source/media/image33.png b/source/media/image33.png new file mode 100644 index 0000000..7becb4e Binary files /dev/null and b/source/media/image33.png differ diff --git a/source/media/image34.png b/source/media/image34.png new file mode 100644 index 0000000..cb303f0 Binary files /dev/null and b/source/media/image34.png differ diff --git a/source/media/image35.png b/source/media/image35.png new file mode 100644 index 0000000..5c33d0b Binary files /dev/null and b/source/media/image35.png differ diff --git a/source/media/image36.png b/source/media/image36.png new file mode 100644 index 0000000..42ef767 Binary files /dev/null and b/source/media/image36.png differ diff --git a/source/media/image37.png b/source/media/image37.png new file mode 100644 index 0000000..4584487 Binary files /dev/null and b/source/media/image37.png differ diff --git a/source/media/image38.jpeg b/source/media/image38.jpeg new file mode 100644 index 0000000..05eb10c Binary files /dev/null and b/source/media/image38.jpeg differ diff --git a/source/media/image39.png b/source/media/image39.png new file mode 100644 index 0000000..4da4ffd Binary files /dev/null and b/source/media/image39.png differ diff --git a/source/media/image4.png b/source/media/image4.png new file mode 100644 index 0000000..04dfee4 Binary files /dev/null and b/source/media/image4.png differ diff --git a/source/media/image40.jpeg b/source/media/image40.jpeg new file mode 100644 index 0000000..c41d5d9 Binary files /dev/null and b/source/media/image40.jpeg differ diff --git a/source/media/image41.jpeg b/source/media/image41.jpeg new file mode 100644 index 0000000..1792bc6 Binary files /dev/null and b/source/media/image41.jpeg differ diff --git a/source/media/image42.png b/source/media/image42.png new file mode 100644 index 0000000..96b8883 Binary files /dev/null and b/source/media/image42.png differ diff --git a/source/media/image43.jpeg b/source/media/image43.jpeg new file mode 100644 index 0000000..013feff Binary files /dev/null and b/source/media/image43.jpeg differ diff --git a/source/media/image44.jpeg b/source/media/image44.jpeg new file mode 100644 index 0000000..7949cbe Binary files /dev/null and b/source/media/image44.jpeg differ diff --git a/source/media/image45.jpeg b/source/media/image45.jpeg new file mode 100644 index 0000000..40db46f Binary files /dev/null and b/source/media/image45.jpeg differ diff --git a/source/media/image46.png b/source/media/image46.png new file mode 100644 index 0000000..e65fa94 Binary files /dev/null and b/source/media/image46.png differ diff --git a/source/media/image47.jpeg b/source/media/image47.jpeg new file mode 100644 index 0000000..7cf9b38 Binary files /dev/null and b/source/media/image47.jpeg differ diff --git a/source/media/image48.jpeg b/source/media/image48.jpeg new file mode 100644 index 0000000..2309672 Binary files /dev/null and b/source/media/image48.jpeg differ diff --git a/source/media/image49.png b/source/media/image49.png new file mode 100644 index 0000000..8867440 Binary files /dev/null and b/source/media/image49.png differ diff --git a/source/media/image5.jpeg b/source/media/image5.jpeg new file mode 100644 index 0000000..74fdfae Binary files /dev/null and b/source/media/image5.jpeg differ diff --git a/source/media/image50.png b/source/media/image50.png new file mode 100644 index 0000000..c4431ad Binary files /dev/null and b/source/media/image50.png differ diff --git a/source/media/image51.png b/source/media/image51.png new file mode 100644 index 0000000..dad922b Binary files /dev/null and b/source/media/image51.png differ diff --git a/source/media/image52.png b/source/media/image52.png new file mode 100644 index 0000000..16208aa Binary files /dev/null and b/source/media/image52.png differ diff --git a/source/media/image53.png b/source/media/image53.png new file mode 100644 index 0000000..88ffc1f Binary files /dev/null and b/source/media/image53.png differ diff --git a/source/media/image54.png b/source/media/image54.png new file mode 100644 index 0000000..1bf740b Binary files /dev/null and b/source/media/image54.png differ diff --git a/source/media/image55.png b/source/media/image55.png new file mode 100644 index 0000000..1d17212 Binary files /dev/null and b/source/media/image55.png differ diff --git a/source/media/image56.png b/source/media/image56.png new file mode 100644 index 0000000..e874f21 Binary files /dev/null and b/source/media/image56.png differ diff --git a/source/media/image57.png b/source/media/image57.png new file mode 100644 index 0000000..f9cb94d Binary files /dev/null and b/source/media/image57.png differ diff --git a/source/media/image58.png b/source/media/image58.png new file mode 100644 index 0000000..d30e907 Binary files /dev/null and b/source/media/image58.png differ diff --git a/source/media/image59.png b/source/media/image59.png new file mode 100644 index 0000000..f70075f Binary files /dev/null and b/source/media/image59.png differ diff --git a/source/media/image6.jpeg b/source/media/image6.jpeg new file mode 100644 index 0000000..12a07bd Binary files /dev/null and b/source/media/image6.jpeg differ diff --git a/source/media/image60.png b/source/media/image60.png new file mode 100644 index 0000000..7c72bb3 Binary files /dev/null and b/source/media/image60.png differ diff --git a/source/media/image61.png b/source/media/image61.png new file mode 100644 index 0000000..4a600df Binary files /dev/null and b/source/media/image61.png differ diff --git a/source/media/image62.png b/source/media/image62.png new file mode 100644 index 0000000..005fa45 Binary files /dev/null and b/source/media/image62.png differ diff --git a/source/media/image63.png b/source/media/image63.png new file mode 100644 index 0000000..dac1664 Binary files /dev/null and b/source/media/image63.png differ diff --git a/source/media/image64.png b/source/media/image64.png new file mode 100644 index 0000000..bf41b1f Binary files /dev/null and b/source/media/image64.png differ diff --git a/source/media/image65.png b/source/media/image65.png new file mode 100644 index 0000000..0f85cf6 Binary files /dev/null and b/source/media/image65.png differ diff --git a/source/media/image66.png b/source/media/image66.png new file mode 100644 index 0000000..22a796c Binary files /dev/null and b/source/media/image66.png differ diff --git a/source/media/image67.png b/source/media/image67.png new file mode 100644 index 0000000..6b95df9 Binary files /dev/null and b/source/media/image67.png differ diff --git a/source/media/image68.png b/source/media/image68.png new file mode 100644 index 0000000..ed9ec49 Binary files /dev/null and b/source/media/image68.png differ diff --git a/source/media/image69.png b/source/media/image69.png new file mode 100644 index 0000000..a3b16f5 Binary files /dev/null and b/source/media/image69.png differ diff --git a/source/media/image7.png b/source/media/image7.png new file mode 100644 index 0000000..734f3de Binary files /dev/null and b/source/media/image7.png differ diff --git a/source/media/image70.png b/source/media/image70.png new file mode 100644 index 0000000..7915341 Binary files /dev/null and b/source/media/image70.png differ diff --git a/source/media/image71.png b/source/media/image71.png new file mode 100644 index 0000000..84c5209 Binary files /dev/null and b/source/media/image71.png differ diff --git a/source/media/image72.png b/source/media/image72.png new file mode 100644 index 0000000..6e89b8d Binary files /dev/null and b/source/media/image72.png differ diff --git a/source/media/image73.png b/source/media/image73.png new file mode 100644 index 0000000..c3551ee Binary files /dev/null and b/source/media/image73.png differ diff --git a/source/media/image74.png b/source/media/image74.png new file mode 100644 index 0000000..9036137 Binary files /dev/null and b/source/media/image74.png differ diff --git a/source/media/image75.png b/source/media/image75.png new file mode 100644 index 0000000..67f2e80 Binary files /dev/null and b/source/media/image75.png differ diff --git a/source/media/image76.png b/source/media/image76.png new file mode 100644 index 0000000..d087854 Binary files /dev/null and b/source/media/image76.png differ diff --git a/source/media/image77.png b/source/media/image77.png new file mode 100644 index 0000000..8340948 Binary files /dev/null and b/source/media/image77.png differ diff --git a/source/media/image78.png b/source/media/image78.png new file mode 100644 index 0000000..d4feaa6 Binary files /dev/null and b/source/media/image78.png differ diff --git a/source/media/image79.png b/source/media/image79.png new file mode 100644 index 0000000..bc4ee13 Binary files /dev/null and b/source/media/image79.png differ diff --git a/source/media/image8.png b/source/media/image8.png new file mode 100644 index 0000000..beb764b Binary files /dev/null and b/source/media/image8.png differ diff --git a/source/media/image80.png b/source/media/image80.png new file mode 100644 index 0000000..08659a1 Binary files /dev/null and b/source/media/image80.png differ diff --git a/source/media/image81.png b/source/media/image81.png new file mode 100644 index 0000000..3edd1be Binary files /dev/null and b/source/media/image81.png differ diff --git a/source/media/image82.png b/source/media/image82.png new file mode 100644 index 0000000..2370f14 Binary files /dev/null and b/source/media/image82.png differ diff --git a/source/media/image83.png b/source/media/image83.png new file mode 100644 index 0000000..f5d0490 Binary files /dev/null and b/source/media/image83.png differ diff --git a/source/media/image84.png b/source/media/image84.png new file mode 100644 index 0000000..18ab870 Binary files /dev/null and b/source/media/image84.png differ diff --git a/source/media/image85.png b/source/media/image85.png new file mode 100644 index 0000000..a343237 Binary files /dev/null and b/source/media/image85.png differ diff --git a/source/media/image86.png b/source/media/image86.png new file mode 100644 index 0000000..71b322e Binary files /dev/null and b/source/media/image86.png differ diff --git a/source/media/image87.png b/source/media/image87.png new file mode 100644 index 0000000..28e4228 Binary files /dev/null and b/source/media/image87.png differ diff --git a/source/media/image88.png b/source/media/image88.png new file mode 100644 index 0000000..d692c3e Binary files /dev/null and b/source/media/image88.png differ diff --git a/source/media/image89.png b/source/media/image89.png new file mode 100644 index 0000000..82f1edd Binary files /dev/null and b/source/media/image89.png differ diff --git a/source/media/image9.png b/source/media/image9.png new file mode 100644 index 0000000..c51c061 Binary files /dev/null and b/source/media/image9.png differ diff --git a/source/media/image90.png b/source/media/image90.png new file mode 100644 index 0000000..4c137ae Binary files /dev/null and b/source/media/image90.png differ diff --git a/source/media/image91.png b/source/media/image91.png new file mode 100644 index 0000000..f2eab8b Binary files /dev/null and b/source/media/image91.png differ diff --git a/source/media/image92.png b/source/media/image92.png new file mode 100644 index 0000000..64148c1 Binary files /dev/null and b/source/media/image92.png differ diff --git a/source/media/image93.png b/source/media/image93.png new file mode 100644 index 0000000..241e959 Binary files /dev/null and b/source/media/image93.png differ diff --git a/source/media/image94.png b/source/media/image94.png new file mode 100644 index 0000000..4e9cd0b Binary files /dev/null and b/source/media/image94.png differ diff --git a/source/media/image95.png b/source/media/image95.png new file mode 100644 index 0000000..ebdaa0b Binary files /dev/null and b/source/media/image95.png differ diff --git a/source/media/image96.png b/source/media/image96.png new file mode 100644 index 0000000..1199c67 Binary files /dev/null and b/source/media/image96.png differ diff --git a/source/media/image97.png b/source/media/image97.png new file mode 100644 index 0000000..710a4fe Binary files /dev/null and b/source/media/image97.png differ diff --git a/source/media/image98.png b/source/media/image98.png new file mode 100644 index 0000000..7e51e42 Binary files /dev/null and b/source/media/image98.png differ diff --git a/source/media/image99.png b/source/media/image99.png new file mode 100644 index 0000000..576cea5 Binary files /dev/null and b/source/media/image99.png differ diff --git a/source/valQ.rst b/source/valQ.rst new file mode 100644 index 0000000..9265917 --- /dev/null +++ b/source/valQ.rst @@ -0,0 +1,15 @@ +valQ in Power BI +================ + +The valQ Custom Visual has four different categories namely Model, Plan, Simulate and Analyze as Tab options +along with the Visualizations and Fields input screen from Power BI (see Figure below). + +.. figure:: _static/10.1.png + :align: center + :alt: alternate text + + valQ Panel in Power BI + +In the upcoming sections, you will be able to understand the above listed four different categories in detail. + + \ No newline at end of file