diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml
index 778c06fed..f38961114 100644
--- a/.github/workflows/TagBot.yml
+++ b/.github/workflows/TagBot.yml
@@ -4,6 +4,11 @@ on:
types:
- created
workflow_dispatch:
+ inputs:
+ lookback:
+ default: 3
+permissions:
+ contents: write
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
@@ -12,3 +17,4 @@ jobs:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
+ ssh: ${{ secrets.DOCUMENTER_KEY }}
diff --git a/README.md b/README.md
index 9ec651b4b..f5d06debf 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ See [the docs](https://franklinjl.org) for more information and examples.
Some examples of websites using Franklin (_if you're using Franklin with a public repo, consider adding the "franklin" tag to the repo to help others find examples, thanks!_)
-**Adapted templates** (i.e. starting from one of [the available themes](https://tlienart.github.io/FranklinTemplates.jl/))
+**Adapted templates** (i.e. starting from one of [the available themes](https://juliadocs.org/FranklinTemplates.jl/))
* Franklin's own website is written in Franklin, [see docs/](docs/)
* [@cormullion's website](https://cormullion.github.io), the author of [Luxor.jl](https://github.com/JuliaGraphics/Luxor.jl),
* MLJ's [tutorial website](https://alan-turing-institute.github.io/DataScienceTutorials.jl/) which shows how Franklin can interact nicely with [Literate.jl](https://github.com/fredrikekre/Literate.jl)
@@ -80,7 +80,7 @@ Some examples of websites using Franklin (_if you're using Franklin with a publi
* The [Julia website](https://julialang.org), including the blog, are deployed using Franklin ([repo](https://github.com/JuliaLang/www.julialang.org))
* [Circuitscape's website](https://circuitscape.org) was migrated from Jekyll ([repo](https://github.com/Circuitscape/www.circuitscape.org))
* [@zlatanvasovic's website](https://zlatanvasovic.github.io) using Bootstrap 4.5 ([repo](https://github.com/zlatanvasovic/zlatanvasovic.github.io))
-* [PkgPage.jl](https://tlienart.github.io/PkgPage.jl/), front-page generator based on Franklin using Bootstrap 4.5
+* [PkgPage.jl](https://juliadocs.org/PkgPage.jl/), front-page generator based on Franklin using Bootstrap 4.5
* [@abhishalya's website](https://abhishalya.github.io) using a custom minimalistic theme ([repo](https://github.com/abhishalya/abhishalya.github.io))
* [JuliaCon's website](https://juliacon.org) using Franklin and Bootstrap ([repo](https://github.com/JuliaCon/www.juliacon.org))
* [JuliaGPU's website](https://juliagpu.org) using Franklin and a custom template ([repo](https://github.com/JuliaGPU/juliagpu.org))
@@ -114,7 +114,7 @@ julia> serve()
Modify the files in `MyNewSite/src` and see the changes being live-rendered in your browser.
Head to [the docs](https://franklinjl.org) for more information.
-You can also start from [one of the templates](https://tlienart.github.io/FranklinTemplates.jl/) by doing something like:
+You can also start from [one of the templates](https://juliadocs.org/FranklinTemplates.jl/) by doing something like:
```julia
julia> newsite("MyNewSite", template="vela")
diff --git a/demos/_layout/page_foot.html b/demos/_layout/page_foot.html
index 6b0e537a7..fdf30c37d 100644
--- a/demos/_layout/page_foot.html
+++ b/demos/_layout/page_foot.html
@@ -1,6 +1,6 @@
diff --git a/demos/index.md b/demos/index.md
index c151bbecf..204d9315a 100644
--- a/demos/index.md
+++ b/demos/index.md
@@ -7,12 +7,12 @@ hasmath = true
# Franklin Demos
-\style{text-align:center;width:100%;display:inline-block;font-variant-caps:small-caps}{[**Click here to see the source**](https://github.com/tlienart/Franklin.jl/tree/master/demos)}
+\style{text-align:center;width:100%;display:inline-block;font-variant-caps:small-caps}{[**Click here to see the source**](https://github.com/JuliaDocs/Franklin.jl/tree/master/demos)}
This website is meant to be a quick way to show how to do stuff that people ask (or that I thought would be a nice demo), it will complement the [official documentation](https://franklinjl.org/).
It's not meant to be beautiful, rather just show how to get specific stuff done.
-If one block answers one of your question, make sure to check [the source](https://github.com/tlienart/Franklin.jl/tree/master/demos/index.md) to see how it was done.
+If one block answers one of your question, make sure to check [the source](https://github.com/JuliaDocs/Franklin.jl/tree/master/demos/index.md) to see how it was done.
The ordering is reverse chronological but just use the table of contents to guide you to whatever you might want to explore.
**Note**: an important philosophy here is that if you can write a Julia function that would produce the HTML you want, then write that function and let Franklin call it.
@@ -39,7 +39,7 @@ will be rendered as:
{{ render_table }}
-This done via a `hfun_render_table` which can be found in [`utils.jl`](https://github.com/tlienart/Franklin.jl/blob/master/demos/utils.jl).
+This done via a `hfun_render_table` which can be found in [`utils.jl`](https://github.com/JuliaDocs/Franklin.jl/blob/master/demos/utils.jl).
@@ -194,8 +194,8 @@ Here's an example with the insertion of the content of a file `foo/content.md`;
{{insertmd foo/content.md}}
-You can look at [`utils.jl`](https://github.com/tlienart/Franklin.jl/blob/master/demos/utils.jl) for the definition of the `hfun` (same as above), at [`index.md`](https://github.com/tlienart/Franklin.jl/blob/master/demos/index.md) to see how it's called and at [`foo/content.md`](https://github.com/tlienart/Franklin.jl/blob/master/demos/foo/content.md) for the content file.
-Finally you can also check out the [`config.md`](https://github.com/tlienart/Franklin.jl/blob/master/demos/config.md) file to see how the content page is ignored.
+You can look at [`utils.jl`](https://github.com/JuliaDocs/Franklin.jl/blob/master/demos/utils.jl) for the definition of the `hfun` (same as above), at [`index.md`](https://github.com/JuliaDocs/Franklin.jl/blob/master/demos/index.md) to see how it's called and at [`foo/content.md`](https://github.com/JuliaDocs/Franklin.jl/blob/master/demos/foo/content.md) for the content file.
+Finally you can also check out the [`config.md`](https://github.com/JuliaDocs/Franklin.jl/blob/master/demos/config.md) file to see how the content page is ignored.
## (012) Dates
@@ -240,15 +240,15 @@ It's fairly easy to add a "copy" button to your code blocks using a tool like [
In fact on this demo page, as you can see, there is a copy button on all code blocks.
The steps to reproduce this are:
-* copy the [`clipboard.min.js`](https://github.com/tlienart/Franklin.jl/blob/master/demos/_libs/clipboard.min.js) to `/libs/clipboard.min.js` (_note that this is an old version of the library, `1.4` or something, if you take the most recent version, you will have to adapt the script_)
+* copy the [`clipboard.min.js`](https://github.com/JuliaDocs/Franklin.jl/blob/master/demos/_libs/clipboard.min.js) to `/libs/clipboard.min.js` (_note that this is an old version of the library, `1.4` or something, if you take the most recent version, you will have to adapt the script_)
* load that in `_layout/head.html` adding something like
```html
```
-* add Javascript in the `_layout/foot.html`, something [like this](https://github.com/tlienart/Franklin.jl/blob/master/demos/_layout/foot_clipboard.html)
-* adjust the CSS, for instance [something like this](https://github.com/tlienart/Franklin.jl/blob/0276b1afb054017ff7e81bc7d083021a867a4b92/demos/_css/extras.css#L37-L61)
+* add Javascript in the `_layout/foot.html`, something [like this](https://github.com/JuliaDocs/Franklin.jl/blob/master/demos/_layout/foot_clipboard.html)
+* adjust the CSS, for instance [something like this](https://github.com/JuliaDocs/Franklin.jl/blob/0276b1afb054017ff7e81bc7d083021a867a4b92/demos/_css/extras.css#L37-L61)
and that's it 🏁.
@@ -481,7 +481,7 @@ Now observe that
Latexify produces a LaTeX string which should basically be passed to KaTeX. To do that you need to recuperate the output, extract the string and pass it into a maths block.
-Here there's a bug with `\begin{equation}` in Franklin (issue [#584](https://github.com/tlienart/Franklin.jl/issues/584)) which is why I'm replacing those with `$$` but it should be fixed in the near future so that you wouldn't have to use these two "replace" lines:
+Here there's a bug with `\begin{equation}` in Franklin (issue [#584](https://github.com/JuliaDocs/Franklin.jl/issues/584)) which is why I'm replacing those with `$$` but it should be fixed in the near future so that you wouldn't have to use these two "replace" lines:
```julia:lx1
using Latexify
@@ -494,7 +494,7 @@ println(ls.s) # hide
## (003) styling of code output blocks
-At the moment (August 2020) no particular class is added on an output (see [#531](https://github.com/tlienart/Franklin.jl/issues/531)); you can still do something similar by adding a `@@code-output` (or whatever appropriate name) around the command that extracts the output and specify this in your css (see `extras.css`):
+At the moment (August 2020) no particular class is added on an output (see [#531](https://github.com/JuliaDocs/Franklin.jl/issues/531)); you can still do something similar by adding a `@@code-output` (or whatever appropriate name) around the command that extracts the output and specify this in your css (see `extras.css`):
```julia:cos1
x = 7
diff --git a/docs/README.md b/docs/README.md
index a3c7e03b2..25538ed0d 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -1,6 +1,6 @@
# Franklin Docs
-Website & documentation for [Franklin.jl](https://github.com/tlienart/Franklin.jl).
+Website & documentation for [Franklin.jl](https://github.com/JuliaDocs/Franklin.jl).
## Dev note
diff --git a/docs/_layout/head.html b/docs/_layout/head.html
index f2c5e2b3e..cd321e446 100644
--- a/docs/_layout/head.html
+++ b/docs/_layout/head.html
@@ -134,9 +134,9 @@
diff --git a/docs/_layout/page_foot.html b/docs/_layout/page_foot.html
index d52001881..451574379 100644
--- a/docs/_layout/page_foot.html
+++ b/docs/_layout/page_foot.html
@@ -1,5 +1,5 @@
diff --git a/docs/_libs/lunr/lunr_index.js b/docs/_libs/lunr/lunr_index.js
index 16d2643ac..ae3f8ac35 100644
--- a/docs/_libs/lunr/lunr_index.js
+++ b/docs/_libs/lunr/lunr_index.js
@@ -1,2 +1,2 @@
-const LUNR_DATA = {"version":"2.3.8","fields":["t","b"],"fieldVectors":[["t/0",[0,0.017,1,0.048,2,0.757]],["b/0",[0,0.031,1,0.113,2,1.448,3,0.017,4,0.042,5,0.017,6,0.017,7,0.017,8,0.017,9,0.092,10,0.016,11,0.016,12,0.016,13,0.067,14,0.016,15,0.024,16,0.024,17,0.036,18,0.016,19,0.016,20,0.032,21,0.016,22,0.016,23,0.024,24,0.016,25,0.016,26,0.017,27,0.047,28,0.016,29,0.016,30,0.016,31,0.016,32,0.016,33,0.074,34,0.016,35,0.016,36,0.016,37,0.017,38,0.017,39,0.017,40,1.285,41,1.669,42,2.388,43,1.143,44,0.659,45,1.669,46,0.189,47,0.432,48,2.388,49,2.388,50,2.388,51,2.388,52,0.916,53,1.669,54,2.388,55,1.143,56,1.65,57,0.031,58,0.976,59,0.166,60,1.551,61,0.659,62,2.388,63,2.821,64,1.455,65,2.388,66,1.954,67,1.455,68,1.285,69,1.855,70,1.954,71,0.736,72,0.353,73,0.667,74,1.954,75,2.388,76,2.388,77,1.669,78,2.12,79,1.936,80,2.388,81,2.821,82,2.388,83,3.418,84,0.687,85,2.388,86,2.388,87,2.388,88,2.388,89,2.388,90,3.446,91,1.682,92,3.446,93,2.388,94,2.388,95,2.388,96,2.388,97,3.446,98,2.388,99,3.281,100,2.388,101,2.388,102,2.388,103,1.669,104,1.775,105,1.669,106,2.388,107,2.821,108,2.821,109,1.855,110,1.954,111,2.388,112,1.954,113,0.211,114,0.736,115,1.185,116,1.475,117,1.063,118,3.624,119,4.427,120,3.624,121,0.353,122,1.455,123,1.669,124,1.391,125,2.388,126,2.388,127,2.388,128,1.8,129,2.465,130,2.388,131,2.388,132,2.388,133,2.388,134,2.388,135,2.388,136,2.388,137,2.388,138,2.388,139,2.388,140,2.388,141,2.388,142,2.388,143,3.446,144,2.388,145,2.388,146,1.954,147,2.388,148,2.388,149,2.408,150,3.418,151,2.388,152,1.247,153,1.855,154,0.687,155,1.185,156,0.437,157,0.916,158,1.285,159,1.285,160,1.247,161,2.408,162,1.475,163,2.101,164,1.455,165,2.388,166,4.044,167,2.388,168,2.388,169,0.029,170,0.951,171,0.916,172,2.209,173,2.388,174,2.388,175,2.388,176,2.388,177,3.309,178,2.388,179,1.063,180,2.408,181,3.446,182,2.388,183,4.427,184,4.304,185,0.211,186,1.669,187,0.353,188,0.303,189,1.022,190,1.475,191,0.996,192,0.916,193,1.285,194,0.588,195,0.523,196,2.101,197,1.143,198,1.669,199,1.143,200,0.951,201,0.659,202,1.455,203,0.406,204,1.65,205,1.954,206,1.455,207,1.285,208,2.388,209,4.427,210,2.388,211,3.446,212,4.044,213,4.892,214,4.892,215,4.892,216,4.892,217,4.892,218,4.892,219,4.044,220,4.044,221,2.388,222,3.446,223,2.388,224,3.446,225,2.388,226,2.388,227,0.736,228,2.388,229,2.388,230,1.321,231,2.388,232,1.321,233,1.022,234,3.446,235,2.821,236,1.143,237,2.388,238,2.388,239,1.455,240,2.821,241,2.388,242,2.388,243,2.388,244,2.388,245,4.044,246,4.044,247,2.388,248,2.388,249,2.388,250,2.388,251,2.388,252,2.388,253,3.446,254,3.624,255,2.388,256,0.755,257,2.388,258,1.285,259,1.143,260,0.821,261,0.736,262,0.736,263,2.388,264,2.388,265,2.388,266,2.388,267,4.044,268,3.446,269,3.446,270,2.388,271,2.388,272,3.446,273,2.388,274,2.388,275,1.669,276,2.388,277,2.388,278,2.388,279,1.954,280,2.465,281,2.388,282,2.821,283,2.388,284,2.388,285,2.388,286,1.954,287,2.388,288,1.65,289,3.309,290,1.669,291,2.388,292,2.388,293,1.455,294,1.954,295,1.669,296,1.669,297,2.388,298,1.455,299,2.388,300,2.408,301,2.388,302,2.388,303,2.388,304,2.388,305,2.388,306,2.383,307,2.388,308,0.736,309,1.669,310,2.388,311,1.285,312,0.462,313,0.951,314,0.437,315,2.388,316,2.388,317,1.143,318,1.65,319,3.446,320,3.446,321,3.446,322,1.475,323,3.446,324,2.101,325,3.446,326,3.446,327,3.446,328,1.698,329,2.388,330,1.022,331,2.821,332,2.388,333,2.388,334,2.388,335,2.388,336,2.388,337,0.736,338,1.669,339,1.475,340,2.101,341,2.388,342,2.388,343,0.916,344,2.388,345,0.256,346,0.659,347,0.736,348,1.455,349,1.285,350,2.388,351,2.388,352,2.388,353,2.388,354,2.388,355,2.388,356,2.388,357,2.388,358,0.588,359,1.143,360,2.388,361,0.017,362,0.017,363,0.017,364,0.523,365,0.659,366,0.353,367,0.047,368,0.017,369,0.017,370,0.017,371,0.017]],["t/1",[1,0.048,2,0.757,23,0.017]],["b/1",[0,0.012,1,0.118,2,1.73,3,0.013,4,0.041,5,0.013,6,0.013,7,0.02,8,0.013,9,0.107,10,0.026,11,0.012,12,0.012,13,0.054,14,0.019,15,0.029,16,0.012,17,0.019,18,0.019,19,0.012,20,0.02,21,0.012,22,0.012,23,0.037,24,0.012,25,0.012,26,0.02,27,0.035,28,0.012,29,0.019,30,0.012,31,0.012,32,0.012,33,0.055,34,0.012,35,0.019,36,0.012,37,0.013,38,0.013,39,0.013,46,0.217,47,0.438,56,2.687,57,0.036,58,1.13,59,0.182,60,1.903,63,2.266,66,2.266,69,1.827,71,0.55,72,0.647,73,0.536,83,1.935,84,0.704,103,1.935,104,1.626,107,2.778,109,0.96,113,0.453,114,0.55,115,0.613,120,1.459,121,0.565,124,1.316,152,0.55,153,1.49,155,0.613,156,0.226,160,0.854,164,1.087,169,0.02,170,0.764,171,0.684,179,1.18,185,0.429,187,0.612,188,0.43,189,1.185,191,0.943,193,1.49,194,0.943,197,0.854,200,0.764,201,0.764,202,1.087,203,0.47,204,0.854,227,1.277,230,1.062,233,1.185,236,1.326,256,1.036,258,1.49,259,0.854,260,0.613,262,0.854,298,2.332,306,0.96,312,0.741,313,1.37,314,0.351,318,0.854,322,1.876,324,1.087,328,1.862,330,1.637,331,2.266,340,3.17,343,0.684,345,0.191,346,0.937,347,0.55,348,1.688,349,1.49,358,0.439,361,0.013,362,0.013,363,0.031,367,0.086,368,0.013,369,0.013,370,0.013,371,0.034,372,0.96,373,1.467,374,1.935,375,1.783,376,1.783,377,1.783,378,1.783,379,1.783,380,1.783,381,1.783,382,1.783,383,1.783,384,1.783,385,1.783,386,1.167,387,2.769,388,1.459,389,1.246,390,0.854,391,2.069,392,2.778,393,1.087,394,2.778,395,0.916,396,1.246,397,1.688,398,3.394,399,2.069,400,1.688,401,1.246,402,1.783,403,1.783,404,1.783,405,0.763,406,0.47,407,0.854,408,1.459,409,1.185,410,2.099,411,1.935,412,1.21,413,1.783,414,1.459,415,1.246,416,1.316,417,1.459,418,0.854,419,1.352,420,1.459,421,1.832,422,0.952,423,1.062,424,2.372,425,1.326,426,0.55,427,1.062,428,2.778,429,0.763,430,1.047,431,1.185,432,0.96,433,1.467,434,0.763,435,1.246,436,1.452,437,0.684,438,2.017,439,1.087,440,1.087,441,1.832,442,3.197,443,1.459,444,0.55,445,1.459,446,1.688,447,2.266,448,1.827,449,1.625,450,0.96,451,1.49,452,1.681,453,0.96,454,3.39,455,1.783,456,1.783,457,1.625,458,1.062,459,2.196,460,1.783,461,0.96,462,1.783,463,1.185,464,1.783,465,1.783,466,1.165,467,1.783,468,4.142,469,1.783,470,2.769,471,1.459,472,1.688,473,1.783,474,2.069,475,1.459,476,1.277,477,1.783,478,1.783,479,1.246,480,2.332,481,1.783,482,1.783,483,1.783,484,2.778,485,2.266,486,2.769,487,1.783,488,0.684,489,1.783,490,1.783,491,1.783,492,1.783,493,1.08,494,2.266,495,2.769,496,2.266,497,0.854,498,3.394,499,1.246,500,1.688,501,1.783,502,1.935,503,1.783,504,1.783,505,1.783,506,1.783,507,1.783,508,1.18,509,3.826,510,1.056,511,1.087,512,1.783,513,0.96,514,1.783,515,0.854,516,1.459,517,2.769,518,3.394,519,3.394,520,4.384,521,2.372,522,3.394,523,3.394,524,2.778,525,3.394,526,2.778,527,3.394,528,3.394,529,4.142,530,3.394,531,2.769,532,1.625,533,2.769,534,2.769,535,1.087,536,1.783,537,2.769,538,2.769,539,1.783,540,1.688,541,1.783,542,3.975,543,1.087,544,1.783,545,1.459,546,1.246,547,1.459,548,0.96,549,2.778,550,2.099,551,3.39,552,1.49,553,1.688,554,0.854,555,1.688,556,1.783,557,1.827,558,1.783,559,1.935,560,1.246,561,0.55,562,1.783,563,1.459,564,1.459,565,1.087,566,1.459,567,1.246,568,2.672,569,1.783,570,3.131,571,0.854,572,1.459,573,1.062,574,1.783,575,2.769,576,1.935,577,2.769,578,2.769,579,2.769,580,3.394,581,1.459,582,1.783,583,1.783,584,1.087,585,2.372,586,0.96,587,1.783,588,0.96,589,1.783,590,1.688,591,1.783,592,0.684,593,1.056,594,0.763,595,2.769,596,2.266,597,1.49,598,1.087,599,1.459,600,0.684,601,1.783,602,1.783,603,1.459,604,0.854,605,0.854,606,1.087,607,1.087,608,0.613,609,1.783,610,3.394,611,1.688,612,1.087,613,1.783,614,1.783,615,1.783,616,1.783,617,1.459,618,2.069,619,1.459,620,0.838,621,1.783,622,0.96,623,1.783,624,1.459,625,1.783,626,0.96,627,2.266,628,1.246,629,1.459,630,1.087,631,1.246,632,1.783,633,1.783,634,1.246,635,1.246,636,1.246,637,2.769,638,3.826,639,1.783,640,0.854,641,1.246,642,0.854,643,1.087,644,1.783,645,1.783,646,1.246,647,1.459,648,1.783,649,1.783,650,1.783,651,1.783,652,1.783,653,1.783,654,1.783,655,1.783,656,1.783,657,1.783,658,2.769,659,1.783,660,1.783,661,1.783,662,1.783,663,1.783,664,1.783,665,2.769,666,1.783,667,1.783,668,1.783,669,0.613,670,1.688,671,1.783,672,1.783,673,1.783,674,1.783,675,1.783,676,1.49,677,1.783,678,1.783,679,1.783,680,1.783,681,1.783,682,2.769,683,1.783,684,1.688,685,2.769,686,1.326,687,1.459,688,1.783,689,0.96,690,1.783,691,1.783,692,0.763,693,0.763,694,0.684]],["t/2",[24,0.02,314,0.371]],["b/2",[0,0.03,1,0.109,2,1.334,3,0.024,4,0.042,5,0.024,6,0.024,7,0.024,8,0.024,9,0.1,10,0.023,11,0.023,12,0.023,13,0.085,14,0.023,15,0.033,16,0.023,17,0.03,18,0.023,19,0.023,20,0.024,21,0.023,22,0.023,23,0.023,24,0.033,25,0.023,26,0.031,27,0.065,28,0.023,29,0.023,30,0.023,31,0.036,32,0.023,33,0.103,34,0.023,35,0.023,36,0.023,37,0.024,38,0.024,39,0.024,44,0.918,46,0.162,56,2.302,57,0.03,58,0.931,59,0.191,64,2.636,69,2.741,71,1.025,72,0.639,73,0.644,99,2.323,104,1.751,110,3.54,113,0.294,121,0.639,124,1.143,128,1.844,160,1.025,163,2.026,164,2.026,169,0.037,170,0.918,185,0.294,187,0.71,194,1.066,197,2.071,207,2.328,236,1.592,256,0.728,260,1.143,313,1.521,314,0.548,322,2.391,330,1.423,345,0.356,358,1.066,361,0.024,362,0.024,363,0.024,364,0.728,366,0.491,367,0.085,368,0.024,369,0.024,370,0.024,371,0.024,373,1.275,390,1.592,407,1.592,415,2.323,419,1.025,421,2.071,431,2.058,438,1.953,440,2.026,466,1.185,476,1.025,488,1.275,493,1.066,497,1.483,508,1.334,535,2.636,567,2.323,592,1.275,593,1.194,606,2.026,676,1.789,695,3.324,696,3.324,697,3.324,698,2.026,699,2.721,700,3.324,701,2.323,702,1.789,703,4.325,704,2.302,705,2.721,706,3.324,707,1.789,708,2.323,709,2.323,710,2.302,711,4.325,712,3.324,713,4.325,714,3.324,715,3.324,716,3.324,717,3.324,718,3.324,719,3.324,720,3.324,721,3.324,722,3.324,723,3.324,724,3.324,725,3.324,726,3.324,727,3.324,728,2.026,729,3.324,730,3.324,731,2.026,732,3.324,733,3.324,734,3.324,735,3.54,736,3.54,737,1.659,738,3.54,739,5.092,740,4.325,741,2.328,742,4.325,743,4.325,744,3.324,745,4.325,746,3.023,747,4.325,748,2.636,749,4.325,750,4.325,751,3.324,752,3.324,753,3.324,754,3.324,755,3.324,756,2.721]],["t/3",[25,0.025]],["b/3",[0,0.028,1,0.102,3,0.029,4,0.041,5,0.029,6,0.029,7,0.029,8,0.029,9,0.107,10,0.028,11,0.028,12,0.028,13,0.095,14,0.028,15,0.028,16,0.028,17,0.028,18,0.028,19,0.028,20,0.029,21,0.028,22,0.028,23,0.028,24,0.028,25,0.034,26,0.029,27,0.095,28,0.028,29,0.034,30,0.034,31,0.034,32,0.034,33,0.124,34,0.028,35,0.028,36,0.028,37,0.029,38,0.029,39,0.029,46,0.182,47,0.353,52,1.534,53,2.796,57,0.028,59,0.196,68,2.153,72,0.804,113,0.353,123,2.796,169,0.029,194,1.197,201,1.104,203,0.68,312,0.775,313,1.342,314,0.616,345,0.583,361,0.029,362,0.029,363,0.035,367,0.102,368,0.029,369,0.029,370,0.029,371,0.029,386,1.376,427,1.534,449,1.916,452,1.534,568,2.439,620,1.065,642,1.916,669,1.376,692,1.712,693,1.712,694,1.534,702,2.153,757,3.978,758,4.001,759,1.534,760,2.796,761,3.275,762,1.534,763,2.796,764,2.796,765,1.916,766,2.439,767,2.439,768,2.796,769,1.916,770,2.439,771,3.275,772,2.796,773,3.275,774,3.275,775,1.916,776,3.275,777,3.275,778,2.439,779,2.439]],["t/4",[31,0.015,47,0.187,113,0.187,778,1.287]],["b/4",[0,0.023,1,0.094,3,0.024,4,0.042,5,0.024,6,0.024,7,0.024,8,0.024,9,0.114,10,0.023,11,0.023,12,0.023,13,0.084,14,0.023,15,0.023,16,0.023,17,0.023,18,0.023,19,0.023,20,0.024,21,0.023,22,0.023,23,0.023,24,0.03,25,0.023,26,0.024,27,0.065,28,0.023,29,0.023,30,0.023,31,0.038,32,0.023,33,0.102,34,0.023,35,0.023,36,0.023,37,0.024,38,0.037,39,0.024,44,0.914,46,0.213,47,0.517,57,0.023,60,1.27,61,1.191,72,0.489,113,0.477,114,1.021,121,0.709,156,0.42,162,1.417,169,0.024,185,0.424,187,0.709,188,0.42,194,0.816,196,2.019,197,1.586,199,1.586,227,1.021,256,1.051,330,1.417,339,1.846,345,0.514,346,0.914,347,1.48,358,0.816,361,0.024,362,0.024,363,0.031,364,0.725,366,0.489,367,0.065,368,0.024,369,0.024,370,0.024,371,0.024,372,1.782,412,0.914,416,1.139,428,2.71,429,1.417,431,1.417,435,2.314,436,1.417,438,2.243,448,2.322,463,1.417,493,0.816,535,3.496,554,1.586,561,1.021,567,3.015,573,1.27,593,1.325,600,1.27,605,1.586,620,0.945,756,2.71,759,1.27,778,2.63,779,2.019,780,0.914,781,1.27,782,2.71,783,3.312,784,3.312,785,2.71,786,2.71,787,3.312,788,4.315,789,4.316,790,3.099,791,3.312,792,3.099,793,3.312,794,2.71,795,3.312,796,3.312,797,1.782,798,4.315,799,4.315,800,5.085,801,4.315,802,4.315,803,4.315,804,4.315,805,4.315,806,4.315,807,4.315,808,3.312,809,3.312,810,4.162,811,3.015,812,2.71,813,2.71,814,5.085,815,3.015,816,4.315,817,4.315,818,4.315,819,4.315,820,4.315,821,4.315,822,3.312,823,2.71,824,1.782,825,1.484,826,3.312,827,3.312,828,2.314,829,2.71,830,2.019,831,1.417,832,3.312,833,3.312]],["t/5",[27,0.048,28,0.017,345,0.263]],["b/5",[0,0.02,1,0.087,3,0.021,4,0.042,5,0.021,6,0.021,7,0.021,8,0.021,9,0.098,10,0.02,11,0.02,12,0.02,13,0.077,14,0.02,15,0.02,16,0.031,17,0.02,18,0.02,19,0.02,20,0.028,21,0.02,22,0.02,23,0.02,24,0.02,25,0.02,26,0.021,27,0.112,28,0.038,29,0.02,30,0.02,31,0.02,32,0.02,33,0.089,34,0.02,35,0.02,36,0.02,37,0.021,38,0.021,39,0.028,44,0.792,45,2.006,46,0.18,47,0.424,57,0.02,59,0.147,60,1.101,61,0.792,71,0.885,72,0.424,79,1.878,91,0.987,104,1.537,113,0.495,114,0.885,115,0.987,121,0.424,124,0.987,150,2.741,152,0.885,154,0.488,156,0.364,160,1.378,162,1.228,169,0.028,171,1.101,172,1.228,179,1.209,185,0.469,188,0.566,192,1.101,194,0.707,195,0.629,196,2.391,198,2.006,199,1.878,200,0.792,201,0.792,203,0.488,232,1.841,239,1.75,260,1.349,261,1.481,275,2.741,288,1.375,290,2.006,296,2.006,312,0.556,313,1.083,314,0.497,317,1.375,318,1.375,337,0.885,339,1.912,343,1.101,345,0.538,346,1.083,347,0.885,348,2.723,358,1.239,361,0.021,362,0.021,363,0.038,367,0.107,368,0.028,369,0.021,370,0.021,371,0.021,373,2.103,395,0.93,400,1.75,406,0.759,407,1.375,419,0.885,423,1.101,425,1.375,426,1.209,429,1.228,430,1.209,432,1.545,438,1.841,439,1.75,444,0.885,448,2.404,449,1.878,451,1.545,452,1.713,459,1.228,547,2.349,553,1.75,561,1.209,563,2.349,586,2.111,588,1.545,592,1.101,593,0.792,604,1.375,618,1.75,620,1.052,630,1.75,640,1.375,669,0.987,676,1.545,692,1.228,693,1.228,694,1.101,701,2.006,710,1.375,757,2.349,759,1.504,762,1.101,765,1.878,776,2.349,780,1.083,790,2.391,792,1.75,797,1.545,811,3.122,824,1.545,825,1.349,829,2.349,830,2.391,834,2.871,835,2.871,836,2.871,837,3.356,838,2.871,839,2.871,840,3.877,841,2.349,842,1.545,843,2.871,844,1.504,845,1.75,846,4.468,847,4.468,848,2.006,849,3.922,850,1.75,851,2.349,852,2.871,853,1.878,854,2.871,855,2.871,856,3.922,857,2.871,858,3.657,859,4.802,860,1.545,861,1.228,862,1.545,863,2.006,864,2.006,865,2.871,866,2.006,867,1.101,868,2.871,869,2.871,870,2.871,871,2.006,872,4.468,873,1.75,874,1.375,875,2.871,876,3.21,877,2.349,878,2.349,879,2.349,880,2.871,881,2.871,882,2.871,883,2.006,884,1.75,885,2.871,886,2.871,887,1.545,888,1.545,889,2.871,890,2.006,891,2.871,892,2.871,893,2.741,894,2.871,895,2.871,896,1.75,897,2.006,898,2.006,899,2.871,900,2.871,901,2.871,902,1.375,903,2.871,904,2.871,905,2.871,906,2.871,907,2.871,908,2.871,909,2.871,910,2.871,911,2.871,912,3.922,913,2.871,914,2.871,915,3.922,916,2.871,917,2.871,918,2.349,919,2.871,920,2.349,921,2.871,922,2.871,923,2.871,924,1.75,925,2.871,926,2.871,927,1.75,928,2.871,929,2.871,930,2.871,931,2.871,932,2.006,933,1.878,934,2.871,935,2.349,936,2.006,937,2.349,938,3.922,939,2.871,940,2.391,941,2.006,942,2.006,943,0.792,944,1.545]],["t/6",[32,0.02,314,0.371]],["b/6",[0,0.022,1,0.105,3,0.023,4,0.042,5,0.023,6,0.023,7,0.031,8,0.023,9,0.103,10,0.022,11,0.022,12,0.022,13,0.083,14,0.022,15,0.022,16,0.035,17,0.022,18,0.029,19,0.022,20,0.031,21,0.022,22,0.022,23,0.022,24,0.022,25,0.022,26,0.023,27,0.064,28,0.022,29,0.022,30,0.022,31,0.022,32,0.038,33,0.101,34,0.022,35,0.022,36,0.022,37,0.023,38,0.023,39,0.023,46,0.196,47,0.446,57,0.029,58,0.629,59,0.178,84,0.552,112,3.489,116,1.391,117,1.002,128,1.824,129,2.598,154,0.552,155,1.636,156,0.412,157,1.247,160,1.002,164,1.981,169,0.023,171,1.247,172,1.391,185,0.287,188,0.412,190,2.302,233,1.391,236,2.277,256,0.712,262,1.002,314,0.412,322,1.391,328,1.635,337,1.002,345,0.54,347,1.002,359,1.557,361,0.023,362,0.023,363,0.023,364,0.712,365,0.897,366,0.48,367,0.064,368,0.023,369,0.023,370,0.023,371,0.023,373,1.635,395,0.629,406,0.552,409,1.391,412,1.177,416,1.118,419,1.467,421,2.041,422,1.118,426,1.467,430,1.002,431,1.391,434,1.391,436,1.391,438,1.824,442,2.272,452,1.635,454,4.132,457,1.557,466,0.801,476,1.002,497,1.314,521,2.272,524,3.489,542,2.661,550,1.557,559,2.272,560,2.272,568,3.428,573,1.247,584,2.598,592,1.247,620,0.712,622,2.294,624,2.661,642,1.557,689,1.75,728,1.981,731,1.981,765,2.277,771,2.661,779,1.981,780,0.897,782,2.661,830,1.981,831,1.391,842,1.75,844,1.247,848,2.272,927,1.981,932,2.272,943,0.897,945,3.251,946,3.251,947,3.251,948,3.251,949,3.251,950,3.251,951,5.242,952,1.981,953,2.598,954,3.251,955,3.251,956,1.75,957,3.251,958,1.75,959,1.981,960,3.251,961,3.251,962,4.263,963,3.251,964,3.251,965,2.272,966,3.251,967,5.242,968,3.489,969,3.251,970,4.263,971,5.049,972,5.049,973,5.049,974,5.049,975,5.049,976,5.049,977,4.263,978,5.049,979,5.049,980,5.049,981,4.263,982,5.049,983,4.263,984,4.263,985,4.263,986,4.263,987,3.251,988,3.251,989,3.251,990,3.489,991,2.272,992,3.251,993,3.251,994,2.272,995,3.251,996,2.661,997,3.251]],["t/7",[29,0.017,30,0.017,345,0.263]],["b/7",[0,0.019,1,0.109,3,0.019,4,0.04,5,0.019,6,0.019,7,0.019,8,0.027,9,0.114,10,0.019,11,0.019,12,0.019,13,0.074,14,0.019,15,0.034,16,0.019,17,0.019,18,0.019,19,0.019,20,0.019,21,0.019,22,0.019,23,0.026,24,0.019,25,0.019,26,0.019,27,0.053,28,0.019,29,0.041,30,0.04,31,0.019,32,0.019,33,0.084,34,0.019,35,0.019,36,0.019,37,0.034,38,0.04,39,0.039,46,0.176,47,0.333,52,1.041,55,1.807,57,0.019,59,0.102,68,1.461,70,3.088,71,1.164,72,0.641,84,0.641,113,0.383,115,0.933,124,0.933,154,0.461,156,0.594,157,1.041,158,2.031,160,0.837,163,2.858,169,0.019,170,0.749,185,0.383,187,0.401,188,0.478,189,1.856,192,1.663,194,0.669,195,0.594,200,0.749,227,0.837,230,1.447,232,1.447,235,2.221,256,1.027,261,1.519,262,0.837,286,2.221,294,2.221,312,0.908,313,1.042,314,0.594,337,0.837,339,1.856,345,0.571,349,1.461,358,0.93,361,0.019,362,0.019,363,0.019,367,0.092,368,0.019,369,0.019,370,0.019,371,0.019,372,1.461,386,1.298,405,2.006,406,0.461,409,2.006,410,1.3,418,0.837,426,1.338,429,1.856,430,0.837,433,1.041,434,1.162,438,2.046,439,1.654,441,1.807,442,1.897,449,1.3,450,1.461,452,1.89,458,1.041,466,0.93,475,2.221,476,1.338,493,0.669,500,1.654,510,0.749,532,1.807,535,1.654,557,1.461,592,1.041,597,1.461,600,1.041,608,1.923,620,1.027,643,1.654,684,2.3,686,1.3,692,1.162,693,1.162,694,1.041,699,2.221,702,2.523,741,1.461,748,1.654,769,1.3,775,1.3,777,4.282,780,1.042,781,1.447,824,2.872,837,3.032,842,2.745,844,1.041,848,1.897,853,1.3,860,1.461,861,1.162,862,1.461,863,2.637,867,1.041,874,2.077,876,2.221,933,1.3,937,2.221,942,1.897,956,2.031,994,2.637,996,3.088,998,2.714,999,3.55,1000,2.714,1001,2.714,1002,2.714,1003,2.714,1004,2.714,1005,1.298,1006,2.714,1007,1.897,1008,3.55,1009,3.088,1010,2.714,1011,2.714,1012,4.689,1013,2.714,1014,3.774,1015,4.338,1016,2.714,1017,1.041,1018,2.221,1019,3.088,1020,2.714,1021,2.714,1022,2.714,1023,2.714,1024,1.807,1025,3.774,1026,2.714,1027,2.714,1028,2.714,1029,2.714,1030,2.714,1031,2.714,1032,2.714,1033,1.897,1034,2.714,1035,1.3,1036,2.714,1037,2.637,1038,2.221,1039,2.714,1040,2.221,1041,2.221,1042,2.714,1043,2.714,1044,2.714,1045,2.714,1046,2.714,1047,2.714,1048,2.714,1049,2.714,1050,2.714,1051,2.714,1052,2.221,1053,2.221,1054,2.714,1055,5.101,1056,1.654,1057,3.088,1058,2.714,1059,2.637,1060,2.637,1061,2.335,1062,2.714,1063,2.714,1064,1.654,1065,2.714,1066,2.714,1067,1.897,1068,2.077,1069,2.714,1070,2.714,1071,3.088,1072,3.032,1073,2.714,1074,2.637,1075,3.088,1076,3.774,1077,3.774,1078,3.774,1079,3.774,1080,3.774,1081,3.774,1082,2.714,1083,2.221,1084,2.221,1085,3.774,1086,2.221,1087,2.221,1088,2.221,1089,3.774,1090,2.221,1091,2.714,1092,2.714,1093,3.774,1094,2.221,1095,2.714,1096,1.897,1097,2.221,1098,2.714,1099,3.774,1100,2.714,1101,2.714,1102,2.221]],["t/8",[33,0.091,34,0.02]],["b/8",[0,0.029,1,0.104,3,0.022,4,0.042,5,0.022,6,0.022,7,0.022,8,0.022,9,0.091,10,0.021,11,0.021,12,0.021,13,0.081,14,0.021,15,0.029,16,0.039,17,0.029,18,0.021,19,0.021,20,0.04,21,0.032,22,0.032,23,0.036,24,0.021,25,0.021,26,0.022,27,0.061,28,0.021,29,0.021,30,0.021,31,0.021,32,0.032,33,0.128,34,0.029,35,0.021,36,0.021,37,0.022,38,0.03,39,0.022,46,0.174,47,0.274,52,1.191,56,1.98,57,0.029,58,0.9,59,0.209,67,2.521,73,0.96,78,2.226,83,2.17,84,0.703,91,1.936,99,2.17,117,1.275,121,0.611,128,1.783,129,1.893,154,0.528,160,1.275,161,2.89,169,0.022,172,1.77,179,1.434,180,2.89,184,2.541,185,0.274,187,0.611,188,0.394,191,1.399,194,1.019,195,0.68,197,1.487,201,1.141,203,0.528,256,0.68,279,4.058,280,2.834,288,1.487,290,2.89,293,1.893,295,2.89,308,1.275,313,0.857,328,1.191,361,0.022,362,0.022,363,0.022,364,0.68,365,0.857,366,0.459,367,0.061,368,0.022,369,0.022,370,0.022,371,0.022,422,1.422,427,1.191,430,0.957,431,1.329,440,1.893,444,0.957,446,1.893,452,1.191,466,0.765,497,1.275,546,2.17,568,2.521,576,2.17,598,1.893,608,1.705,612,1.893,634,2.17,669,1.068,707,1.671,737,1.586,746,2.17,762,1.98,768,2.17,773,2.541,797,1.671,845,1.893,861,1.329,867,1.586,879,3.385,902,1.487,943,0.857,944,1.671,965,2.17,1005,1.068,1017,1.191,1035,1.487,1103,3.105,1104,3.105,1105,3.105,1106,3.105,1107,3.25,1108,3.105,1109,3.465,1110,3.105,1111,3.105,1112,3.105,1113,4.136,1114,3.105,1115,3.105,1116,3.105,1117,3.105,1118,4.65,1119,3.105,1120,4.058,1121,3.806,1122,3.105,1123,3.105,1124,3.105,1125,3.105,1126,2.17,1127,5.31,1128,4.958,1129,4.136,1130,1.329,1131,3.105,1132,3.385,1133,2.668,1134,3.105,1135,2.541,1136,3.105,1137,2.541,1138,3.105,1139,2.541,1140,3.105,1141,2.668,1142,4.65,1143,3.105,1144,2.17,1145,2.541,1146,3.105,1147,3.105,1148,3.105,1149,4.136,1150,3.105,1151,3.105,1152,3.105,1153,3.105,1154,3.105,1155,3.105,1156,3.105,1157,3.105,1158,3.105,1159,3.105,1160,3.105,1161,3.105,1162,3.105,1163,4.958,1164,3.105,1165,3.105,1166,3.105,1167,4.058,1168,3.105,1169,3.105,1170,3.105,1171,3.105,1172,3.105,1173,3.105,1174,3.105,1175,3.105,1176,3.105,1177,3.105]],["t/9",[33,0.091,35,0.02]],["b/9",[0,0.025,1,0.098,3,0.026,4,0.04,5,0.026,6,0.026,7,0.026,8,0.026,9,0.103,10,0.025,11,0.025,12,0.025,13,0.09,14,0.025,15,0.025,16,0.025,17,0.025,18,0.025,19,0.025,20,0.026,21,0.025,22,0.025,23,0.025,24,0.025,25,0.025,26,0.026,27,0.071,28,0.025,29,0.032,30,0.025,31,0.025,32,0.025,33,0.142,34,0.025,35,0.032,36,0.025,37,0.026,38,0.026,39,0.026,43,1.739,46,0.171,57,0.036,59,0.171,72,0.536,91,1.249,113,0.321,121,0.676,169,0.026,187,0.536,194,1.128,199,2.192,200,1.384,204,1.739,298,2.79,300,3.199,312,0.703,318,1.739,328,1.392,330,1.959,338,2.538,361,0.026,362,0.026,363,0.026,364,0.795,365,1.002,366,0.536,367,0.071,368,0.026,369,0.026,370,0.026,371,0.026,430,1.12,436,1.554,445,2.972,476,1.12,493,0.895,497,1.12,543,2.213,557,2.698,561,1.12,565,2.79,603,4.732,608,1.574,611,2.213,704,2.192,759,1.392,861,1.554,873,2.213,884,2.79,942,2.538,944,1.954,1017,1.392,1018,3.746,1178,5.013,1179,4.577,1180,2.213,1181,2.213,1182,3.631,1183,2.213,1184,3.631,1185,3.631,1186,5.013,1187,5.013,1188,3.631,1189,4.577,1190,5.624,1191,2.972,1192,3.503,1193,3.631,1194,4.577,1195,3.631,1196,4.577,1197,3.631,1198,5.013,1199,2.972,1200,4.577,1201,3.631,1202,3.631,1203,3.631,1204,3.631,1205,3.631,1206,4.577,1207,4.577,1208,3.631,1209,3.631,1210,3.631,1211,3.631,1212,3.631,1213,3.631,1214,3.055,1215,5.263,1216,5.263,1217,3.746,1218,3.631,1219,4.577,1220,2.972,1221,2.972,1222,3.631,1223,3.631,1224,3.631,1225,3.631,1226,4.577,1227,3.631,1228,3.631,1229,3.631,1230,3.631,1231,3.631,1232,3.631,1233,2.972]],["t/10",[33,0.091,36,0.02]],["b/10",[0,0.022,1,0.105,2,0.998,3,0.023,4,0.039,5,0.023,6,0.023,7,0.023,8,0.023,9,0.099,10,0.029,11,0.022,12,0.022,13,0.083,14,0.029,15,0.038,16,0.022,17,0.035,18,0.022,19,0.022,20,0.023,21,0.022,22,0.022,23,0.022,24,0.022,25,0.022,26,0.023,27,0.063,28,0.022,29,0.022,30,0.022,31,0.022,32,0.022,33,0.131,34,0.029,35,0.022,36,0.029,37,0.023,38,0.023,39,0.023,40,1.742,41,2.261,45,2.261,46,0.189,47,0.462,53,2.261,55,1.549,57,0.035,58,0.627,59,0.217,60,1.241,61,0.893,71,0.998,77,2.261,79,2.035,84,0.856,114,0.998,115,1.113,116,1.385,121,0.478,153,1.742,154,0.55,156,0.539,162,1.819,169,0.023,170,1.173,179,0.998,185,0.375,188,0.41,192,1.241,195,0.709,199,1.549,200,0.893,201,0.893,203,0.55,206,1.972,207,1.742,256,0.709,258,2.287,260,1.113,262,0.998,306,1.742,308,1.463,309,2.261,314,0.41,317,1.549,330,2.24,337,0.998,346,0.893,361,0.023,362,0.023,363,0.023,364,0.709,365,0.893,366,0.478,367,0.093,368,0.023,369,0.023,370,0.023,371,0.023,372,1.742,386,1.113,401,3.316,405,1.385,406,0.722,412,0.893,418,0.998,436,1.819,437,1.82,441,2.035,450,2.287,453,1.742,466,0.797,488,1.63,510,0.893,543,1.972,571,2.035,588,1.742,600,1.241,608,1.113,619,2.648,698,1.972,704,2.035,708,2.261,710,2.035,737,1.241,741,1.742,759,1.241,760,2.261,764,2.261,767,1.972,768,2.261,769,1.549,770,1.972,772,2.261,774,2.648,781,1.241,785,2.648,794,2.648,850,2.59,860,2.287,862,1.742,873,1.972,933,1.549,956,1.742,1005,1.113,1017,1.241,1019,2.648,1024,2.272,1035,1.549,1041,3.478,1068,2.035,1096,2.261,1102,2.648,1180,1.972,1183,2.59,1192,2.97,1199,2.648,1234,3.236,1235,3.236,1236,3.236,1237,3.236,1238,4.746,1239,2.648,1240,3.236,1241,3.236,1242,3.236,1243,3.236,1244,3.236,1245,3.236,1246,1.742,1247,2.648,1248,4.25,1249,3.236,1250,3.236,1251,2.97,1252,3.236,1253,3.236,1254,3.236,1255,2.97,1256,3.236,1257,2.648,1258,3.236,1259,2.648,1260,3.236,1261,3.236,1262,3.478,1263,3.236,1264,2.648,1265,2.648,1266,1.972,1267,5.04,1268,3.236,1269,2.648,1270,3.236,1271,2.648,1272,2.648,1273,3.236,1274,3.236,1275,3.236,1276,2.648,1277,3.236,1278,1.742,1279,3.236,1280,3.236,1281,3.236,1282,3.236,1283,3.236,1284,3.236,1285,3.236,1286,2.648,1287,3.236,1288,2.648,1289,2.261,1290,3.236,1291,2.554,1292,3.236,1293,3.236,1294,3.236,1295,3.236,1296,3.236,1297,3.236,1298,2.97,1299,3.236,1300,3.236,1301,3.236,1302,2.648,1303,3.236,1304,3.236,1305,3.236,1306,3.236,1307,3.236,1308,2.648,1309,3.236,1310,3.236,1311,3.236,1312,3.236,1313,3.236,1314,4.25,1315,3.236,1316,3.236,1317,3.236,1318,3.236,1319,2.261,1320,3.236,1321,3.236,1322,3.236]],["t/11",[57,0.015,367,0.041,444,0.651,862,1.137]],["b/11",[0,0.03,1,0.108,2,1.048,3,0.024,4,0.041,5,0.024,6,0.024,7,0.024,8,0.024,9,0.1,10,0.023,11,0.03,12,0.023,13,0.086,14,0.023,15,0.03,16,0.03,17,0.03,18,0.023,19,0.023,20,0.024,21,0.023,22,0.023,23,0.023,24,0.03,25,0.03,26,0.024,27,0.066,28,0.023,29,0.023,30,0.023,31,0.023,32,0.023,33,0.105,34,0.03,35,0.023,36,0.023,37,0.024,38,0.024,39,0.024,43,1.627,44,1.211,46,0.207,47,0.387,57,0.04,58,0.941,59,0.212,61,0.938,64,2.071,72,0.502,73,0.849,79,1.627,113,0.3,117,1.048,121,0.648,154,0.577,169,0.024,185,0.3,195,1.064,198,2.374,204,1.627,261,1.048,306,1.829,308,1.048,330,1.877,337,1.048,339,2.275,343,1.303,345,0.364,359,1.627,361,0.024,362,0.024,363,0.032,366,0.502,367,0.108,368,0.024,369,0.024,370,0.024,371,0.024,372,1.829,395,0.849,405,2.33,406,0.577,409,1.454,410,1.627,412,1.211,416,1.169,429,1.454,436,2.079,444,1.048,488,1.303,508,1.048,510,0.938,513,1.829,515,1.627,548,1.829,550,1.627,557,1.829,559,2.374,561,1.353,573,1.303,592,1.303,593,0.938,594,1.454,597,2.361,598,2.071,626,1.829,640,1.627,642,1.627,737,1.682,765,1.627,780,1.417,781,1.303,786,3.591,811,2.374,812,2.781,813,3.591,831,1.454,844,1.863,862,2.361,867,1.863,874,1.627,888,1.829,933,1.627,936,2.374,958,1.829,1005,1.509,1017,1.303,1024,1.627,1053,2.781,1056,2.071,1064,2.071,1068,1.627,1072,2.374,1141,2.361,1291,1.829,1298,2.374,1323,2.071,1324,3.398,1325,3.398,1326,3.398,1327,3.398,1328,2.781,1329,3.398,1330,3.398,1331,2.961,1332,2.071,1333,2.781,1334,3.591,1335,3.398,1336,3.398,1337,3.398,1338,2.071,1339,3.398,1340,3.398,1341,3.398,1342,3.398,1343,3.398,1344,3.398,1345,3.398,1346,3.395,1347,2.781,1348,2.781,1349,2.781,1350,2.781,1351,2.781,1352,2.374,1353,2.374,1354,2.071,1355,2.781,1356,2.781,1357,3.398,1358,4.387,1359,2.781,1360,3.398,1361,3.398,1362,3.398,1363,3.398,1364,3.398,1365,3.398,1366,3.398,1367,3.398]],["t/12",[4,0.017,27,0.048,59,0.092]],["b/12",[0,0.03,1,0.106,3,0.031,4,0.041,5,0.031,6,0.031,7,0.031,8,0.031,9,0.106,10,0.03,11,0.03,12,0.03,13,0.1,14,0.03,15,0.03,16,0.03,17,0.03,18,0.03,19,0.03,20,0.031,21,0.03,22,0.03,23,0.03,24,0.03,25,0.03,26,0.031,27,0.1,28,0.03,29,0.03,30,0.03,31,0.03,32,0.03,33,0.135,34,0.03,35,0.03,36,0.03,37,0.031,38,0.031,39,0.031,57,0.03,91,1.498,169,0.031,361,0.031,362,0.031,363,0.031,364,0.954,365,1.202,366,0.643,367,0.085,368,0.031,369,0.031,370,0.031,371,0.031,373,1.67,588,2.345]],["t/13",[22,0.025]],["b/13",[0,0.035,1,0.099,3,0.027,4,0.041,5,0.027,6,0.027,7,0.033,8,0.027,9,0.107,10,0.026,11,0.026,12,0.026,13,0.091,14,0.026,15,0.026,16,0.035,17,0.032,18,0.032,19,0.026,20,0.039,21,0.026,22,0.038,23,0.035,24,0.026,25,0.026,26,0.027,27,0.073,28,0.026,29,0.026,30,0.026,31,0.026,32,0.026,33,0.116,34,0.026,35,0.026,36,0.026,37,0.027,38,0.027,39,0.027,40,2.507,46,0.199,55,1.788,57,0.026,59,0.174,60,1.432,72,0.552,73,0.723,78,1.788,84,0.635,116,1.598,122,2.277,124,1.285,154,0.792,156,0.474,157,1.432,169,0.027,179,1.437,185,0.33,187,0.688,188,0.474,191,1.374,195,1.02,203,0.792,206,2.277,207,2.01,227,1.152,232,1.432,308,1.152,317,1.788,345,0.499,361,0.027,362,0.027,363,0.027,364,0.818,365,1.031,366,0.552,367,0.073,368,0.027,369,0.027,370,0.027,371,0.027,395,0.902,406,0.792,416,1.285,418,1.152,426,1.152,451,2.01,461,2.01,463,1.598,497,1.152,510,1.031,550,1.788,584,2.277,698,2.277,762,1.432,780,1.031,831,1.598,924,2.277,943,1.031,991,2.61,1107,3.715,1126,2.61,1130,1.598,1246,2.01,1298,2.61,1368,2.61,1369,2.61,1370,3.735,1371,4.659,1372,3.4,1373,3.735,1374,2.61,1375,3.057,1376,3.735,1377,3.735,1378,3.735,1379,4.659,1380,3.735,1381,1.788,1382,3.057,1383,3.735,1384,3.057,1385,3.735,1386,3.735,1387,3.735,1388,3.735,1389,3.735,1390,3.735,1391,3.057,1392,3.735,1393,3.735,1394,3.735,1395,3.735,1396,3.735,1397,3.735]],["t/14",[21,0.025]],["b/14",[0,0.017,1,0.093,3,0.038,4,0.041,5,0.017,6,0.017,7,0.025,8,0.017,9,0.103,10,0.017,11,0.017,12,0.017,13,0.068,14,0.017,15,0.024,16,0.04,17,0.017,18,0.017,19,0.017,20,0.034,21,0.036,22,0.017,23,0.033,24,0.017,25,0.017,26,0.017,27,0.048,28,0.017,29,0.017,30,0.017,31,0.017,32,0.017,33,0.075,34,0.017,35,0.017,36,0.028,37,0.017,38,0.017,39,0.017,46,0.131,47,0.394,52,1.338,57,0.024,58,0.791,59,0.194,68,1.879,71,0.749,73,0.791,78,2.356,84,0.413,109,1.308,113,0.308,114,0.749,115,0.836,117,0.749,121,0.516,128,1.338,152,1.259,153,1.879,154,0.593,155,0.836,156,0.518,158,2.198,169,0.025,170,1.127,171,1.338,172,1.04,177,1.989,179,1.076,185,0.308,186,1.699,188,0.443,190,2.023,191,1.382,195,0.532,196,3.219,199,1.671,201,0.963,203,0.694,227,1.076,232,1.338,236,1.164,239,1.481,256,1.11,258,1.308,259,1.671,260,1.405,261,1.458,275,1.699,280,3.09,288,2.137,293,1.481,309,1.699,311,1.308,312,0.982,313,0.963,314,0.308,317,1.164,318,1.164,345,0.26,346,0.671,347,0.749,359,1.671,361,0.017,362,0.017,363,0.034,367,0.08,368,0.029,369,0.017,370,0.017,371,0.017,373,0.932,386,0.836,395,0.864,399,2.881,406,0.803,412,1.358,414,1.989,416,1.405,426,0.749,427,1.566,434,1.04,438,0.932,441,1.164,444,0.749,449,1.164,472,1.481,474,3.09,476,0.749,493,0.599,494,1.989,500,1.481,508,1.517,510,1.232,513,1.308,515,1.164,545,3.343,561,0.749,590,1.481,593,0.671,594,1.494,600,1.338,605,1.164,607,2.127,612,2.127,620,0.532,641,1.699,642,1.671,687,1.989,692,1.04,693,1.04,694,0.932,710,1.956,748,1.481,759,1.338,762,0.932,770,1.481,780,1.127,824,1.879,825,1.626,841,2.857,844,0.932,845,2.881,853,2.137,860,1.308,874,1.164,878,1.989,884,1.481,896,2.489,897,1.699,898,1.699,902,2.356,933,1.671,944,1.308,956,2.198,958,1.308,965,1.699,991,1.699,1005,1.2,1017,0.932,1037,1.699,1057,1.989,1061,1.308,1071,3.653,1084,2.857,1120,3.869,1121,4.323,1130,1.04,1133,2.402,1137,1.989,1181,2.127,1183,1.481,1214,2.127,1239,1.989,1246,1.308,1255,1.699,1257,1.989,1259,1.989,1264,1.989,1291,1.308,1319,3.119,1332,1.481,1346,1.699,1372,1.481,1398,2.431,1399,2.431,1400,2.431,1401,2.431,1402,2.431,1403,3.343,1404,1.989,1405,2.857,1406,1.989,1407,3.49,1408,4.084,1409,1.699,1410,2.431,1411,2.431,1412,2.431,1413,4.084,1414,2.431,1415,3.625,1416,1.989,1417,1.989,1418,3.343,1419,1.989,1420,2.431,1421,3.49,1422,2.431,1423,3.49,1424,2.431,1425,4.084,1426,3.49,1427,3.653,1428,1.481,1429,2.431,1430,3.343,1431,2.431,1432,2.431,1433,2.431,1434,2.431,1435,3.49,1436,3.49,1437,4.464,1438,5.483,1439,3.49,1440,5.187,1441,3.49,1442,3.49,1443,3.49,1444,3.49,1445,3.49,1446,3.49,1447,3.49,1448,3.49,1449,3.49,1450,3.49,1451,4.464,1452,3.49,1453,2.431,1454,1.989,1455,2.439,1456,3.49,1457,2.431,1458,2.431,1459,2.431,1460,2.431,1461,2.431,1462,3.343,1463,1.989,1464,3.343,1465,2.431,1466,2.431,1467,2.431,1468,2.431,1469,2.431,1470,2.431,1471,2.431,1472,2.431,1473,2.857,1474,2.431,1475,2.431,1476,2.431,1477,2.431,1478,2.431,1479,2.431,1480,1.989,1481,2.431,1482,2.431,1483,3.49,1484,1.989,1485,2.431,1486,2.439,1487,2.431,1488,1.308,1489,1.989,1490,2.431,1491,2.431,1492,2.431,1493,2.431,1494,2.857,1495,1.164,1496,2.431,1497,2.431,1498,2.431,1499,2.431,1500,2.431,1501,2.431,1502,1.989,1503,2.431,1504,2.431,1505,2.431,1506,2.431,1507,2.857,1508,2.431,1509,2.431,1510,1.989,1511,2.431,1512,2.431,1513,2.431,1514,2.431,1515,2.431,1516,1.989]],["t/15",[16,0.02,17,0.02]],["b/15",[0,0.015,1,0.076,3,0.016,4,0.041,5,0.016,6,0.016,7,0.016,8,0.016,9,0.108,10,0.015,11,0.015,12,0.015,13,0.064,14,0.032,15,0.03,16,0.037,17,0.04,18,0.015,19,0.015,20,0.036,21,0.015,22,0.023,23,0.03,24,0.015,25,0.015,26,0.016,27,0.044,28,0.015,29,0.015,30,0.015,31,0.015,32,0.015,33,0.069,34,0.015,35,0.015,36,0.015,37,0.016,38,0.016,39,0.016,41,2.298,44,0.618,46,0.211,47,0.198,55,1.072,57,0.023,58,0.886,59,0.2,61,0.907,72,0.676,73,0.754,77,1.564,84,0.813,91,0.77,113,0.29,114,1.014,116,1.407,117,1.324,128,1.494,146,1.832,150,3.001,152,1.014,154,0.862,155,1.131,156,0.544,157,1.834,159,2.097,160,0.69,169,0.016,172,1.407,179,1.708,185,0.344,187,0.73,188,0.284,189,1.407,191,1.296,192,0.858,193,1.205,201,0.618,202,1.364,203,0.38,207,1.205,227,0.69,230,1.494,233,0.958,256,0.49,262,1.475,280,2.004,289,1.832,293,2.004,295,2.298,296,1.564,300,2.723,308,1.664,311,2.462,312,0.886,313,0.907,314,0.284,317,1.072,318,2.19,322,1.838,324,2.375,328,1.494,337,0.69,345,0.352,346,0.618,358,0.551,361,0.016,362,0.016,363,0.016,364,0.49,365,0.618,366,0.331,367,0.044,368,0.016,369,0.016,370,0.016,371,0.016,386,1.34,390,1.072,393,1.364,395,0.754,396,1.564,399,1.364,405,0.958,406,0.559,407,1.072,409,0.958,410,1.072,412,0.618,418,1.014,422,1.131,423,0.858,425,1.072,430,0.69,433,0.858,435,2.298,437,1.261,447,1.832,453,2.097,457,1.866,458,1.261,459,0.958,461,1.769,466,0.551,476,0.69,479,2.298,493,1.058,497,1.411,499,1.564,502,1.564,508,0.69,511,2.004,532,2.056,540,1.364,548,1.769,550,2.056,553,2.004,565,1.364,571,1.072,573,0.858,590,1.364,594,0.958,605,1.866,618,1.364,620,0.72,634,1.564,635,1.564,643,2.004,646,1.564,669,1.34,684,1.364,686,1.574,698,1.364,707,1.205,710,1.072,731,2.617,736,2.691,737,1.834,738,1.832,741,1.205,746,3.616,760,2.298,762,2.138,766,2.375,780,0.618,781,0.858,797,1.205,825,1.645,920,2.691,935,1.832,943,0.907,1005,0.77,1007,1.564,1009,1.832,1024,2.367,1033,3.197,1035,1.072,1067,1.564,1072,1.564,1074,3.197,1130,1.407,1132,2.691,1133,2.311,1135,1.832,1139,1.832,1144,1.564,1255,1.564,1265,1.832,1272,1.832,1278,1.205,1289,2.298,1338,1.364,1368,1.564,1369,2.298,1372,2.004,1381,1.072,1391,1.832,1409,2.298,1415,1.564,1454,1.832,1488,2.311,1517,3.288,1518,1.564,1519,2.238,1520,2.238,1521,2.238,1522,2.238,1523,2.238,1524,2.238,1525,2.238,1526,1.832,1527,2.238,1528,2.238,1529,2.238,1530,3.897,1531,3.288,1532,3.189,1533,2.238,1534,3.189,1535,2.238,1536,2.238,1537,2.238,1538,1.832,1539,3.914,1540,2.238,1541,2.238,1542,2.238,1543,2.238,1544,2.238,1545,2.238,1546,2.238,1547,2.238,1548,1.832,1549,2.238,1550,2.238,1551,2.238,1552,2.238,1553,2.238,1554,4.574,1555,2.691,1556,2.691,1557,2.238,1558,2.691,1559,2.238,1560,2.238,1561,4.574,1562,2.238,1563,2.238,1564,2.238,1565,2.238,1566,2.238,1567,2.238,1568,2.238,1569,2.238,1570,4.294,1571,4.782,1572,3.288,1573,2.238,1574,2.238,1575,2.238,1576,2.238,1577,3.897,1578,3.897,1579,2.238,1580,2.238,1581,2.238,1582,3.897,1583,2.691,1584,3.288,1585,3.288,1586,3.897,1587,3.288,1588,3.288,1589,2.238,1590,2.238,1591,2.238,1592,2.691,1593,2.238,1594,2.238,1595,2.238,1596,2.238,1597,2.238,1598,2.238,1599,2.238,1600,2.238,1601,2.238,1602,2.238,1603,3.189,1604,1.832,1605,2.238,1606,2.238,1607,1.072,1608,2.298,1609,2.238,1610,2.238,1611,2.238,1612,2.238,1613,2.004,1614,2.238,1615,2.238,1616,2.238,1617,3.288,1618,3.897,1619,5.071,1620,2.238,1621,2.238,1622,2.238,1623,2.238,1624,2.238,1625,2.238,1626,1.832,1627,2.238,1628,3.288,1629,2.238,1630,2.238,1631,2.238,1632,2.691,1633,2.238,1634,1.564,1635,2.238,1636,2.238,1637,2.238,1638,2.238,1639,3.897,1640,3.288,1641,2.238,1642,2.238,1643,2.238,1644,2.238,1645,2.238,1646,3.288,1647,3.288,1648,3.897,1649,3.288,1650,2.238,1651,2.238,1652,2.238,1653,3.288,1654,2.238,1655,2.238,1656,2.238,1657,2.238,1658,2.238,1659,2.238,1660,2.238,1661,2.238,1662,3.288,1663,3.288,1664,2.238,1665,2.238,1666,2.238,1667,2.238,1668,2.238,1669,2.238,1670,2.238,1671,2.238,1672,2.004,1673,3.288,1674,2.238,1675,2.238,1676,2.238]],["t/16",[14,0.02,15,0.02]],["b/16",[0,0.012,1,0.111,2,1.175,3,0.013,4,0.042,5,0.013,6,0.013,7,0.024,8,0.013,9,0.097,10,0.012,11,0.012,12,0.012,13,0.054,14,0.03,15,0.037,16,0.028,17,0.034,18,0.019,19,0.012,20,0.027,21,0.012,22,0.012,23,0.036,24,0.012,25,0.012,26,0.013,27,0.035,28,0.012,29,0.03,30,0.012,31,0.012,32,0.012,33,0.055,34,0.012,35,0.012,36,0.012,37,0.024,38,0.013,39,0.013,43,0.847,44,0.932,46,0.22,47,0.417,52,0.678,55,0.847,56,1.617,57,0.034,58,1.081,59,0.192,67,2.058,69,0.952,71,1.041,72,0.499,73,0.654,78,2.486,84,0.468,91,1.161,104,1.503,105,1.236,113,0.437,114,1.175,115,0.608,117,1.041,118,2.252,121,0.61,128,1.749,149,1.236,152,0.848,154,0.742,155,0.608,156,0.483,160,1.273,162,0.757,169,0.013,170,0.488,171,0.678,179,1.406,180,1.923,185,0.403,187,0.499,188,0.349,189,0.757,190,0.757,191,1.124,192,1.295,193,0.952,194,0.678,195,0.387,200,0.932,201,1.051,202,1.078,203,0.574,227,1.041,232,1.055,233,0.757,236,1.617,254,2.764,259,1.317,260,0.608,261,0.545,262,0.545,282,1.448,298,2.953,306,1.481,308,0.545,312,0.738,322,0.757,324,2.058,328,1.808,345,0.361,346,0.488,347,0.545,349,1.817,358,0.678,361,0.013,362,0.013,363,0.03,364,0.387,365,0.488,366,0.261,367,0.035,368,0.013,369,0.013,370,0.013,371,0.034,373,1.295,374,1.236,388,1.448,389,1.923,390,1.317,391,2.058,393,2.322,394,3.378,395,0.992,396,2.662,397,2.322,399,2.058,400,1.677,405,1.63,406,0.882,407,1.824,408,1.448,410,2.258,411,2.662,412,0.488,415,1.923,417,1.448,418,1.273,419,1.273,420,2.252,421,0.847,422,1.735,423,0.678,424,2.36,425,1.317,426,1.273,427,1.055,431,1.178,433,0.678,437,1.461,438,1.295,444,0.545,449,1.824,452,0.678,453,0.952,458,0.678,459,1.63,461,1.481,463,1.445,466,0.436,472,1.078,476,0.545,480,2.058,484,2.252,485,1.448,488,0.678,493,0.436,496,2.252,497,1.664,499,2.662,502,1.923,508,1.273,510,0.488,515,1.617,532,0.847,550,1.617,552,0.952,554,0.847,555,1.078,561,0.545,565,1.078,570,2.252,571,0.847,573,1.055,576,1.236,581,2.252,584,1.677,585,1.236,586,0.952,592,1.055,593,1.051,594,0.757,596,2.252,597,0.952,598,1.677,599,3.86,604,0.847,606,2.058,608,0.608,611,1.078,617,1.448,620,0.387,622,1.481,626,1.481,630,1.677,636,1.923,640,0.847,642,0.847,643,1.078,669,0.946,670,1.078,686,0.847,689,1.817,702,0.952,705,2.764,707,1.481,709,1.236,728,1.078,735,1.448,737,1.899,741,0.952,748,1.078,761,1.448,762,1.676,764,1.236,769,0.847,775,1.824,780,0.759,815,1.923,825,1.912,840,1.923,850,1.677,867,0.678,883,1.236,887,0.952,893,1.923,902,1.976,918,1.448,924,1.078,936,1.923,953,1.078,956,0.952,959,2.322,968,2.252,1017,1.055,1024,1.976,1033,1.923,1059,1.236,1061,1.481,1075,1.448,1083,2.252,1086,1.448,1107,1.923,1126,2.662,1130,0.757,1141,1.481,1144,1.236,1145,3.118,1167,2.252,1180,1.078,1191,2.252,1192,1.236,1220,1.448,1246,0.952,1251,1.923,1266,1.078,1302,1.448,1319,1.236,1323,1.078,1328,2.764,1331,2.058,1354,1.677,1355,1.448,1356,1.448,1368,1.236,1369,1.236,1372,1.677,1405,1.448,1406,1.448,1409,1.236,1415,1.236,1428,1.078,1473,1.448,1488,1.481,1494,1.448,1495,1.976,1518,2.36,1532,2.252,1555,2.252,1556,2.252,1558,2.252,1603,1.448,1607,0.847,1608,2.36,1613,1.078,1632,1.448,1634,1.236,1672,2.953,1677,1.769,1678,1.769,1679,1.769,1680,1.769,1681,1.769,1682,1.769,1683,1.769,1684,1.769,1685,1.769,1686,1.769,1687,1.769,1688,1.769,1689,2.752,1690,1.769,1691,1.769,1692,1.769,1693,1.769,1694,1.769,1695,1.769,1696,1.769,1697,1.769,1698,1.236,1699,2.058,1700,4.127,1701,1.769,1702,1.769,1703,1.769,1704,1.769,1705,2.752,1706,2.252,1707,2.752,1708,1.769,1709,1.769,1710,2.252,1711,2.752,1712,1.769,1713,1.769,1714,1.769,1715,2.752,1716,2.752,1717,1.769,1718,2.752,1719,1.769,1720,1.769,1721,1.769,1722,1.769,1723,1.769,1724,1.448,1725,1.769,1726,1.769,1727,1.769,1728,1.769,1729,1.769,1730,1.769,1731,4.37,1732,1.769,1733,2.752,1734,1.769,1735,3.377,1736,1.769,1737,2.752,1738,1.769,1739,1.769,1740,1.769,1741,1.769,1742,1.769,1743,1.769,1744,1.236,1745,1.769,1746,1.769,1747,1.769,1748,1.769,1749,2.252,1750,2.752,1751,2.752,1752,1.769,1753,4.127,1754,1.448,1755,2.752,1756,1.769,1757,1.769,1758,1.769,1759,1.769,1760,1.769,1761,1.769,1762,1.769,1763,1.769,1764,1.769,1765,1.769,1766,1.769,1767,1.769,1768,1.769,1769,2.752,1770,1.448,1771,1.769,1772,1.769,1773,1.769,1774,1.769,1775,1.769,1776,1.769,1777,2.752,1778,2.752,1779,2.752,1780,2.752,1781,1.769,1782,1.769,1783,1.236,1784,2.752,1785,2.752,1786,2.764,1787,1.769,1788,1.236,1789,1.769,1790,1.769,1791,1.448,1792,1.769,1793,2.752,1794,1.769,1795,1.769,1796,1.769,1797,1.769,1798,3.81,1799,1.769,1800,2.752,1801,2.752,1802,1.769,1803,1.769,1804,2.752,1805,1.769,1806,1.769,1807,1.448,1808,1.769,1809,1.448,1810,1.769,1811,1.769,1812,1.769,1813,1.769,1814,2.752,1815,2.752,1816,1.769,1817,1.769,1818,2.752,1819,2.752,1820,1.769,1821,1.769,1822,1.448,1823,1.769,1824,1.448,1825,1.769,1826,1.769,1827,1.769,1828,2.752,1829,1.769,1830,1.769,1831,1.078,1832,3.377,1833,1.769,1834,2.752,1835,3.81,1836,1.769,1837,2.752,1838,2.752,1839,2.752,1840,2.752,1841,1.769,1842,1.769,1843,1.769,1844,2.752,1845,2.752,1846,1.769,1847,1.769,1848,1.769,1849,1.769,1850,1.769,1851,1.769,1852,1.769,1853,1.769,1854,1.769,1855,1.769,1856,1.769]],["t/17",[9,0.057,18,0.02]],["b/17",[0,0.014,1,0.107,2,1.333,3,0.021,4,0.041,5,0.014,6,0.014,7,0.021,8,0.014,9,0.116,10,0.021,11,0.014,12,0.014,13,0.1,14,0.031,15,0.03,16,0.021,17,0.014,18,0.041,19,0.021,20,0.021,21,0.031,22,0.014,23,0.031,24,0.014,25,0.014,26,0.021,27,0.038,28,0.014,29,0.014,30,0.014,31,0.021,32,0.014,33,0.061,34,0.014,35,0.014,36,0.014,37,0.014,38,0.021,39,0.014,44,1.109,46,0.212,47,0.382,52,1.38,56,0.938,57,0.03,58,1.076,59,0.162,60,0.751,61,0.54,64,1.193,68,1.054,69,1.936,71,0.604,72,0.593,73,0.778,74,2.435,78,2.069,84,0.891,91,0.673,103,1.368,104,1.486,109,1.054,113,0.441,115,1.023,121,0.698,124,1.382,129,1.193,149,1.368,152,1.239,153,1.054,154,0.919,155,0.673,156,0.548,157,1.141,158,2.784,159,1.601,161,2.514,162,0.838,169,0.026,170,0.54,171,0.751,185,0.402,186,1.368,187,0.593,188,0.456,191,1.065,192,0.751,193,1.601,194,0.886,195,0.429,200,0.821,203,0.333,204,2.069,205,1.603,232,1.657,233,0.838,256,0.947,259,0.938,260,1.023,261,0.917,262,1.333,288,0.938,308,0.604,312,0.379,314,0.248,322,1.54,328,0.751,343,1.141,345,0.21,349,1.054,358,0.886,359,0.938,361,0.014,362,0.014,363,0.021,367,0.07,368,0.014,369,0.014,370,0.021,371,0.029,374,1.368,390,1.424,392,1.603,395,0.881,397,1.193,406,0.902,407,0.938,410,1.424,411,3.02,412,0.54,418,1.617,419,1.458,421,1.424,422,1.486,423,1.914,424,1.368,426,1.458,427,1.38,429,0.838,430,1.239,432,1.601,433,0.751,434,1.273,437,0.751,440,1.193,444,0.604,450,1.054,457,1.723,458,1.141,459,1.72,461,2.163,463,0.838,466,0.733,476,0.604,479,1.368,480,1.813,488,0.751,493,1.121,497,0.604,510,0.821,513,1.054,540,1.193,546,1.368,551,3.289,552,1.054,553,1.813,554,0.938,555,1.193,561,0.917,571,0.938,573,0.751,586,1.054,594,1.54,600,1.141,604,0.938,605,1.723,607,1.193,620,1.133,622,1.601,626,1.054,636,1.368,640,0.938,669,0.673,676,1.054,684,1.193,689,2.163,692,0.838,693,0.838,694,0.751,701,1.368,704,0.938,707,1.054,710,0.938,731,1.813,737,1.141,759,0.751,762,1.38,763,1.368,767,1.813,769,0.938,775,1.424,779,1.193,781,0.751,815,2.079,825,0.673,842,1.054,850,1.193,853,0.938,861,0.838,864,2.514,867,0.751,874,1.424,887,1.601,888,1.936,890,1.368,896,1.813,902,0.938,924,1.193,927,1.193,940,1.193,943,1.193,952,2.97,953,1.193,990,1.603,1005,0.673,1035,0.938,1056,1.193,1060,3.406,1061,1.936,1068,0.938,1130,1.849,1133,1.054,1141,1.054,1214,2.193,1221,1.603,1233,1.603,1246,1.054,1262,2.435,1266,1.193,1276,1.603,1278,1.054,1288,2.435,1308,1.603,1331,1.193,1332,1.813,1338,1.193,1353,1.368,1354,2.449,1374,1.368,1381,2.264,1428,1.193,1455,1.368,1462,2.945,1463,1.603,1464,2.435,1484,1.603,1488,1.601,1495,1.424,1510,2.945,1534,1.603,1548,1.603,1583,1.603,1607,0.938,1608,2.514,1613,1.193,1672,1.193,1698,2.079,1699,1.193,1710,1.603,1744,2.079,1783,2.079,1788,1.368,1807,1.603,1822,1.603,1831,1.193,1857,1.958,1858,1.958,1859,1.958,1860,1.958,1861,1.958,1862,1.958,1863,1.958,1864,1.958,1865,1.958,1866,1.958,1867,1.958,1868,1.958,1869,1.958,1870,1.958,1871,3.289,1872,1.958,1873,1.958,1874,1.958,1875,2.975,1876,2.975,1877,2.975,1878,1.958,1879,1.603,1880,2.975,1881,1.958,1882,4.019,1883,1.958,1884,1.958,1885,1.958,1886,4.019,1887,2.435,1888,4.322,1889,2.975,1890,1.958,1891,1.958,1892,2.079,1893,2.975,1894,1.958,1895,1.958,1896,1.958,1897,1.368,1898,1.603,1899,2.975,1900,2.975,1901,1.958,1902,5.09,1903,1.958,1904,1.958,1905,1.958,1906,3.598,1907,1.958,1908,1.958,1909,1.958,1910,1.958,1911,1.958,1912,1.958,1913,3.289,1914,1.958,1915,2.975,1916,2.975,1917,1.958,1918,1.603,1919,2.975,1920,1.958,1921,1.958,1922,1.958,1923,1.958,1924,1.958,1925,1.958,1926,1.958,1927,1.958,1928,1.368,1929,2.435,1930,1.958,1931,1.368,1932,1.958,1933,1.958,1934,1.958,1935,2.975,1936,1.958,1937,2.435,1938,1.958,1939,1.958,1940,2.435,1941,1.958,1942,1.958,1943,1.958,1944,1.958,1945,1.958,1946,1.958,1947,1.958,1948,1.958,1949,1.958,1950,2.975,1951,2.975,1952,1.958,1953,1.958,1954,1.958,1955,1.958,1956,1.958,1957,2.975,1958,1.958,1959,2.975,1960,2.975,1961,1.958,1962,1.958,1963,2.975,1964,1.958,1965,1.958,1966,1.958,1967,1.958,1968,1.958,1969,1.958,1970,1.958,1971,1.958,1972,1.603,1973,1.958,1974,1.958,1975,1.958,1976,1.958,1977,1.958,1978,1.958,1979,1.958,1980,1.958,1981,1.958,1982,1.958,1983,1.958,1984,1.958,1985,1.603,1986,2.975,1987,1.958,1988,2.975,1989,1.958,1990,1.958,1991,1.958,1992,1.958,1993,1.958,1994,1.958,1995,1.958,1996,1.958,1997,1.958,1998,1.958,1999,1.958,2000,1.958,2001,1.958,2002,1.958,2003,1.958,2004,1.958,2005,1.958,2006,1.958,2007,1.958,2008,1.958,2009,1.958,2010,1.958,2011,1.368,2012,1.958,2013,1.603,2014,1.958,2015,2.435,2016,1.958,2017,1.958,2018,1.958,2019,1.958,2020,1.958,2021,1.958,2022,1.958,2023,1.603,2024,1.958,2025,1.958]],["t/18",[13,0.071]],["b/18",[0,0.03,1,0.106,3,0.031,4,0.041,5,0.031,6,0.031,7,0.031,8,0.031,9,0.106,10,0.03,11,0.03,12,0.03,13,0.106,14,0.03,15,0.03,16,0.03,17,0.03,18,0.03,19,0.03,20,0.031,21,0.03,22,0.03,23,0.03,24,0.03,25,0.03,26,0.031,27,0.086,28,0.03,29,0.03,30,0.03,31,0.03,32,0.03,33,0.135,34,0.03,35,0.03,36,0.03,37,0.031,38,0.031,39,0.031,57,0.03,169,0.031,361,0.031,362,0.031,363,0.031,367,0.086,368,0.031,369,0.031,370,0.031,371,0.031,692,1.871,693,1.871,694,1.677]],["t/19",[19,0.025]],["b/19",[0,0.019,1,0.097,3,0.02,4,0.041,5,0.02,6,0.02,7,0.027,8,0.02,9,0.092,10,0.019,11,0.019,12,0.019,13,0.074,14,0.019,15,0.034,16,0.019,17,0.032,18,0.03,19,0.03,20,0.031,21,0.019,22,0.019,23,0.026,24,0.019,25,0.019,26,0.02,27,0.053,28,0.019,29,0.03,30,0.019,31,0.019,32,0.019,33,0.085,34,0.019,35,0.019,36,0.019,37,0.02,38,0.02,39,0.02,40,2.041,44,1.202,46,0.2,47,0.451,57,0.026,58,0.529,59,0.176,61,0.754,72,0.789,73,0.529,84,0.891,104,0.94,108,2.237,113,0.463,116,1.17,121,0.73,152,0.843,154,0.922,156,0.596,158,1.471,160,0.843,169,0.027,170,0.754,179,0.843,185,0.385,187,0.643,188,0.481,189,1.863,190,1.17,191,1.073,194,1.337,195,0.954,200,0.754,203,0.74,204,1.309,227,0.843,230,1.048,232,1.048,233,1.17,256,1.082,259,1.309,261,1.45,308,1.343,311,1.471,312,0.911,313,0.754,314,0.481,343,1.454,346,0.754,358,1.292,361,0.02,362,0.02,363,0.02,364,0.599,365,0.754,366,0.404,367,0.074,368,0.02,369,0.02,370,0.02,371,0.02,386,0.94,391,1.666,393,1.666,395,0.956,401,3.043,406,0.934,423,1.67,425,1.309,430,1.169,431,1.17,432,2.041,434,1.17,437,1.048,439,1.666,466,0.934,474,1.666,476,0.843,488,1.048,493,0.934,508,0.843,511,1.666,516,2.237,540,1.666,543,1.666,552,1.471,554,1.309,566,2.237,571,1.309,593,0.754,604,1.816,608,0.94,618,1.666,620,1.307,622,2.531,631,2.65,647,2.237,670,1.666,704,1.309,766,1.666,769,1.309,770,2.311,775,2.365,780,0.754,781,1.048,831,1.17,837,1.91,860,1.471,861,1.17,867,1.048,890,1.91,927,1.666,943,0.754,952,1.666,959,1.666,994,1.91,1024,1.309,1035,1.309,1037,1.91,1040,2.237,1061,1.471,1068,1.309,1074,1.91,1087,4.374,1088,3.849,1094,3.849,1096,1.91,1180,1.666,1181,1.666,1247,3.103,1278,1.471,1323,1.666,1381,1.816,1489,2.237,1495,1.816,1518,3.286,1526,2.237,1539,2.237,1604,3.103,1607,1.309,1613,1.666,1672,1.666,1744,1.91,1749,3.103,1791,3.103,1824,3.103,1831,1.666,1871,2.237,1887,3.564,1897,1.91,1898,2.237,1928,1.91,1931,1.91,1937,3.103,2026,2.733,2027,2.733,2028,5.345,2029,2.237,2030,2.733,2031,2.733,2032,3.792,2033,2.733,2034,2.733,2035,2.237,2036,2.733,2037,2.733,2038,2.733,2039,2.733,2040,2.733,2041,2.733,2042,2.733,2043,4.94,2044,4.94,2045,4.354,2046,4.354,2047,3.103,2048,2.733,2049,2.733,2050,2.733,2051,2.733,2052,2.733,2053,2.733,2054,2.733,2055,2.733,2056,2.733,2057,2.733,2058,2.733,2059,2.733,2060,2.733,2061,2.733,2062,2.733,2063,2.733,2064,4.354,2065,2.733,2066,2.733,2067,2.733,2068,2.733,2069,2.733,2070,2.733,2071,2.733,2072,2.733,2073,3.792,2074,3.792,2075,2.733,2076,2.733,2077,2.733,2078,2.733,2079,2.733,2080,2.733,2081,2.733,2082,2.733,2083,2.733,2084,3.792,2085,2.733,2086,2.733,2087,2.733,2088,2.733,2089,2.733,2090,2.733,2091,2.733,2092,2.733,2093,2.733,2094,2.733,2095,2.733,2096,2.733,2097,2.733,2098,2.733,2099,2.733,2100,1.91,2101,2.733,2102,2.733,2103,2.733,2104,2.733,2105,2.733,2106,2.733,2107,2.733,2108,2.733,2109,2.733]],["t/20",[11,0.02,367,0.057]],["b/20",[0,0.015,1,0.075,3,0.016,4,0.041,5,0.016,6,0.016,7,0.037,8,0.016,9,0.108,10,0.022,11,0.04,12,0.015,13,0.063,14,0.015,15,0.015,16,0.015,17,0.022,18,0.022,19,0.015,20,0.016,21,0.015,22,0.015,23,0.015,24,0.015,25,0.015,26,0.016,27,0.043,28,0.015,29,0.033,30,0.015,31,0.015,32,0.015,33,0.068,34,0.015,35,0.022,36,0.015,37,0.023,38,0.041,39,0.039,43,1.845,44,0.606,46,0.196,47,0.34,52,1.243,57,0.015,59,0.144,61,1.064,67,1.339,72,0.569,79,2.661,81,1.798,84,0.938,104,1.325,109,1.182,113,0.434,117,0.677,121,0.67,123,1.535,124,1.115,152,1,154,0.373,155,1.115,156,0.411,157,0.842,159,1.182,163,1.976,169,0.016,170,0.895,172,0.94,185,0.434,187,0.479,188,0.602,191,0.799,192,0.842,200,0.606,201,0.606,203,0.723,206,1.339,240,2.654,256,0.481,258,1.745,261,1.588,262,1,312,0.425,314,0.278,339,0.94,340,1.976,345,0.526,346,0.895,347,1.188,358,0.541,359,1.052,361,0.016,362,0.016,363,0.023,367,0.114,368,0.016,369,0.016,370,0.016,371,0.016,386,1.115,389,1.535,395,0.628,412,0.895,416,1.561,418,1.4,419,1.4,423,2.008,427,0.842,432,1.182,441,1.052,443,1.798,444,1.615,446,2.349,448,1.745,451,2.29,452,0.842,457,1.552,458,0.842,459,0.94,466,0.541,474,1.339,493,0.541,508,0.677,510,1.253,515,1.552,532,1.052,548,1.745,554,1.552,555,1.339,560,2.266,561,0.677,573,0.842,590,1.339,593,1.534,597,1.182,600,1.632,604,1.052,605,1.552,608,0.755,626,1.745,628,2.266,635,1.535,646,1.535,686,1.052,689,1.182,694,0.842,702,1.182,708,1.535,759,0.842,765,1.052,766,1.339,772,1.535,781,0.842,789,4.021,790,2.895,792,1.339,797,1.182,810,4.484,823,3.483,824,2.771,825,1.115,828,2.266,831,0.94,844,1.741,851,1.798,853,1.845,861,0.94,866,2.266,871,3.172,873,1.339,874,1.552,883,2.266,887,2.557,888,2.443,893,1.535,933,1.052,940,2.895,941,3.66,943,0.895,958,1.182,999,2.654,1005,1.561,1007,2.266,1017,1.243,1038,1.798,1052,1.798,1056,1.339,1060,1.535,1064,1.976,1067,1.535,1090,1.798,1097,1.798,1109,1.535,1130,0.94,1181,1.339,1217,2.654,1278,1.182,1286,1.798,1291,2.074,1323,1.976,1352,1.535,1359,1.798,1403,4.518,1404,2.654,1419,3.715,1427,2.654,1455,2.266,1480,1.798,1486,2.266,1502,1.798,1538,1.798,1607,1.052,1626,1.798,1699,1.339,1754,2.654,1788,1.535,1879,1.798,1918,1.798,1940,1.798,2011,2.266,2100,1.535,2110,2.197,2111,2.197,2112,2.197,2113,2.197,2114,3.242,2115,3.483,2116,2.197,2117,2.197,2118,2.197,2119,4.914,2120,4.75,2121,2.197,2122,4.021,2123,2.197,2124,5.149,2125,2.654,2126,2.197,2127,3.242,2128,2.197,2129,2.197,2130,2.197,2131,2.197,2132,2.197,2133,2.197,2134,4.539,2135,3.242,2136,3.242,2137,3.242,2138,2.654,2139,3.242,2140,2.654,2141,4.021,2142,2.654,2143,2.197,2144,2.197,2145,2.197,2146,2.197,2147,2.197,2148,2.197,2149,2.197,2150,2.197,2151,1.798,2152,2.197,2153,1.798,2154,2.197,2155,2.197,2156,3.242,2157,3.242,2158,3.242,2159,2.197,2160,2.197,2161,2.197,2162,2.197,2163,3.242,2164,3.854,2165,2.197,2166,4.539,2167,2.197,2168,4.256,2169,3.242,2170,2.197,2171,3.242,2172,4.256,2173,3.242,2174,2.197,2175,2.197,2176,3.242,2177,3.242,2178,3.242,2179,3.242,2180,3.242,2181,3.854,2182,3.854,2183,2.197,2184,2.197,2185,2.197,2186,2.197,2187,3.242,2188,3.242,2189,3.242,2190,3.242,2191,2.197,2192,2.197,2193,2.197,2194,2.197,2195,2.197,2196,1.535,2197,2.197,2198,2.197,2199,2.197,2200,2.197,2201,2.197,2202,2.197,2203,2.197,2204,2.197,2205,2.197,2206,2.197,2207,2.197,2208,1.798,2209,2.197,2210,2.197,2211,2.197]],["t/21",[59,0.11,314,0.371]],["b/21",[0,0.016,1,0.101,2,1.05,3,0.017,4,0.041,5,0.017,6,0.017,7,0.032,8,0.029,9,0.113,10,0.034,11,0.036,12,0.016,13,0.067,14,0.016,15,0.016,16,0.016,17,0.023,18,0.03,19,0.016,20,0.024,21,0.03,22,0.016,23,0.016,24,0.016,25,0.016,26,0.017,27,0.067,28,0.028,29,0.016,30,0.016,31,0.023,32,0.016,33,0.073,34,0.016,35,0.016,36,0.016,37,0.024,38,0.024,39,0.024,43,1.124,44,1.106,46,0.21,47,0.499,57,0.032,58,0.659,59,0.188,60,1.306,61,1.106,71,1.235,72,0.347,73,0.659,79,1.124,84,0.681,91,0.808,104,0.808,113,0.454,114,1.05,116,1.457,117,1.05,121,0.774,122,1.431,124,0.808,152,0.724,155,1.171,156,0.508,157,0.9,159,1.264,162,1.457,169,0.017,170,0.94,171,0.9,185,0.43,187,0.592,188,0.591,189,1.005,190,1.005,191,0.987,195,0.514,197,1.124,201,1.213,203,0.399,227,0.724,230,1.865,239,1.431,260,0.808,261,1.235,262,0.724,288,1.918,308,0.724,311,1.832,312,0.455,313,0.648,314,0.432,337,0.724,338,1.641,339,1.005,340,2.075,343,0.9,345,0.364,346,1.213,347,1.05,358,0.987,361,0.017,362,0.017,363,0.032,366,0.347,367,0.112,368,0.017,369,0.017,370,0.017,371,0.017,386,1.171,391,1.431,395,0.942,400,1.431,405,1.996,406,0.746,409,1.996,412,1.342,416,0.808,418,1.355,419,1.05,422,1.171,423,0.9,425,1.124,426,1.05,427,0.9,429,1.457,430,0.724,433,1.306,434,1.005,436,1.005,437,0.9,441,1.124,444,0.724,448,1.832,450,1.264,451,1.832,457,1.124,458,0.9,459,1.005,463,1.005,466,0.987,471,1.922,488,1.306,493,0.579,500,2.075,508,0.724,510,1.106,513,1.264,515,1.124,521,1.641,532,1.63,548,1.264,549,1.922,552,1.264,557,2.156,561,1.5,564,1.922,585,1.641,586,1.264,588,1.264,592,0.9,593,1.566,594,1.457,606,1.431,607,1.431,608,0.808,611,1.431,620,1.165,627,1.922,628,1.641,630,2.075,640,1.63,641,2.379,669,1.171,670,1.431,676,1.264,704,1.124,709,1.641,728,1.431,737,0.9,763,1.641,765,1.63,767,1.431,775,1.124,778,2.075,780,0.94,790,2.441,792,3.058,825,1.801,830,1.431,831,1.714,840,1.641,842,1.832,844,1.685,853,1.918,858,1.922,863,1.641,864,3.399,866,2.379,867,0.9,871,3.259,877,1.922,884,1.431,887,1.832,888,2.156,932,1.641,940,1.431,941,2.799,943,1.213,944,1.264,958,1.832,959,1.431,1005,1.171,1008,2.787,1059,1.641,1141,1.264,1183,1.431,1214,2.075,1291,1.832,1331,1.431,1332,1.431,1333,2.787,1334,1.922,1346,2.379,1347,1.922,1348,1.922,1349,1.922,1350,1.922,1351,1.922,1352,1.641,1353,1.641,1354,3.058,1374,1.641,1381,1.124,1416,2.787,1417,3.278,1428,1.431,1486,2.799,1495,1.124,1516,1.922,1592,3.278,1607,1.124,1634,1.641,1698,2.379,1706,1.922,1724,1.922,1783,2.799,1786,1.922,1809,2.787,1892,1.641,1928,1.641,1931,1.641,2011,1.641,2035,1.922,2047,1.922,2115,3.278,2122,1.922,2138,1.922,2140,1.922,2141,2.787,2142,1.922,2151,3.278,2153,1.922,2196,1.641,2208,1.922,2212,2.348,2213,2.348,2214,2.348,2215,2.348,2216,2.348,2217,2.348,2218,2.348,2219,2.348,2220,2.348,2221,2.348,2222,2.348,2223,2.348,2224,2.348,2225,2.348,2226,2.348,2227,2.348,2228,1.922,2229,2.348,2230,2.348,2231,2.348,2232,4.005,2233,4.005,2234,4.664,2235,2.348,2236,2.348,2237,2.348,2238,2.348,2239,2.348,2240,2.348,2241,2.348,2242,3.405,2243,2.348,2244,2.348,2245,2.348,2246,2.348,2247,2.348,2248,2.348,2249,2.348,2250,2.348,2251,2.348,2252,2.348,2253,2.348,2254,2.348,2255,2.348,2256,2.348,2257,2.348,2258,2.348,2259,2.348,2260,2.348,2261,2.348,2262,2.348,2263,2.348,2264,4.393,2265,2.348,2266,2.348,2267,3.405,2268,2.348,2269,2.348,2270,2.348,2271,2.348,2272,2.348,2273,2.348,2274,2.348,2275,2.348,2276,2.348,2277,2.348,2278,3.405,2279,2.348,2280,2.348,2281,2.348,2282,4.664,2283,4.005,2284,1.922,2285,2.348,2286,2.348,2287,2.348,2288,2.348,2289,3.405,2290,2.348,2291,2.348,2292,2.348,2293,2.348,2294,1.922]],["t/22",[12,0.017,13,0.048,2295,2.008]],["b/22",[0,0.024,1,0.096,3,0.025,4,0.041,5,0.025,6,0.025,7,0.025,8,0.025,9,0.117,10,0.024,11,0.024,12,0.039,13,0.112,14,0.024,15,0.038,16,0.024,17,0.024,18,0.039,19,0.024,20,0.025,21,0.024,22,0.024,23,0.024,24,0.024,25,0.024,26,0.025,27,0.068,28,0.024,29,0.024,30,0.024,31,0.024,32,0.024,33,0.107,34,0.024,35,0.024,36,0.024,37,0.032,38,0.025,39,0.025,46,0.129,47,0.491,57,0.024,59,0.183,73,0.668,113,0.432,122,2.103,128,1.323,154,0.586,156,0.562,169,0.025,187,0.654,188,0.437,230,1.699,312,0.668,337,1.366,361,0.025,362,0.025,363,0.025,366,0.51,367,0.107,368,0.025,369,0.025,370,0.025,371,0.025,395,0.948,406,0.753,409,1.477,416,1.187,418,1.754,419,1.366,421,2.122,422,1.187,426,1.509,433,1.323,437,1.699,446,2.701,458,1.877,480,2.103,497,1.064,510,1.351,511,2.103,526,2.824,593,1.223,612,2.103,629,2.824,825,1.187,828,2.411,845,2.983,943,1.426,952,2.103,953,3.148,1064,2.103,1109,3.421,1251,3.421,1269,2.824,1338,2.103,1381,2.473,1488,1.857,1699,2.701,1770,3.627,1831,2.701,1897,2.411,1972,2.824,1985,2.824,2013,2.824,2015,3.627,2023,2.824,2294,2.824,2295,4.006,2296,3.451,2297,4.431,2298,4.431,2299,4.431,2300,3.451,2301,4.431,2302,3.451,2303,3.451,2304,3.451,2305,4.895,2306,4.431,2307,4.431,2308,3.451,2309,4.895,2310,4.431,2311,3.451,2312,3.451,2313,3.451,2314,3.451,2315,4.431,2316,5.165,2317,4.431,2318,4.431,2319,3.451,2320,3.451,2321,3.451]],["t/23",[9,0.057,10,0.02]],["b/23",[0,0.025,1,0.098,3,0.026,4,0.042,5,0.026,6,0.026,7,0.026,8,0.026,9,0.113,10,0.032,11,0.025,12,0.025,13,0.089,14,0.025,15,0.035,16,0.037,17,0.025,18,0.032,19,0.025,20,0.026,21,0.025,22,0.025,23,0.035,24,0.025,25,0.025,26,0.033,27,0.071,28,0.025,29,0.025,30,0.025,31,0.025,32,0.025,33,0.112,34,0.025,35,0.025,36,0.025,37,0.026,38,0.026,39,0.026,40,1.948,46,0.171,57,0.025,58,0.885,61,1.261,73,0.701,84,0.615,105,2.53,113,0.442,114,1.116,115,1.245,117,1.116,121,0.535,156,0.459,169,0.026,185,0.403,187,0.535,190,1.549,191,0.892,195,0.793,200,0.999,203,0.776,230,1.752,337,1.116,343,1.752,347,1.116,348,2.207,361,0.026,362,0.026,363,0.026,364,0.793,365,0.999,366,0.535,367,0.071,368,0.026,369,0.026,370,0.026,371,0.026,373,1.752,390,1.733,395,0.701,397,2.207,406,0.955,419,1.116,422,1.245,433,2.016,453,1.948,463,1.549,472,2.207,508,1.116,572,2.963,600,1.388,620,0.793,631,2.53,669,1.245,686,1.733,844,1.388,896,3.051,897,3.498,898,2.53,902,2.517,943,0.999,1068,1.733,1133,1.948,1266,2.207,1271,2.963,1289,3.674,1375,2.963,1382,2.963,1384,2.963,1418,4.302,1430,4.599,1495,1.733,1507,4.097,1892,2.53,1913,2.963,1929,2.963,2029,2.963,2100,2.53,2125,4.097,2196,2.53,2228,2.963,2284,2.963,2322,3.62,2323,3.62,2324,3.62,2325,3.62,2326,4.568,2327,4.568,2328,3.62,2329,3.62,2330,3.62,2331,3.62,2332,3.62]]],"invertedIndex":[["",{"_index":4,"t":{"12":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["0",{"_index":128,"t":{},"b":{"0":{},"2":{},"6":{},"8":{},"14":{},"15":{},"16":{},"22":{}}}],["0,anoth",{"_index":1839,"t":{},"b":{"16":{}}}],["0.01398128574790146",{"_index":722,"t":{},"b":{"2":{}}}],["0.05494170617624188",{"_index":714,"t":{},"b":{"2":{}}}],["0.19669013660764087",{"_index":727,"t":{},"b":{"2":{}}}],["0.2",{"_index":2307,"t":{},"b":{"22":{}}}],["0.44337342264208013",{"_index":720,"t":{},"b":{"2":{}}}],["0.5",{"_index":1972,"t":{},"b":{"17":{},"22":{}}}],["0.5em",{"_index":289,"t":{},"b":{"0":{},"15":{}}}],["0.625",{"_index":980,"t":{},"b":{"6":{}}}],["0.6530105843098764",{"_index":723,"t":{},"b":{"2":{}}}],["0.6827027882254428",{"_index":721,"t":{},"b":{"2":{}}}],["0.8082201284720802",{"_index":716,"t":{},"b":{"2":{}}}],["0.8677505369049191",{"_index":734,"t":{},"b":{"2":{}}}],["0.8897212370257943",{"_index":725,"t":{},"b":{"2":{}}}],["0.925043556823661",{"_index":715,"t":{},"b":{"2":{}}}],["000",{"_index":301,"t":{},"b":{"0":{}}}],["0/,r:10,starts:{",{"_index":1773,"t":{},"b":{"16":{}}}],["6})/,sl:\"julia",{"_index":1774,"t":{},"b":{"16":{}}}],["6})/,sl:\"julia\"}},{cn:\"metas\",b:/^shell>/,r:10,starts:{",{"_index":1772,"t":{},"b":{"16":{}}}],["7",{"_index":1149,"t":{},"b":{"8":{}}}],["70",{"_index":1138,"t":{},"b":{"8":{}}}],["8",{"_index":965,"t":{},"b":{"6":{},"8":{},"14":{}}}],["8.125",{"_index":976,"t":{},"b":{"6":{}}}],["80",{"_index":1140,"t":{},"b":{"8":{}}}],["808080",{"_index":915,"t":{},"b":{"5":{}}}],["8918",{"_index":96,"t":{},"b":{"0":{}}}],["8px",{"_index":267,"t":{},"b":{"0":{}}}],["9019",{"_index":95,"t":{},"b":{"0":{}}}],["_",{"_index":2095,"t":{},"b":{"19":{}}}],["_!#1_",{"_index":1599,"t":{},"b":{"15":{}}}],["__dir__",{"_index":644,"t":{},"b":{"1":{}}}],["__site",{"_index":871,"t":{},"b":{"5":{},"20":{},"21":{}}}],["__site/[path/]index.html",{"_index":2245,"t":{},"b":{"21":{}}}],["__site/[path/]somepage/index.html",{"_index":2248,"t":{},"b":{"21":{}}}],["__site/assets/folder1/code/ex1.jl",{"_index":478,"t":{},"b":{"1":{}}}],["_asset",{"_index":2232,"t":{},"b":{"21":{}}}],["_average_",{"_index":528,"t":{},"b":{"1":{}}}],["_bold",{"_index":1703,"t":{},"b":{"16":{}}}],["_css",{"_index":1416,"t":{},"b":{"14":{},"21":{}}}],["_css/basic.css",{"_index":1420,"t":{},"b":{"14":{}}}],["_css/franklin.css",{"_index":1143,"t":{},"b":{"8":{}}}],["_css/jemdoc.css",{"_index":1421,"t":{},"b":{"14":{}}}],["_italic_",{"_index":1702,"t":{},"b":{"16":{}}}],["_layout",{"_index":1417,"t":{},"b":{"14":{},"21":{}}}],["_layout/*.html",{"_index":1896,"t":{},"b":{"17":{}}}],["_layout/foot.html",{"_index":2327,"t":{},"b":{"23":{}}}],["_layout/head.html",{"_index":897,"t":{},"b":{"5":{},"14":{},"23":{}}}],["_layout/index.html",{"_index":894,"t":{},"b":{"5":{}}}],["_layout/page_foot.html",{"_index":2326,"t":{},"b":{"23":{}}}],["_lib",{"_index":2233,"t":{},"b":{"21":{}}}],["_libs/highlight",{"_index":1755,"t":{},"b":{"16":{}}}],["_libs/lunr",{"_index":854,"t":{},"b":{"5":{}}}],["_libs/plotly/plotly.min.j",{"_index":950,"t":{},"b":{"6":{}}}],["_liter",{"_index":706,"t":{},"b":{"2":{}}}],["_string_n",{"_index":1201,"t":{},"b":{"9":{}}}],["a.fnref",{"_index":1117,"t":{},"b":{"8":{}}}],["a:hov",{"_index":913,"t":{},"b":{"5":{}}}],["a](some/url",{"_index":1727,"t":{},"b":{"16":{}}}],["abov",{"_index":476,"t":{},"b":{"1":{},"2":{},"6":{},"7":{},"9":{},"14":{},"15":{},"16":{},"17":{},"19":{}}}],["abs(x",{"_index":743,"t":{},"b":{"2":{}}}],["accept",{"_index":1931,"t":{},"b":{"17":{},"19":{},"21":{}}}],["access",{"_index":1060,"t":{},"b":{"7":{},"17":{},"20":{}}}],["accordingli",{"_index":930,"t":{},"b":{"5":{}}}],["account",{"_index":1038,"t":{},"b":{"7":{},"20":{}}}],["achiev",{"_index":1824,"t":{},"b":{"16":{},"19":{}}}],["action",{"_index":2141,"t":{},"b":{"20":{},"21":{}}}],["action@releases/v3",{"_index":2180,"t":{},"b":{"20":{}}}],["actiontroubleshootingdeploy",{"_index":2113,"t":{},"b":{"20":{}}}],["activ",{"_index":551,"t":{},"b":{"1":{},"17":{}}}],["actual",{"_index":633,"t":{},"b":{"1":{}}}],["ad",{"_index":452,"t":{},"b":{"1":{},"3":{},"5":{},"6":{},"7":{},"8":{},"16":{},"20":{}}}],["adapt",{"_index":196,"t":{},"b":{"0":{},"4":{},"5":{},"14":{}}}],["add",{"_index":345,"t":{"5":{},"7":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"11":{},"13":{},"14":{},"15":{},"16":{},"17":{},"20":{},"21":{}}}],["addcom",{"_index":1089,"t":{},"b":{"7":{}}}],["addit",{"_index":2196,"t":{},"b":{"20":{},"21":{},"23":{}}}],["address",{"_index":2231,"t":{},"b":{"21":{}}}],["adjust",{"_index":845,"t":{},"b":{"5":{},"8":{},"14":{},"22":{}}}],["advanc",{"_index":2085,"t":{},"b":{"19":{}}}],["advantag",{"_index":198,"t":{},"b":{"0":{},"5":{},"11":{}}}],["afraid",{"_index":945,"t":{},"b":{"6":{}}}],["again",{"_index":634,"t":{},"b":{"1":{},"8":{},"15":{}}}],["agre",{"_index":1279,"t":{},"b":{"10":{}}}],["aim",{"_index":764,"t":{},"b":{"3":{},"10":{},"16":{}}}],["al",{"_index":1647,"t":{},"b":{"15":{}}}],["aliceblu",{"_index":1600,"t":{},"b":{"15":{}}}],["align",{"_index":180,"t":{},"b":{"0":{},"8":{},"16":{}}}],["allow",{"_index":44,"t":{},"b":{"0":{},"2":{},"4":{},"5":{},"11":{},"15":{},"16":{},"17":{},"19":{},"20":{},"21":{}}}],["alreadi",{"_index":642,"t":{},"b":{"1":{},"3":{},"6":{},"11":{},"14":{},"16":{}}}],["alt",{"_index":1167,"t":{},"b":{"8":{},"16":{}}}],["alt](full_path",{"_index":1813,"t":{},"b":{"16":{}}}],["altern",{"_index":2193,"t":{},"b":{"20":{}}}],["although",{"_index":1004,"t":{},"b":{"7":{}}}],["alway",{"_index":1897,"t":{},"b":{"17":{},"19":{},"22":{}}}],["ambigu",{"_index":1608,"t":{},"b":{"15":{},"16":{},"17":{}}}],["american",{"_index":1314,"t":{},"b":{"10":{}}}],["analyt",{"_index":1432,"t":{},"b":{"14":{}}}],["anchor",{"_index":1619,"t":{},"b":{"15":{}}}],["anchor\">jemdoctopicscontacthome [1]xthi",{"_index":1124,"t":{},"b":{"8":{}}}],["content\"nam",{"_index":1966,"t":{},"b":{"17":{}}}],["content.bibref",{"_index":1622,"t":{},"b":{"15":{}}}],["content.eqref",{"_index":1621,"t":{},"b":{"15":{}}}],["content=\"width=devic",{"_index":1460,"t":{},"b":{"14":{}}}],["contentfd_ctimestringtim",{"_index":2001,"t":{},"b":{"17":{}}}],["contentscodehighlightingevalu",{"_index":1680,"t":{},"b":{"16":{}}}],["contentsfnrefwrap",{"_index":1377,"t":{},"b":{"13":{}}}],["contentwrap",{"_index":1371,"t":{},"b":{"13":{}}}],["contour",{"_index":982,"t":{},"b":{"6":{}}}],["contrast",{"_index":1885,"t":{},"b":{"17":{}}}],["contribut",{"_index":1310,"t":{},"b":{"10":{}}}],["contributor",{"_index":2199,"t":{},"b":{"20":{}}}],["control",{"_index":1266,"t":{},"b":{"10":{},"16":{},"17":{},"23":{}}}],["conveni",{"_index":431,"t":{},"b":{"1":{},"2":{},"4":{},"6":{},"8":{},"16":{},"19":{}}}],["convers",{"_index":1271,"t":{},"b":{"10":{},"23":{}}}],["convert",{"_index":698,"t":{},"b":{"2":{},"10":{},"13":{},"15":{}}}],["cool",{"_index":736,"t":{},"b":{"2":{},"15":{}}}],["copi",{"_index":853,"t":{},"b":{"5":{},"7":{},"14":{},"17":{},"20":{},"21":{}}}],["coral",{"_index":141,"t":{},"b":{"0":{}}}],["cornflowerblu",{"_index":1601,"t":{},"b":{"15":{}}}],["correctli",{"_index":402,"t":{},"b":{"1":{}}}],["correspond",{"_index":433,"t":{},"b":{"1":{},"7":{},"15":{},"16":{},"17":{},"21":{},"22":{},"23":{}}}],["cos(\\theta",{"_index":1588,"t":{},"b":{"15":{}}}],["couldn't",{"_index":1104,"t":{},"b":{"8":{}}}],["counter",{"_index":1150,"t":{},"b":{"8":{}}}],["coupl",{"_index":43,"t":{},"b":{"0":{},"9":{},"11":{},"16":{},"20":{},"21":{}}}],["courier",{"_index":292,"t":{},"b":{"0":{}}}],["cours",{"_index":115,"t":{},"b":{"0":{},"1":{},"5":{},"7":{},"10":{},"14":{},"16":{},"17":{},"23":{}}}],["crash",{"_index":1194,"t":{},"b":{"9":{}}}],["creat",{"_index":7,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["creation",{"_index":2002,"t":{},"b":{"17":{}}}],["cross",{"_index":2145,"t":{},"b":{"20":{}}}],["crossorigin=\"anonym",{"_index":1080,"t":{},"b":{"7":{}}}],["css",{"_index":117,"t":{},"b":{"0":{},"6":{},"8":{},"11":{},"14":{},"15":{},"16":{},"20":{},"21":{},"23":{}}}],["css.md",{"_index":2257,"t":{},"b":{"21":{}}}],["css_html_js_minifi",{"_index":1364,"t":{},"b":{"11":{}}}],["csv",{"_index":1832,"t":{},"b":{"16":{}}}],["ctrl+c",{"_index":1350,"t":{},"b":{"11":{},"21":{}}}],["ctrl>+c",{"_index":1189,"t":{},"b":{"9":{}}}],["current",{"_index":594,"t":{},"b":{"1":{},"11":{},"14":{},"15":{},"16":{},"17":{},"21":{}}}],["cursor",{"_index":302,"t":{},"b":{"0":{}}}],["custom",{"_index":1518,"t":{},"b":{"15":{},"16":{},"19":{}}}],["customis",{"_index":1323,"t":{},"b":{"11":{},"16":{},"19":{},"20":{}}}],["cx=\"2",{"_index":130,"t":{},"b":{"0":{}}}],["cy=\"2",{"_index":131,"t":{},"b":{"0":{}}}],["d",{"_index":2026,"t":{},"b":{"19":{}}}],["daili",{"_index":2303,"t":{},"b":{"22":{}}}],["dare",{"_index":1284,"t":{},"b":{"10":{}}}],["darkorang",{"_index":144,"t":{},"b":{"0":{}}}],["darth",{"_index":1981,"t":{},"b":{"17":{}}}],["darth.github.io",{"_index":1982,"t":{},"b":{"17":{}}}],["darth.github.io/vador",{"_index":1983,"t":{},"b":{"17":{}}}],["data",{"_index":112,"t":{},"b":{"0":{},"6":{}}}],["databas",{"_index":1013,"t":{},"b":{"7":{}}}],["datasciencetutori",{"_index":567,"t":{},"b":{"1":{},"2":{},"4":{}}}],["date",{"_index":1871,"t":{},"b":{"17":{},"19":{}}}],["date)langstringjuliadefault",{"_index":1995,"t":{},"b":{"17":{}}}],["date_monthsvector{string}string[]nam",{"_index":1962,"t":{},"b":{"17":{}}}],["date_shortdaysvector{string}string[]short",{"_index":1961,"t":{},"b":{"17":{}}}],["date_shortmonthsvector{string}string[]short",{"_index":1964,"t":{},"b":{"17":{}}}],["dates.datelocal",{"_index":1975,"t":{},"b":{"17":{}}}],["dates.formatdate_daysvector{string}string[]nam",{"_index":1958,"t":{},"b":{"17":{}}}],["day",{"_index":1959,"t":{},"b":{"17":{}}}],["dd",{"_index":1954,"t":{},"b":{"17":{}}}],["dead",{"_index":2285,"t":{},"b":{"21":{}}}],["deal",{"_index":1180,"t":{},"b":{"9":{},"10":{},"16":{},"19":{}}}],["debug",{"_index":2159,"t":{},"b":{"20":{}}}],["decent",{"_index":1285,"t":{},"b":{"10":{}}}],["decid",{"_index":2175,"t":{},"b":{"20":{}}}],["declar",{"_index":1634,"t":{},"b":{"15":{},"16":{},"21":{}}}],["decor",{"_index":912,"t":{},"b":{"5":{}}}],["dedic",{"_index":1919,"t":{},"b":{"17":{}}}],["deem",{"_index":1545,"t":{},"b":{"15":{}}}],["deeppink",{"_index":138,"t":{},"b":{"0":{}}}],["def",{"_index":419,"t":{},"b":{"1":{},"2":{},"5":{},"6":{},"16":{},"17":{},"20":{},"21":{},"22":{},"23":{}}}],["default",{"_index":426,"t":{},"b":{"1":{},"5":{},"6":{},"7":{},"13":{},"14":{},"16":{},"17":{},"21":{},"22":{}}}],["defin",{"_index":154,"t":{},"b":{"0":{},"5":{},"6":{},"7":{},"8":{},"10":{},"11":{},"13":{},"14":{},"15":{},"16":{},"17":{},"19":{},"20":{},"22":{}}}],["defined{{isnotdef",{"_index":1926,"t":{},"b":{"17":{}}}],["definit",{"_index":308,"t":{},"b":{"0":{},"8":{},"10":{},"11":{},"13":{},"15":{},"16":{},"17":{},"19":{},"21":{}}}],["definitionsfndef",{"_index":1379,"t":{},"b":{"13":{}}}],["definition{angl",{"_index":1580,"t":{},"b":{"15":{}}}],["degre",{"_index":76,"t":{},"b":{"0":{}}}],["demo",{"_index":1339,"t":{},"b":{"11":{}}}],["denot",{"_index":1583,"t":{},"b":{"15":{},"17":{}}}],["depend",{"_index":343,"t":{},"b":{"0":{},"1":{},"5":{},"11":{},"17":{},"19":{},"21":{},"23":{}}}],["deploy",{"_index":11,"t":{"20":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["deploy.yml",{"_index":2165,"t":{},"b":{"20":{}}}],["deriv",{"_index":788,"t":{},"b":{"4":{}}}],["describ",{"_index":1015,"t":{},"b":{"7":{}}}],["descript",{"_index":2023,"t":{},"b":{"17":{},"22":{}}}],["design",{"_index":226,"t":{},"b":{"0":{}}}],["desir",{"_index":996,"t":{},"b":{"6":{},"7":{}}}],["desktop/mywebsite/project.toml",{"_index":562,"t":{},"b":{"1":{}}}],["detail",{"_index":122,"t":{},"b":{"0":{},"13":{},"21":{},"22":{}}}],["detect",{"_index":1950,"t":{},"b":{"17":{}}}],["dev",{"_index":1257,"t":{},"b":{"10":{},"14":{}}}],["dfrac",{"_index":1792,"t":{},"b":{"16":{}}}],["dfrac{1",{"_index":1794,"t":{},"b":{"16":{}}}],["didn't",{"_index":1238,"t":{},"b":{"10":{}}}],["differ",{"_index":192,"t":{},"b":{"0":{},"5":{},"7":{},"10":{},"15":{},"16":{},"17":{},"20":{}}}],["dir",{"_index":485,"t":{},"b":{"1":{},"16":{}}}],["directli",{"_index":1061,"t":{},"b":{"7":{},"14":{},"16":{},"17":{},"19":{}}}],["director",{"_index":224,"t":{},"b":{"0":{}}}],["directori",{"_index":640,"t":{},"b":{"1":{},"5":{},"11":{},"16":{},"17":{},"21":{}}}],["disabl",{"_index":1109,"t":{},"b":{"8":{},"20":{},"22":{}}}],["disallow",{"_index":2316,"t":{},"b":{"22":{}}}],["discard",{"_index":855,"t":{},"b":{"5":{}}}],["discourag",{"_index":1805,"t":{},"b":{"16":{}}}],["discoveri",{"_index":1311,"t":{},"b":{"10":{}}}],["discuss",{"_index":1810,"t":{},"b":{"16":{}}}],["display",{"_index":160,"t":{},"b":{"0":{},"1":{},"2":{},"5":{},"6":{},"7":{},"8":{},"15":{},"16":{},"19":{}}}],["display::aft",{"_index":1142,"t":{},"b":{"8":{}}}],["display:block",{"_index":272,"t":{},"b":{"0":{}}}],["distinct",{"_index":1529,"t":{},"b":{"15":{}}}],["div",{"_index":16,"t":{"15":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["div_cont",{"_index":1382,"t":{},"b":{"13":{},"23":{}}}],["div_contentstring\"franklin",{"_index":1965,"t":{},"b":{"17":{}}}],["divnam",{"_index":1368,"t":{},"b":{"13":{},"15":{},"16":{}}}],["dna",{"_index":1312,"t":{},"b":{"10":{}}}],["do",{"_index":199,"t":{},"b":{"0":{},"4":{},"5":{},"9":{},"10":{},"14":{}}}],["doabl",{"_index":1030,"t":{},"b":{"7":{}}}],["doc",{"_index":883,"t":{},"b":{"5":{},"16":{},"20":{}}}],["docs.\\n",{"_index":1694,"t":{},"b":{"16":{}}}],["docs](http://example.com",{"_index":1690,"t":{},"b":{"16":{}}}],["doctyp",{"_index":898,"t":{},"b":{"5":{},"14":{},"23":{}}}],["document",{"_index":1542,"t":{},"b":{"15":{}}}],["document.getelementbyid('test",{"_index":963,"t":{},"b":{"6":{}}}],["documenter.jl'",{"_index":885,"t":{},"b":{"5":{}}}],["documenter=fals",{"_index":807,"t":{},"b":{"4":{}}}],["doe",{"_index":209,"t":{},"b":{"0":{}}}],["doesn't",{"_index":596,"t":{},"b":{"1":{},"16":{}}}],["dollar",{"_index":1737,"t":{},"b":{"16":{}}}],["don't",{"_index":427,"t":{},"b":{"1":{},"3":{},"8":{},"14":{},"16":{},"17":{},"20":{},"21":{}}}],["donald",{"_index":1158,"t":{},"b":{"8":{}}}],["done",{"_index":449,"t":{},"b":{"1":{},"3":{},"5":{},"7":{},"14":{},"16":{}}}],["dot(a",{"_index":498,"t":{},"b":{"1":{}}}],["dots.png",{"_index":1716,"t":{},"b":{"16":{}}}],["doubl",{"_index":393,"t":{},"b":{"1":{},"15":{},"16":{},"19":{}}}],["down",{"_index":1352,"t":{},"b":{"11":{},"20":{},"21":{}}}],["download",{"_index":782,"t":{},"b":{"4":{},"6":{}}}],["drawback",{"_index":1036,"t":{},"b":{"7":{}}}],["dropdown",{"_index":2147,"t":{},"b":{"20":{}}}],["due",{"_index":1733,"t":{},"b":{"16":{}}}],["dumb",{"_index":2043,"t":{},"b":{"19":{}}}],["e",{"_index":821,"t":{},"b":{"4":{}}}],["e.g",{"_index":689,"t":{},"b":{"1":{},"6":{},"16":{},"17":{},"20":{}}}],["each",{"_index":163,"t":{},"b":{"0":{},"2":{},"7":{},"20":{}}}],["earlier",{"_index":618,"t":{},"b":{"1":{},"5":{},"15":{},"19":{}}}],["easi",{"_index":372,"t":{},"b":{"1":{},"4":{},"7":{},"10":{},"11":{}}}],["easier",{"_index":206,"t":{},"b":{"0":{},"10":{},"13":{},"20":{}}}],["easiest",{"_index":2222,"t":{},"b":{"21":{}}}],["easili",{"_index":797,"t":{},"b":{"4":{},"5":{},"8":{},"15":{},"20":{}}}],["echo",{"_index":2169,"t":{},"b":{"20":{}}}],["edelman",{"_index":1650,"t":{},"b":{"15":{}}}],["edit",{"_index":8,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["editor",{"_index":1355,"t":{},"b":{"11":{},"16":{}}}],["effect",{"_index":109,"t":{},"b":{"0":{},"1":{},"14":{},"17":{},"20":{}}}],["effici",{"_index":1282,"t":{},"b":{"10":{}}}],["eg",{"_index":403,"t":{},"b":{"1":{}}}],["eget",{"_index":213,"t":{},"b":{"0":{}}}],["element",{"_index":710,"t":{},"b":{"2":{},"5":{},"10":{},"14":{},"15":{},"17":{}}}],["elseif",{"_index":1915,"t":{},"b":{"17":{}}}],["elsewher",{"_index":2035,"t":{},"b":{"19":{},"21":{}}}],["email",{"_index":235,"t":{},"b":{"0":{},"7":{}}}],["email=\"example@example.com",{"_index":246,"t":{},"b":{"0":{}}}],["embed",{"_index":1011,"t":{},"b":{"7":{}}}],["emoji",{"_index":1021,"t":{},"b":{"7":{}}}],["empti",{"_index":2125,"t":{},"b":{"20":{},"23":{}}}],["encount",{"_index":1179,"t":{},"b":{"9":{}}}],["end",{"_index":256,"t":{},"b":{"0":{},"1":{},"2":{},"4":{},"6":{},"7":{},"8":{},"10":{},"14":{},"15":{},"17":{},"19":{},"20":{}}}],["endswith(f",{"_index":2052,"t":{},"b":{"19":{}}}],["end{align",{"_index":1801,"t":{},"b":{"16":{}}}],["end{array",{"_index":1803,"t":{},"b":{"16":{}}}],["end{eqnarray",{"_index":1799,"t":{},"b":{"16":{}}}],["engin",{"_index":1042,"t":{},"b":{"7":{}}}],["english",{"_index":1308,"t":{},"b":{"10":{},"17":{}}}],["englob",{"_index":1967,"t":{},"b":{"17":{}}}],["enim",{"_index":214,"t":{},"b":{"0":{}}}],["enough",{"_index":1489,"t":{},"b":{"14":{},"19":{}}}],["ensur",{"_index":400,"t":{},"b":{"1":{},"5":{},"16":{},"21":{}}}],["enter",{"_index":875,"t":{},"b":{"5":{}}}],["entir",{"_index":546,"t":{},"b":{"1":{},"8":{},"17":{}}}],["entiti",{"_index":1735,"t":{},"b":{"16":{}}}],["entitiest",{"_index":1679,"t":{},"b":{"16":{}}}],["entri",{"_index":1770,"t":{},"b":{"16":{},"22":{}}}],["enumerate(idx",{"_index":2065,"t":{},"b":{"19":{}}}],["environ",{"_index":550,"t":{},"b":{"1":{},"6":{},"11":{},"13":{},"15":{},"16":{}}}],["ep",{"_index":744,"t":{},"b":{"2":{}}}],["eps()tru",{"_index":755,"t":{},"b":{"2":{}}}],["eqnarray",{"_index":1804,"t":{},"b":{"16":{}}}],["eqref",{"_index":1623,"t":{},"b":{"15":{}}}],["eqref{a",{"_index":1630,"t":{},"b":{"15":{}}}],["eqref{som",{"_index":1628,"t":{},"b":{"15":{}}}],["equat",{"_index":746,"t":{},"b":{"2":{},"8":{},"15":{}}}],["equip",{"_index":843,"t":{},"b":{"5":{}}}],["equival",{"_index":1830,"t":{},"b":{"16":{}}}],["eras",{"_index":2273,"t":{},"b":{"21":{}}}],["error",{"_index":603,"t":{},"b":{"1":{},"9":{}}}],["escap",{"_index":1738,"t":{},"b":{"16":{}}}],["essenti",{"_index":1892,"t":{},"b":{"17":{},"21":{},"23":{}}}],["et",{"_index":1646,"t":{},"b":{"15":{}}}],["etc",{"_index":114,"t":{},"b":{"0":{},"1":{},"4":{},"5":{},"10":{},"14":{},"15":{},"16":{},"21":{},"23":{}}}],["eu",{"_index":215,"t":{},"b":{"0":{}}}],["eval_all=fals",{"_index":2281,"t":{},"b":{"21":{}}}],["evalu",{"_index":2,"t":{"0":{},"1":{}},"b":{"0":{},"1":{},"2":{},"10":{},"11":{},"16":{},"17":{},"21":{}}}],["evaluationrss",{"_index":1867,"t":{},"b":{"17":{}}}],["even",{"_index":462,"t":{},"b":{"1":{}}}],["eventu",{"_index":895,"t":{},"b":{"5":{}}}],["everyth",{"_index":590,"t":{},"b":{"1":{},"14":{},"15":{},"20":{}}}],["exact",{"_index":471,"t":{},"b":{"1":{},"21":{}}}],["exactli",{"_index":503,"t":{},"b":{"1":{}}}],["exampl",{"_index":72,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"7":{},"9":{},"11":{},"13":{},"15":{},"16":{},"17":{},"19":{},"20":{},"21":{}}}],["example@example.com",{"_index":219,"t":{},"b":{"0":{}}}],["examplesnest",{"_index":1522,"t":{},"b":{"15":{}}}],["examplestext",{"_index":1521,"t":{},"b":{"15":{}}}],["exampleswhitespacesdefin",{"_index":1523,"t":{},"b":{"15":{}}}],["excel",{"_index":1492,"t":{},"b":{"14":{}}}],["except",{"_index":1891,"t":{},"b":{"17":{}}}],["exclam",{"_index":1713,"t":{},"b":{"16":{}}}],["exclud",{"_index":2310,"t":{},"b":{"22":{}}}],["execut",{"_index":103,"t":{},"b":{"0":{},"1":{},"17":{}}}],["execute=fals",{"_index":806,"t":{},"b":{"4":{}}}],["exist",{"_index":1409,"t":{},"b":{"14":{},"15":{},"16":{}}}],["exp(i\\pi",{"_index":738,"t":{},"b":{"2":{},"15":{}}}],["exp(i\\pi)+1",{"_index":1798,"t":{},"b":{"16":{}}}],["exp(im",{"_index":740,"t":{},"b":{"2":{}}}],["expect",{"_index":701,"t":{},"b":{"2":{},"5":{},"17":{}}}],["experi",{"_index":936,"t":{},"b":{"5":{},"11":{},"16":{}}}],["experimentingbasicsheaderstext",{"_index":1677,"t":{},"b":{"16":{}}}],["explain",{"_index":1052,"t":{},"b":{"7":{},"20":{}}}],["explan",{"_index":123,"t":{},"b":{"0":{},"3":{},"20":{}}}],["explicitli",{"_index":617,"t":{},"b":{"1":{},"16":{}}}],["exploit",{"_index":54,"t":{},"b":{"0":{}}}],["explor",{"_index":1688,"t":{},"b":{"16":{}}}],["export",{"_index":932,"t":{},"b":{"5":{},"6":{},"21":{}}}],["ext",{"_index":678,"t":{},"b":{"1":{}}}],["extend",{"_index":772,"t":{},"b":{"3":{},"10":{},"20":{}}}],["extens",{"_index":1251,"t":{},"b":{"10":{},"16":{},"22":{}}}],["extern",{"_index":1008,"t":{},"b":{"7":{},"21":{}}}],["extra",{"_index":25,"t":{"3":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["extract",{"_index":2097,"t":{},"b":{"19":{}}}],["ey",{"_index":1336,"t":{},"b":{"11":{}}}],["f",{"_index":2055,"t":{},"b":{"19":{}}}],["f(s)\\psi(s)\\mathrm{d}",{"_index":1558,"t":{},"b":{"15":{},"16":{}}}],["f)).mtime",{"_index":2054,"t":{},"b":{"19":{}}}],["f,\\psi",{"_index":1562,"t":{},"b":{"15":{}}}],["f:\\mathbb",{"_index":1551,"t":{},"b":{"15":{}}}],["f:\\r\\to\\r",{"_index":1550,"t":{},"b":{"15":{}}}],["fact",{"_index":55,"t":{},"b":{"0":{},"7":{},"10":{},"13":{},"15":{},"16":{}}}],["fail",{"_index":1217,"t":{},"b":{"9":{},"20":{}}}],["fairli",{"_index":759,"t":{},"b":{"3":{},"4":{},"5":{},"9":{},"10":{},"14":{},"17":{},"20":{}}}],["fals",{"_index":953,"t":{},"b":{"6":{},"16":{},"17":{},"22":{}}}],["famili",{"_index":291,"t":{},"b":{"0":{}}}],["familiar",{"_index":1695,"t":{},"b":{"16":{}}}],["fancier",{"_index":880,"t":{},"b":{"5":{}}}],["faq",{"_index":33,"t":{"8":{},"9":{},"10":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["fast",{"_index":1326,"t":{},"b":{"11":{}}}],["faster",{"_index":2288,"t":{},"b":{"21":{}}}],["father",{"_index":1316,"t":{},"b":{"10":{}}}],["faucibu",{"_index":217,"t":{},"b":{"0":{}}}],["fd2html",{"_index":1689,"t":{},"b":{"16":{}}}],["fd_",{"_index":1987,"t":{},"b":{"17":{}}}],["fd_mtime",{"_index":1511,"t":{},"b":{"14":{}}}],["fdplotli",{"_index":989,"t":{},"b":{"6":{}}}],["fdplotly(json(plt",{"_index":987,"t":{},"b":{"6":{}}}],["featur",{"_index":1327,"t":{},"b":{"11":{}}}],["feed",{"_index":2015,"t":{},"b":{"17":{},"22":{}}}],["feel",{"_index":768,"t":{},"b":{"3":{},"8":{},"10":{}}}],["fenc",{"_index":349,"t":{},"b":{"0":{},"1":{},"7":{},"16":{},"17":{}}}],["few",{"_index":71,"t":{},"b":{"0":{},"1":{},"2":{},"5":{},"7":{},"10":{},"14":{},"16":{},"17":{},"21":{}}}],["fi",{"_index":2066,"t":{},"b":{"19":{}}}],["field",{"_index":1082,"t":{},"b":{"7":{}}}],["fig",{"_index":595,"t":{},"b":{"1":{}}}],["figalt{alt}{path",{"_index":1811,"t":{},"b":{"16":{}}}],["figur",{"_index":599,"t":{},"b":{"1":{},"16":{}}}],["figure(figsize=(8",{"_index":575,"t":{},"b":{"1":{}}}],["figureinsert",{"_index":1686,"t":{},"b":{"16":{}}}],["fig{./output/test",{"_index":1820,"t":{},"b":{"16":{}}}],["fig{./test",{"_index":1821,"t":{},"b":{"16":{}}}],["fig{path",{"_index":1812,"t":{},"b":{"16":{}}}],["fig{sinc",{"_index":583,"t":{},"b":{"1":{}}}],["file",{"_index":113,"t":{"4":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"7":{},"9":{},"11":{},"14":{},"15":{},"16":{},"17":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["file(",{"_index":929,"t":{},"b":{"5":{}}}],["file.md",{"_index":2324,"t":{},"b":{"23":{}}}],["filefd_mtime_rawdatetim",{"_index":2004,"t":{},"b":{"17":{}}}],["filefd_mtimestringtim",{"_index":2003,"t":{},"b":{"17":{}}}],["filenam",{"_index":2242,"t":{},"b":{"21":{}}}],["filesmak",{"_index":1402,"t":{},"b":{"14":{}}}],["fill",{"_index":158,"t":{},"b":{"0":{},"7":{},"14":{},"17":{},"19":{}}}],["fill=\"#1\"/>#1post",{"_index":2069,"t":{},"b":{"19":{}}}],["href=\"/assets/infra/favicon.png",{"_index":1468,"t":{},"b":{"14":{}}}],["href=\"/css/franklin.css",{"_index":1466,"t":{},"b":{"14":{}}}],["href=\"/css/jemdoc.css",{"_index":1426,"t":{},"b":{"14":{}}}],["href=\"/index.html#angela\">angelachristinedonaldshinzomenu",{"_index":1444,"t":{},"b":{"14":{}}}],["href=\"/menu1/#fndef:1",{"_index":1115,"t":{},"b":{"8":{}}}],["href=\"/menu1/#fnref:blah\">[2]menu",{"_index":1446,"t":{},"b":{"14":{}}}],["href=\"/menu3/\">menu",{"_index":1448,"t":{},"b":{"14":{}}}],["href=\"http://example.com\">th",{"_index":1693,"t":{},"b":{"16":{}}}],["href=\"http://jemdoc.jaboc.net/\">jemdocfranklin.jl#2$titlebar dot(a",{"_index":506,"t":{},"b":{"1":{}}}],["julia'",{"_index":1957,"t":{},"b":{"17":{}}}],["julia)mor",{"_index":378,"t":{},"b":{"1":{}}}],["julia:!#1",{"_index":351,"t":{},"b":{"0":{}}}],["julia:./code/ex1",{"_index":465,"t":{},"b":{"1":{}}}],["julia:./code_pg1/ex1",{"_index":495,"t":{},"b":{"1":{}}}],["julia:./code_pg1/ex2",{"_index":517,"t":{},"b":{"1":{}}}],["julia:./ex",{"_index":1156,"t":{},"b":{"8":{}}}],["julia:./ex1",{"_index":1817,"t":{},"b":{"16":{}}}],["julia:./tableinput/gen",{"_index":1834,"t":{},"b":{"16":{}}}],["julia:circl",{"_index":134,"t":{},"b":{"0":{}}}],["julia:ex1",{"_index":969,"t":{},"b":{"6":{}}}],["julia:ex_show",{"_index":536,"t":{},"b":{"1":{}}}],["julia:path/to/script",{"_index":455,"t":{},"b":{"1":{}}}],["julia:pyplot1",{"_index":574,"t":{},"b":{"1":{}}}],["julia:snippet1",{"_index":1776,"t":{},"b":{"16":{}}}],["julia:t",{"_index":82,"t":{},"b":{"0":{}}}],["julia:teamcard",{"_index":241,"t":{},"b":{"0":{}}}],["julialang",{"_index":2048,"t":{},"b":{"19":{}}}],["juno",{"_index":1190,"t":{},"b":{"9":{}}}],["junoiostream",{"_index":1185,"t":{},"b":{"9":{}}}],["jupyt",{"_index":699,"t":{},"b":{"2":{},"7":{}}}],["k",{"_index":1539,"t":{},"b":{"15":{},"19":{}}}],["k \\n",{"_index":2070,"t":{},"b":{"19":{}}}],["karpinski",{"_index":1651,"t":{},"b":{"15":{}}}],["katex",{"_index":1141,"t":{},"b":{"8":{},"11":{},"16":{},"17":{},"21":{}}}],["keep",{"_index":626,"t":{},"b":{"1":{},"11":{},"16":{},"17":{},"20":{}}}],["key",{"_index":786,"t":{},"b":{"4":{},"11":{}}}],["keyword",{"_index":830,"t":{},"b":{"4":{},"5":{},"6":{},"21":{}}}],["kill",{"_index":1215,"t":{},"b":{"9":{}}}],["kind",{"_index":1101,"t":{},"b":{"7":{}}}],["kindli",{"_index":1102,"t":{},"b":{"7":{},"10":{}}}],["know",{"_index":1298,"t":{},"b":{"10":{},"11":{},"13":{}}}],["known",{"_index":1178,"t":{},"b":{"9":{}}}],["korper",{"_index":1641,"t":{},"b":{"15":{}}}],["label",{"_index":1074,"t":{},"b":{"7":{},"15":{},"19":{}}}],["label=\"com",{"_index":1085,"t":{},"b":{"7":{}}}],["label{a",{"_index":1629,"t":{},"b":{"15":{}}}],["label{nam",{"_index":1667,"t":{},"b":{"15":{}}}],["label{som",{"_index":1627,"t":{},"b":{"15":{}}}],["lack",{"_index":1260,"t":{},"b":{"10":{}}}],["land",{"_index":2238,"t":{},"b":{"21":{}}}],["lang",{"_index":424,"t":{},"b":{"1":{},"16":{},"17":{}}}],["lang=\"en",{"_index":1457,"t":{},"b":{"14":{}}}],["languag",{"_index":371,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["language)insert",{"_index":382,"t":{},"b":{"1":{}}}],["last",{"_index":169,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["later",{"_index":2089,"t":{},"b":{"19":{}}}],["latest",{"_index":2205,"t":{},"b":{"20":{}}}],["latex",{"_index":1024,"t":{},"b":{"7":{},"10":{},"11":{},"15":{},"16":{},"19":{}}}],["latter",{"_index":1220,"t":{},"b":{"9":{},"16":{}}}],["launch",{"_index":2270,"t":{},"b":{"21":{}}}],["layout",{"_index":190,"t":{},"b":{"0":{},"6":{},"14":{},"16":{},"19":{},"21":{},"23":{}}}],["layout.md",{"_index":2258,"t":{},"b":{"21":{}}}],["le",{"_index":1571,"t":{},"b":{"15":{}}}],["lead",{"_index":1592,"t":{},"b":{"15":{},"21":{}}}],["learn",{"_index":1287,"t":{},"b":{"10":{}}}],["leav",{"_index":1037,"t":{},"b":{"7":{},"14":{},"19":{}}}],["lectu",{"_index":216,"t":{},"b":{"0":{}}}],["left",{"_index":1133,"t":{},"b":{"8":{},"14":{},"15":{},"17":{},"23":{}}}],["left:0",{"_index":281,"t":{},"b":{"0":{}}}],["left:auto",{"_index":175,"t":{},"b":{"0":{}}}],["left\\langl",{"_index":1561,"t":{},"b":{"15":{}}}],["lego",{"_index":2323,"t":{},"b":{"23":{}}}],["lemonchiffon",{"_index":1528,"t":{},"b":{"15":{}}}],["len(x",{"_index":326,"t":{},"b":{"0":{}}}],["length",{"_index":1855,"t":{},"b":{"16":{}}}],["length(perm",{"_index":2061,"t":{},"b":{"19":{}}}],["length=500",{"_index":577,"t":{},"b":{"1":{}}}],["less",{"_index":74,"t":{},"b":{"0":{},"17":{}}}],["let'",{"_index":474,"t":{},"b":{"1":{},"14":{},"19":{},"20":{}}}],["letter",{"_index":1535,"t":{},"b":{"15":{}}}],["level",{"_index":1495,"t":{},"b":{"14":{},"16":{},"17":{},"19":{},"21":{},"23":{}}}],["li",{"_index":1744,"t":{},"b":{"16":{},"17":{},"19":{}}}],["li>set",{"_index":1691,"t":{},"b":{"16":{}}}],["p]/script",{"_index":481,"t":{},"b":{"1":{}}}],["packag",{"_index":330,"t":{},"b":{"0":{},"1":{},"2":{},"4":{},"9":{},"10":{},"11":{}}}],["pad",{"_index":280,"t":{},"b":{"0":{},"8":{},"14":{},"15":{}}}],["padding:0",{"_index":266,"t":{},"b":{"0":{}}}],["page",{"_index":9,"t":{"17":{},"23":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["page.md",{"_index":2250,"t":{},"b":{"21":{}}}],["page_foot",{"_index":1507,"t":{},"b":{"14":{},"23":{}}}],["pagebuilding/upd",{"_index":839,"t":{},"b":{"5":{}}}],["pagedatestr",{"_index":1993,"t":{},"b":{"17":{}}}],["pagehascodeboolfalsewheth",{"_index":1992,"t":{},"b":{"17":{}}}],["pagereflinksbooltruewheth",{"_index":1996,"t":{},"b":{"17":{}}}],["pages/notebooks/thenotebook.ipynb",{"_index":827,"t":{},"b":{"4":{}}}],["pages/page1.md",{"_index":2239,"t":{},"b":{"21":{}}}],["pagesedit",{"_index":2217,"t":{},"b":{"21":{}}}],["pageshowallboolfalsenotebook",{"_index":2009,"t":{},"b":{"17":{}}}],["paid",{"_index":1043,"t":{},"b":{"7":{}}}],["palevioletr",{"_index":140,"t":{},"b":{"0":{}}}],["pandoc",{"_index":1267,"t":{},"b":{"10":{}}}],["param",{"_index":2077,"t":{},"b":{"19":{}}}],["paramet",{"_index":2044,"t":{},"b":{"19":{}}}],["parameters\"latex",{"_index":2041,"t":{},"b":{"19":{}}}],["parameterswith",{"_index":2040,"t":{},"b":{"19":{}}}],["parenthes",{"_index":1662,"t":{},"b":{"15":{}}}],["pars",{"_index":401,"t":{},"b":{"1":{},"10":{},"19":{}}}],["parselunrresult",{"_index":892,"t":{},"b":{"5":{}}}],["parser",{"_index":850,"t":{},"b":{"5":{},"10":{},"16":{},"17":{}}}],["part",{"_index":153,"t":{},"b":{"0":{},"1":{},"10":{},"14":{},"17":{}}}],["partial",{"_index":1543,"t":{},"b":{"15":{}}}],["particular",{"_index":1288,"t":{},"b":{"10":{},"17":{}}}],["particularli",{"_index":565,"t":{},"b":{"1":{},"9":{},"15":{},"16":{}}}],["pass",{"_index":831,"t":{},"b":{"4":{},"6":{},"11":{},"13":{},"19":{},"20":{},"21":{}}}],["past",{"_index":1084,"t":{},"b":{"7":{},"14":{}}}],["path",{"_index":459,"t":{},"b":{"1":{},"5":{},"15":{},"16":{},"17":{},"20":{},"21":{}}}],["path/]index.html",{"_index":2244,"t":{},"b":{"21":{}}}],["path/]index.md",{"_index":2243,"t":{},"b":{"21":{}}}],["path/]somepage.html",{"_index":2247,"t":{},"b":{"21":{}}}],["path/]somepage.md",{"_index":2246,"t":{},"b":{"21":{}}}],["path/to/dir",{"_index":1979,"t":{},"b":{"17":{}}}],["path/to/file.md",{"_index":1978,"t":{},"b":{"17":{}}}],["path/to/page}}opposit",{"_index":1923,"t":{},"b":{"17":{}}}],["path/to/page}}wheth",{"_index":1921,"t":{},"b":{"17":{}}}],["path/to/script",{"_index":456,"t":{},"b":{"1":{}}}],["path]/output/script.out",{"_index":490,"t":{},"b":{"1":{}}}],["path_prepend",{"_index":886,"t":{},"b":{"5":{}}}],["pathnam",{"_index":1070,"t":{},"b":{"7":{}}}],["pathsinsert",{"_index":379,"t":{},"b":{"1":{}}}],["pathwithout{hello",{"_index":1614,"t":{},"b":{"15":{}}}],["pathwith{hello",{"_index":1612,"t":{},"b":{"15":{}}}],["path{{isnotpag",{"_index":1922,"t":{},"b":{"17":{}}}],["per",{"_index":387,"t":{},"b":{"1":{}}}],["perm",{"_index":2056,"t":{},"b":{"19":{}}}],["perm[1:min(3",{"_index":2060,"t":{},"b":{"19":{}}}],["permiss",{"_index":1062,"t":{},"b":{"7":{}}}],["person",{"_index":240,"t":{},"b":{"0":{},"20":{}}}],["phasellu",{"_index":212,"t":{},"b":{"0":{}}}],["philosophi",{"_index":625,"t":{},"b":{"1":{}}}],["pic=\"beth",{"_index":243,"t":{},"b":{"0":{}}}],["pic=\"meseek",{"_index":251,"t":{},"b":{"0":{}}}],["pic=\"rick",{"_index":248,"t":{},"b":{"0":{}}}],["pick",{"_index":2148,"t":{},"b":{"20":{}}}],["pictur",{"_index":1263,"t":{},"b":{"10":{}}}],["pip3",{"_index":1365,"t":{},"b":{"11":{}}}],["pkg",{"_index":559,"t":{},"b":{"1":{},"6":{},"11":{}}}],["pkg.instanti",{"_index":341,"t":{},"b":{"0":{}}}],["place",{"_index":592,"t":{},"b":{"1":{},"2":{},"5":{},"6":{},"7":{},"11":{},"16":{},"21":{}}}],["placeholder=\"ent",{"_index":907,"t":{},"b":{"5":{}}}],["plain",{"_index":670,"t":{},"b":{"1":{},"16":{},"19":{},"21":{}}}],["plaintext",{"_index":1753,"t":{},"b":{"16":{}}}],["platform",{"_index":2289,"t":{},"b":{"21":{}}}],["pleas",{"_index":1405,"t":{},"b":{"14":{},"16":{}}}],["plot",{"_index":568,"t":{},"b":{"1":{},"3":{},"6":{},"8":{}}}],["plot([0",{"_index":1818,"t":{},"b":{"16":{}}}],["plot(data",{"_index":986,"t":{},"b":{"6":{}}}],["plot(x",{"_index":579,"t":{},"b":{"1":{}}}],["plot:id",{"_index":682,"t":{},"b":{"1":{}}}],["plotli",{"_index":32,"t":{"6":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["plotly.min.j",{"_index":949,"t":{},"b":{"6":{}}}],["plotly.plot",{"_index":964,"t":{},"b":{"6":{}}}],["plotlyj",{"_index":967,"t":{},"b":{"6":{}}}],["plotlyjs.jl",{"_index":948,"t":{},"b":{"6":{}}}],["plt",{"_index":985,"t":{},"b":{"6":{}}}],["plug",{"_index":631,"t":{},"b":{"1":{},"19":{},"23":{}}}],["png",{"_index":680,"t":{},"b":{"1":{}}}],["point",{"_index":311,"t":{},"b":{"0":{},"14":{},"15":{},"19":{},"21":{}}}],["pointer",{"_index":303,"t":{},"b":{"0":{}}}],["pollut",{"_index":822,"t":{},"b":{"4":{}}}],["polymath",{"_index":1315,"t":{},"b":{"10":{}}}],["poptaskref(::base.invasivelinkedlistsynchronized{task",{"_index":1211,"t":{},"b":{"9":{}}}],["port",{"_index":1414,"t":{},"b":{"14":{}}}],["possibl",{"_index":67,"t":{},"b":{"0":{},"8":{},"16":{},"20":{}}}],["post",{"_index":429,"t":{},"b":{"1":{},"4":{},"5":{},"7":{},"11":{},"17":{},"21":{}}}],["pr",{"_index":1403,"t":{},"b":{"14":{},"20":{}}}],["pr_comment",{"_index":2203,"t":{},"b":{"20":{}}}],["pr_comment.yml",{"_index":2200,"t":{},"b":{"20":{}}}],["practic",{"_index":105,"t":{},"b":{"0":{},"16":{},"23":{}}}],["pre",{"_index":780,"t":{},"b":{"4":{},"5":{},"6":{},"7":{},"11":{},"13":{},"14":{},"15":{},"16":{},"19":{},"21":{}}}],["pre>/,r:10,starts:{",{"_index":1771,"t":{},"b":{"16":{}}}],["replac",{"_index":635,"t":{},"b":{"1":{},"15":{},"20":{}}}],["replace(\"\"\"!#2",{"_index":352,"t":{},"b":{"0":{}}}],["repli",{"_index":1034,"t":{},"b":{"7":{}}}],["repo",{"_index":824,"t":{},"b":{"4":{},"5":{},"7":{},"14":{},"20":{}}}],["repo=\"[ent",{"_index":1077,"t":{},"b":{"7":{}}}],["repositori",{"_index":39,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["reprocess",{"_index":108,"t":{},"b":{"0":{},"19":{}}}],["reproduc",{"_index":1265,"t":{},"b":{"10":{},"15":{}}}],["request",{"_index":2120,"t":{},"b":{"20":{}}}],["request@71efef56b184328c7ef1f213577c3a90edaa4aff",{"_index":2207,"t":{},"b":{"20":{}}}],["requir",{"_index":337,"t":{},"b":{"0":{},"5":{},"6":{},"7":{},"10":{},"11":{},"15":{},"21":{},"22":{},"23":{}}}],["require('gh",{"_index":817,"t":{},"b":{"4":{}}}],["requisit",{"_index":848,"t":{},"b":{"5":{},"6":{},"7":{}}}],["requisiteslibrariesfilesindex",{"_index":834,"t":{},"b":{"5":{}}}],["requisitesselect",{"_index":998,"t":{},"b":{"7":{}}}],["reserv",{"_index":2254,"t":{},"b":{"21":{}}}],["resolv",{"_index":1289,"t":{},"b":{"10":{},"15":{},"23":{}}}],["respect",{"_index":2325,"t":{},"b":{"23":{}}}],["respons",{"_index":186,"t":{},"b":{"0":{},"14":{},"17":{}}}],["rest",{"_index":763,"t":{},"b":{"3":{},"17":{},"21":{}}}],["restart",{"_index":1216,"t":{},"b":{"9":{}}}],["result",{"_index":373,"t":{},"b":{"1":{},"2":{},"5":{},"6":{},"12":{},"14":{},"16":{},"23":{}}}],["resultcount",{"_index":916,"t":{},"b":{"5":{}}}],["retriev",{"_index":2082,"t":{},"b":{"19":{}}}],["return",{"_index":1094,"t":{},"b":{"7":{},"19":{}}}],["rev=tru",{"_index":2058,"t":{},"b":{"19":{}}}],["review",{"_index":1658,"t":{},"b":{"15":{}}}],["rgba(0,0,0,0.2",{"_index":278,"t":{},"b":{"0":{}}}],["ricardo",{"_index":1099,"t":{},"b":{"7":{}}}],["ridicul",{"_index":1479,"t":{},"b":{"14":{}}}],["right",{"_index":933,"t":{},"b":{"5":{},"7":{},"10":{},"11":{},"14":{},"20":{}}}],["right:auto",{"_index":176,"t":{},"b":{"0":{}}}],["right\\rangl",{"_index":1554,"t":{},"b":{"15":{}}}],["right\\rangle\\ov",{"_index":1595,"t":{},"b":{"15":{}}}],["rigor",{"_index":749,"t":{},"b":{"2":{}}}],["robot",{"_index":2295,"t":{"22":{}},"b":{"22":{}}}],["robots.txt",{"_index":2315,"t":{},"b":{"22":{}}}],["robots_disallow",{"_index":2318,"t":{},"b":{"22":{}}}],["robots_disallow_this_pag",{"_index":2317,"t":{},"b":{"22":{}}}],["rodin/a",{"_index":1026,"t":{},"b":{"7":{}}}],["root",{"_index":676,"t":{},"b":{"1":{},"2":{},"5":{},"17":{},"21":{}}}],["rosa'",{"_index":1100,"t":{},"b":{"7":{}}}],["rosalind",{"_index":1307,"t":{},"b":{"10":{}}}],["ross",{"_index":222,"t":{},"b":{"0":{}}}],["round(norm(a",{"_index":1779,"t":{},"b":{"16":{}}}],["row",{"_index":253,"t":{},"b":{"0":{}}}],["row::aft",{"_index":285,"t":{},"b":{"0":{}}}],["rpath",{"_index":1906,"t":{},"b":{"17":{}}}],["rpath}}sam",{"_index":1905,"t":{},"b":{"17":{}}}],["rss",{"_index":13,"t":{"18":{},"22":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["rss_descript",{"_index":2312,"t":{},"b":{"22":{}}}],["rss_description\"\"rss_titlecurr",{"_index":2018,"t":{},"b":{"17":{}}}],["rubi",{"_index":1758,"t":{},"b":{"16":{}}}],["rule",{"_index":1706,"t":{},"b":{"16":{},"21":{}}}],["run",{"_index":340,"t":{},"b":{"0":{},"1":{},"20":{},"21":{}}}],["run(`$(nodejs_cmd",{"_index":820,"t":{},"b":{"4":{}}}],["run(`sudo",{"_index":1361,"t":{},"b":{"11":{}}}],["rundown",{"_index":1054,"t":{},"b":{"7":{}}}],["s",{"_index":655,"t":{},"b":{"1":{}}}],["s\"\\1re",{"_index":354,"t":{},"b":{"0":{}}}],["safe",{"_index":1231,"t":{},"b":{"9":{}}}],["saint",{"_index":1300,"t":{},"b":{"10":{}}}],["same",{"_index":189,"t":{},"b":{"0":{},"1":{},"7":{},"15":{},"16":{},"19":{},"21":{}}}],["save",{"_index":442,"t":{},"b":{"1":{},"6":{},"7":{}}}],["savefig(joinpath(@__dir__",{"_index":660,"t":{},"b":{"1":{}}}],["savefig(joinpath(@output",{"_index":581,"t":{},"b":{"1":{},"16":{}}}],["scaffold",{"_index":1374,"t":{},"b":{"13":{},"17":{},"21":{}}}],["scale=1",{"_index":1461,"t":{},"b":{"14":{}}}],["scal{\\cdot",{"_index":1581,"t":{},"b":{"15":{}}}],["scal{f,\\psi",{"_index":1559,"t":{},"b":{"15":{}}}],["scal{x,x",{"_index":1590,"t":{},"b":{"15":{}}}],["scal{x,y}\\ov",{"_index":1589,"t":{},"b":{"15":{}}}],["scal{y,i",{"_index":1591,"t":{},"b":{"15":{}}}],["scientist",{"_index":1277,"t":{},"b":{"10":{}}}],["scope",{"_index":1893,"t":{},"b":{"17":{}}}],["script",{"_index":438,"t":{},"b":{"1":{},"2":{},"4":{},"5":{},"6":{},"7":{},"14":{},"16":{}}}],["script.jl",{"_index":492,"t":{},"b":{"1":{}}}],["script1.jl",{"_index":656,"t":{},"b":{"1":{}}}],["script2.jl",{"_index":659,"t":{},"b":{"1":{}}}],["script2.png",{"_index":661,"t":{},"b":{"1":{}}}],["script_1_p1.jl",{"_index":690,"t":{},"b":{"1":{}}}],["script_1_p2.jl",{"_index":691,"t":{},"b":{"1":{}}}],["script_dir",{"_index":1814,"t":{},"b":{"16":{}}}],["script_dir]/output",{"_index":1815,"t":{},"b":{"16":{}}}],["scroll",{"_index":2146,"t":{},"b":{"20":{}}}],["scrub",{"_index":784,"t":{},"b":{"4":{}}}],["seamlessli",{"_index":695,"t":{},"b":{"2":{}}}],["search",{"_index":27,"t":{"5":{},"12":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["second",{"_index":159,"t":{},"b":{"0":{},"15":{},"17":{},"20":{},"21":{}}}],["secrets.github_token",{"_index":2182,"t":{},"b":{"20":{}}}],["section",{"_index":669,"t":{},"b":{"1":{},"3":{},"5":{},"8":{},"15":{},"16":{},"17":{},"21":{},"23":{}}}],["see",{"_index":121,"t":{},"b":{"0":{},"1":{},"2":{},"4":{},"5":{},"8":{},"9":{},"10":{},"11":{},"14":{},"16":{},"17":{},"19":{},"20":{},"21":{},"23":{}}}],["seem",{"_index":338,"t":{},"b":{"0":{},"9":{},"21":{}}}],["select",{"_index":702,"t":{},"b":{"2":{},"3":{},"7":{},"16":{},"20":{}}}],["sens",{"_index":1384,"t":{},"b":{"13":{},"23":{}}}],["sensit",{"_index":544,"t":{},"b":{"1":{}}}],["separ",{"_index":202,"t":{},"b":{"0":{},"1":{},"15":{},"16":{}}}],["septimia",{"_index":1869,"t":{},"b":{"17":{}}}],["serv",{"_index":561,"t":{},"b":{"1":{},"4":{},"5":{},"9":{},"11":{},"14":{},"16":{},"17":{},"20":{},"21":{}}}],["server",{"_index":557,"t":{},"b":{"1":{},"7":{},"9":{},"11":{},"21":{}}}],["servic",{"_index":2123,"t":{},"b":{"20":{}}}],["set",{"_index":418,"t":{},"b":{"1":{},"7":{},"10":{},"13":{},"15":{},"16":{},"17":{},"20":{},"21":{},"22":{}}}],["settingscod",{"_index":1866,"t":{},"b":{"17":{}}}],["setup",{"_index":2163,"t":{},"b":{"20":{}}}],["sever",{"_index":684,"t":{},"b":{"1":{},"7":{},"15":{},"17":{}}}],["shadow",{"_index":276,"t":{},"b":{"0":{}}}],["shah",{"_index":1652,"t":{},"b":{"15":{}}}],["share",{"_index":1515,"t":{},"b":{"14":{}}}],["sheet",{"_index":2236,"t":{},"b":{"21":{}}}],["shell",{"_index":1766,"t":{},"b":{"16":{}}}],["shin'",{"_index":1250,"t":{},"b":{"10":{}}}],["shinzo",{"_index":1157,"t":{},"b":{"8":{}}}],["short",{"_index":1338,"t":{},"b":{"11":{},"15":{},"17":{},"22":{}}}],["short2",{"_index":1660,"t":{},"b":{"15":{}}}],["short5",{"_index":1665,"t":{},"b":{"15":{}}}],["shortcut",{"_index":1884,"t":{},"b":{"17":{}}}],["shot",{"_index":1631,"t":{},"b":{"15":{}}}],["shouldn't",{"_index":793,"t":{},"b":{"4":{}}}],["show",{"_index":313,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"5":{},"7":{},"8":{},"14":{},"15":{},"19":{},"21":{}}}],["showal",{"_index":703,"t":{},"b":{"2":{}}}],["shown",{"_index":69,"t":{},"b":{"0":{},"1":{},"2":{},"16":{},"17":{}}}],["show{ex_show",{"_index":539,"t":{},"b":{"1":{}}}],["show{snippet1",{"_index":1781,"t":{},"b":{"16":{}}}],["shut",{"_index":1351,"t":{},"b":{"11":{},"21":{}}}],["siam",{"_index":1657,"t":{},"b":{"15":{}}}],["side",{"_index":1828,"t":{},"b":{"16":{}}}],["sigdigits=4",{"_index":1780,"t":{},"b":{"16":{}}}],["sign",{"_index":1328,"t":{},"b":{"11":{},"16":{}}}],["signatur",{"_index":2096,"t":{},"b":{"19":{}}}],["significantli",{"_index":1273,"t":{},"b":{"10":{}}}],["silent",{"_index":2235,"t":{},"b":{"21":{}}}],["silent=fals",{"_index":2279,"t":{},"b":{"21":{}}}],["silli",{"_index":1530,"t":{},"b":{"15":{}}}],["similar",{"_index":571,"t":{},"b":{"1":{},"10":{},"15":{},"16":{},"17":{},"19":{}}}],["simpl",{"_index":195,"t":{},"b":{"0":{},"5":{},"7":{},"8":{},"10":{},"11":{},"13":{},"14":{},"16":{},"17":{},"19":{},"21":{},"23":{}}}],["simpler",{"_index":1247,"t":{},"b":{"10":{},"19":{}}}],["simpli",{"_index":1075,"t":{},"b":{"7":{},"16":{}}}],["simplifi",{"_index":1434,"t":{},"b":{"14":{}}}],["sinc",{"_index":580,"t":{},"b":{"1":{}}}],["sinc.svg",{"_index":582,"t":{},"b":{"1":{}}}],["singer",{"_index":1318,"t":{},"b":{"10":{}}}],["singl",{"_index":391,"t":{},"b":{"1":{},"16":{},"19":{},"21":{}}}],["single=fals",{"_index":2276,"t":{},"b":{"21":{}}}],["site",{"_index":1005,"t":{},"b":{"7":{},"8":{},"10":{},"11":{},"14":{},"15":{},"17":{},"20":{},"21":{}}}],["site'",{"_index":2237,"t":{},"b":{"21":{}}}],["sitemap",{"_index":12,"t":{"22":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["sitemap_changefreq",{"_index":2301,"t":{},"b":{"22":{}}}],["sitemap_exclud",{"_index":2300,"t":{},"b":{"22":{}}}],["sitemap_opt",{"_index":2309,"t":{},"b":{"22":{}}}],["sitemap_prior",{"_index":2306,"t":{},"b":{"22":{}}}],["sitemaprssrobot",{"_index":2296,"t":{},"b":{"22":{}}}],["sitesynchronis",{"_index":2116,"t":{},"b":{"20":{}}}],["situat",{"_index":1823,"t":{},"b":{"16":{}}}],["size",{"_index":879,"t":{},"b":{"5":{},"8":{}}}],["size:14px;}{format",{"_index":1565,"t":{},"b":{"15":{}}}],["size:15px;color:cornflowerblue}{format",{"_index":1395,"t":{},"b":{"13":{}}}],["size:24px;font",{"_index":1387,"t":{},"b":{"13":{}}}],["skill",{"_index":1258,"t":{},"b":{"10":{}}}],["skip",{"_index":761,"t":{},"b":{"3":{},"16":{}}}],["slack",{"_index":2157,"t":{},"b":{"20":{}}}],["slate",{"_index":2275,"t":{},"b":{"21":{}}}],["slice",{"_index":685,"t":{},"b":{"1":{}}}],["slightli",{"_index":1765,"t":{},"b":{"16":{}}}],["sm",{"_index":1344,"t":{},"b":{"11":{}}}],["small",{"_index":646,"t":{},"b":{"1":{},"15":{},"20":{}}}],["snippet",{"_index":627,"t":{},"b":{"1":{},"21":{}}}],["solid",{"_index":1135,"t":{},"b":{"8":{},"15":{}}}],["solut",{"_index":1018,"t":{},"b":{"7":{},"9":{}}}],["some/url",{"_index":1722,"t":{},"b":{"16":{}}}],["some_str",{"_index":1872,"t":{},"b":{"17":{}}}],["someon",{"_index":1095,"t":{},"b":{"7":{}}}],["someth",{"_index":200,"t":{},"b":{"0":{},"1":{},"5":{},"7":{},"9":{},"10":{},"16":{},"17":{},"19":{},"20":{},"23":{}}}],["sometim",{"_index":543,"t":{},"b":{"1":{},"9":{},"10":{},"19":{}}}],["somewhat",{"_index":1225,"t":{},"b":{"9":{}}}],["somewher",{"_index":959,"t":{},"b":{"6":{},"16":{},"19":{},"21":{}}}],["soon",{"_index":1383,"t":{},"b":{"13":{}}}],["sophist",{"_index":77,"t":{},"b":{"0":{},"10":{},"15":{}}}],["sort",{"_index":1230,"t":{},"b":{"9":{}}}],["sortperm(d",{"_index":2057,"t":{},"b":{"19":{}}}],["sourc",{"_index":37,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["space",{"_index":399,"t":{},"b":{"1":{},"14":{},"15":{},"16":{}}}],["span",{"_index":924,"t":{},"b":{"5":{},"13":{},"16":{},"17":{}}}],["special",{"_index":2027,"t":{},"b":{"19":{}}}],["specif",{"_index":390,"t":{},"b":{"1":{},"2":{},"15":{},"16":{},"17":{},"23":{}}}],["specifi",{"_index":422,"t":{},"b":{"1":{},"6":{},"8":{},"15":{},"16":{},"17":{},"21":{},"22":{},"23":{}}}],["speed",{"_index":1261,"t":{},"b":{"10":{}}}],["splitext(list[i])[1",{"_index":2067,"t":{},"b":{"19":{}}}],["splitext(s)[1]).out",{"_index":650,"t":{},"b":{"1":{}}}],["spstyle{font",{"_index":1392,"t":{},"b":{"13":{}}}],["src",{"_index":483,"t":{},"b":{"1":{}}}],["src/_layout/head.html",{"_index":954,"t":{},"b":{"6":{}}}],["src/search.md",{"_index":922,"t":{},"b":{"5":{}}}],["src=\"/libs/lunr/lunr.min.js\">!#2#2coloured{{fil",{"_index":1470,"t":{},"b":{"14":{}}}],["titlerss_authorcurr",{"_index":2019,"t":{},"b":{"17":{}}}],["title}}pag",{"_index":1939,"t":{},"b":{"17":{}}}],["variant:smal",{"_index":1393,"t":{},"b":{"13":{}}}],["variou",{"_index":1697,"t":{},"b":{"16":{}}}],["varnam",{"_index":1868,"t":{},"b":{"17":{}}}],["vector",{"_index":511,"t":{},"b":{"1":{},"15":{},"19":{},"22":{}}}],["vector{float64",{"_index":713,"t":{},"b":{"2":{}}}],["vector{str",{"_index":2078,"t":{},"b":{"19":{}}}],["verb=fals",{"_index":2278,"t":{},"b":{"21":{}}}],["veri",{"_index":704,"t":{},"b":{"2":{},"9":{},"10":{},"17":{},"19":{},"21":{}}}],["verifi",{"_index":2282,"t":{},"b":{"21":{}}}],["verify_link",{"_index":2283,"t":{},"b":{"21":{}}}],["version",{"_index":859,"t":{},"b":{"5":{}}}],["vertic",{"_index":1137,"t":{},"b":{"8":{},"14":{}}}],["vestibulum",{"_index":218,"t":{},"b":{"0":{}}}],["via",{"_index":867,"t":{},"b":{"5":{},"7":{},"8":{},"11":{},"16":{},"17":{},"19":{},"21":{}}}],["view",{"_index":1404,"t":{},"b":{"14":{},"20":{}}}],["viewbox=\"0",{"_index":127,"t":{},"b":{"0":{}}}],["virtual",{"_index":2162,"t":{},"b":{"20":{}}}],["visual",{"_index":2164,"t":{},"b":{"20":{}}}],["vita",{"_index":234,"t":{},"b":{"0":{}}}],["vitae=\"phasellu",{"_index":245,"t":{},"b":{"0":{}}}],["vname",{"_index":1902,"t":{},"b":{"17":{}}}],["vname2",{"_index":1916,"t":{},"b":{"17":{}}}],["vname{{fil",{"_index":1904,"t":{},"b":{"17":{}}}],["vname}}insert",{"_index":1910,"t":{},"b":{"17":{}}}],["vname}}opposit",{"_index":1927,"t":{},"b":{"17":{}}}],["vname}}plac",{"_index":1903,"t":{},"b":{"17":{}}}],["vname}}wheth",{"_index":1925,"t":{},"b":{"17":{}}}],["w",{"_index":651,"t":{},"b":{"1":{}}}],["w_\\psi[f",{"_index":1556,"t":{},"b":{"15":{},"16":{}}}],["wait",{"_index":445,"t":{},"b":{"1":{},"9":{}}}],["want",{"_index":185,"t":{},"b":{"0":{},"1":{},"2":{},"4":{},"5":{},"6":{},"7":{},"8":{},"10":{},"11":{},"13":{},"14":{},"15":{},"16":{},"17":{},"19":{},"20":{},"21":{},"23":{}}}],["warn",{"_index":2129,"t":{},"b":{"20":{}}}],["way",{"_index":194,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"7":{},"8":{},"9":{},"16":{},"17":{},"19":{}}}],["we'll",{"_index":1502,"t":{},"b":{"14":{},"20":{}}}],["web",{"_index":1256,"t":{},"b":{"10":{}}}],["webpag",{"_index":1007,"t":{},"b":{"7":{},"15":{},"20":{}}}],["websit",{"_index":367,"t":{"11":{},"20":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["website]/folder/subpag",{"_index":2253,"t":{},"b":{"21":{}}}],["website]/my_tags/!#1/,r:10,starts:{",{"_index":1773,"t":{},"b":{"16":{}}}],["6})/,sl:\"julia",{"_index":1774,"t":{},"b":{"16":{}}}],["6})/,sl:\"julia\"}},{cn:\"metas\",b:/^shell>/,r:10,starts:{",{"_index":1772,"t":{},"b":{"16":{}}}],["7",{"_index":1149,"t":{},"b":{"8":{}}}],["70",{"_index":1138,"t":{},"b":{"8":{}}}],["8",{"_index":965,"t":{},"b":{"6":{},"8":{},"14":{}}}],["8.125",{"_index":976,"t":{},"b":{"6":{}}}],["80",{"_index":1140,"t":{},"b":{"8":{}}}],["808080",{"_index":915,"t":{},"b":{"5":{}}}],["8918",{"_index":96,"t":{},"b":{"0":{}}}],["8px",{"_index":267,"t":{},"b":{"0":{}}}],["9019",{"_index":95,"t":{},"b":{"0":{}}}],["_",{"_index":2095,"t":{},"b":{"19":{}}}],["_!#1_",{"_index":1599,"t":{},"b":{"15":{}}}],["__dir__",{"_index":644,"t":{},"b":{"1":{}}}],["__site",{"_index":871,"t":{},"b":{"5":{},"20":{},"21":{}}}],["__site/[path/]index.html",{"_index":2245,"t":{},"b":{"21":{}}}],["__site/[path/]somepage/index.html",{"_index":2248,"t":{},"b":{"21":{}}}],["__site/assets/folder1/code/ex1.jl",{"_index":478,"t":{},"b":{"1":{}}}],["_asset",{"_index":2232,"t":{},"b":{"21":{}}}],["_average_",{"_index":528,"t":{},"b":{"1":{}}}],["_bold",{"_index":1703,"t":{},"b":{"16":{}}}],["_css",{"_index":1416,"t":{},"b":{"14":{},"21":{}}}],["_css/basic.css",{"_index":1420,"t":{},"b":{"14":{}}}],["_css/franklin.css",{"_index":1143,"t":{},"b":{"8":{}}}],["_css/jemdoc.css",{"_index":1421,"t":{},"b":{"14":{}}}],["_italic_",{"_index":1702,"t":{},"b":{"16":{}}}],["_layout",{"_index":1417,"t":{},"b":{"14":{},"21":{}}}],["_layout/*.html",{"_index":1896,"t":{},"b":{"17":{}}}],["_layout/foot.html",{"_index":2327,"t":{},"b":{"23":{}}}],["_layout/head.html",{"_index":897,"t":{},"b":{"5":{},"14":{},"23":{}}}],["_layout/index.html",{"_index":894,"t":{},"b":{"5":{}}}],["_layout/page_foot.html",{"_index":2326,"t":{},"b":{"23":{}}}],["_lib",{"_index":2233,"t":{},"b":{"21":{}}}],["_libs/highlight",{"_index":1755,"t":{},"b":{"16":{}}}],["_libs/lunr",{"_index":854,"t":{},"b":{"5":{}}}],["_libs/plotly/plotly.min.j",{"_index":950,"t":{},"b":{"6":{}}}],["_liter",{"_index":706,"t":{},"b":{"2":{}}}],["_string_n",{"_index":1201,"t":{},"b":{"9":{}}}],["a.fnref",{"_index":1117,"t":{},"b":{"8":{}}}],["a:hov",{"_index":913,"t":{},"b":{"5":{}}}],["a](some/url",{"_index":1727,"t":{},"b":{"16":{}}}],["abov",{"_index":476,"t":{},"b":{"1":{},"2":{},"6":{},"7":{},"9":{},"14":{},"15":{},"16":{},"17":{},"19":{}}}],["abs(x",{"_index":743,"t":{},"b":{"2":{}}}],["accept",{"_index":1931,"t":{},"b":{"17":{},"19":{},"21":{}}}],["access",{"_index":1060,"t":{},"b":{"7":{},"17":{},"20":{}}}],["accordingli",{"_index":930,"t":{},"b":{"5":{}}}],["account",{"_index":1038,"t":{},"b":{"7":{},"20":{}}}],["achiev",{"_index":1824,"t":{},"b":{"16":{},"19":{}}}],["action",{"_index":2141,"t":{},"b":{"20":{},"21":{}}}],["action@releases/v3",{"_index":2180,"t":{},"b":{"20":{}}}],["actiontroubleshootingdeploy",{"_index":2113,"t":{},"b":{"20":{}}}],["activ",{"_index":551,"t":{},"b":{"1":{},"17":{}}}],["actual",{"_index":633,"t":{},"b":{"1":{}}}],["ad",{"_index":452,"t":{},"b":{"1":{},"3":{},"5":{},"6":{},"7":{},"8":{},"16":{},"20":{}}}],["adapt",{"_index":196,"t":{},"b":{"0":{},"4":{},"5":{},"14":{}}}],["add",{"_index":345,"t":{"5":{},"7":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"11":{},"13":{},"14":{},"15":{},"16":{},"17":{},"20":{},"21":{}}}],["addcom",{"_index":1089,"t":{},"b":{"7":{}}}],["addit",{"_index":2196,"t":{},"b":{"20":{},"21":{},"23":{}}}],["address",{"_index":2231,"t":{},"b":{"21":{}}}],["adjust",{"_index":845,"t":{},"b":{"5":{},"8":{},"14":{},"22":{}}}],["advanc",{"_index":2085,"t":{},"b":{"19":{}}}],["advantag",{"_index":198,"t":{},"b":{"0":{},"5":{},"11":{}}}],["afraid",{"_index":945,"t":{},"b":{"6":{}}}],["again",{"_index":634,"t":{},"b":{"1":{},"8":{},"15":{}}}],["agre",{"_index":1279,"t":{},"b":{"10":{}}}],["aim",{"_index":764,"t":{},"b":{"3":{},"10":{},"16":{}}}],["al",{"_index":1647,"t":{},"b":{"15":{}}}],["aliceblu",{"_index":1600,"t":{},"b":{"15":{}}}],["align",{"_index":180,"t":{},"b":{"0":{},"8":{},"16":{}}}],["allow",{"_index":44,"t":{},"b":{"0":{},"2":{},"4":{},"5":{},"11":{},"15":{},"16":{},"17":{},"19":{},"20":{},"21":{}}}],["alreadi",{"_index":642,"t":{},"b":{"1":{},"3":{},"6":{},"11":{},"14":{},"16":{}}}],["alt",{"_index":1167,"t":{},"b":{"8":{},"16":{}}}],["alt](full_path",{"_index":1813,"t":{},"b":{"16":{}}}],["altern",{"_index":2193,"t":{},"b":{"20":{}}}],["although",{"_index":1004,"t":{},"b":{"7":{}}}],["alway",{"_index":1897,"t":{},"b":{"17":{},"19":{},"22":{}}}],["ambigu",{"_index":1608,"t":{},"b":{"15":{},"16":{},"17":{}}}],["american",{"_index":1314,"t":{},"b":{"10":{}}}],["analyt",{"_index":1432,"t":{},"b":{"14":{}}}],["anchor",{"_index":1619,"t":{},"b":{"15":{}}}],["anchor\"> jemdoctopicscontacthome [1]xthi",{"_index":1124,"t":{},"b":{"8":{}}}],["content\"nam",{"_index":1966,"t":{},"b":{"17":{}}}],["content.bibref",{"_index":1622,"t":{},"b":{"15":{}}}],["content.eqref",{"_index":1621,"t":{},"b":{"15":{}}}],["content=\"width=devic",{"_index":1460,"t":{},"b":{"14":{}}}],["contentfd_ctimestringtim",{"_index":2001,"t":{},"b":{"17":{}}}],["contentscodehighlightingevalu",{"_index":1680,"t":{},"b":{"16":{}}}],["contentsfnrefwrap",{"_index":1377,"t":{},"b":{"13":{}}}],["contentwrap",{"_index":1371,"t":{},"b":{"13":{}}}],["contour",{"_index":982,"t":{},"b":{"6":{}}}],["contrast",{"_index":1885,"t":{},"b":{"17":{}}}],["contribut",{"_index":1310,"t":{},"b":{"10":{}}}],["contributor",{"_index":2199,"t":{},"b":{"20":{}}}],["control",{"_index":1266,"t":{},"b":{"10":{},"16":{},"17":{},"23":{}}}],["conveni",{"_index":431,"t":{},"b":{"1":{},"2":{},"4":{},"6":{},"8":{},"16":{},"19":{}}}],["convers",{"_index":1271,"t":{},"b":{"10":{},"23":{}}}],["convert",{"_index":698,"t":{},"b":{"2":{},"10":{},"13":{},"15":{}}}],["cool",{"_index":736,"t":{},"b":{"2":{},"15":{}}}],["copi",{"_index":853,"t":{},"b":{"5":{},"7":{},"14":{},"17":{},"20":{},"21":{}}}],["coral",{"_index":141,"t":{},"b":{"0":{}}}],["cornflowerblu",{"_index":1601,"t":{},"b":{"15":{}}}],["correctli",{"_index":402,"t":{},"b":{"1":{}}}],["correspond",{"_index":433,"t":{},"b":{"1":{},"7":{},"15":{},"16":{},"17":{},"21":{},"22":{},"23":{}}}],["cos(\\theta",{"_index":1588,"t":{},"b":{"15":{}}}],["couldn't",{"_index":1104,"t":{},"b":{"8":{}}}],["counter",{"_index":1150,"t":{},"b":{"8":{}}}],["coupl",{"_index":43,"t":{},"b":{"0":{},"9":{},"11":{},"16":{},"20":{},"21":{}}}],["courier",{"_index":292,"t":{},"b":{"0":{}}}],["cours",{"_index":115,"t":{},"b":{"0":{},"1":{},"5":{},"7":{},"10":{},"14":{},"16":{},"17":{},"23":{}}}],["crash",{"_index":1194,"t":{},"b":{"9":{}}}],["creat",{"_index":7,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["creation",{"_index":2002,"t":{},"b":{"17":{}}}],["cross",{"_index":2145,"t":{},"b":{"20":{}}}],["crossorigin=\"anonym",{"_index":1080,"t":{},"b":{"7":{}}}],["css",{"_index":117,"t":{},"b":{"0":{},"6":{},"8":{},"11":{},"14":{},"15":{},"16":{},"20":{},"21":{},"23":{}}}],["css.md",{"_index":2257,"t":{},"b":{"21":{}}}],["css_html_js_minifi",{"_index":1364,"t":{},"b":{"11":{}}}],["csv",{"_index":1832,"t":{},"b":{"16":{}}}],["ctrl+c",{"_index":1350,"t":{},"b":{"11":{},"21":{}}}],["ctrl>+c",{"_index":1189,"t":{},"b":{"9":{}}}],["current",{"_index":594,"t":{},"b":{"1":{},"11":{},"14":{},"15":{},"16":{},"17":{},"21":{}}}],["cursor",{"_index":302,"t":{},"b":{"0":{}}}],["custom",{"_index":1518,"t":{},"b":{"15":{},"16":{},"19":{}}}],["customis",{"_index":1323,"t":{},"b":{"11":{},"16":{},"19":{},"20":{}}}],["cx=\"2",{"_index":130,"t":{},"b":{"0":{}}}],["cy=\"2",{"_index":131,"t":{},"b":{"0":{}}}],["d",{"_index":2026,"t":{},"b":{"19":{}}}],["daili",{"_index":2303,"t":{},"b":{"22":{}}}],["dare",{"_index":1284,"t":{},"b":{"10":{}}}],["darkorang",{"_index":144,"t":{},"b":{"0":{}}}],["darth",{"_index":1981,"t":{},"b":{"17":{}}}],["darth.github.io",{"_index":1982,"t":{},"b":{"17":{}}}],["darth.github.io/vador",{"_index":1983,"t":{},"b":{"17":{}}}],["data",{"_index":112,"t":{},"b":{"0":{},"6":{}}}],["databas",{"_index":1013,"t":{},"b":{"7":{}}}],["datasciencetutori",{"_index":567,"t":{},"b":{"1":{},"2":{},"4":{}}}],["date",{"_index":1871,"t":{},"b":{"17":{},"19":{}}}],["date)langstringjuliadefault",{"_index":1995,"t":{},"b":{"17":{}}}],["date_monthsvector{string}string[]nam",{"_index":1962,"t":{},"b":{"17":{}}}],["date_shortdaysvector{string}string[]short",{"_index":1961,"t":{},"b":{"17":{}}}],["date_shortmonthsvector{string}string[]short",{"_index":1964,"t":{},"b":{"17":{}}}],["dates.datelocal",{"_index":1975,"t":{},"b":{"17":{}}}],["dates.formatdate_daysvector{string}string[]nam",{"_index":1958,"t":{},"b":{"17":{}}}],["day",{"_index":1959,"t":{},"b":{"17":{}}}],["dd",{"_index":1954,"t":{},"b":{"17":{}}}],["dead",{"_index":2285,"t":{},"b":{"21":{}}}],["deal",{"_index":1180,"t":{},"b":{"9":{},"10":{},"16":{},"19":{}}}],["debug",{"_index":2159,"t":{},"b":{"20":{}}}],["decent",{"_index":1285,"t":{},"b":{"10":{}}}],["decid",{"_index":2175,"t":{},"b":{"20":{}}}],["declar",{"_index":1634,"t":{},"b":{"15":{},"16":{},"21":{}}}],["decor",{"_index":912,"t":{},"b":{"5":{}}}],["dedic",{"_index":1919,"t":{},"b":{"17":{}}}],["deem",{"_index":1545,"t":{},"b":{"15":{}}}],["deeppink",{"_index":138,"t":{},"b":{"0":{}}}],["def",{"_index":419,"t":{},"b":{"1":{},"2":{},"5":{},"6":{},"16":{},"17":{},"20":{},"21":{},"22":{},"23":{}}}],["default",{"_index":426,"t":{},"b":{"1":{},"5":{},"6":{},"7":{},"13":{},"14":{},"16":{},"17":{},"21":{},"22":{}}}],["defin",{"_index":154,"t":{},"b":{"0":{},"5":{},"6":{},"7":{},"8":{},"10":{},"11":{},"13":{},"14":{},"15":{},"16":{},"17":{},"19":{},"20":{},"22":{}}}],["defined{{isnotdef",{"_index":1926,"t":{},"b":{"17":{}}}],["definit",{"_index":308,"t":{},"b":{"0":{},"8":{},"10":{},"11":{},"13":{},"15":{},"16":{},"17":{},"19":{},"21":{}}}],["definitionsfndef",{"_index":1379,"t":{},"b":{"13":{}}}],["definition{angl",{"_index":1580,"t":{},"b":{"15":{}}}],["degre",{"_index":76,"t":{},"b":{"0":{}}}],["demo",{"_index":1339,"t":{},"b":{"11":{}}}],["denot",{"_index":1583,"t":{},"b":{"15":{},"17":{}}}],["depend",{"_index":343,"t":{},"b":{"0":{},"1":{},"5":{},"11":{},"17":{},"19":{},"21":{},"23":{}}}],["deploy",{"_index":11,"t":{"20":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["deploy.yml",{"_index":2165,"t":{},"b":{"20":{}}}],["deriv",{"_index":788,"t":{},"b":{"4":{}}}],["describ",{"_index":1015,"t":{},"b":{"7":{}}}],["descript",{"_index":2023,"t":{},"b":{"17":{},"22":{}}}],["design",{"_index":226,"t":{},"b":{"0":{}}}],["desir",{"_index":996,"t":{},"b":{"6":{},"7":{}}}],["desktop/mywebsite/project.toml",{"_index":562,"t":{},"b":{"1":{}}}],["detail",{"_index":122,"t":{},"b":{"0":{},"13":{},"21":{},"22":{}}}],["detect",{"_index":1950,"t":{},"b":{"17":{}}}],["dev",{"_index":1257,"t":{},"b":{"10":{},"14":{}}}],["dfrac",{"_index":1792,"t":{},"b":{"16":{}}}],["dfrac{1",{"_index":1794,"t":{},"b":{"16":{}}}],["didn't",{"_index":1238,"t":{},"b":{"10":{}}}],["differ",{"_index":192,"t":{},"b":{"0":{},"5":{},"7":{},"10":{},"15":{},"16":{},"17":{},"20":{}}}],["dir",{"_index":485,"t":{},"b":{"1":{},"16":{}}}],["directli",{"_index":1061,"t":{},"b":{"7":{},"14":{},"16":{},"17":{},"19":{}}}],["director",{"_index":224,"t":{},"b":{"0":{}}}],["directori",{"_index":640,"t":{},"b":{"1":{},"5":{},"11":{},"16":{},"17":{},"21":{}}}],["disabl",{"_index":1109,"t":{},"b":{"8":{},"20":{},"22":{}}}],["disallow",{"_index":2316,"t":{},"b":{"22":{}}}],["discard",{"_index":855,"t":{},"b":{"5":{}}}],["discourag",{"_index":1805,"t":{},"b":{"16":{}}}],["discoveri",{"_index":1311,"t":{},"b":{"10":{}}}],["discuss",{"_index":1810,"t":{},"b":{"16":{}}}],["display",{"_index":160,"t":{},"b":{"0":{},"1":{},"2":{},"5":{},"6":{},"7":{},"8":{},"15":{},"16":{},"19":{}}}],["display::aft",{"_index":1142,"t":{},"b":{"8":{}}}],["display:block",{"_index":272,"t":{},"b":{"0":{}}}],["distinct",{"_index":1529,"t":{},"b":{"15":{}}}],["div",{"_index":16,"t":{"15":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["div_cont",{"_index":1382,"t":{},"b":{"13":{},"23":{}}}],["div_contentstring\"franklin",{"_index":1965,"t":{},"b":{"17":{}}}],["divnam",{"_index":1368,"t":{},"b":{"13":{},"15":{},"16":{}}}],["dna",{"_index":1312,"t":{},"b":{"10":{}}}],["do",{"_index":199,"t":{},"b":{"0":{},"4":{},"5":{},"9":{},"10":{},"14":{}}}],["doabl",{"_index":1030,"t":{},"b":{"7":{}}}],["doc",{"_index":883,"t":{},"b":{"5":{},"16":{},"20":{}}}],["docs.\\n",{"_index":1694,"t":{},"b":{"16":{}}}],["docs](http://example.com",{"_index":1690,"t":{},"b":{"16":{}}}],["doctyp",{"_index":898,"t":{},"b":{"5":{},"14":{},"23":{}}}],["document",{"_index":1542,"t":{},"b":{"15":{}}}],["document.getelementbyid('test",{"_index":963,"t":{},"b":{"6":{}}}],["documenter.jl'",{"_index":885,"t":{},"b":{"5":{}}}],["documenter=fals",{"_index":807,"t":{},"b":{"4":{}}}],["doe",{"_index":209,"t":{},"b":{"0":{}}}],["doesn't",{"_index":596,"t":{},"b":{"1":{},"16":{}}}],["dollar",{"_index":1737,"t":{},"b":{"16":{}}}],["don't",{"_index":427,"t":{},"b":{"1":{},"3":{},"8":{},"14":{},"16":{},"17":{},"20":{},"21":{}}}],["donald",{"_index":1158,"t":{},"b":{"8":{}}}],["done",{"_index":449,"t":{},"b":{"1":{},"3":{},"5":{},"7":{},"14":{},"16":{}}}],["dot(a",{"_index":498,"t":{},"b":{"1":{}}}],["dots.png",{"_index":1716,"t":{},"b":{"16":{}}}],["doubl",{"_index":393,"t":{},"b":{"1":{},"15":{},"16":{},"19":{}}}],["down",{"_index":1352,"t":{},"b":{"11":{},"20":{},"21":{}}}],["download",{"_index":782,"t":{},"b":{"4":{},"6":{}}}],["drawback",{"_index":1036,"t":{},"b":{"7":{}}}],["dropdown",{"_index":2147,"t":{},"b":{"20":{}}}],["due",{"_index":1733,"t":{},"b":{"16":{}}}],["dumb",{"_index":2043,"t":{},"b":{"19":{}}}],["e",{"_index":821,"t":{},"b":{"4":{}}}],["e.g",{"_index":689,"t":{},"b":{"1":{},"6":{},"16":{},"17":{},"20":{}}}],["each",{"_index":163,"t":{},"b":{"0":{},"2":{},"7":{},"20":{}}}],["earlier",{"_index":618,"t":{},"b":{"1":{},"5":{},"15":{},"19":{}}}],["easi",{"_index":372,"t":{},"b":{"1":{},"4":{},"7":{},"10":{},"11":{}}}],["easier",{"_index":206,"t":{},"b":{"0":{},"10":{},"13":{},"20":{}}}],["easiest",{"_index":2222,"t":{},"b":{"21":{}}}],["easili",{"_index":797,"t":{},"b":{"4":{},"5":{},"8":{},"15":{},"20":{}}}],["echo",{"_index":2169,"t":{},"b":{"20":{}}}],["edelman",{"_index":1650,"t":{},"b":{"15":{}}}],["edit",{"_index":8,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["editor",{"_index":1355,"t":{},"b":{"11":{},"16":{}}}],["effect",{"_index":109,"t":{},"b":{"0":{},"1":{},"14":{},"17":{},"20":{}}}],["effici",{"_index":1282,"t":{},"b":{"10":{}}}],["eg",{"_index":403,"t":{},"b":{"1":{}}}],["eget",{"_index":213,"t":{},"b":{"0":{}}}],["element",{"_index":710,"t":{},"b":{"2":{},"5":{},"10":{},"14":{},"15":{},"17":{}}}],["elseif",{"_index":1915,"t":{},"b":{"17":{}}}],["elsewher",{"_index":2035,"t":{},"b":{"19":{},"21":{}}}],["email",{"_index":235,"t":{},"b":{"0":{},"7":{}}}],["email=\"example@example.com",{"_index":246,"t":{},"b":{"0":{}}}],["embed",{"_index":1011,"t":{},"b":{"7":{}}}],["emoji",{"_index":1021,"t":{},"b":{"7":{}}}],["empti",{"_index":2125,"t":{},"b":{"20":{},"23":{}}}],["encount",{"_index":1179,"t":{},"b":{"9":{}}}],["end",{"_index":256,"t":{},"b":{"0":{},"1":{},"2":{},"4":{},"6":{},"7":{},"8":{},"10":{},"14":{},"15":{},"17":{},"19":{},"20":{}}}],["endswith(f",{"_index":2052,"t":{},"b":{"19":{}}}],["end{align",{"_index":1801,"t":{},"b":{"16":{}}}],["end{array",{"_index":1803,"t":{},"b":{"16":{}}}],["end{eqnarray",{"_index":1799,"t":{},"b":{"16":{}}}],["engin",{"_index":1042,"t":{},"b":{"7":{}}}],["english",{"_index":1308,"t":{},"b":{"10":{},"17":{}}}],["englob",{"_index":1967,"t":{},"b":{"17":{}}}],["enim",{"_index":214,"t":{},"b":{"0":{}}}],["enough",{"_index":1489,"t":{},"b":{"14":{},"19":{}}}],["ensur",{"_index":400,"t":{},"b":{"1":{},"5":{},"16":{},"21":{}}}],["enter",{"_index":875,"t":{},"b":{"5":{}}}],["entir",{"_index":546,"t":{},"b":{"1":{},"8":{},"17":{}}}],["entiti",{"_index":1735,"t":{},"b":{"16":{}}}],["entitiest",{"_index":1679,"t":{},"b":{"16":{}}}],["entri",{"_index":1770,"t":{},"b":{"16":{},"22":{}}}],["enumerate(idx",{"_index":2065,"t":{},"b":{"19":{}}}],["environ",{"_index":550,"t":{},"b":{"1":{},"6":{},"11":{},"13":{},"15":{},"16":{}}}],["ep",{"_index":744,"t":{},"b":{"2":{}}}],["eps()tru",{"_index":755,"t":{},"b":{"2":{}}}],["eqnarray",{"_index":1804,"t":{},"b":{"16":{}}}],["eqref",{"_index":1623,"t":{},"b":{"15":{}}}],["eqref{a",{"_index":1630,"t":{},"b":{"15":{}}}],["eqref{som",{"_index":1628,"t":{},"b":{"15":{}}}],["equat",{"_index":746,"t":{},"b":{"2":{},"8":{},"15":{}}}],["equip",{"_index":843,"t":{},"b":{"5":{}}}],["equival",{"_index":1830,"t":{},"b":{"16":{}}}],["eras",{"_index":2273,"t":{},"b":{"21":{}}}],["error",{"_index":603,"t":{},"b":{"1":{},"9":{}}}],["escap",{"_index":1738,"t":{},"b":{"16":{}}}],["essenti",{"_index":1892,"t":{},"b":{"17":{},"21":{},"23":{}}}],["et",{"_index":1646,"t":{},"b":{"15":{}}}],["etc",{"_index":114,"t":{},"b":{"0":{},"1":{},"4":{},"5":{},"10":{},"14":{},"15":{},"16":{},"21":{},"23":{}}}],["eu",{"_index":215,"t":{},"b":{"0":{}}}],["eval_all=fals",{"_index":2281,"t":{},"b":{"21":{}}}],["evalu",{"_index":2,"t":{"0":{},"1":{}},"b":{"0":{},"1":{},"2":{},"10":{},"11":{},"16":{},"17":{},"21":{}}}],["evaluationrss",{"_index":1867,"t":{},"b":{"17":{}}}],["even",{"_index":462,"t":{},"b":{"1":{}}}],["eventu",{"_index":895,"t":{},"b":{"5":{}}}],["everyth",{"_index":590,"t":{},"b":{"1":{},"14":{},"15":{},"20":{}}}],["exact",{"_index":471,"t":{},"b":{"1":{},"21":{}}}],["exactli",{"_index":503,"t":{},"b":{"1":{}}}],["exampl",{"_index":72,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"7":{},"9":{},"11":{},"13":{},"15":{},"16":{},"17":{},"19":{},"20":{},"21":{}}}],["example@example.com",{"_index":219,"t":{},"b":{"0":{}}}],["examplesnest",{"_index":1522,"t":{},"b":{"15":{}}}],["examplestext",{"_index":1521,"t":{},"b":{"15":{}}}],["exampleswhitespacesdefin",{"_index":1523,"t":{},"b":{"15":{}}}],["excel",{"_index":1492,"t":{},"b":{"14":{}}}],["except",{"_index":1891,"t":{},"b":{"17":{}}}],["exclam",{"_index":1713,"t":{},"b":{"16":{}}}],["exclud",{"_index":2310,"t":{},"b":{"22":{}}}],["execut",{"_index":103,"t":{},"b":{"0":{},"1":{},"17":{}}}],["execute=fals",{"_index":806,"t":{},"b":{"4":{}}}],["exist",{"_index":1409,"t":{},"b":{"14":{},"15":{},"16":{}}}],["exp(i\\pi",{"_index":738,"t":{},"b":{"2":{},"15":{}}}],["exp(i\\pi)+1",{"_index":1798,"t":{},"b":{"16":{}}}],["exp(im",{"_index":740,"t":{},"b":{"2":{}}}],["expect",{"_index":701,"t":{},"b":{"2":{},"5":{},"17":{}}}],["experi",{"_index":936,"t":{},"b":{"5":{},"11":{},"16":{}}}],["experimentingbasicsheaderstext",{"_index":1677,"t":{},"b":{"16":{}}}],["explain",{"_index":1052,"t":{},"b":{"7":{},"20":{}}}],["explan",{"_index":123,"t":{},"b":{"0":{},"3":{},"20":{}}}],["explicitli",{"_index":617,"t":{},"b":{"1":{},"16":{}}}],["exploit",{"_index":54,"t":{},"b":{"0":{}}}],["explor",{"_index":1688,"t":{},"b":{"16":{}}}],["export",{"_index":932,"t":{},"b":{"5":{},"6":{},"21":{}}}],["ext",{"_index":678,"t":{},"b":{"1":{}}}],["extend",{"_index":772,"t":{},"b":{"3":{},"10":{},"20":{}}}],["extens",{"_index":1251,"t":{},"b":{"10":{},"16":{},"22":{}}}],["extern",{"_index":1008,"t":{},"b":{"7":{},"21":{}}}],["extra",{"_index":25,"t":{"3":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["extract",{"_index":2097,"t":{},"b":{"19":{}}}],["ey",{"_index":1336,"t":{},"b":{"11":{}}}],["f",{"_index":2055,"t":{},"b":{"19":{}}}],["f(s)\\psi(s)\\mathrm{d}",{"_index":1558,"t":{},"b":{"15":{},"16":{}}}],["f)).mtime",{"_index":2054,"t":{},"b":{"19":{}}}],["f,\\psi",{"_index":1562,"t":{},"b":{"15":{}}}],["f:\\mathbb",{"_index":1551,"t":{},"b":{"15":{}}}],["f:\\r\\to\\r",{"_index":1550,"t":{},"b":{"15":{}}}],["fact",{"_index":55,"t":{},"b":{"0":{},"7":{},"10":{},"13":{},"15":{},"16":{}}}],["fail",{"_index":1217,"t":{},"b":{"9":{},"20":{}}}],["fairli",{"_index":759,"t":{},"b":{"3":{},"4":{},"5":{},"9":{},"10":{},"14":{},"17":{},"20":{}}}],["fals",{"_index":953,"t":{},"b":{"6":{},"16":{},"17":{},"22":{}}}],["famili",{"_index":291,"t":{},"b":{"0":{}}}],["familiar",{"_index":1695,"t":{},"b":{"16":{}}}],["fancier",{"_index":880,"t":{},"b":{"5":{}}}],["faq",{"_index":33,"t":{"8":{},"9":{},"10":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["fast",{"_index":1326,"t":{},"b":{"11":{}}}],["faster",{"_index":2288,"t":{},"b":{"21":{}}}],["father",{"_index":1316,"t":{},"b":{"10":{}}}],["faucibu",{"_index":217,"t":{},"b":{"0":{}}}],["fd2html",{"_index":1689,"t":{},"b":{"16":{}}}],["fd_",{"_index":1987,"t":{},"b":{"17":{}}}],["fd_mtime",{"_index":1511,"t":{},"b":{"14":{}}}],["fdplotli",{"_index":989,"t":{},"b":{"6":{}}}],["fdplotly(json(plt",{"_index":987,"t":{},"b":{"6":{}}}],["featur",{"_index":1327,"t":{},"b":{"11":{}}}],["feed",{"_index":2015,"t":{},"b":{"17":{},"22":{}}}],["feel",{"_index":768,"t":{},"b":{"3":{},"8":{},"10":{}}}],["fenc",{"_index":349,"t":{},"b":{"0":{},"1":{},"7":{},"16":{},"17":{}}}],["few",{"_index":71,"t":{},"b":{"0":{},"1":{},"2":{},"5":{},"7":{},"10":{},"14":{},"16":{},"17":{},"21":{}}}],["fi",{"_index":2066,"t":{},"b":{"19":{}}}],["field",{"_index":1082,"t":{},"b":{"7":{}}}],["fig",{"_index":595,"t":{},"b":{"1":{}}}],["figalt{alt}{path",{"_index":1811,"t":{},"b":{"16":{}}}],["figur",{"_index":599,"t":{},"b":{"1":{},"16":{}}}],["figure(figsize=(8",{"_index":575,"t":{},"b":{"1":{}}}],["figureinsert",{"_index":1686,"t":{},"b":{"16":{}}}],["fig{./output/test",{"_index":1820,"t":{},"b":{"16":{}}}],["fig{./test",{"_index":1821,"t":{},"b":{"16":{}}}],["fig{path",{"_index":1812,"t":{},"b":{"16":{}}}],["fig{sinc",{"_index":583,"t":{},"b":{"1":{}}}],["file",{"_index":113,"t":{"4":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"7":{},"9":{},"11":{},"14":{},"15":{},"16":{},"17":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["file(",{"_index":929,"t":{},"b":{"5":{}}}],["file.md",{"_index":2324,"t":{},"b":{"23":{}}}],["filefd_mtime_rawdatetim",{"_index":2004,"t":{},"b":{"17":{}}}],["filefd_mtimestringtim",{"_index":2003,"t":{},"b":{"17":{}}}],["filenam",{"_index":2242,"t":{},"b":{"21":{}}}],["filesmak",{"_index":1402,"t":{},"b":{"14":{}}}],["fill",{"_index":158,"t":{},"b":{"0":{},"7":{},"14":{},"17":{},"19":{}}}],["fill=\"#1\"/>#1post",{"_index":2069,"t":{},"b":{"19":{}}}],["href=\"/assets/infra/favicon.png",{"_index":1468,"t":{},"b":{"14":{}}}],["href=\"/css/franklin.css",{"_index":1466,"t":{},"b":{"14":{}}}],["href=\"/css/jemdoc.css",{"_index":1426,"t":{},"b":{"14":{}}}],["href=\"/index.html#angela\">angelachristinedonaldshinzomenu",{"_index":1444,"t":{},"b":{"14":{}}}],["href=\"/menu1/#fndef:1",{"_index":1115,"t":{},"b":{"8":{}}}],["href=\"/menu1/#fnref:blah\">[2]menu",{"_index":1446,"t":{},"b":{"14":{}}}],["href=\"/menu3/\">menu",{"_index":1448,"t":{},"b":{"14":{}}}],["href=\"http://example.com\">th",{"_index":1693,"t":{},"b":{"16":{}}}],["href=\"http://jemdoc.jaboc.net/\">jemdocfranklin.jl#2$titlebar dot(a",{"_index":506,"t":{},"b":{"1":{}}}],["julia'",{"_index":1957,"t":{},"b":{"17":{}}}],["julia)mor",{"_index":378,"t":{},"b":{"1":{}}}],["julia:!#1",{"_index":351,"t":{},"b":{"0":{}}}],["julia:./code/ex1",{"_index":465,"t":{},"b":{"1":{}}}],["julia:./code_pg1/ex1",{"_index":495,"t":{},"b":{"1":{}}}],["julia:./code_pg1/ex2",{"_index":517,"t":{},"b":{"1":{}}}],["julia:./ex",{"_index":1156,"t":{},"b":{"8":{}}}],["julia:./ex1",{"_index":1817,"t":{},"b":{"16":{}}}],["julia:./tableinput/gen",{"_index":1834,"t":{},"b":{"16":{}}}],["julia:circl",{"_index":134,"t":{},"b":{"0":{}}}],["julia:ex1",{"_index":969,"t":{},"b":{"6":{}}}],["julia:ex_show",{"_index":536,"t":{},"b":{"1":{}}}],["julia:path/to/script",{"_index":455,"t":{},"b":{"1":{}}}],["julia:pyplot1",{"_index":574,"t":{},"b":{"1":{}}}],["julia:snippet1",{"_index":1776,"t":{},"b":{"16":{}}}],["julia:t",{"_index":82,"t":{},"b":{"0":{}}}],["julia:teamcard",{"_index":241,"t":{},"b":{"0":{}}}],["julialang",{"_index":2048,"t":{},"b":{"19":{}}}],["juno",{"_index":1190,"t":{},"b":{"9":{}}}],["junoiostream",{"_index":1185,"t":{},"b":{"9":{}}}],["jupyt",{"_index":699,"t":{},"b":{"2":{},"7":{}}}],["k",{"_index":1539,"t":{},"b":{"15":{},"19":{}}}],["k \\n",{"_index":2070,"t":{},"b":{"19":{}}}],["karpinski",{"_index":1651,"t":{},"b":{"15":{}}}],["katex",{"_index":1141,"t":{},"b":{"8":{},"11":{},"16":{},"17":{},"21":{}}}],["keep",{"_index":626,"t":{},"b":{"1":{},"11":{},"16":{},"17":{},"20":{}}}],["key",{"_index":786,"t":{},"b":{"4":{},"11":{}}}],["keyword",{"_index":830,"t":{},"b":{"4":{},"5":{},"6":{},"21":{}}}],["kill",{"_index":1215,"t":{},"b":{"9":{}}}],["kind",{"_index":1101,"t":{},"b":{"7":{}}}],["kindli",{"_index":1102,"t":{},"b":{"7":{},"10":{}}}],["know",{"_index":1298,"t":{},"b":{"10":{},"11":{},"13":{}}}],["known",{"_index":1178,"t":{},"b":{"9":{}}}],["korper",{"_index":1641,"t":{},"b":{"15":{}}}],["label",{"_index":1074,"t":{},"b":{"7":{},"15":{},"19":{}}}],["label=\"com",{"_index":1085,"t":{},"b":{"7":{}}}],["label{a",{"_index":1629,"t":{},"b":{"15":{}}}],["label{nam",{"_index":1667,"t":{},"b":{"15":{}}}],["label{som",{"_index":1627,"t":{},"b":{"15":{}}}],["lack",{"_index":1260,"t":{},"b":{"10":{}}}],["land",{"_index":2238,"t":{},"b":{"21":{}}}],["lang",{"_index":424,"t":{},"b":{"1":{},"16":{},"17":{}}}],["lang=\"en",{"_index":1457,"t":{},"b":{"14":{}}}],["languag",{"_index":371,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["language)insert",{"_index":382,"t":{},"b":{"1":{}}}],["last",{"_index":169,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["later",{"_index":2089,"t":{},"b":{"19":{}}}],["latest",{"_index":2205,"t":{},"b":{"20":{}}}],["latex",{"_index":1024,"t":{},"b":{"7":{},"10":{},"11":{},"15":{},"16":{},"19":{}}}],["latter",{"_index":1220,"t":{},"b":{"9":{},"16":{}}}],["launch",{"_index":2270,"t":{},"b":{"21":{}}}],["layout",{"_index":190,"t":{},"b":{"0":{},"6":{},"14":{},"16":{},"19":{},"21":{},"23":{}}}],["layout.md",{"_index":2258,"t":{},"b":{"21":{}}}],["le",{"_index":1571,"t":{},"b":{"15":{}}}],["lead",{"_index":1592,"t":{},"b":{"15":{},"21":{}}}],["learn",{"_index":1287,"t":{},"b":{"10":{}}}],["leav",{"_index":1037,"t":{},"b":{"7":{},"14":{},"19":{}}}],["lectu",{"_index":216,"t":{},"b":{"0":{}}}],["left",{"_index":1133,"t":{},"b":{"8":{},"14":{},"15":{},"17":{},"23":{}}}],["left:0",{"_index":281,"t":{},"b":{"0":{}}}],["left:auto",{"_index":175,"t":{},"b":{"0":{}}}],["left\\langl",{"_index":1561,"t":{},"b":{"15":{}}}],["lego",{"_index":2323,"t":{},"b":{"23":{}}}],["lemonchiffon",{"_index":1528,"t":{},"b":{"15":{}}}],["len(x",{"_index":326,"t":{},"b":{"0":{}}}],["length",{"_index":1855,"t":{},"b":{"16":{}}}],["length(perm",{"_index":2061,"t":{},"b":{"19":{}}}],["length=500",{"_index":577,"t":{},"b":{"1":{}}}],["less",{"_index":74,"t":{},"b":{"0":{},"17":{}}}],["let'",{"_index":474,"t":{},"b":{"1":{},"14":{},"19":{},"20":{}}}],["letter",{"_index":1535,"t":{},"b":{"15":{}}}],["level",{"_index":1495,"t":{},"b":{"14":{},"16":{},"17":{},"19":{},"21":{},"23":{}}}],["li",{"_index":1744,"t":{},"b":{"16":{},"17":{},"19":{}}}],["li>set",{"_index":1691,"t":{},"b":{"16":{}}}],["p]/script",{"_index":481,"t":{},"b":{"1":{}}}],["packag",{"_index":330,"t":{},"b":{"0":{},"1":{},"2":{},"4":{},"9":{},"10":{},"11":{}}}],["pad",{"_index":280,"t":{},"b":{"0":{},"8":{},"14":{},"15":{}}}],["padding:0",{"_index":266,"t":{},"b":{"0":{}}}],["page",{"_index":9,"t":{"17":{},"23":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["page.md",{"_index":2250,"t":{},"b":{"21":{}}}],["page_foot",{"_index":1507,"t":{},"b":{"14":{},"23":{}}}],["pagebuilding/upd",{"_index":839,"t":{},"b":{"5":{}}}],["pagedatestr",{"_index":1993,"t":{},"b":{"17":{}}}],["pagehascodeboolfalsewheth",{"_index":1992,"t":{},"b":{"17":{}}}],["pagereflinksbooltruewheth",{"_index":1996,"t":{},"b":{"17":{}}}],["pages/notebooks/thenotebook.ipynb",{"_index":827,"t":{},"b":{"4":{}}}],["pages/page1.md",{"_index":2239,"t":{},"b":{"21":{}}}],["pagesedit",{"_index":2217,"t":{},"b":{"21":{}}}],["pageshowallboolfalsenotebook",{"_index":2009,"t":{},"b":{"17":{}}}],["paid",{"_index":1043,"t":{},"b":{"7":{}}}],["palevioletr",{"_index":140,"t":{},"b":{"0":{}}}],["pandoc",{"_index":1267,"t":{},"b":{"10":{}}}],["param",{"_index":2077,"t":{},"b":{"19":{}}}],["paramet",{"_index":2044,"t":{},"b":{"19":{}}}],["parameters\"latex",{"_index":2041,"t":{},"b":{"19":{}}}],["parameterswith",{"_index":2040,"t":{},"b":{"19":{}}}],["parenthes",{"_index":1662,"t":{},"b":{"15":{}}}],["pars",{"_index":401,"t":{},"b":{"1":{},"10":{},"19":{}}}],["parselunrresult",{"_index":892,"t":{},"b":{"5":{}}}],["parser",{"_index":850,"t":{},"b":{"5":{},"10":{},"16":{},"17":{}}}],["part",{"_index":153,"t":{},"b":{"0":{},"1":{},"10":{},"14":{},"17":{}}}],["partial",{"_index":1543,"t":{},"b":{"15":{}}}],["particular",{"_index":1288,"t":{},"b":{"10":{},"17":{}}}],["particularli",{"_index":565,"t":{},"b":{"1":{},"9":{},"15":{},"16":{}}}],["pass",{"_index":831,"t":{},"b":{"4":{},"6":{},"11":{},"13":{},"19":{},"20":{},"21":{}}}],["past",{"_index":1084,"t":{},"b":{"7":{},"14":{}}}],["path",{"_index":459,"t":{},"b":{"1":{},"5":{},"15":{},"16":{},"17":{},"20":{},"21":{}}}],["path/]index.html",{"_index":2244,"t":{},"b":{"21":{}}}],["path/]index.md",{"_index":2243,"t":{},"b":{"21":{}}}],["path/]somepage.html",{"_index":2247,"t":{},"b":{"21":{}}}],["path/]somepage.md",{"_index":2246,"t":{},"b":{"21":{}}}],["path/to/dir",{"_index":1979,"t":{},"b":{"17":{}}}],["path/to/file.md",{"_index":1978,"t":{},"b":{"17":{}}}],["path/to/page}}opposit",{"_index":1923,"t":{},"b":{"17":{}}}],["path/to/page}}wheth",{"_index":1921,"t":{},"b":{"17":{}}}],["path/to/script",{"_index":456,"t":{},"b":{"1":{}}}],["path]/output/script.out",{"_index":490,"t":{},"b":{"1":{}}}],["path_prepend",{"_index":886,"t":{},"b":{"5":{}}}],["pathnam",{"_index":1070,"t":{},"b":{"7":{}}}],["pathsinsert",{"_index":379,"t":{},"b":{"1":{}}}],["pathwithout{hello",{"_index":1614,"t":{},"b":{"15":{}}}],["pathwith{hello",{"_index":1612,"t":{},"b":{"15":{}}}],["path{{isnotpag",{"_index":1922,"t":{},"b":{"17":{}}}],["per",{"_index":387,"t":{},"b":{"1":{}}}],["perm",{"_index":2056,"t":{},"b":{"19":{}}}],["perm[1:min(3",{"_index":2060,"t":{},"b":{"19":{}}}],["permiss",{"_index":1062,"t":{},"b":{"7":{}}}],["person",{"_index":240,"t":{},"b":{"0":{},"20":{}}}],["phasellu",{"_index":212,"t":{},"b":{"0":{}}}],["philosophi",{"_index":625,"t":{},"b":{"1":{}}}],["pic=\"beth",{"_index":243,"t":{},"b":{"0":{}}}],["pic=\"meseek",{"_index":251,"t":{},"b":{"0":{}}}],["pic=\"rick",{"_index":248,"t":{},"b":{"0":{}}}],["pick",{"_index":2148,"t":{},"b":{"20":{}}}],["pictur",{"_index":1263,"t":{},"b":{"10":{}}}],["pip3",{"_index":1365,"t":{},"b":{"11":{}}}],["pkg",{"_index":559,"t":{},"b":{"1":{},"6":{},"11":{}}}],["pkg.instanti",{"_index":341,"t":{},"b":{"0":{}}}],["place",{"_index":592,"t":{},"b":{"1":{},"2":{},"5":{},"6":{},"7":{},"11":{},"16":{},"21":{}}}],["placeholder=\"ent",{"_index":907,"t":{},"b":{"5":{}}}],["plain",{"_index":670,"t":{},"b":{"1":{},"16":{},"19":{},"21":{}}}],["plaintext",{"_index":1753,"t":{},"b":{"16":{}}}],["platform",{"_index":2289,"t":{},"b":{"21":{}}}],["pleas",{"_index":1405,"t":{},"b":{"14":{},"16":{}}}],["plot",{"_index":568,"t":{},"b":{"1":{},"3":{},"6":{},"8":{}}}],["plot([0",{"_index":1818,"t":{},"b":{"16":{}}}],["plot(data",{"_index":986,"t":{},"b":{"6":{}}}],["plot(x",{"_index":579,"t":{},"b":{"1":{}}}],["plot:id",{"_index":682,"t":{},"b":{"1":{}}}],["plotli",{"_index":32,"t":{"6":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["plotly.min.j",{"_index":949,"t":{},"b":{"6":{}}}],["plotly.plot",{"_index":964,"t":{},"b":{"6":{}}}],["plotlyj",{"_index":967,"t":{},"b":{"6":{}}}],["plotlyjs.jl",{"_index":948,"t":{},"b":{"6":{}}}],["plt",{"_index":985,"t":{},"b":{"6":{}}}],["plug",{"_index":631,"t":{},"b":{"1":{},"19":{},"23":{}}}],["png",{"_index":680,"t":{},"b":{"1":{}}}],["point",{"_index":311,"t":{},"b":{"0":{},"14":{},"15":{},"19":{},"21":{}}}],["pointer",{"_index":303,"t":{},"b":{"0":{}}}],["pollut",{"_index":822,"t":{},"b":{"4":{}}}],["polymath",{"_index":1315,"t":{},"b":{"10":{}}}],["poptaskref(::base.invasivelinkedlistsynchronized{task",{"_index":1211,"t":{},"b":{"9":{}}}],["port",{"_index":1414,"t":{},"b":{"14":{}}}],["possibl",{"_index":67,"t":{},"b":{"0":{},"8":{},"16":{},"20":{}}}],["post",{"_index":429,"t":{},"b":{"1":{},"4":{},"5":{},"7":{},"11":{},"17":{},"21":{}}}],["pr",{"_index":1403,"t":{},"b":{"14":{},"20":{}}}],["pr_comment",{"_index":2203,"t":{},"b":{"20":{}}}],["pr_comment.yml",{"_index":2200,"t":{},"b":{"20":{}}}],["practic",{"_index":105,"t":{},"b":{"0":{},"16":{},"23":{}}}],["pre",{"_index":780,"t":{},"b":{"4":{},"5":{},"6":{},"7":{},"11":{},"13":{},"14":{},"15":{},"16":{},"19":{},"21":{}}}],["pre>/,r:10,starts:{",{"_index":1771,"t":{},"b":{"16":{}}}],["replac",{"_index":635,"t":{},"b":{"1":{},"15":{},"20":{}}}],["replace(\"\"\"!#2",{"_index":352,"t":{},"b":{"0":{}}}],["repli",{"_index":1034,"t":{},"b":{"7":{}}}],["repo",{"_index":824,"t":{},"b":{"4":{},"5":{},"7":{},"14":{},"20":{}}}],["repo=\"[ent",{"_index":1077,"t":{},"b":{"7":{}}}],["repositori",{"_index":39,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["reprocess",{"_index":108,"t":{},"b":{"0":{},"19":{}}}],["reproduc",{"_index":1265,"t":{},"b":{"10":{},"15":{}}}],["request",{"_index":2120,"t":{},"b":{"20":{}}}],["request@71efef56b184328c7ef1f213577c3a90edaa4aff",{"_index":2207,"t":{},"b":{"20":{}}}],["requir",{"_index":337,"t":{},"b":{"0":{},"5":{},"6":{},"7":{},"10":{},"11":{},"15":{},"21":{},"22":{},"23":{}}}],["require('gh",{"_index":817,"t":{},"b":{"4":{}}}],["requisit",{"_index":848,"t":{},"b":{"5":{},"6":{},"7":{}}}],["requisiteslibrariesfilesindex",{"_index":834,"t":{},"b":{"5":{}}}],["requisitesselect",{"_index":998,"t":{},"b":{"7":{}}}],["reserv",{"_index":2254,"t":{},"b":{"21":{}}}],["resolv",{"_index":1289,"t":{},"b":{"10":{},"15":{},"23":{}}}],["respect",{"_index":2325,"t":{},"b":{"23":{}}}],["respons",{"_index":186,"t":{},"b":{"0":{},"14":{},"17":{}}}],["rest",{"_index":763,"t":{},"b":{"3":{},"17":{},"21":{}}}],["restart",{"_index":1216,"t":{},"b":{"9":{}}}],["result",{"_index":373,"t":{},"b":{"1":{},"2":{},"5":{},"6":{},"12":{},"14":{},"16":{},"23":{}}}],["resultcount",{"_index":916,"t":{},"b":{"5":{}}}],["retriev",{"_index":2082,"t":{},"b":{"19":{}}}],["return",{"_index":1094,"t":{},"b":{"7":{},"19":{}}}],["rev=tru",{"_index":2058,"t":{},"b":{"19":{}}}],["review",{"_index":1658,"t":{},"b":{"15":{}}}],["rgba(0,0,0,0.2",{"_index":278,"t":{},"b":{"0":{}}}],["ricardo",{"_index":1099,"t":{},"b":{"7":{}}}],["ridicul",{"_index":1479,"t":{},"b":{"14":{}}}],["right",{"_index":933,"t":{},"b":{"5":{},"7":{},"10":{},"11":{},"14":{},"20":{}}}],["right:auto",{"_index":176,"t":{},"b":{"0":{}}}],["right\\rangl",{"_index":1554,"t":{},"b":{"15":{}}}],["right\\rangle\\ov",{"_index":1595,"t":{},"b":{"15":{}}}],["rigor",{"_index":749,"t":{},"b":{"2":{}}}],["robot",{"_index":2295,"t":{"22":{}},"b":{"22":{}}}],["robots.txt",{"_index":2315,"t":{},"b":{"22":{}}}],["robots_disallow",{"_index":2318,"t":{},"b":{"22":{}}}],["robots_disallow_this_pag",{"_index":2317,"t":{},"b":{"22":{}}}],["rodin/a",{"_index":1026,"t":{},"b":{"7":{}}}],["root",{"_index":676,"t":{},"b":{"1":{},"2":{},"5":{},"17":{},"21":{}}}],["rosa'",{"_index":1100,"t":{},"b":{"7":{}}}],["rosalind",{"_index":1307,"t":{},"b":{"10":{}}}],["ross",{"_index":222,"t":{},"b":{"0":{}}}],["round(norm(a",{"_index":1779,"t":{},"b":{"16":{}}}],["row",{"_index":253,"t":{},"b":{"0":{}}}],["row::aft",{"_index":285,"t":{},"b":{"0":{}}}],["rpath",{"_index":1906,"t":{},"b":{"17":{}}}],["rpath}}sam",{"_index":1905,"t":{},"b":{"17":{}}}],["rss",{"_index":13,"t":{"18":{},"22":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["rss_descript",{"_index":2312,"t":{},"b":{"22":{}}}],["rss_description\"\"rss_titlecurr",{"_index":2018,"t":{},"b":{"17":{}}}],["rubi",{"_index":1758,"t":{},"b":{"16":{}}}],["rule",{"_index":1706,"t":{},"b":{"16":{},"21":{}}}],["run",{"_index":340,"t":{},"b":{"0":{},"1":{},"20":{},"21":{}}}],["run(`$(nodejs_cmd",{"_index":820,"t":{},"b":{"4":{}}}],["run(`sudo",{"_index":1361,"t":{},"b":{"11":{}}}],["rundown",{"_index":1054,"t":{},"b":{"7":{}}}],["s",{"_index":655,"t":{},"b":{"1":{}}}],["s\"\\1re",{"_index":354,"t":{},"b":{"0":{}}}],["safe",{"_index":1231,"t":{},"b":{"9":{}}}],["saint",{"_index":1300,"t":{},"b":{"10":{}}}],["same",{"_index":189,"t":{},"b":{"0":{},"1":{},"7":{},"15":{},"16":{},"19":{},"21":{}}}],["save",{"_index":442,"t":{},"b":{"1":{},"6":{},"7":{}}}],["savefig(joinpath(@__dir__",{"_index":660,"t":{},"b":{"1":{}}}],["savefig(joinpath(@output",{"_index":581,"t":{},"b":{"1":{},"16":{}}}],["scaffold",{"_index":1374,"t":{},"b":{"13":{},"17":{},"21":{}}}],["scale=1",{"_index":1461,"t":{},"b":{"14":{}}}],["scal{\\cdot",{"_index":1581,"t":{},"b":{"15":{}}}],["scal{f,\\psi",{"_index":1559,"t":{},"b":{"15":{}}}],["scal{x,x",{"_index":1590,"t":{},"b":{"15":{}}}],["scal{x,y}\\ov",{"_index":1589,"t":{},"b":{"15":{}}}],["scal{y,i",{"_index":1591,"t":{},"b":{"15":{}}}],["scientist",{"_index":1277,"t":{},"b":{"10":{}}}],["scope",{"_index":1893,"t":{},"b":{"17":{}}}],["script",{"_index":438,"t":{},"b":{"1":{},"2":{},"4":{},"5":{},"6":{},"7":{},"14":{},"16":{}}}],["script.jl",{"_index":492,"t":{},"b":{"1":{}}}],["script1.jl",{"_index":656,"t":{},"b":{"1":{}}}],["script2.jl",{"_index":659,"t":{},"b":{"1":{}}}],["script2.png",{"_index":661,"t":{},"b":{"1":{}}}],["script_1_p1.jl",{"_index":690,"t":{},"b":{"1":{}}}],["script_1_p2.jl",{"_index":691,"t":{},"b":{"1":{}}}],["script_dir",{"_index":1814,"t":{},"b":{"16":{}}}],["script_dir]/output",{"_index":1815,"t":{},"b":{"16":{}}}],["scroll",{"_index":2146,"t":{},"b":{"20":{}}}],["scrub",{"_index":784,"t":{},"b":{"4":{}}}],["seamlessli",{"_index":695,"t":{},"b":{"2":{}}}],["search",{"_index":27,"t":{"5":{},"12":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["second",{"_index":159,"t":{},"b":{"0":{},"15":{},"17":{},"20":{},"21":{}}}],["secrets.github_token",{"_index":2182,"t":{},"b":{"20":{}}}],["section",{"_index":669,"t":{},"b":{"1":{},"3":{},"5":{},"8":{},"15":{},"16":{},"17":{},"21":{},"23":{}}}],["see",{"_index":121,"t":{},"b":{"0":{},"1":{},"2":{},"4":{},"5":{},"8":{},"9":{},"10":{},"11":{},"14":{},"16":{},"17":{},"19":{},"20":{},"21":{},"23":{}}}],["seem",{"_index":338,"t":{},"b":{"0":{},"9":{},"21":{}}}],["select",{"_index":702,"t":{},"b":{"2":{},"3":{},"7":{},"16":{},"20":{}}}],["sens",{"_index":1384,"t":{},"b":{"13":{},"23":{}}}],["sensit",{"_index":544,"t":{},"b":{"1":{}}}],["separ",{"_index":202,"t":{},"b":{"0":{},"1":{},"15":{},"16":{}}}],["septimia",{"_index":1869,"t":{},"b":{"17":{}}}],["serv",{"_index":561,"t":{},"b":{"1":{},"4":{},"5":{},"9":{},"11":{},"14":{},"16":{},"17":{},"20":{},"21":{}}}],["server",{"_index":557,"t":{},"b":{"1":{},"7":{},"9":{},"11":{},"21":{}}}],["servic",{"_index":2123,"t":{},"b":{"20":{}}}],["set",{"_index":418,"t":{},"b":{"1":{},"7":{},"10":{},"13":{},"15":{},"16":{},"17":{},"20":{},"21":{},"22":{}}}],["settingscod",{"_index":1866,"t":{},"b":{"17":{}}}],["setup",{"_index":2163,"t":{},"b":{"20":{}}}],["sever",{"_index":684,"t":{},"b":{"1":{},"7":{},"15":{},"17":{}}}],["shadow",{"_index":276,"t":{},"b":{"0":{}}}],["shah",{"_index":1652,"t":{},"b":{"15":{}}}],["share",{"_index":1515,"t":{},"b":{"14":{}}}],["sheet",{"_index":2236,"t":{},"b":{"21":{}}}],["shell",{"_index":1766,"t":{},"b":{"16":{}}}],["shin'",{"_index":1250,"t":{},"b":{"10":{}}}],["shinzo",{"_index":1157,"t":{},"b":{"8":{}}}],["short",{"_index":1338,"t":{},"b":{"11":{},"15":{},"17":{},"22":{}}}],["short2",{"_index":1660,"t":{},"b":{"15":{}}}],["short5",{"_index":1665,"t":{},"b":{"15":{}}}],["shortcut",{"_index":1884,"t":{},"b":{"17":{}}}],["shot",{"_index":1631,"t":{},"b":{"15":{}}}],["shouldn't",{"_index":793,"t":{},"b":{"4":{}}}],["show",{"_index":313,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"5":{},"7":{},"8":{},"14":{},"15":{},"19":{},"21":{}}}],["showal",{"_index":703,"t":{},"b":{"2":{}}}],["shown",{"_index":69,"t":{},"b":{"0":{},"1":{},"2":{},"16":{},"17":{}}}],["show{ex_show",{"_index":539,"t":{},"b":{"1":{}}}],["show{snippet1",{"_index":1781,"t":{},"b":{"16":{}}}],["shut",{"_index":1351,"t":{},"b":{"11":{},"21":{}}}],["siam",{"_index":1657,"t":{},"b":{"15":{}}}],["side",{"_index":1828,"t":{},"b":{"16":{}}}],["sigdigits=4",{"_index":1780,"t":{},"b":{"16":{}}}],["sign",{"_index":1328,"t":{},"b":{"11":{},"16":{}}}],["signatur",{"_index":2096,"t":{},"b":{"19":{}}}],["significantli",{"_index":1273,"t":{},"b":{"10":{}}}],["silent",{"_index":2235,"t":{},"b":{"21":{}}}],["silent=fals",{"_index":2279,"t":{},"b":{"21":{}}}],["silli",{"_index":1530,"t":{},"b":{"15":{}}}],["similar",{"_index":571,"t":{},"b":{"1":{},"10":{},"15":{},"16":{},"17":{},"19":{}}}],["simpl",{"_index":195,"t":{},"b":{"0":{},"5":{},"7":{},"8":{},"10":{},"11":{},"13":{},"14":{},"16":{},"17":{},"19":{},"21":{},"23":{}}}],["simpler",{"_index":1247,"t":{},"b":{"10":{},"19":{}}}],["simpli",{"_index":1075,"t":{},"b":{"7":{},"16":{}}}],["simplifi",{"_index":1434,"t":{},"b":{"14":{}}}],["sinc",{"_index":580,"t":{},"b":{"1":{}}}],["sinc.svg",{"_index":582,"t":{},"b":{"1":{}}}],["singer",{"_index":1318,"t":{},"b":{"10":{}}}],["singl",{"_index":391,"t":{},"b":{"1":{},"16":{},"19":{},"21":{}}}],["single=fals",{"_index":2276,"t":{},"b":{"21":{}}}],["site",{"_index":1005,"t":{},"b":{"7":{},"8":{},"10":{},"11":{},"14":{},"15":{},"17":{},"20":{},"21":{}}}],["site'",{"_index":2237,"t":{},"b":{"21":{}}}],["sitemap",{"_index":12,"t":{"22":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["sitemap_changefreq",{"_index":2301,"t":{},"b":{"22":{}}}],["sitemap_exclud",{"_index":2300,"t":{},"b":{"22":{}}}],["sitemap_opt",{"_index":2309,"t":{},"b":{"22":{}}}],["sitemap_prior",{"_index":2306,"t":{},"b":{"22":{}}}],["sitemaprssrobot",{"_index":2296,"t":{},"b":{"22":{}}}],["sitesynchronis",{"_index":2116,"t":{},"b":{"20":{}}}],["situat",{"_index":1823,"t":{},"b":{"16":{}}}],["size",{"_index":879,"t":{},"b":{"5":{},"8":{}}}],["size:14px;}{format",{"_index":1565,"t":{},"b":{"15":{}}}],["size:15px;color:cornflowerblue}{format",{"_index":1395,"t":{},"b":{"13":{}}}],["size:24px;font",{"_index":1387,"t":{},"b":{"13":{}}}],["skill",{"_index":1258,"t":{},"b":{"10":{}}}],["skip",{"_index":761,"t":{},"b":{"3":{},"16":{}}}],["slack",{"_index":2157,"t":{},"b":{"20":{}}}],["slate",{"_index":2275,"t":{},"b":{"21":{}}}],["slice",{"_index":685,"t":{},"b":{"1":{}}}],["slightli",{"_index":1765,"t":{},"b":{"16":{}}}],["sm",{"_index":1344,"t":{},"b":{"11":{}}}],["small",{"_index":646,"t":{},"b":{"1":{},"15":{},"20":{}}}],["snippet",{"_index":627,"t":{},"b":{"1":{},"21":{}}}],["solid",{"_index":1135,"t":{},"b":{"8":{},"15":{}}}],["solut",{"_index":1018,"t":{},"b":{"7":{},"9":{}}}],["some/url",{"_index":1722,"t":{},"b":{"16":{}}}],["some_str",{"_index":1872,"t":{},"b":{"17":{}}}],["someon",{"_index":1095,"t":{},"b":{"7":{}}}],["someth",{"_index":200,"t":{},"b":{"0":{},"1":{},"5":{},"7":{},"9":{},"10":{},"16":{},"17":{},"19":{},"20":{},"23":{}}}],["sometim",{"_index":543,"t":{},"b":{"1":{},"9":{},"10":{},"19":{}}}],["somewhat",{"_index":1225,"t":{},"b":{"9":{}}}],["somewher",{"_index":959,"t":{},"b":{"6":{},"16":{},"19":{},"21":{}}}],["soon",{"_index":1383,"t":{},"b":{"13":{}}}],["sophist",{"_index":77,"t":{},"b":{"0":{},"10":{},"15":{}}}],["sort",{"_index":1230,"t":{},"b":{"9":{}}}],["sortperm(d",{"_index":2057,"t":{},"b":{"19":{}}}],["sourc",{"_index":37,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["space",{"_index":399,"t":{},"b":{"1":{},"14":{},"15":{},"16":{}}}],["span",{"_index":924,"t":{},"b":{"5":{},"13":{},"16":{},"17":{}}}],["special",{"_index":2027,"t":{},"b":{"19":{}}}],["specif",{"_index":390,"t":{},"b":{"1":{},"2":{},"15":{},"16":{},"17":{},"23":{}}}],["specifi",{"_index":422,"t":{},"b":{"1":{},"6":{},"8":{},"15":{},"16":{},"17":{},"21":{},"22":{},"23":{}}}],["speed",{"_index":1261,"t":{},"b":{"10":{}}}],["splitext(list[i])[1",{"_index":2067,"t":{},"b":{"19":{}}}],["splitext(s)[1]).out",{"_index":650,"t":{},"b":{"1":{}}}],["spstyle{font",{"_index":1392,"t":{},"b":{"13":{}}}],["src",{"_index":483,"t":{},"b":{"1":{}}}],["src/_layout/head.html",{"_index":954,"t":{},"b":{"6":{}}}],["src/search.md",{"_index":922,"t":{},"b":{"5":{}}}],["src=\"/libs/lunr/lunr.min.js\">!#2#2coloured{{fil",{"_index":1470,"t":{},"b":{"14":{}}}],["titlerss_authorcurr",{"_index":2019,"t":{},"b":{"17":{}}}],["title}}pag",{"_index":1939,"t":{},"b":{"17":{}}}],["variant:smal",{"_index":1393,"t":{},"b":{"13":{}}}],["variou",{"_index":1697,"t":{},"b":{"16":{}}}],["varnam",{"_index":1868,"t":{},"b":{"17":{}}}],["vector",{"_index":511,"t":{},"b":{"1":{},"15":{},"19":{},"22":{}}}],["vector{float64",{"_index":713,"t":{},"b":{"2":{}}}],["vector{str",{"_index":2078,"t":{},"b":{"19":{}}}],["verb=fals",{"_index":2278,"t":{},"b":{"21":{}}}],["veri",{"_index":704,"t":{},"b":{"2":{},"9":{},"10":{},"17":{},"19":{},"21":{}}}],["verifi",{"_index":2282,"t":{},"b":{"21":{}}}],["verify_link",{"_index":2283,"t":{},"b":{"21":{}}}],["version",{"_index":859,"t":{},"b":{"5":{}}}],["vertic",{"_index":1137,"t":{},"b":{"8":{},"14":{}}}],["vestibulum",{"_index":218,"t":{},"b":{"0":{}}}],["via",{"_index":867,"t":{},"b":{"5":{},"7":{},"8":{},"11":{},"16":{},"17":{},"19":{},"21":{}}}],["view",{"_index":1404,"t":{},"b":{"14":{},"20":{}}}],["viewbox=\"0",{"_index":127,"t":{},"b":{"0":{}}}],["virtual",{"_index":2162,"t":{},"b":{"20":{}}}],["visual",{"_index":2164,"t":{},"b":{"20":{}}}],["vita",{"_index":234,"t":{},"b":{"0":{}}}],["vitae=\"phasellu",{"_index":245,"t":{},"b":{"0":{}}}],["vname",{"_index":1902,"t":{},"b":{"17":{}}}],["vname2",{"_index":1916,"t":{},"b":{"17":{}}}],["vname{{fil",{"_index":1904,"t":{},"b":{"17":{}}}],["vname}}insert",{"_index":1910,"t":{},"b":{"17":{}}}],["vname}}opposit",{"_index":1927,"t":{},"b":{"17":{}}}],["vname}}plac",{"_index":1903,"t":{},"b":{"17":{}}}],["vname}}wheth",{"_index":1925,"t":{},"b":{"17":{}}}],["w",{"_index":651,"t":{},"b":{"1":{}}}],["w_\\psi[f",{"_index":1556,"t":{},"b":{"15":{},"16":{}}}],["wait",{"_index":445,"t":{},"b":{"1":{},"9":{}}}],["want",{"_index":185,"t":{},"b":{"0":{},"1":{},"2":{},"4":{},"5":{},"6":{},"7":{},"8":{},"10":{},"11":{},"13":{},"14":{},"15":{},"16":{},"17":{},"19":{},"20":{},"21":{},"23":{}}}],["warn",{"_index":2129,"t":{},"b":{"20":{}}}],["way",{"_index":194,"t":{},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"7":{},"8":{},"9":{},"16":{},"17":{},"19":{}}}],["we'll",{"_index":1502,"t":{},"b":{"14":{},"20":{}}}],["web",{"_index":1256,"t":{},"b":{"10":{}}}],["webpag",{"_index":1007,"t":{},"b":{"7":{},"15":{},"20":{}}}],["websit",{"_index":367,"t":{"11":{},"20":{}},"b":{"0":{},"1":{},"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["website]/folder/subpag",{"_index":2253,"t":{},"b":{"21":{}}}],["website]/my_tags/!#1 npm install cheerio
### Files
-Copy [this folder](https://github.com/tlienart/Franklin.jl/tree/master/docs/_libs/lunr) to a `/_libs/lunr/` directory.
+Copy [this folder](https://github.com/JuliaDocs/Franklin.jl/tree/master/docs/_libs/lunr) to a `/_libs/lunr/` directory.
Discard the `lunr_index.js` which is the index of this website, a version for your website will be generated dynamically.
The important files are `build_index.js` and `lunrclient.js` (of which a minified version is provided which you will want to re-generate if you modify the base file).
diff --git a/docs/faq/technical.md b/docs/faq/technical.md
index 8a79deaf9..2647a9bc6 100644
--- a/docs/faq/technical.md
+++ b/docs/faq/technical.md
@@ -3,7 +3,7 @@
# FAQ - Technical
-If you have a question that you couldn't find an answer to easily, don't hesitate to [open an issue](https://github.com/tlienart/Franklin.jl/issues/new) on GitHub, it will help me make this section more complete!
+If you have a question that you couldn't find an answer to easily, don't hesitate to [open an issue](https://github.com/JuliaDocs/Franklin.jl/issues/new) on GitHub, it will help me make this section more complete!
\toc
@@ -11,7 +11,7 @@ If you have a question that you couldn't find an answer to easily, don't hesitat
### Can you style footnote text?
-**Reference**: [issue 243](https://github.com/tlienart/Franklin.jl/issues/243), **more on this**: [styling](/styling/classes/).
+**Reference**: [issue 243](https://github.com/JuliaDocs/Franklin.jl/issues/243), **more on this**: [styling](/styling/classes/).
For reference basically, a footnote is inserted as
@@ -97,7 +97,7 @@ like this: \eqref{eqabc}.
### How to use loops for templating?
-**Reference**: [issue 251](https://github.com/tlienart/Franklin.jl/issues/251), **more on this**: [code tricks](/code/eval-tricks/).
+**Reference**: [issue 251](https://github.com/JuliaDocs/Franklin.jl/issues/251), **more on this**: [code tricks](/code/eval-tricks/).
Since you can show the output of any Julia code block (and interpret that output as Franklin markdown), you can use this to help with templating.
For instance:
@@ -128,6 +128,6 @@ Generates
### How to insert Plotly plots?
-**Reference**: [issue 322](https://github.com/tlienart/Franklin.jl/issues/322).
+**Reference**: [issue 322](https://github.com/JuliaDocs/Franklin.jl/issues/322).
See [this tutorial](/extras/plotly/) for a way to do this.
diff --git a/docs/faq/why-o-why.md b/docs/faq/why-o-why.md
index 50d79d4e3..5e8d2f5ac 100644
--- a/docs/faq/why-o-why.md
+++ b/docs/faq/why-o-why.md
@@ -17,7 +17,7 @@ I liked that Jemdoc+Mathjax was simple to use and didn't require a lot of web-de
That's how I got the idea of doing something similar in Julia, hopefully improving on the few things I didn't like such as the lack of support for live-rendering preview or the speed of page generation.
That being said, if you just want a blogging generator mostly for text and pictures, then Franklin may not be the tool for you.
-If you want to host a technical blog with maths, an code blocks, and would like some easy and reproducible control over elements, then Franklin could help you (feel free to [open an issue](https://github.com/tlienart/Franklin.jl/issues/new) to see if Franklin is right for you).
+If you want to host a technical blog with maths, an code blocks, and would like some easy and reproducible control over elements, then Franklin could help you (feel free to [open an issue](https://github.com/JuliaDocs/Franklin.jl/issues/new) to see if Franklin is right for you).
### Why not Pandoc?
diff --git a/docs/styling/templates.md b/docs/styling/templates.md
index 4a2eb9d57..d9316c49e 100644
--- a/docs/styling/templates.md
+++ b/docs/styling/templates.md
@@ -14,11 +14,11 @@ reviewed: 22/12/19
\lineskip
-The pre-defined templates that are currently available in Franklin with the `newsite` function can be viewed ~~~here ~~~ (_opens in a new tab_).
+The pre-defined templates that are currently available in Franklin with the `newsite` function can be viewed ~~~here ~~~ (_opens in a new tab_).
## Adapting a theme to Franklin
-\note{If you end up doing this, please consider making a PR to [FranklinTemplates](https://github.com/tlienart/FranklinTemplates.jl)!}
+\note{If you end up doing this, please consider making a PR to [FranklinTemplates](https://github.com/JuliaDocs/FranklinTemplates.jl)!}
On this page, I'll take [Jemdoc's website layout](http://jemdoc.jaboc.net/) and show how it can be adapted to be a working Franklin template.
This will hopefully also show you how to adapt/modify an existing template.
@@ -233,7 +233,7 @@ By default `page_foot` looks like
```html
```
@@ -244,4 +244,4 @@ It should be fairly straightforward to adapt that to your needs.
Let's say you've built your own template and are pretty happy with the result and you'd like to share it with other users, great, thanks!
-Please follow [these instructions](https://github.com/tlienart/FranklinTemplates.jl#fixingadding-a-template).
+Please follow [these instructions](https://github.com/JuliaDocs/FranklinTemplates.jl#fixingadding-a-template).
diff --git a/docs/syntax/markdown.md b/docs/syntax/markdown.md
index 11cf6ec89..f630e9d2a 100644
--- a/docs/syntax/markdown.md
+++ b/docs/syntax/markdown.md
@@ -196,7 +196,7 @@ If you do this, you might want to slightly modify it to ensure that the Julia-re
hljs.registerLanguage("julia-repl",function(a){return{c:[{cN:"meta",b:/^julia>/,r:10,starts:{e:/^(?![ ]{6})/,sL:"julia"}},{cN:"metas",b:/^shell>/,r:10,starts:{e:/^(?![ ]{6})/,sL:"bash"}},{cN:"metap",b:/^\(.*\)\spkg>/,r:10,starts:{e:/^(?![ ]{6})/,sL:"julia"}}]}});
```
-(see also [the README](https://github.com/tlienart/FranklinTemplates.jl#notes) of FranklinTemplates).
+(see also [the README](https://github.com/JuliaDocs/FranklinTemplates.jl#notes) of FranklinTemplates).
### Evaluated code blocks
diff --git a/docs/syntax/page-variables.md b/docs/syntax/page-variables.md
index 985db3bcf..f22cb0791 100644
--- a/docs/syntax/page-variables.md
+++ b/docs/syntax/page-variables.md
@@ -235,13 +235,13 @@ These variables are best defined in your `config.md` file though you can overwri
| `date_shortmonths` | `Vector{String}` | `String[]` | Short names for months (\*\*)
| `div_content` | `String` | `"franklin-content"` | Name of the div that will englobe the processed content between `head` and `foot`
| `ignore` | `Vector{String}` | `String[]` | Files that should be ignored by Franklin (\*\*\*)
-| `folder_structure` | `VersionNumber` | `v"0.2"` | only relevant for users of Franklin < 0.5, see [NEWS.md](http://github.com/tlienart/Franklin.jl/NEWS.md)
+| `folder_structure` | `VersionNumber` | `v"0.2"` | only relevant for users of Franklin < 0.5, see [NEWS.md](http://github.com/JuliaDocs/Franklin.jl/NEWS.md)
@@
**Notes**:\\
\smindent{(\*)} \smnote{Say you're using GitHub pages and your username is `darth`, by default Franklin will assume the root URL to be `darth.github.io/`. However, if you want to build a project page so that the base URL is `darth.github.io/vador/` then use `@def prepath = "vador"`}\\
\smindent{(\*\*)} \smnote{Must be in a format recognized by Julia's `Dates.DateLocale`. Defaults to English. If left unset, the short names are created automatically by using the first three characters of the full names.}\\
-\smindent{(\*\*\*)} \smnote{To ignore a file add it's relative path like `"path/to/file.md"`, to ignore a directory end the path with a `/` like `"path/to/dir/"`. Always ignored are `.DS_Store`, `.gitignore`, `LICENSE.md`, `README.md`, `franklin`, `franklin.pub`, and `node_modules/` (see [`IGNORE_FILES`](https://github.com/tlienart/Franklin.jl/blob/9fd952da679cfc2e2687a2b858cf4ad1401e8fc1/src/utils/paths.jl#L14)).}
+\smindent{(\*\*\*)} \smnote{To ignore a file add it's relative path like `"path/to/file.md"`, to ignore a directory end the path with a `/` like `"path/to/dir/"`. Always ignored are `.DS_Store`, `.gitignore`, `LICENSE.md`, `README.md`, `franklin`, `franklin.pub`, and `node_modules/` (see [`IGNORE_FILES`](https://github.com/JuliaDocs/Franklin.jl/blob/9fd952da679cfc2e2687a2b858cf4ad1401e8fc1/src/utils/paths.jl#L14)).}
### Other global settings
diff --git a/docs/syntax/rss.md b/docs/syntax/rss.md
index a88814384..2888b5a79 100644
--- a/docs/syntax/rss.md
+++ b/docs/syntax/rss.md
@@ -22,7 +22,7 @@ this feed so that readers can more easily stay up to date with your new content.
There is a Franklin-generated `_rss` folder that contains two parts: `head.xml`
& `item.xml` (if this is not present for you, then copy the files from the
-[FranklinTemplates source](https://github.com/tlienart/FranklinTemplates.jl/tree/master/src/templates/common/_rss).
+[FranklinTemplates source](https://github.com/JuliaDocs/FranklinTemplates.jl/tree/master/src/templates/common/_rss).
The complete RSS feed will be built by assembling
diff --git a/docs/syntax/utils.md b/docs/syntax/utils.md
index aff5c7e29..a60a19e12 100644
--- a/docs/syntax/utils.md
+++ b/docs/syntax/utils.md
@@ -122,7 +122,7 @@ end
\note{The same comment as earlier, you can see that the way the function is called depends on the name of the function definition `lx_foo` ⟶ `foo`. Make sure that the name does not clash with one of the pre-defined commands (`label`, `style`, ...).}
-\note{For the moment, this only works with a single brace see [issue 518](https://github.com/tlienart/Franklin.jl/issues/518) for comments.}
+\note{For the moment, this only works with a single brace see [issue 518](https://github.com/JuliaDocs/Franklin.jl/issues/518) for comments.}
### Why it was a dumb example
diff --git a/docs/workflow/index.md b/docs/workflow/index.md
index d81d88e69..dcd813be4 100644
--- a/docs/workflow/index.md
+++ b/docs/workflow/index.md
@@ -22,7 +22,7 @@ julia> newsite("TestWebsite"; template="vela")
→ Use serve() from Franklin to see the website in your browser.
```
-There are a number of [simple templates](https://tlienart.github.io/FranklinTemplates.jl/) you can choose from and tweak.
+There are a number of [simple templates](https://juliadocs.org/FranklinTemplates.jl/) you can choose from and tweak.
\note{The templates are meant to be used as _starting points_ and will likely require some fixes to match what you want. Your help to make them better is very welcome.}
diff --git a/src/converter/markdown/tags.jl b/src/converter/markdown/tags.jl
index 27f191566..0e4c253c1 100644
--- a/src/converter/markdown/tags.jl
+++ b/src/converter/markdown/tags.jl
@@ -21,7 +21,7 @@ function generate_tag_pages(refresh_tags=Set{String}())::Nothing
# check first the md path (default), but in some case the tag
# may have been collected from a raw file which may be in assets in
# which case the rpath includes the extension (.html)
- # see: https://github.com/tlienart/Franklin.jl/discussions/1010
+ # see: https://github.com/JuliaDocs/Franklin.jl/discussions/1010
has_source = isfile(rpath * ".md")
has_source |= isfile(replace(rpath, "/assets/" => "/_assets/" ))
has_source || delete!(PAGE_TAGS, rpath)
diff --git a/test/converter/html/html2.jl b/test/converter/html/html2.jl
index ac1d9cf0f..464fb4622 100644
--- a/test/converter/html/html2.jl
+++ b/test/converter/html/html2.jl
@@ -52,7 +52,7 @@ end
@test isapproxstr(fhs, "AEF")
end
-# https://github.com/tlienart/Franklin.jl/issues/731
+# https://github.com/JuliaDocs/Franklin.jl/issues/731
@testset "hfun strings" begin
a = Franklin.split_hfun_parameters(strip("""
"Hello to you" my "julia friends" and "all the others"
diff --git a/test/eval/integration.jl b/test/eval/integration.jl
index 3b432b9df..b940a340d 100644
--- a/test/eval/integration.jl
+++ b/test/eval/integration.jl
@@ -1,4 +1,4 @@
-# see also https://github.com/tlienart/Franklin.jl/issues/330
+# see also https://github.com/JuliaDocs/Franklin.jl/issues/330
@testset "locvar" begin
s = raw"""
@def va = 5
diff --git a/test/global/eval.jl b/test/global/eval.jl
index bb7c72b95..8859aefa3 100644
--- a/test/global/eval.jl
+++ b/test/global/eval.jl
@@ -188,7 +188,7 @@ end
""")
end
-# https://github.com/tlienart/Franklin.jl/issues/832
+# https://github.com/JuliaDocs/Franklin.jl/issues/832
@testset "#832" begin
s = """
```!
diff --git a/test/global/html_esc.jl b/test/global/html_esc.jl
index 8d5239f05..d195250ce 100644
--- a/test/global/html_esc.jl
+++ b/test/global/html_esc.jl
@@ -1,4 +1,4 @@
-# See https://github.com/tlienart/Franklin.jl/issues/326
+# See https://github.com/JuliaDocs/Franklin.jl/issues/326
@testset "Issue 326" begin
h1 = "Blah
"
diff --git a/test/global/sitemap.jl b/test/global/sitemap.jl
index 54b828f8b..e5512b890 100644
--- a/test/global/sitemap.jl
+++ b/test/global/sitemap.jl
@@ -10,7 +10,7 @@
for pg in ("", "menu1", "menu2", "menu3")
pgg = joinpath(pg, "index.html")
@test occursin("""
- https://tlienart.github.io/FranklinTemplates.jl/$pgg """, fc)
+ https://juliadocs.org/FranklinTemplates.jl/$pgg """, fc)
end
end
@@ -20,5 +20,5 @@ end
fc = prod(readlines(f, keep=true))
@test occursin(raw"""
- Sitemap: https://tlienart.github.io/FranklinTemplates.jl/sitemap.xml""", fc)
+ Sitemap: https://juliadocs.org/FranklinTemplates.jl/sitemap.xml""", fc)
end