From f21d4b5b8a1588cc5a0268994719a01a23eaedb2 Mon Sep 17 00:00:00 2001 From: PharmCat <13901158+PharmCat@users.noreply.github.com> Date: Mon, 13 Dec 2021 00:07:20 +0300 Subject: [PATCH] Delete v0.1.7 directory --- v0.1.7/api/index.html | 10 - v0.1.7/assets/documenter.js | 264 - v0.1.7/assets/search.js | 251 - v0.1.7/assets/themes/documenter-dark.css | 7752 -------------------- v0.1.7/assets/themes/documenter-light.css | 7810 --------------------- v0.1.7/assets/themeswap.js | 66 - v0.1.7/assets/warner.js | 49 - v0.1.7/details/index.html | 2 - v0.1.7/examples/index.html | 88 - v0.1.7/index.html | 2 - v0.1.7/parameters/index.html | 2 - v0.1.7/pdf/Appendix2.1.pdf | Bin 251929 -> 0 bytes v0.1.7/pdf/Appendix2.2.pdf | Bin 267230 -> 0 bytes v0.1.7/plot1.png | Bin 51953 -> 0 bytes v0.1.7/plot2.png | Bin 51856 -> 0 bytes v0.1.7/plot3.png | Bin 16745 -> 0 bytes v0.1.7/plot4.png | Bin 40996 -> 0 bytes v0.1.7/plot5.png | Bin 20459 -> 0 bytes v0.1.7/search/index.html | 2 - v0.1.7/search_index.js | 3 - v0.1.7/siteinfo.js | 1 - v0.1.7/validation_report.aux | 42 - v0.1.7/validation_report.log | 7581 -------------------- v0.1.7/validation_report.out | 24 - v0.1.7/validation_report.pdf | Bin 55981 -> 0 bytes v0.1.7/validation_report.tex | 1111 --- 26 files changed, 25060 deletions(-) delete mode 100644 v0.1.7/api/index.html delete mode 100644 v0.1.7/assets/documenter.js delete mode 100644 v0.1.7/assets/search.js delete mode 100644 v0.1.7/assets/themes/documenter-dark.css delete mode 100644 v0.1.7/assets/themes/documenter-light.css delete mode 100644 v0.1.7/assets/themeswap.js delete mode 100644 v0.1.7/assets/warner.js delete mode 100644 v0.1.7/details/index.html delete mode 100644 v0.1.7/examples/index.html delete mode 100644 v0.1.7/index.html delete mode 100644 v0.1.7/parameters/index.html delete mode 100644 v0.1.7/pdf/Appendix2.1.pdf delete mode 100644 v0.1.7/pdf/Appendix2.2.pdf delete mode 100644 v0.1.7/plot1.png delete mode 100644 v0.1.7/plot2.png delete mode 100644 v0.1.7/plot3.png delete mode 100644 v0.1.7/plot4.png delete mode 100644 v0.1.7/plot5.png delete mode 100644 v0.1.7/search/index.html delete mode 100644 v0.1.7/search_index.js delete mode 100644 v0.1.7/siteinfo.js delete mode 100644 v0.1.7/validation_report.aux delete mode 100644 v0.1.7/validation_report.log delete mode 100644 v0.1.7/validation_report.out delete mode 100644 v0.1.7/validation_report.pdf delete mode 100644 v0.1.7/validation_report.tex diff --git a/v0.1.7/api/index.html b/v0.1.7/api/index.html deleted file mode 100644 index be1dd54..0000000 --- a/v0.1.7/api/index.html +++ /dev/null @@ -1,10 +0,0 @@ - -API · MetidaNCA.jl

API

pkimport

MetidaNCA.pkimportFunction
pkimport(data, time, conc, sort; kelauto = true,  elimrange = ElimRange(), dosetime = DoseTime())

Import PK data from table data.

  • time - time column;
  • conc - concentration column;
  • sort - subject sorting columns.

keywords:

  • kelauto - if true auto range settings, if false used kelstart/kelend from elimrange;
  • elimrange - set elimination range settings;
  • dosetime - set dose and dose time, by default dosetime = 0, dose is NaN.
source
pkimport(data, time, conc; kelauto = true,  elimrange = ElimRange(), dosetime = DoseTime())

Import PK data from tabular data data, time - time column, conc - concentration column.

source
pkimport(time, conc; kelauto = true,  elimrange = ElimRange(), dosetime = DoseTime())

Import PK data from time vector time and concentration vector conc.

source

nca!

MetidaNCA.nca!Function
nca!(data::PKSubject{T,O}; adm = :ev, calcm = :lint, intpm = nothing, limitrule = nothing, verbose = 0, warn = true, io::IO = stdout, modify! = nothing) where T where O
  • adm - administration:
    • :ev - extra vascular;
    • :iv - intravascular bolus;
  • calcm - AUC/AUMC calculation method:
    • :lint - linear trapezoidal;
    • :logt - log-trapezoidal after Tmax;
    • :luld - linar up log down;
    • :luldt - linear up log down after Tmax;
  • intpm - interpolation method:
    • :lint - linear trapezoidal;
    • :logt - log-trapezoidal after Tmax;
    • :luld - linar up log down;
    • :luldt - linear up log down after Tmax;
  • limitrule use limitrule for data;
  • verbose - print to io;
  • warn - show warnings;
  • io - output stream;
  • modify! - function to modify output paramaters, call modify!(data, result) if difined.
source
nca!(data::DataSet{T1}; adm = :ev, calcm = :lint, intpm = nothing, verbose = 0, warn = true, io::IO = stdout) where T1 <: PKSubject{T,O}  where T  where O

Non-compartmental (NCA) analysis of pharmacokinetic (PK) data.

source

DoseTime

MetidaNCA.DoseTimeType
DoseTime(dose::D, time::T, tau::TAU) where D <: Number where T <: Number where TAU <: Number

Dose settings.

  • dose - dose;
  • time - dose time;
  • tau - tau (τ);

Dose time set 0 by default.

source

setdosetime!

MetidaNCA.setdosetime!Function
setdosetime!(data::T, dosetime::DoseTime) where T <: PKSubject

Set dose time dosetime for subject data.

source
setdosetime!(data::DataSet{T}, dosetime::DoseTime, ind::Int) where T <: PKSubject
  • ind - index in DataSet.
source
setdosetime!(data::DataSet{T}, dosetime::DoseTime, inds::Union{Vector{Int}, UnitRange{Int}, Tuple{Vararg{Int}}}) where T <: PKSubject
  • inds - indexes in DataSet.
source
setdosetime!(data::DataSet{T}, dosetime::DoseTime) where T <: PKSubject

For all subjects in DataSet.

source
setdosetime!(data::DataSet{T}, dosetime::DoseTime, sort::Dict) where T <: PKSubject

Set dose time dosetime for subjects if sort ⊆ subject's id.

source

setkelauto!

MetidaNCA.setkelauto!Function
setkelauto!(data::T, kelauto::Bool) where T <: PKSubject

Set range for elimination parameters calculation for subject.

  • data - PK subject;
  • kelauto - value.
source
setkelauto!(data::DataSet{T}, kelauto::Bool, ind::Int) where T <: PKSubject
source
setkelauto!(data::DataSet{T}, kelauto::Bool, inds::Union{Vector{Int}, UnitRange{Int}, Tuple{Vararg{Int}}}) where T <: PKSubject
source
setkelauto!(data::DataSet{T}, kelauto::Bool) where T <: PKSubject
source
setkelauto!(data::DataSet{T}, kelauto::Bool, sort::Dict) where T <: PKSubject
source

ElimRange

MetidaNCA.ElimRangeType
ElimRange(kelstart::Int, kelend::Int, kelexcl::Vector{Int})::ElimRange

Elimination settings for PK subject.

  • kelstart - start point;
  • kelend - end point;
  • kelexcl - excluded points.
source

setkelrange!

MetidaNCA.setkelrange!Function
setkelrange!(data::T, range::ElimRange{:point}; kelauto = false) where T <: PKSubject

Set range for subject data. Set kelauto if possible.

source
setdosetime!(data::DataSet{T}, dosetime::DoseTime, ind::Int) where T <: PKSubject
source
setkelrange!(data::DataSet{T}, range::ElimRange{:point}, inds::Union{Vector{Int}, UnitRange{Int}, Tuple{Vararg{Int}}}; kelauto = false)
source
setkelrange!(data::DataSet{T}, range::ElimRange{:point}; kelauto = false) where T <: PKSubject
source
setkelrange!(data::DataSet{T}, range::ElimRange{:point}, sort::Dict; kelauto = false) where T <: PKSubject
source

getdosetime

getkelauto

getkelrange

LimitRule

MetidaNCA.LimitRuleType
LimitRule(lloq::T, btmax, atmax, nan, rm::Bool) where T <: Real
-
-LimitRule(;lloq = NaN, btmax = NaN, atmax = NaN, nan = NaN, rm::Bool = false)
  • lloq - LLOQ - low limit of quantification;
  • btmax - value for points before Tmax;
  • atmat - values for points after Tmax;
  • nan - values for replacing NaN;
  • rm - if true, removee all NaN points.

Rule for PK subject.

  • STEP 1 (NaN step): replace all NaN and missing values with nan keyword value (if nan not NaN);
  • STEP 2 (LLOQ step): replace values below lloq with btmax value if this value befor Tmax or with atmax if this value after Tmax (if lloq not NaN);
  • STEP 3 (remove NaN): rm == true, then remove all NaN and missing values.
source

applylimitrule!

MetidaNCA.applylimitrule!Function
applylimitrule!(data::PKSubject, rule::LimitRule)

Apply rule to PK subject .

  • STEP 1 (NaN step): replace all NaN and missing values with nan keyword value (if nan not NaN);
  • STEP 2 (LLOQ step): replace values below lloq with btmax value if this value befor Tmax or with atmax if this value after Tmax (if lloq not NaN);
  • STEP 3 (remove NaN): rm == true, then remove all NaN and missing values.
source
applylimitrule!(f::Function, data::DataSet{T}, rule::LimitRule) where T <: PKSubject
source
applylimitrule!(data::DataSet{T}, rule::LimitRule, ind::Int) where T <: PKSubject
source
applylimitrule!(data::DataSet{T}, rule::LimitRule, inds::Union{Vector{Int}, UnitRange{Int}, Tuple{Vararg{Int}}}) where T <: PKSubject
source
applylimitrule!(data::DataSet{T}, rule::LimitRule) where T <: PKSubject
source
applylimitrule!(data::DataSet{T}, rule::LimitRule, sort::Dict) where T <: PKSubject
source
applylimitrule!(time, obs, rule::LimitRule)
source

pkplot

MetidaNCA.pkplotFunction
pkplot(subj; ls = false, elim = false, xticksn = :auto, yticksn = :auto, kwargs...)

Plot for subject

  • ls - concentration in log scale;
  • elim - draw elimination curve;
  • xticksn - number of ticks on x axis;
  • yticksn - number of ticks on y axis/
source
pkplot(data::DataSet{T};
-typesort::Union{Nothing, Symbol, AbstractVector{Symbol}} = nothing,
-pagesort::Union{Nothing, Symbol, AbstractVector{Symbol}} = nothing,
-sort::Union{Nothing, Dict{Symbol}} = nothing,
-kwargs...) where T <: AbstractSubject

PK plot for subject set.

* `typesort` - sort on page by this id key;
-* `pagesort` - different pages by this id key;
-* `sort` - use only subjects if sort ⊆ subject id.
source
diff --git a/v0.1.7/assets/documenter.js b/v0.1.7/assets/documenter.js deleted file mode 100644 index 6d0b785..0000000 --- a/v0.1.7/assets/documenter.js +++ /dev/null @@ -1,264 +0,0 @@ -// Generated by Documenter.jl -requirejs.config({ - paths: { - 'highlight-julia': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/languages/julia.min', - 'headroom': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/headroom.min', - 'jqueryui': 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min', - 'katex-auto-render': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.13.11/contrib/auto-render.min', - 'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min', - 'headroom-jquery': 'https://cdnjs.cloudflare.com/ajax/libs/headroom/0.12.0/jQuery.headroom.min', - 'katex': 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.13.11/katex.min', - 'highlight': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/highlight.min', - 'highlight-julia-repl': 'https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/languages/julia-repl.min', - }, - shim: { - "highlight-julia": { - "deps": [ - "highlight" - ] - }, - "katex-auto-render": { - "deps": [ - "katex" - ] - }, - "headroom-jquery": { - "deps": [ - "jquery", - "headroom" - ] - }, - "highlight-julia-repl": { - "deps": [ - "highlight" - ] - } -} -}); -//////////////////////////////////////////////////////////////////////////////// -require(['jquery', 'katex', 'katex-auto-render'], function($, katex, renderMathInElement) { -$(document).ready(function() { - renderMathInElement( - document.body, - { - "delimiters": [ - { - "left": "$", - "right": "$", - "display": false - }, - { - "left": "$$", - "right": "$$", - "display": true - }, - { - "left": "\\[", - "right": "\\]", - "display": true - } - ] -} - - ); -}) - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery', 'highlight', 'highlight-julia', 'highlight-julia-repl'], function($) { -$(document).ready(function() { - hljs.highlightAll(); -}) - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery', 'headroom', 'headroom-jquery'], function($, Headroom) { - -// Manages the top navigation bar (hides it when the user starts scrolling down on the -// mobile). -window.Headroom = Headroom; // work around buggy module loading? -$(document).ready(function() { - $('#documenter .docs-navbar').headroom({ - "tolerance": {"up": 10, "down": 10}, - }); -}) - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -// Modal settings dialog -$(document).ready(function() { - var settings = $('#documenter-settings'); - $('#documenter-settings-button').click(function(){ - settings.toggleClass('is-active'); - }); - // Close the dialog if X is clicked - $('#documenter-settings button.delete').click(function(){ - settings.removeClass('is-active'); - }); - // Close dialog if ESC is pressed - $(document).keyup(function(e) { - if (e.keyCode == 27) settings.removeClass('is-active'); - }); -}); - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -// Manages the showing and hiding of the sidebar. -$(document).ready(function() { - var sidebar = $("#documenter > .docs-sidebar"); - var sidebar_button = $("#documenter-sidebar-button") - sidebar_button.click(function(ev) { - ev.preventDefault(); - sidebar.toggleClass('visible'); - if (sidebar.hasClass('visible')) { - // Makes sure that the current menu item is visible in the sidebar. - $("#documenter .docs-menu a.is-active").focus(); - } - }); - $("#documenter > .docs-main").bind('click', function(ev) { - if ($(ev.target).is(sidebar_button)) { - return; - } - if (sidebar.hasClass('visible')) { - sidebar.removeClass('visible'); - } - }); -}) - -// Resizes the package name / sitename in the sidebar if it is too wide. -// Inspired by: https://github.com/davatron5000/FitText.js -$(document).ready(function() { - e = $("#documenter .docs-autofit"); - function resize() { - var L = parseInt(e.css('max-width'), 10); - var L0 = e.width(); - if(L0 > L) { - var h0 = parseInt(e.css('font-size'), 10); - e.css('font-size', L * h0 / L0); - // TODO: make sure it survives resizes? - } - } - // call once and then register events - resize(); - $(window).resize(resize); - $(window).on('orientationchange', resize); -}); - -// Scroll the navigation bar to the currently selected menu item -$(document).ready(function() { - var sidebar = $("#documenter .docs-menu").get(0); - var active = $("#documenter .docs-menu .is-active").get(0); - if(typeof active !== 'undefined') { - sidebar.scrollTop = active.offsetTop - sidebar.offsetTop - 15; - } -}) - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -function set_theme(theme) { - var active = null; - var disabled = []; - for (var i = 0; i < document.styleSheets.length; i++) { - var ss = document.styleSheets[i]; - var themename = ss.ownerNode.getAttribute("data-theme-name"); - if(themename === null) continue; // ignore non-theme stylesheets - // Find the active theme - if(themename === theme) active = ss; - else disabled.push(ss); - } - if(active !== null) { - active.disabled = false; - if(active.ownerNode.getAttribute("data-theme-primary") === null) { - document.getElementsByTagName('html')[0].className = "theme--" + theme; - } else { - document.getElementsByTagName('html')[0].className = ""; - } - disabled.forEach(function(ss){ - ss.disabled = true; - }); - } - - // Store the theme in localStorage - if(typeof(window.localStorage) !== "undefined") { - window.localStorage.setItem("documenter-theme", theme); - } else { - console.error("Browser does not support window.localStorage"); - } -} - -// Theme picker setup -$(document).ready(function() { - // onchange callback - $('#documenter-themepicker').change(function themepick_callback(ev){ - var themename = $('#documenter-themepicker option:selected').attr('value'); - set_theme(themename); - }); - - // Make sure that the themepicker displays the correct theme when the theme is retrieved - // from localStorage - if(typeof(window.localStorage) !== "undefined") { - var theme = window.localStorage.getItem("documenter-theme"); - if(theme !== null) { - $('#documenter-themepicker option').each(function(i,e) { - e.selected = (e.value === theme); - }) - } else { - $('#documenter-themepicker option').each(function(i,e) { - e.selected = $("html").hasClass(`theme--${e.value}`); - }) - } - } -}) - -}) -//////////////////////////////////////////////////////////////////////////////// -require(['jquery'], function($) { - -// update the version selector with info from the siteinfo.js and ../versions.js files -$(document).ready(function() { - var version_selector = $("#documenter .docs-version-selector"); - var version_selector_select = $("#documenter .docs-version-selector select"); - - version_selector_select.change(function(x) { - target_href = version_selector_select.children("option:selected").get(0).value; - window.location.href = target_href; - }); - - // add the current version to the selector based on siteinfo.js, but only if the selector is empty - if (typeof DOCUMENTER_CURRENT_VERSION !== 'undefined' && $('#version-selector > option').length == 0) { - var option = $(""); - version_selector_select.append(option); - } - - if (typeof DOC_VERSIONS !== 'undefined') { - var existing_versions = version_selector_select.children("option"); - var existing_versions_texts = existing_versions.map(function(i,x){return x.text}); - DOC_VERSIONS.forEach(function(each) { - var version_url = documenterBaseURL + "/../" + each; - var existing_id = $.inArray(each, existing_versions_texts); - // if not already in the version selector, add it as a new option, - // otherwise update the old option with the URL and enable it - if (existing_id == -1) { - var option = $(""); - version_selector_select.append(option); - } else { - var option = existing_versions[existing_id]; - option.value = version_url; - option.disabled = false; - } - }); - } - - // only show the version selector if the selector has been populated - if (version_selector_select.children("option").length > 0) { - version_selector.toggleClass("visible"); - } -}) - -}) diff --git a/v0.1.7/assets/search.js b/v0.1.7/assets/search.js deleted file mode 100644 index 1a51454..0000000 --- a/v0.1.7/assets/search.js +++ /dev/null @@ -1,251 +0,0 @@ -// Generated by Documenter.jl -requirejs.config({ - paths: { - 'lunr': 'https://cdnjs.cloudflare.com/ajax/libs/lunr.js/2.3.9/lunr.min', - 'lodash': 'https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min', - 'jquery': 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min', - } -}); -//////////////////////////////////////////////////////////////////////////////// -require(['jquery', 'lunr', 'lodash'], function($, lunr, _) { - -$(document).ready(function() { - // parseUri 1.2.2 - // (c) Steven Levithan - // MIT License - function parseUri (str) { - var o = parseUri.options, - m = o.parser[o.strictMode ? "strict" : "loose"].exec(str), - uri = {}, - i = 14; - - while (i--) uri[o.key[i]] = m[i] || ""; - - uri[o.q.name] = {}; - uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) { - if ($1) uri[o.q.name][$1] = $2; - }); - - return uri; - }; - parseUri.options = { - strictMode: false, - key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"], - q: { - name: "queryKey", - parser: /(?:^|&)([^&=]*)=?([^&]*)/g - }, - parser: { - strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/, - loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ - } - }; - - $("#search-form").submit(function(e) { - e.preventDefault() - }) - - // list below is the lunr 2.1.3 list minus the intersect with names(Base) - // (all, any, get, in, is, only, which) and (do, else, for, let, where, while, with) - // ideally we'd just filter the original list but it's not available as a variable - lunr.stopWordFilter = lunr.generateStopWordFilter([ - 'a', - 'able', - 'about', - 'across', - 'after', - 'almost', - 'also', - 'am', - 'among', - 'an', - 'and', - 'are', - 'as', - 'at', - 'be', - 'because', - 'been', - 'but', - 'by', - 'can', - 'cannot', - 'could', - 'dear', - 'did', - 'does', - 'either', - 'ever', - 'every', - 'from', - 'got', - 'had', - 'has', - 'have', - 'he', - 'her', - 'hers', - 'him', - 'his', - 'how', - 'however', - 'i', - 'if', - 'into', - 'it', - 'its', - 'just', - 'least', - 'like', - 'likely', - 'may', - 'me', - 'might', - 'most', - 'must', - 'my', - 'neither', - 'no', - 'nor', - 'not', - 'of', - 'off', - 'often', - 'on', - 'or', - 'other', - 'our', - 'own', - 'rather', - 'said', - 'say', - 'says', - 'she', - 'should', - 'since', - 'so', - 'some', - 'than', - 'that', - 'the', - 'their', - 'them', - 'then', - 'there', - 'these', - 'they', - 'this', - 'tis', - 'to', - 'too', - 'twas', - 'us', - 'wants', - 'was', - 'we', - 'were', - 'what', - 'when', - 'who', - 'whom', - 'why', - 'will', - 'would', - 'yet', - 'you', - 'your' - ]) - - // add . as a separator, because otherwise "title": "Documenter.Anchors.add!" - // would not find anything if searching for "add!", only for the entire qualification - lunr.tokenizer.separator = /[\s\-\.]+/ - - // custom trimmer that doesn't strip @ and !, which are used in julia macro and function names - lunr.trimmer = function (token) { - return token.update(function (s) { - return s.replace(/^[^a-zA-Z0-9@!]+/, '').replace(/[^a-zA-Z0-9@!]+$/, '') - }) - } - - lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'juliaStopWordFilter') - lunr.Pipeline.registerFunction(lunr.trimmer, 'juliaTrimmer') - - var index = lunr(function () { - this.ref('location') - this.field('title',{boost: 100}) - this.field('text') - documenterSearchIndex['docs'].forEach(function(e) { - this.add(e) - }, this) - }) - var store = {} - - documenterSearchIndex['docs'].forEach(function(e) { - store[e.location] = {title: e.title, category: e.category, page: e.page} - }) - - $(function(){ - searchresults = $('#documenter-search-results'); - searchinfo = $('#documenter-search-info'); - searchbox = $('#documenter-search-query'); - function update_search(querystring) { - tokens = lunr.tokenizer(querystring) - results = index.query(function (q) { - tokens.forEach(function (t) { - q.term(t.toString(), { - fields: ["title"], - boost: 100, - usePipeline: true, - editDistance: 0, - wildcard: lunr.Query.wildcard.NONE - }) - q.term(t.toString(), { - fields: ["title"], - boost: 10, - usePipeline: true, - editDistance: 2, - wildcard: lunr.Query.wildcard.NONE - }) - q.term(t.toString(), { - fields: ["text"], - boost: 1, - usePipeline: true, - editDistance: 0, - wildcard: lunr.Query.wildcard.NONE - }) - }) - }) - searchinfo.text("Number of results: " + results.length) - searchresults.empty() - results.forEach(function(result) { - data = store[result.ref] - link = $(''+data.title+'') - link.attr('href', documenterBaseURL+'/'+result.ref) - if (data.category != "page"){ - cat = $('('+data.category+', '+data.page+')') - } else { - cat = $('('+data.category+')') - } - li = $('
  • ').append(link).append(" ").append(cat) - searchresults.append(li) - }) - } - - function update_search_box() { - querystring = searchbox.val() - update_search(querystring) - } - - searchbox.keyup(_.debounce(update_search_box, 250)) - searchbox.change(update_search_box) - - search_query_uri = parseUri(window.location).queryKey["q"] - if(search_query_uri !== undefined) { - search_query = decodeURIComponent(search_query_uri.replace(/\+/g, '%20')) - searchbox.val(search_query) - } - update_search_box(); - }) -}) - -}) diff --git a/v0.1.7/assets/themes/documenter-dark.css b/v0.1.7/assets/themes/documenter-dark.css deleted file mode 100644 index 5a64259..0000000 --- a/v0.1.7/assets/themes/documenter-dark.css +++ /dev/null @@ -1,7752 +0,0 @@ -@charset "UTF-8"; -/* Font Awesome 5 mixin. Can be included in any rule that should render Font Awesome icons. */ -@keyframes spinAround { - from { - transform: rotate(0deg); } - to { - transform: rotate(359deg); } } - -html.theme--documenter-dark .delete, html.theme--documenter-dark .modal-close, .is-unselectable, html.theme--documenter-dark .button, html.theme--documenter-dark .file, html.theme--documenter-dark .breadcrumb, html.theme--documenter-dark .pagination-previous, -html.theme--documenter-dark .pagination-next, -html.theme--documenter-dark .pagination-link, -html.theme--documenter-dark .pagination-ellipsis, html.theme--documenter-dark .tabs { - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; } - -html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading)::after, html.theme--documenter-dark .navbar-link:not(.is-arrowless)::after { - border: 3px solid transparent; - border-radius: 2px; - border-right: 0; - border-top: 0; - content: " "; - display: block; - height: 0.625em; - margin-top: -0.4375em; - pointer-events: none; - position: absolute; - top: 50%; - transform: rotate(-45deg); - transform-origin: center; - width: 0.625em; } - -html.theme--documenter-dark .box:not(:last-child), html.theme--documenter-dark .content:not(:last-child), html.theme--documenter-dark .notification:not(:last-child), html.theme--documenter-dark .progress:not(:last-child), html.theme--documenter-dark .table:not(:last-child), html.theme--documenter-dark .table-container:not(:last-child), html.theme--documenter-dark .title:not(:last-child), -html.theme--documenter-dark .subtitle:not(:last-child), html.theme--documenter-dark .block:not(:last-child), html.theme--documenter-dark .highlight:not(:last-child), html.theme--documenter-dark .breadcrumb:not(:last-child), html.theme--documenter-dark .level:not(:last-child), html.theme--documenter-dark .list:not(:last-child), html.theme--documenter-dark .message:not(:last-child), html.theme--documenter-dark .tabs:not(:last-child), html.theme--documenter-dark .admonition:not(:last-child) { - margin-bottom: 1.5rem; } - -html.theme--documenter-dark .delete, html.theme--documenter-dark .modal-close { - -moz-appearance: none; - -webkit-appearance: none; - background-color: rgba(10, 10, 10, 0.2); - border: none; - border-radius: 290486px; - cursor: pointer; - pointer-events: auto; - display: inline-block; - flex-grow: 0; - flex-shrink: 0; - font-size: 0; - height: 20px; - max-height: 20px; - max-width: 20px; - min-height: 20px; - min-width: 20px; - outline: none; - position: relative; - vertical-align: top; - width: 20px; } - html.theme--documenter-dark .delete::before, html.theme--documenter-dark .modal-close::before, html.theme--documenter-dark .delete::after, html.theme--documenter-dark .modal-close::after { - background-color: white; - content: ""; - display: block; - left: 50%; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform-origin: center center; } - html.theme--documenter-dark .delete::before, html.theme--documenter-dark .modal-close::before { - height: 2px; - width: 50%; } - html.theme--documenter-dark .delete::after, html.theme--documenter-dark .modal-close::after { - height: 50%; - width: 2px; } - html.theme--documenter-dark .delete:hover, html.theme--documenter-dark .modal-close:hover, html.theme--documenter-dark .delete:focus, html.theme--documenter-dark .modal-close:focus { - background-color: rgba(10, 10, 10, 0.3); } - html.theme--documenter-dark .delete:active, html.theme--documenter-dark .modal-close:active { - background-color: rgba(10, 10, 10, 0.4); } - html.theme--documenter-dark .is-small.delete, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.delete, html.theme--documenter-dark .is-small.modal-close, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.modal-close { - height: 16px; - max-height: 16px; - max-width: 16px; - min-height: 16px; - min-width: 16px; - width: 16px; } - html.theme--documenter-dark .is-medium.delete, html.theme--documenter-dark .is-medium.modal-close { - height: 24px; - max-height: 24px; - max-width: 24px; - min-height: 24px; - min-width: 24px; - width: 24px; } - html.theme--documenter-dark .is-large.delete, html.theme--documenter-dark .is-large.modal-close { - height: 32px; - max-height: 32px; - max-width: 32px; - min-height: 32px; - min-width: 32px; - width: 32px; } - -html.theme--documenter-dark .button.is-loading::after, html.theme--documenter-dark .loader, html.theme--documenter-dark .select.is-loading::after, html.theme--documenter-dark .control.is-loading::after { - animation: spinAround 500ms infinite linear; - border: 2px solid #dbdee0; - border-radius: 290486px; - border-right-color: transparent; - border-top-color: transparent; - content: ""; - display: block; - height: 1em; - position: relative; - width: 1em; } - -.is-overlay, html.theme--documenter-dark .image.is-square img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-square img, -html.theme--documenter-dark .image.is-square .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-square .has-ratio, html.theme--documenter-dark .image.is-1by1 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by1 img, -html.theme--documenter-dark .image.is-1by1 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by1 .has-ratio, html.theme--documenter-dark .image.is-5by4 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by4 img, -html.theme--documenter-dark .image.is-5by4 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by4 .has-ratio, html.theme--documenter-dark .image.is-4by3 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by3 img, -html.theme--documenter-dark .image.is-4by3 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by3 .has-ratio, html.theme--documenter-dark .image.is-3by2 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by2 img, -html.theme--documenter-dark .image.is-3by2 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by2 .has-ratio, html.theme--documenter-dark .image.is-5by3 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by3 img, -html.theme--documenter-dark .image.is-5by3 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by3 .has-ratio, html.theme--documenter-dark .image.is-16by9 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-16by9 img, -html.theme--documenter-dark .image.is-16by9 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-16by9 .has-ratio, html.theme--documenter-dark .image.is-2by1 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by1 img, -html.theme--documenter-dark .image.is-2by1 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by1 .has-ratio, html.theme--documenter-dark .image.is-3by1 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by1 img, -html.theme--documenter-dark .image.is-3by1 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by1 .has-ratio, html.theme--documenter-dark .image.is-4by5 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by5 img, -html.theme--documenter-dark .image.is-4by5 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by5 .has-ratio, html.theme--documenter-dark .image.is-3by4 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by4 img, -html.theme--documenter-dark .image.is-3by4 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by4 .has-ratio, html.theme--documenter-dark .image.is-2by3 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by3 img, -html.theme--documenter-dark .image.is-2by3 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by3 .has-ratio, html.theme--documenter-dark .image.is-3by5 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by5 img, -html.theme--documenter-dark .image.is-3by5 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by5 .has-ratio, html.theme--documenter-dark .image.is-9by16 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-9by16 img, -html.theme--documenter-dark .image.is-9by16 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-9by16 .has-ratio, html.theme--documenter-dark .image.is-1by2 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by2 img, -html.theme--documenter-dark .image.is-1by2 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by2 .has-ratio, html.theme--documenter-dark .image.is-1by3 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by3 img, -html.theme--documenter-dark .image.is-1by3 .has-ratio, -html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by3 .has-ratio, html.theme--documenter-dark .modal, html.theme--documenter-dark .modal-background, html.theme--documenter-dark .hero-video { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; } - -html.theme--documenter-dark .button, html.theme--documenter-dark .input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input, html.theme--documenter-dark .textarea, html.theme--documenter-dark .select select, html.theme--documenter-dark .file-cta, -html.theme--documenter-dark .file-name, html.theme--documenter-dark .pagination-previous, -html.theme--documenter-dark .pagination-next, -html.theme--documenter-dark .pagination-link, -html.theme--documenter-dark .pagination-ellipsis { - -moz-appearance: none; - -webkit-appearance: none; - align-items: center; - border: 1px solid transparent; - border-radius: 0.4em; - box-shadow: none; - display: inline-flex; - font-size: 15px; - height: 2.25em; - justify-content: flex-start; - line-height: 1.5; - padding-bottom: calc(0.375em - 1px); - padding-left: calc(0.625em - 1px); - padding-right: calc(0.625em - 1px); - padding-top: calc(0.375em - 1px); - position: relative; - vertical-align: top; } - html.theme--documenter-dark .button:focus, html.theme--documenter-dark .input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input:focus, html.theme--documenter-dark .textarea:focus, html.theme--documenter-dark .select select:focus, html.theme--documenter-dark .file-cta:focus, - html.theme--documenter-dark .file-name:focus, html.theme--documenter-dark .pagination-previous:focus, - html.theme--documenter-dark .pagination-next:focus, - html.theme--documenter-dark .pagination-link:focus, - html.theme--documenter-dark .pagination-ellipsis:focus, html.theme--documenter-dark .is-focused.button, html.theme--documenter-dark .is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-focused, html.theme--documenter-dark .is-focused.textarea, html.theme--documenter-dark .select select.is-focused, html.theme--documenter-dark .is-focused.file-cta, - html.theme--documenter-dark .is-focused.file-name, html.theme--documenter-dark .is-focused.pagination-previous, - html.theme--documenter-dark .is-focused.pagination-next, - html.theme--documenter-dark .is-focused.pagination-link, - html.theme--documenter-dark .is-focused.pagination-ellipsis, html.theme--documenter-dark .button:active, html.theme--documenter-dark .input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input:active, html.theme--documenter-dark .textarea:active, html.theme--documenter-dark .select select:active, html.theme--documenter-dark .file-cta:active, - html.theme--documenter-dark .file-name:active, html.theme--documenter-dark .pagination-previous:active, - html.theme--documenter-dark .pagination-next:active, - html.theme--documenter-dark .pagination-link:active, - html.theme--documenter-dark .pagination-ellipsis:active, html.theme--documenter-dark .is-active.button, html.theme--documenter-dark .is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-active, html.theme--documenter-dark .is-active.textarea, html.theme--documenter-dark .select select.is-active, html.theme--documenter-dark .is-active.file-cta, - html.theme--documenter-dark .is-active.file-name, html.theme--documenter-dark .is-active.pagination-previous, - html.theme--documenter-dark .is-active.pagination-next, - html.theme--documenter-dark .is-active.pagination-link, - html.theme--documenter-dark .is-active.pagination-ellipsis { - outline: none; } - html.theme--documenter-dark .button[disabled], html.theme--documenter-dark .input[disabled], html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input[disabled], html.theme--documenter-dark .textarea[disabled], html.theme--documenter-dark .select select[disabled], html.theme--documenter-dark .file-cta[disabled], - html.theme--documenter-dark .file-name[disabled], html.theme--documenter-dark .pagination-previous[disabled], - html.theme--documenter-dark .pagination-next[disabled], - html.theme--documenter-dark .pagination-link[disabled], - html.theme--documenter-dark .pagination-ellipsis[disabled], - fieldset[disabled] html.theme--documenter-dark .button, - html.theme--documenter-dark fieldset[disabled] .button, - fieldset[disabled] html.theme--documenter-dark .input, - html.theme--documenter-dark fieldset[disabled] .input, - fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input, - html.theme--documenter-dark #documenter .docs-sidebar fieldset[disabled] form.docs-search > input, - fieldset[disabled] html.theme--documenter-dark .textarea, - html.theme--documenter-dark fieldset[disabled] .textarea, - fieldset[disabled] html.theme--documenter-dark .select select, - html.theme--documenter-dark .select fieldset[disabled] select, - fieldset[disabled] html.theme--documenter-dark .file-cta, - html.theme--documenter-dark fieldset[disabled] .file-cta, - fieldset[disabled] html.theme--documenter-dark .file-name, - html.theme--documenter-dark fieldset[disabled] .file-name, - fieldset[disabled] html.theme--documenter-dark .pagination-previous, - html.theme--documenter-dark fieldset[disabled] .pagination-previous, - fieldset[disabled] html.theme--documenter-dark .pagination-next, - html.theme--documenter-dark fieldset[disabled] .pagination-next, - fieldset[disabled] html.theme--documenter-dark .pagination-link, - html.theme--documenter-dark fieldset[disabled] .pagination-link, - fieldset[disabled] html.theme--documenter-dark .pagination-ellipsis, - html.theme--documenter-dark fieldset[disabled] .pagination-ellipsis { - cursor: not-allowed; } - -/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */ -html, -body, -p, -ol, -ul, -li, -dl, -dt, -dd, -blockquote, -figure, -fieldset, -legend, -textarea, -pre, -iframe, -hr, -h1, -h2, -h3, -h4, -h5, -h6 { - margin: 0; - padding: 0; } - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: 100%; - font-weight: normal; } - -ul { - list-style: none; } - -button, -input, -select, -textarea { - margin: 0; } - -html { - box-sizing: border-box; } - -*, *::before, *::after { - box-sizing: inherit; } - -img, -embed, -iframe, -object, -video { - height: auto; - max-width: 100%; } - -audio { - max-width: 100%; } - -iframe { - border: 0; } - -table { - border-collapse: collapse; - border-spacing: 0; } - -td, -th { - padding: 0; } - td:not([align]), - th:not([align]) { - text-align: left; } - -.is-clearfix::after { - clear: both; - content: " "; - display: table; } - -.is-pulled-left { - float: left !important; } - -.is-pulled-right { - float: right !important; } - -.is-clipped { - overflow: hidden !important; } - -.is-size-1 { - font-size: 3rem !important; } - -.is-size-2 { - font-size: 2.5rem !important; } - -.is-size-3 { - font-size: 2rem !important; } - -.is-size-4 { - font-size: 1.5rem !important; } - -.is-size-5 { - font-size: 1.25rem !important; } - -.is-size-6 { - font-size: 15px !important; } - -.is-size-7, html.theme--documenter-dark .docstring > section > a.docs-sourcelink { - font-size: 0.85em !important; } - -@media screen and (max-width: 768px) { - .is-size-1-mobile { - font-size: 3rem !important; } - .is-size-2-mobile { - font-size: 2.5rem !important; } - .is-size-3-mobile { - font-size: 2rem !important; } - .is-size-4-mobile { - font-size: 1.5rem !important; } - .is-size-5-mobile { - font-size: 1.25rem !important; } - .is-size-6-mobile { - font-size: 15px !important; } - .is-size-7-mobile { - font-size: 0.85em !important; } } - -@media screen and (min-width: 769px), print { - .is-size-1-tablet { - font-size: 3rem !important; } - .is-size-2-tablet { - font-size: 2.5rem !important; } - .is-size-3-tablet { - font-size: 2rem !important; } - .is-size-4-tablet { - font-size: 1.5rem !important; } - .is-size-5-tablet { - font-size: 1.25rem !important; } - .is-size-6-tablet { - font-size: 15px !important; } - .is-size-7-tablet { - font-size: 0.85em !important; } } - -@media screen and (max-width: 1055px) { - .is-size-1-touch { - font-size: 3rem !important; } - .is-size-2-touch { - font-size: 2.5rem !important; } - .is-size-3-touch { - font-size: 2rem !important; } - .is-size-4-touch { - font-size: 1.5rem !important; } - .is-size-5-touch { - font-size: 1.25rem !important; } - .is-size-6-touch { - font-size: 15px !important; } - .is-size-7-touch { - font-size: 0.85em !important; } } - -@media screen and (min-width: 1056px) { - .is-size-1-desktop { - font-size: 3rem !important; } - .is-size-2-desktop { - font-size: 2.5rem !important; } - .is-size-3-desktop { - font-size: 2rem !important; } - .is-size-4-desktop { - font-size: 1.5rem !important; } - .is-size-5-desktop { - font-size: 1.25rem !important; } - .is-size-6-desktop { - font-size: 15px !important; } - .is-size-7-desktop { - font-size: 0.85em !important; } } - -@media screen and (min-width: 1216px) { - .is-size-1-widescreen { - font-size: 3rem !important; } - .is-size-2-widescreen { - font-size: 2.5rem !important; } - .is-size-3-widescreen { - font-size: 2rem !important; } - .is-size-4-widescreen { - font-size: 1.5rem !important; } - .is-size-5-widescreen { - font-size: 1.25rem !important; } - .is-size-6-widescreen { - font-size: 15px !important; } - .is-size-7-widescreen { - font-size: 0.85em !important; } } - -@media screen and (min-width: 1408px) { - .is-size-1-fullhd { - font-size: 3rem !important; } - .is-size-2-fullhd { - font-size: 2.5rem !important; } - .is-size-3-fullhd { - font-size: 2rem !important; } - .is-size-4-fullhd { - font-size: 1.5rem !important; } - .is-size-5-fullhd { - font-size: 1.25rem !important; } - .is-size-6-fullhd { - font-size: 15px !important; } - .is-size-7-fullhd { - font-size: 0.85em !important; } } - -.has-text-centered { - text-align: center !important; } - -.has-text-justified { - text-align: justify !important; } - -.has-text-left { - text-align: left !important; } - -.has-text-right { - text-align: right !important; } - -@media screen and (max-width: 768px) { - .has-text-centered-mobile { - text-align: center !important; } } - -@media screen and (min-width: 769px), print { - .has-text-centered-tablet { - text-align: center !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .has-text-centered-tablet-only { - text-align: center !important; } } - -@media screen and (max-width: 1055px) { - .has-text-centered-touch { - text-align: center !important; } } - -@media screen and (min-width: 1056px) { - .has-text-centered-desktop { - text-align: center !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .has-text-centered-desktop-only { - text-align: center !important; } } - -@media screen and (min-width: 1216px) { - .has-text-centered-widescreen { - text-align: center !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-centered-widescreen-only { - text-align: center !important; } } - -@media screen and (min-width: 1408px) { - .has-text-centered-fullhd { - text-align: center !important; } } - -@media screen and (max-width: 768px) { - .has-text-justified-mobile { - text-align: justify !important; } } - -@media screen and (min-width: 769px), print { - .has-text-justified-tablet { - text-align: justify !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .has-text-justified-tablet-only { - text-align: justify !important; } } - -@media screen and (max-width: 1055px) { - .has-text-justified-touch { - text-align: justify !important; } } - -@media screen and (min-width: 1056px) { - .has-text-justified-desktop { - text-align: justify !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .has-text-justified-desktop-only { - text-align: justify !important; } } - -@media screen and (min-width: 1216px) { - .has-text-justified-widescreen { - text-align: justify !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-justified-widescreen-only { - text-align: justify !important; } } - -@media screen and (min-width: 1408px) { - .has-text-justified-fullhd { - text-align: justify !important; } } - -@media screen and (max-width: 768px) { - .has-text-left-mobile { - text-align: left !important; } } - -@media screen and (min-width: 769px), print { - .has-text-left-tablet { - text-align: left !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .has-text-left-tablet-only { - text-align: left !important; } } - -@media screen and (max-width: 1055px) { - .has-text-left-touch { - text-align: left !important; } } - -@media screen and (min-width: 1056px) { - .has-text-left-desktop { - text-align: left !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .has-text-left-desktop-only { - text-align: left !important; } } - -@media screen and (min-width: 1216px) { - .has-text-left-widescreen { - text-align: left !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-left-widescreen-only { - text-align: left !important; } } - -@media screen and (min-width: 1408px) { - .has-text-left-fullhd { - text-align: left !important; } } - -@media screen and (max-width: 768px) { - .has-text-right-mobile { - text-align: right !important; } } - -@media screen and (min-width: 769px), print { - .has-text-right-tablet { - text-align: right !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .has-text-right-tablet-only { - text-align: right !important; } } - -@media screen and (max-width: 1055px) { - .has-text-right-touch { - text-align: right !important; } } - -@media screen and (min-width: 1056px) { - .has-text-right-desktop { - text-align: right !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .has-text-right-desktop-only { - text-align: right !important; } } - -@media screen and (min-width: 1216px) { - .has-text-right-widescreen { - text-align: right !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-right-widescreen-only { - text-align: right !important; } } - -@media screen and (min-width: 1408px) { - .has-text-right-fullhd { - text-align: right !important; } } - -.is-capitalized { - text-transform: capitalize !important; } - -.is-lowercase { - text-transform: lowercase !important; } - -.is-uppercase { - text-transform: uppercase !important; } - -.is-italic { - font-style: italic !important; } - -.has-text-white { - color: white !important; } - -a.has-text-white:hover, a.has-text-white:focus { - color: #e6e6e6 !important; } - -.has-background-white { - background-color: white !important; } - -.has-text-black { - color: #0a0a0a !important; } - -a.has-text-black:hover, a.has-text-black:focus { - color: black !important; } - -.has-background-black { - background-color: #0a0a0a !important; } - -.has-text-light { - color: #ecf0f1 !important; } - -a.has-text-light:hover, a.has-text-light:focus { - color: #cfd9db !important; } - -.has-background-light { - background-color: #ecf0f1 !important; } - -.has-text-dark { - color: #282f2f !important; } - -a.has-text-dark:hover, a.has-text-dark:focus { - color: #111414 !important; } - -.has-background-dark { - background-color: #282f2f !important; } - -.has-text-primary { - color: #375a7f !important; } - -a.has-text-primary:hover, a.has-text-primary:focus { - color: #28415b !important; } - -.has-background-primary { - background-color: #375a7f !important; } - -.has-text-link { - color: #1abc9c !important; } - -a.has-text-link:hover, a.has-text-link:focus { - color: #148f77 !important; } - -.has-background-link { - background-color: #1abc9c !important; } - -.has-text-info { - color: #024c7d !important; } - -a.has-text-info:hover, a.has-text-info:focus { - color: #012d4b !important; } - -.has-background-info { - background-color: #024c7d !important; } - -.has-text-success { - color: #008438 !important; } - -a.has-text-success:hover, a.has-text-success:focus { - color: #005122 !important; } - -.has-background-success { - background-color: #008438 !important; } - -.has-text-warning { - color: #ad8100 !important; } - -a.has-text-warning:hover, a.has-text-warning:focus { - color: #7a5b00 !important; } - -.has-background-warning { - background-color: #ad8100 !important; } - -.has-text-danger { - color: #9e1b0d !important; } - -a.has-text-danger:hover, a.has-text-danger:focus { - color: #6f1309 !important; } - -.has-background-danger { - background-color: #9e1b0d !important; } - -.has-text-black-bis { - color: #121212 !important; } - -.has-background-black-bis { - background-color: #121212 !important; } - -.has-text-black-ter { - color: #242424 !important; } - -.has-background-black-ter { - background-color: #242424 !important; } - -.has-text-grey-darker { - color: #282f2f !important; } - -.has-background-grey-darker { - background-color: #282f2f !important; } - -.has-text-grey-dark { - color: #343c3d !important; } - -.has-background-grey-dark { - background-color: #343c3d !important; } - -.has-text-grey { - color: #5e6d6f !important; } - -.has-background-grey { - background-color: #5e6d6f !important; } - -.has-text-grey-light { - color: #8c9b9d !important; } - -.has-background-grey-light { - background-color: #8c9b9d !important; } - -.has-text-grey-lighter { - color: #dbdee0 !important; } - -.has-background-grey-lighter { - background-color: #dbdee0 !important; } - -.has-text-white-ter { - color: #ecf0f1 !important; } - -.has-background-white-ter { - background-color: #ecf0f1 !important; } - -.has-text-white-bis { - color: #fafafa !important; } - -.has-background-white-bis { - background-color: #fafafa !important; } - -.has-text-weight-light { - font-weight: 300 !important; } - -.has-text-weight-normal { - font-weight: 400 !important; } - -.has-text-weight-medium { - font-weight: 500 !important; } - -.has-text-weight-semibold { - font-weight: 600 !important; } - -.has-text-weight-bold { - font-weight: 700 !important; } - -.is-family-primary { - font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; } - -.is-family-secondary { - font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; } - -.is-family-sans-serif { - font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; } - -.is-family-monospace { - font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; } - -.is-family-code { - font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; } - -.is-block { - display: block !important; } - -@media screen and (max-width: 768px) { - .is-block-mobile { - display: block !important; } } - -@media screen and (min-width: 769px), print { - .is-block-tablet { - display: block !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-block-tablet-only { - display: block !important; } } - -@media screen and (max-width: 1055px) { - .is-block-touch { - display: block !important; } } - -@media screen and (min-width: 1056px) { - .is-block-desktop { - display: block !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-block-desktop-only { - display: block !important; } } - -@media screen and (min-width: 1216px) { - .is-block-widescreen { - display: block !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-block-widescreen-only { - display: block !important; } } - -@media screen and (min-width: 1408px) { - .is-block-fullhd { - display: block !important; } } - -.is-flex { - display: flex !important; } - -@media screen and (max-width: 768px) { - .is-flex-mobile { - display: flex !important; } } - -@media screen and (min-width: 769px), print { - .is-flex-tablet { - display: flex !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-flex-tablet-only { - display: flex !important; } } - -@media screen and (max-width: 1055px) { - .is-flex-touch { - display: flex !important; } } - -@media screen and (min-width: 1056px) { - .is-flex-desktop { - display: flex !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-flex-desktop-only { - display: flex !important; } } - -@media screen and (min-width: 1216px) { - .is-flex-widescreen { - display: flex !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-flex-widescreen-only { - display: flex !important; } } - -@media screen and (min-width: 1408px) { - .is-flex-fullhd { - display: flex !important; } } - -.is-inline { - display: inline !important; } - -@media screen and (max-width: 768px) { - .is-inline-mobile { - display: inline !important; } } - -@media screen and (min-width: 769px), print { - .is-inline-tablet { - display: inline !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-inline-tablet-only { - display: inline !important; } } - -@media screen and (max-width: 1055px) { - .is-inline-touch { - display: inline !important; } } - -@media screen and (min-width: 1056px) { - .is-inline-desktop { - display: inline !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-inline-desktop-only { - display: inline !important; } } - -@media screen and (min-width: 1216px) { - .is-inline-widescreen { - display: inline !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-widescreen-only { - display: inline !important; } } - -@media screen and (min-width: 1408px) { - .is-inline-fullhd { - display: inline !important; } } - -.is-inline-block { - display: inline-block !important; } - -@media screen and (max-width: 768px) { - .is-inline-block-mobile { - display: inline-block !important; } } - -@media screen and (min-width: 769px), print { - .is-inline-block-tablet { - display: inline-block !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-inline-block-tablet-only { - display: inline-block !important; } } - -@media screen and (max-width: 1055px) { - .is-inline-block-touch { - display: inline-block !important; } } - -@media screen and (min-width: 1056px) { - .is-inline-block-desktop { - display: inline-block !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-inline-block-desktop-only { - display: inline-block !important; } } - -@media screen and (min-width: 1216px) { - .is-inline-block-widescreen { - display: inline-block !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-block-widescreen-only { - display: inline-block !important; } } - -@media screen and (min-width: 1408px) { - .is-inline-block-fullhd { - display: inline-block !important; } } - -.is-inline-flex { - display: inline-flex !important; } - -@media screen and (max-width: 768px) { - .is-inline-flex-mobile { - display: inline-flex !important; } } - -@media screen and (min-width: 769px), print { - .is-inline-flex-tablet { - display: inline-flex !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-inline-flex-tablet-only { - display: inline-flex !important; } } - -@media screen and (max-width: 1055px) { - .is-inline-flex-touch { - display: inline-flex !important; } } - -@media screen and (min-width: 1056px) { - .is-inline-flex-desktop { - display: inline-flex !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-inline-flex-desktop-only { - display: inline-flex !important; } } - -@media screen and (min-width: 1216px) { - .is-inline-flex-widescreen { - display: inline-flex !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-flex-widescreen-only { - display: inline-flex !important; } } - -@media screen and (min-width: 1408px) { - .is-inline-flex-fullhd { - display: inline-flex !important; } } - -.is-hidden { - display: none !important; } - -.is-sr-only { - border: none !important; - clip: rect(0, 0, 0, 0) !important; - height: 0.01em !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - white-space: nowrap !important; - width: 0.01em !important; } - -@media screen and (max-width: 768px) { - .is-hidden-mobile { - display: none !important; } } - -@media screen and (min-width: 769px), print { - .is-hidden-tablet { - display: none !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-hidden-tablet-only { - display: none !important; } } - -@media screen and (max-width: 1055px) { - .is-hidden-touch { - display: none !important; } } - -@media screen and (min-width: 1056px) { - .is-hidden-desktop { - display: none !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-hidden-desktop-only { - display: none !important; } } - -@media screen and (min-width: 1216px) { - .is-hidden-widescreen { - display: none !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-hidden-widescreen-only { - display: none !important; } } - -@media screen and (min-width: 1408px) { - .is-hidden-fullhd { - display: none !important; } } - -.is-invisible { - visibility: hidden !important; } - -@media screen and (max-width: 768px) { - .is-invisible-mobile { - visibility: hidden !important; } } - -@media screen and (min-width: 769px), print { - .is-invisible-tablet { - visibility: hidden !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-invisible-tablet-only { - visibility: hidden !important; } } - -@media screen and (max-width: 1055px) { - .is-invisible-touch { - visibility: hidden !important; } } - -@media screen and (min-width: 1056px) { - .is-invisible-desktop { - visibility: hidden !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-invisible-desktop-only { - visibility: hidden !important; } } - -@media screen and (min-width: 1216px) { - .is-invisible-widescreen { - visibility: hidden !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-invisible-widescreen-only { - visibility: hidden !important; } } - -@media screen and (min-width: 1408px) { - .is-invisible-fullhd { - visibility: hidden !important; } } - -.is-marginless { - margin: 0 !important; } - -.is-paddingless { - padding: 0 !important; } - -.is-radiusless { - border-radius: 0 !important; } - -.is-shadowless { - box-shadow: none !important; } - -.is-relative { - position: relative !important; } - -html.theme--documenter-dark { - /* This file contain the overall layout. - * - * The main container is
    that is identified by id #documenter. - */ - /*! - Theme: a11y-dark - Author: @ericwbailey - Maintainer: @ericwbailey - - Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css -*/ - /* Comment */ - /* Red */ - /* Orange */ - /* Yellow */ - /* Green */ - /* Blue */ - /* Purple */ } - html.theme--documenter-dark html { - background-color: #1f2424; - font-size: 16px; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - min-width: 300px; - overflow-x: auto; - overflow-y: scroll; - text-rendering: optimizeLegibility; - text-size-adjust: 100%; } - html.theme--documenter-dark article, - html.theme--documenter-dark aside, - html.theme--documenter-dark figure, - html.theme--documenter-dark footer, - html.theme--documenter-dark header, - html.theme--documenter-dark hgroup, - html.theme--documenter-dark section { - display: block; } - html.theme--documenter-dark body, - html.theme--documenter-dark button, - html.theme--documenter-dark input, - html.theme--documenter-dark select, - html.theme--documenter-dark textarea { - font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } - html.theme--documenter-dark code, - html.theme--documenter-dark pre { - -moz-osx-font-smoothing: auto; - -webkit-font-smoothing: auto; - font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace; } - html.theme--documenter-dark body { - color: #fff; - font-size: 1em; - font-weight: 400; - line-height: 1.5; } - html.theme--documenter-dark a { - color: #1abc9c; - cursor: pointer; - text-decoration: none; } - html.theme--documenter-dark a strong { - color: currentColor; } - html.theme--documenter-dark a:hover { - color: #1dd2af; } - html.theme--documenter-dark code { - background-color: rgba(255, 255, 255, 0.05); - color: #e74c3c; - font-size: 0.875em; - font-weight: normal; - padding: 0.1em; } - html.theme--documenter-dark hr { - background-color: #282f2f; - border: none; - display: block; - height: 2px; - margin: 1.5rem 0; } - html.theme--documenter-dark img { - height: auto; - max-width: 100%; } - html.theme--documenter-dark input[type="checkbox"], - html.theme--documenter-dark input[type="radio"] { - vertical-align: baseline; } - html.theme--documenter-dark small { - font-size: 0.875em; } - html.theme--documenter-dark span { - font-style: inherit; - font-weight: inherit; } - html.theme--documenter-dark strong { - color: #f2f2f2; - font-weight: 700; } - html.theme--documenter-dark fieldset { - border: none; } - html.theme--documenter-dark pre { - -webkit-overflow-scrolling: touch; - background-color: #282f2f; - color: #fff; - font-size: 0.875em; - overflow-x: auto; - padding: 1.25rem 1.5rem; - white-space: pre; - word-wrap: normal; } - html.theme--documenter-dark pre code { - background-color: transparent; - color: currentColor; - font-size: 1em; - padding: 0; } - html.theme--documenter-dark table td, - html.theme--documenter-dark table th { - vertical-align: top; } - html.theme--documenter-dark table td:not([align]), - html.theme--documenter-dark table th:not([align]) { - text-align: left; } - html.theme--documenter-dark table th { - color: #f2f2f2; } - html.theme--documenter-dark .box { - background-color: #343c3d; - border-radius: 8px; - box-shadow: none; - color: #fff; - display: block; - padding: 1.25rem; } - html.theme--documenter-dark a.box:hover, html.theme--documenter-dark a.box:focus { - box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #1abc9c; } - html.theme--documenter-dark a.box:active { - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #1abc9c; } - html.theme--documenter-dark .button { - background-color: #282f2f; - border-color: #4c5759; - border-width: 1px; - color: #375a7f; - cursor: pointer; - justify-content: center; - padding-bottom: calc(0.375em - 1px); - padding-left: 0.75em; - padding-right: 0.75em; - padding-top: calc(0.375em - 1px); - text-align: center; - white-space: nowrap; } - html.theme--documenter-dark .button strong { - color: inherit; } - html.theme--documenter-dark .button .icon, html.theme--documenter-dark .button .icon.is-small, html.theme--documenter-dark .button #documenter .docs-sidebar form.docs-search > input.icon, html.theme--documenter-dark #documenter .docs-sidebar .button form.docs-search > input.icon, html.theme--documenter-dark .button .icon.is-medium, html.theme--documenter-dark .button .icon.is-large { - height: 1.5em; - width: 1.5em; } - html.theme--documenter-dark .button .icon:first-child:not(:last-child) { - margin-left: calc(-0.375em - 1px); - margin-right: 0.1875em; } - html.theme--documenter-dark .button .icon:last-child:not(:first-child) { - margin-left: 0.1875em; - margin-right: calc(-0.375em - 1px); } - html.theme--documenter-dark .button .icon:first-child:last-child { - margin-left: calc(-0.375em - 1px); - margin-right: calc(-0.375em - 1px); } - html.theme--documenter-dark .button:hover, html.theme--documenter-dark .button.is-hovered { - border-color: #8c9b9d; - color: #f2f2f2; } - html.theme--documenter-dark .button:focus, html.theme--documenter-dark .button.is-focused { - border-color: #8c9b9d; - color: #17a689; } - html.theme--documenter-dark .button:focus:not(:active), html.theme--documenter-dark .button.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(26, 188, 156, 0.25); } - html.theme--documenter-dark .button:active, html.theme--documenter-dark .button.is-active { - border-color: #343c3d; - color: #f2f2f2; } - html.theme--documenter-dark .button.is-text { - background-color: transparent; - border-color: transparent; - color: #fff; - text-decoration: underline; } - html.theme--documenter-dark .button.is-text:hover, html.theme--documenter-dark .button.is-text.is-hovered, html.theme--documenter-dark .button.is-text:focus, html.theme--documenter-dark .button.is-text.is-focused { - background-color: #282f2f; - color: #f2f2f2; } - html.theme--documenter-dark .button.is-text:active, html.theme--documenter-dark .button.is-text.is-active { - background-color: #1d2122; - color: #f2f2f2; } - html.theme--documenter-dark .button.is-text[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-text { - background-color: transparent; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-white { - background-color: white; - border-color: transparent; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-white:hover, html.theme--documenter-dark .button.is-white.is-hovered { - background-color: #f9f9f9; - border-color: transparent; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-white:focus, html.theme--documenter-dark .button.is-white.is-focused { - border-color: transparent; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-white:focus:not(:active), html.theme--documenter-dark .button.is-white.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } - html.theme--documenter-dark .button.is-white:active, html.theme--documenter-dark .button.is-white.is-active { - background-color: #f2f2f2; - border-color: transparent; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-white[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-white { - background-color: white; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-white.is-inverted { - background-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .button.is-white.is-inverted:hover, html.theme--documenter-dark .button.is-white.is-inverted.is-hovered { - background-color: black; } - html.theme--documenter-dark .button.is-white.is-inverted[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-white.is-inverted { - background-color: #0a0a0a; - border-color: transparent; - box-shadow: none; - color: white; } - html.theme--documenter-dark .button.is-white.is-loading::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; } - html.theme--documenter-dark .button.is-white.is-outlined { - background-color: transparent; - border-color: white; - color: white; } - html.theme--documenter-dark .button.is-white.is-outlined:hover, html.theme--documenter-dark .button.is-white.is-outlined.is-hovered, html.theme--documenter-dark .button.is-white.is-outlined:focus, html.theme--documenter-dark .button.is-white.is-outlined.is-focused { - background-color: white; - border-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-white.is-outlined.is-loading::after { - border-color: transparent transparent white white !important; } - html.theme--documenter-dark .button.is-white.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-white.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-white.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-white.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; } - html.theme--documenter-dark .button.is-white.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-white.is-outlined { - background-color: transparent; - border-color: white; - box-shadow: none; - color: white; } - html.theme--documenter-dark .button.is-white.is-inverted.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-white.is-inverted.is-outlined:hover, html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .button.is-white.is-inverted.is-outlined:focus, html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-focused { - background-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent white white !important; } - html.theme--documenter-dark .button.is-white.is-inverted.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-white.is-inverted.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - box-shadow: none; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-black { - background-color: #0a0a0a; - border-color: transparent; - color: white; } - html.theme--documenter-dark .button.is-black:hover, html.theme--documenter-dark .button.is-black.is-hovered { - background-color: #040404; - border-color: transparent; - color: white; } - html.theme--documenter-dark .button.is-black:focus, html.theme--documenter-dark .button.is-black.is-focused { - border-color: transparent; - color: white; } - html.theme--documenter-dark .button.is-black:focus:not(:active), html.theme--documenter-dark .button.is-black.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } - html.theme--documenter-dark .button.is-black:active, html.theme--documenter-dark .button.is-black.is-active { - background-color: black; - border-color: transparent; - color: white; } - html.theme--documenter-dark .button.is-black[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-black { - background-color: #0a0a0a; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-black.is-inverted { - background-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-black.is-inverted:hover, html.theme--documenter-dark .button.is-black.is-inverted.is-hovered { - background-color: #f2f2f2; } - html.theme--documenter-dark .button.is-black.is-inverted[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-black.is-inverted { - background-color: white; - border-color: transparent; - box-shadow: none; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-black.is-loading::after { - border-color: transparent transparent white white !important; } - html.theme--documenter-dark .button.is-black.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-black.is-outlined:hover, html.theme--documenter-dark .button.is-black.is-outlined.is-hovered, html.theme--documenter-dark .button.is-black.is-outlined:focus, html.theme--documenter-dark .button.is-black.is-outlined.is-focused { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .button.is-black.is-outlined.is-loading::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; } - html.theme--documenter-dark .button.is-black.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-black.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-black.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-black.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent white white !important; } - html.theme--documenter-dark .button.is-black.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-black.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - box-shadow: none; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-black.is-inverted.is-outlined { - background-color: transparent; - border-color: white; - color: white; } - html.theme--documenter-dark .button.is-black.is-inverted.is-outlined:hover, html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .button.is-black.is-inverted.is-outlined:focus, html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-focused { - background-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; } - html.theme--documenter-dark .button.is-black.is-inverted.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-black.is-inverted.is-outlined { - background-color: transparent; - border-color: white; - box-shadow: none; - color: white; } - html.theme--documenter-dark .button.is-light { - background-color: #ecf0f1; - border-color: transparent; - color: #282f2f; } - html.theme--documenter-dark .button.is-light:hover, html.theme--documenter-dark .button.is-light.is-hovered { - background-color: #e5eaec; - border-color: transparent; - color: #282f2f; } - html.theme--documenter-dark .button.is-light:focus, html.theme--documenter-dark .button.is-light.is-focused { - border-color: transparent; - color: #282f2f; } - html.theme--documenter-dark .button.is-light:focus:not(:active), html.theme--documenter-dark .button.is-light.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(236, 240, 241, 0.25); } - html.theme--documenter-dark .button.is-light:active, html.theme--documenter-dark .button.is-light.is-active { - background-color: #dde4e6; - border-color: transparent; - color: #282f2f; } - html.theme--documenter-dark .button.is-light[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-light { - background-color: #ecf0f1; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-light.is-inverted { - background-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-light.is-inverted:hover, html.theme--documenter-dark .button.is-light.is-inverted.is-hovered { - background-color: #1d2122; } - html.theme--documenter-dark .button.is-light.is-inverted[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-light.is-inverted { - background-color: #282f2f; - border-color: transparent; - box-shadow: none; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-light.is-loading::after { - border-color: transparent transparent #282f2f #282f2f !important; } - html.theme--documenter-dark .button.is-light.is-outlined { - background-color: transparent; - border-color: #ecf0f1; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-light.is-outlined:hover, html.theme--documenter-dark .button.is-light.is-outlined.is-hovered, html.theme--documenter-dark .button.is-light.is-outlined:focus, html.theme--documenter-dark .button.is-light.is-outlined.is-focused { - background-color: #ecf0f1; - border-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .button.is-light.is-outlined.is-loading::after { - border-color: transparent transparent #ecf0f1 #ecf0f1 !important; } - html.theme--documenter-dark .button.is-light.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-light.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-light.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-light.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #282f2f #282f2f !important; } - html.theme--documenter-dark .button.is-light.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-light.is-outlined { - background-color: transparent; - border-color: #ecf0f1; - box-shadow: none; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-light.is-inverted.is-outlined { - background-color: transparent; - border-color: #282f2f; - color: #282f2f; } - html.theme--documenter-dark .button.is-light.is-inverted.is-outlined:hover, html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .button.is-light.is-inverted.is-outlined:focus, html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-focused { - background-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #ecf0f1 #ecf0f1 !important; } - html.theme--documenter-dark .button.is-light.is-inverted.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-light.is-inverted.is-outlined { - background-color: transparent; - border-color: #282f2f; - box-shadow: none; - color: #282f2f; } - html.theme--documenter-dark .button.is-dark, html.theme--documenter-dark .content kbd.button { - background-color: #282f2f; - border-color: transparent; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-dark:hover, html.theme--documenter-dark .content kbd.button:hover, html.theme--documenter-dark .button.is-dark.is-hovered, html.theme--documenter-dark .content kbd.button.is-hovered { - background-color: #232829; - border-color: transparent; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-dark:focus, html.theme--documenter-dark .content kbd.button:focus, html.theme--documenter-dark .button.is-dark.is-focused, html.theme--documenter-dark .content kbd.button.is-focused { - border-color: transparent; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-dark:focus:not(:active), html.theme--documenter-dark .content kbd.button:focus:not(:active), html.theme--documenter-dark .button.is-dark.is-focused:not(:active), html.theme--documenter-dark .content kbd.button.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(40, 47, 47, 0.25); } - html.theme--documenter-dark .button.is-dark:active, html.theme--documenter-dark .content kbd.button:active, html.theme--documenter-dark .button.is-dark.is-active, html.theme--documenter-dark .content kbd.button.is-active { - background-color: #1d2122; - border-color: transparent; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-dark[disabled], html.theme--documenter-dark .content kbd.button[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-dark, - fieldset[disabled] html.theme--documenter-dark .content kbd.button { - background-color: #282f2f; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-dark.is-inverted, html.theme--documenter-dark .content kbd.button.is-inverted { - background-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .button.is-dark.is-inverted:hover, html.theme--documenter-dark .content kbd.button.is-inverted:hover, html.theme--documenter-dark .button.is-dark.is-inverted.is-hovered, html.theme--documenter-dark .content kbd.button.is-inverted.is-hovered { - background-color: #dde4e6; } - html.theme--documenter-dark .button.is-dark.is-inverted[disabled], html.theme--documenter-dark .content kbd.button.is-inverted[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-inverted, - fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-inverted { - background-color: #ecf0f1; - border-color: transparent; - box-shadow: none; - color: #282f2f; } - html.theme--documenter-dark .button.is-dark.is-loading::after, html.theme--documenter-dark .content kbd.button.is-loading::after { - border-color: transparent transparent #ecf0f1 #ecf0f1 !important; } - html.theme--documenter-dark .button.is-dark.is-outlined, html.theme--documenter-dark .content kbd.button.is-outlined { - background-color: transparent; - border-color: #282f2f; - color: #282f2f; } - html.theme--documenter-dark .button.is-dark.is-outlined:hover, html.theme--documenter-dark .content kbd.button.is-outlined:hover, html.theme--documenter-dark .button.is-dark.is-outlined.is-hovered, html.theme--documenter-dark .content kbd.button.is-outlined.is-hovered, html.theme--documenter-dark .button.is-dark.is-outlined:focus, html.theme--documenter-dark .content kbd.button.is-outlined:focus, html.theme--documenter-dark .button.is-dark.is-outlined.is-focused, html.theme--documenter-dark .content kbd.button.is-outlined.is-focused { - background-color: #282f2f; - border-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-dark.is-outlined.is-loading::after, html.theme--documenter-dark .content kbd.button.is-outlined.is-loading::after { - border-color: transparent transparent #282f2f #282f2f !important; } - html.theme--documenter-dark .button.is-dark.is-outlined.is-loading:hover::after, html.theme--documenter-dark .content kbd.button.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-dark.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .content kbd.button.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-dark.is-outlined.is-loading:focus::after, html.theme--documenter-dark .content kbd.button.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-dark.is-outlined.is-loading.is-focused::after, html.theme--documenter-dark .content kbd.button.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #ecf0f1 #ecf0f1 !important; } - html.theme--documenter-dark .button.is-dark.is-outlined[disabled], html.theme--documenter-dark .content kbd.button.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-outlined, - fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-outlined { - background-color: transparent; - border-color: #282f2f; - box-shadow: none; - color: #282f2f; } - html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined, html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined { - background-color: transparent; - border-color: #ecf0f1; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined:hover, html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined:hover, html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined:focus, html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined:focus, html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-focused, html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-focused { - background-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after, html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #282f2f #282f2f !important; } - html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined[disabled], html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-dark.is-inverted.is-outlined, - fieldset[disabled] html.theme--documenter-dark .content kbd.button.is-inverted.is-outlined { - background-color: transparent; - border-color: #ecf0f1; - box-shadow: none; - color: #ecf0f1; } - html.theme--documenter-dark .button.is-primary, html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink { - background-color: #375a7f; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-primary:hover, html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink:hover, html.theme--documenter-dark .button.is-primary.is-hovered, html.theme--documenter-dark .docstring > section > a.button.is-hovered.docs-sourcelink { - background-color: #335476; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-primary:focus, html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink:focus, html.theme--documenter-dark .button.is-primary.is-focused, html.theme--documenter-dark .docstring > section > a.button.is-focused.docs-sourcelink { - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-primary:focus:not(:active), html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink:focus:not(:active), html.theme--documenter-dark .button.is-primary.is-focused:not(:active), html.theme--documenter-dark .docstring > section > a.button.is-focused.docs-sourcelink:not(:active) { - box-shadow: 0 0 0 0.125em rgba(55, 90, 127, 0.25); } - html.theme--documenter-dark .button.is-primary:active, html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink:active, html.theme--documenter-dark .button.is-primary.is-active, html.theme--documenter-dark .docstring > section > a.button.is-active.docs-sourcelink { - background-color: #2f4d6d; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-primary[disabled], html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-primary, - fieldset[disabled] html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink { - background-color: #375a7f; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-primary.is-inverted, html.theme--documenter-dark .docstring > section > a.button.is-inverted.docs-sourcelink { - background-color: #fff; - color: #375a7f; } - html.theme--documenter-dark .button.is-primary.is-inverted:hover, html.theme--documenter-dark .docstring > section > a.button.is-inverted.docs-sourcelink:hover, html.theme--documenter-dark .button.is-primary.is-inverted.is-hovered, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-hovered.docs-sourcelink { - background-color: #f2f2f2; } - html.theme--documenter-dark .button.is-primary.is-inverted[disabled], html.theme--documenter-dark .docstring > section > a.button.is-inverted.docs-sourcelink[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-inverted, - fieldset[disabled] html.theme--documenter-dark .docstring > section > a.button.is-inverted.docs-sourcelink { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #375a7f; } - html.theme--documenter-dark .button.is-primary.is-loading::after, html.theme--documenter-dark .docstring > section > a.button.is-loading.docs-sourcelink::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-primary.is-outlined, html.theme--documenter-dark .docstring > section > a.button.is-outlined.docs-sourcelink { - background-color: transparent; - border-color: #375a7f; - color: #375a7f; } - html.theme--documenter-dark .button.is-primary.is-outlined:hover, html.theme--documenter-dark .docstring > section > a.button.is-outlined.docs-sourcelink:hover, html.theme--documenter-dark .button.is-primary.is-outlined.is-hovered, html.theme--documenter-dark .docstring > section > a.button.is-outlined.is-hovered.docs-sourcelink, html.theme--documenter-dark .button.is-primary.is-outlined:focus, html.theme--documenter-dark .docstring > section > a.button.is-outlined.docs-sourcelink:focus, html.theme--documenter-dark .button.is-primary.is-outlined.is-focused, html.theme--documenter-dark .docstring > section > a.button.is-outlined.is-focused.docs-sourcelink { - background-color: #375a7f; - border-color: #375a7f; - color: #fff; } - html.theme--documenter-dark .button.is-primary.is-outlined.is-loading::after, html.theme--documenter-dark .docstring > section > a.button.is-outlined.is-loading.docs-sourcelink::after { - border-color: transparent transparent #375a7f #375a7f !important; } - html.theme--documenter-dark .button.is-primary.is-outlined.is-loading:hover::after, html.theme--documenter-dark .docstring > section > a.button.is-outlined.is-loading.docs-sourcelink:hover::after, html.theme--documenter-dark .button.is-primary.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .docstring > section > a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after, html.theme--documenter-dark .button.is-primary.is-outlined.is-loading:focus::after, html.theme--documenter-dark .docstring > section > a.button.is-outlined.is-loading.docs-sourcelink:focus::after, html.theme--documenter-dark .button.is-primary.is-outlined.is-loading.is-focused::after, html.theme--documenter-dark .docstring > section > a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-primary.is-outlined[disabled], html.theme--documenter-dark .docstring > section > a.button.is-outlined.docs-sourcelink[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-outlined, - fieldset[disabled] html.theme--documenter-dark .docstring > section > a.button.is-outlined.docs-sourcelink { - background-color: transparent; - border-color: #375a7f; - box-shadow: none; - color: #375a7f; } - html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink { - background-color: transparent; - border-color: #fff; - color: #fff; } - html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined:hover, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink:hover, html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink, html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined:focus, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink:focus, html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-focused, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.is-focused.docs-sourcelink { - background-color: #fff; - color: #375a7f; } - html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after, html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after, html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after, html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after, html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after { - border-color: transparent transparent #375a7f #375a7f !important; } - html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined[disabled], html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-primary.is-inverted.is-outlined, - fieldset[disabled] html.theme--documenter-dark .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - html.theme--documenter-dark .button.is-link { - background-color: #1abc9c; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-link:hover, html.theme--documenter-dark .button.is-link.is-hovered { - background-color: #18b193; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-link:focus, html.theme--documenter-dark .button.is-link.is-focused { - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-link:focus:not(:active), html.theme--documenter-dark .button.is-link.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(26, 188, 156, 0.25); } - html.theme--documenter-dark .button.is-link:active, html.theme--documenter-dark .button.is-link.is-active { - background-color: #17a689; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-link[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-link { - background-color: #1abc9c; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-link.is-inverted { - background-color: #fff; - color: #1abc9c; } - html.theme--documenter-dark .button.is-link.is-inverted:hover, html.theme--documenter-dark .button.is-link.is-inverted.is-hovered { - background-color: #f2f2f2; } - html.theme--documenter-dark .button.is-link.is-inverted[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-link.is-inverted { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #1abc9c; } - html.theme--documenter-dark .button.is-link.is-loading::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-link.is-outlined { - background-color: transparent; - border-color: #1abc9c; - color: #1abc9c; } - html.theme--documenter-dark .button.is-link.is-outlined:hover, html.theme--documenter-dark .button.is-link.is-outlined.is-hovered, html.theme--documenter-dark .button.is-link.is-outlined:focus, html.theme--documenter-dark .button.is-link.is-outlined.is-focused { - background-color: #1abc9c; - border-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .button.is-link.is-outlined.is-loading::after { - border-color: transparent transparent #1abc9c #1abc9c !important; } - html.theme--documenter-dark .button.is-link.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-link.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-link.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-link.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-link.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-link.is-outlined { - background-color: transparent; - border-color: #1abc9c; - box-shadow: none; - color: #1abc9c; } - html.theme--documenter-dark .button.is-link.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; } - html.theme--documenter-dark .button.is-link.is-inverted.is-outlined:hover, html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .button.is-link.is-inverted.is-outlined:focus, html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #1abc9c; } - html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #1abc9c #1abc9c !important; } - html.theme--documenter-dark .button.is-link.is-inverted.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-link.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - html.theme--documenter-dark .button.is-info { - background-color: #024c7d; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-info:hover, html.theme--documenter-dark .button.is-info.is-hovered { - background-color: #024470; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-info:focus, html.theme--documenter-dark .button.is-info.is-focused { - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-info:focus:not(:active), html.theme--documenter-dark .button.is-info.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(2, 76, 125, 0.25); } - html.theme--documenter-dark .button.is-info:active, html.theme--documenter-dark .button.is-info.is-active { - background-color: #023d64; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-info[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-info { - background-color: #024c7d; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-info.is-inverted { - background-color: #fff; - color: #024c7d; } - html.theme--documenter-dark .button.is-info.is-inverted:hover, html.theme--documenter-dark .button.is-info.is-inverted.is-hovered { - background-color: #f2f2f2; } - html.theme--documenter-dark .button.is-info.is-inverted[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-info.is-inverted { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #024c7d; } - html.theme--documenter-dark .button.is-info.is-loading::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-info.is-outlined { - background-color: transparent; - border-color: #024c7d; - color: #024c7d; } - html.theme--documenter-dark .button.is-info.is-outlined:hover, html.theme--documenter-dark .button.is-info.is-outlined.is-hovered, html.theme--documenter-dark .button.is-info.is-outlined:focus, html.theme--documenter-dark .button.is-info.is-outlined.is-focused { - background-color: #024c7d; - border-color: #024c7d; - color: #fff; } - html.theme--documenter-dark .button.is-info.is-outlined.is-loading::after { - border-color: transparent transparent #024c7d #024c7d !important; } - html.theme--documenter-dark .button.is-info.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-info.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-info.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-info.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-info.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-info.is-outlined { - background-color: transparent; - border-color: #024c7d; - box-shadow: none; - color: #024c7d; } - html.theme--documenter-dark .button.is-info.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; } - html.theme--documenter-dark .button.is-info.is-inverted.is-outlined:hover, html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .button.is-info.is-inverted.is-outlined:focus, html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #024c7d; } - html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #024c7d #024c7d !important; } - html.theme--documenter-dark .button.is-info.is-inverted.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-info.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - html.theme--documenter-dark .button.is-success { - background-color: #008438; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-success:hover, html.theme--documenter-dark .button.is-success.is-hovered { - background-color: #007733; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-success:focus, html.theme--documenter-dark .button.is-success.is-focused { - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-success:focus:not(:active), html.theme--documenter-dark .button.is-success.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(0, 132, 56, 0.25); } - html.theme--documenter-dark .button.is-success:active, html.theme--documenter-dark .button.is-success.is-active { - background-color: #006b2d; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-success[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-success { - background-color: #008438; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-success.is-inverted { - background-color: #fff; - color: #008438; } - html.theme--documenter-dark .button.is-success.is-inverted:hover, html.theme--documenter-dark .button.is-success.is-inverted.is-hovered { - background-color: #f2f2f2; } - html.theme--documenter-dark .button.is-success.is-inverted[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-success.is-inverted { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #008438; } - html.theme--documenter-dark .button.is-success.is-loading::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-success.is-outlined { - background-color: transparent; - border-color: #008438; - color: #008438; } - html.theme--documenter-dark .button.is-success.is-outlined:hover, html.theme--documenter-dark .button.is-success.is-outlined.is-hovered, html.theme--documenter-dark .button.is-success.is-outlined:focus, html.theme--documenter-dark .button.is-success.is-outlined.is-focused { - background-color: #008438; - border-color: #008438; - color: #fff; } - html.theme--documenter-dark .button.is-success.is-outlined.is-loading::after { - border-color: transparent transparent #008438 #008438 !important; } - html.theme--documenter-dark .button.is-success.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-success.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-success.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-success.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-success.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-success.is-outlined { - background-color: transparent; - border-color: #008438; - box-shadow: none; - color: #008438; } - html.theme--documenter-dark .button.is-success.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; } - html.theme--documenter-dark .button.is-success.is-inverted.is-outlined:hover, html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .button.is-success.is-inverted.is-outlined:focus, html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #008438; } - html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #008438 #008438 !important; } - html.theme--documenter-dark .button.is-success.is-inverted.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-success.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - html.theme--documenter-dark .button.is-warning { - background-color: #ad8100; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-warning:hover, html.theme--documenter-dark .button.is-warning.is-hovered { - background-color: #a07700; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-warning:focus, html.theme--documenter-dark .button.is-warning.is-focused { - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-warning:focus:not(:active), html.theme--documenter-dark .button.is-warning.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(173, 129, 0, 0.25); } - html.theme--documenter-dark .button.is-warning:active, html.theme--documenter-dark .button.is-warning.is-active { - background-color: #946e00; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-warning[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-warning { - background-color: #ad8100; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-warning.is-inverted { - background-color: #fff; - color: #ad8100; } - html.theme--documenter-dark .button.is-warning.is-inverted:hover, html.theme--documenter-dark .button.is-warning.is-inverted.is-hovered { - background-color: #f2f2f2; } - html.theme--documenter-dark .button.is-warning.is-inverted[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-inverted { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #ad8100; } - html.theme--documenter-dark .button.is-warning.is-loading::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-warning.is-outlined { - background-color: transparent; - border-color: #ad8100; - color: #ad8100; } - html.theme--documenter-dark .button.is-warning.is-outlined:hover, html.theme--documenter-dark .button.is-warning.is-outlined.is-hovered, html.theme--documenter-dark .button.is-warning.is-outlined:focus, html.theme--documenter-dark .button.is-warning.is-outlined.is-focused { - background-color: #ad8100; - border-color: #ad8100; - color: #fff; } - html.theme--documenter-dark .button.is-warning.is-outlined.is-loading::after { - border-color: transparent transparent #ad8100 #ad8100 !important; } - html.theme--documenter-dark .button.is-warning.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-warning.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-warning.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-warning.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-warning.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-outlined { - background-color: transparent; - border-color: #ad8100; - box-shadow: none; - color: #ad8100; } - html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; } - html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined:hover, html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined:focus, html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #ad8100; } - html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #ad8100 #ad8100 !important; } - html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-warning.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - html.theme--documenter-dark .button.is-danger { - background-color: #9e1b0d; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-danger:hover, html.theme--documenter-dark .button.is-danger.is-hovered { - background-color: #92190c; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-danger:focus, html.theme--documenter-dark .button.is-danger.is-focused { - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-danger:focus:not(:active), html.theme--documenter-dark .button.is-danger.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(158, 27, 13, 0.25); } - html.theme--documenter-dark .button.is-danger:active, html.theme--documenter-dark .button.is-danger.is-active { - background-color: #86170b; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .button.is-danger[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-danger { - background-color: #9e1b0d; - border-color: transparent; - box-shadow: none; } - html.theme--documenter-dark .button.is-danger.is-inverted { - background-color: #fff; - color: #9e1b0d; } - html.theme--documenter-dark .button.is-danger.is-inverted:hover, html.theme--documenter-dark .button.is-danger.is-inverted.is-hovered { - background-color: #f2f2f2; } - html.theme--documenter-dark .button.is-danger.is-inverted[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-inverted { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #9e1b0d; } - html.theme--documenter-dark .button.is-danger.is-loading::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-danger.is-outlined { - background-color: transparent; - border-color: #9e1b0d; - color: #9e1b0d; } - html.theme--documenter-dark .button.is-danger.is-outlined:hover, html.theme--documenter-dark .button.is-danger.is-outlined.is-hovered, html.theme--documenter-dark .button.is-danger.is-outlined:focus, html.theme--documenter-dark .button.is-danger.is-outlined.is-focused { - background-color: #9e1b0d; - border-color: #9e1b0d; - color: #fff; } - html.theme--documenter-dark .button.is-danger.is-outlined.is-loading::after { - border-color: transparent transparent #9e1b0d #9e1b0d !important; } - html.theme--documenter-dark .button.is-danger.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-danger.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-danger.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-danger.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; } - html.theme--documenter-dark .button.is-danger.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-outlined { - background-color: transparent; - border-color: #9e1b0d; - box-shadow: none; - color: #9e1b0d; } - html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; } - html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined:hover, html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-hovered, html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined:focus, html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #9e1b0d; } - html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading:hover::after, html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after, html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading:focus::after, html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #9e1b0d #9e1b0d !important; } - html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined[disabled], - fieldset[disabled] html.theme--documenter-dark .button.is-danger.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - html.theme--documenter-dark .button.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.button { - border-radius: 3px; - font-size: 0.85em; } - html.theme--documenter-dark .button.is-normal { - font-size: 15px; } - html.theme--documenter-dark .button.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .button.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .button[disabled], - fieldset[disabled] html.theme--documenter-dark .button { - background-color: #8c9b9d; - border-color: #dbdee0; - box-shadow: none; - opacity: 0.5; } - html.theme--documenter-dark .button.is-fullwidth { - display: flex; - width: 100%; } - html.theme--documenter-dark .button.is-loading { - color: transparent !important; - pointer-events: none; } - html.theme--documenter-dark .button.is-loading::after { - position: absolute; - left: calc(50% - (1em / 2)); - top: calc(50% - (1em / 2)); - position: absolute !important; } - html.theme--documenter-dark .button.is-static { - background-color: #282f2f; - border-color: #5e6d6f; - color: #dbdee0; - box-shadow: none; - pointer-events: none; } - html.theme--documenter-dark .button.is-rounded, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.button { - border-radius: 290486px; - padding-left: 1em; - padding-right: 1em; } - html.theme--documenter-dark .buttons { - align-items: center; - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - html.theme--documenter-dark .buttons .button { - margin-bottom: 0.5rem; } - html.theme--documenter-dark .buttons .button:not(:last-child):not(.is-fullwidth) { - margin-right: 0.5rem; } - html.theme--documenter-dark .buttons:last-child { - margin-bottom: -0.5rem; } - html.theme--documenter-dark .buttons:not(:last-child) { - margin-bottom: 1rem; } - html.theme--documenter-dark .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) { - border-radius: 3px; - font-size: 0.85em; } - html.theme--documenter-dark .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) { - font-size: 1.25rem; } - html.theme--documenter-dark .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) { - font-size: 1.5rem; } - html.theme--documenter-dark .buttons.has-addons .button:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - html.theme--documenter-dark .buttons.has-addons .button:not(:last-child) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; - margin-right: -1px; } - html.theme--documenter-dark .buttons.has-addons .button:last-child { - margin-right: 0; } - html.theme--documenter-dark .buttons.has-addons .button:hover, html.theme--documenter-dark .buttons.has-addons .button.is-hovered { - z-index: 2; } - html.theme--documenter-dark .buttons.has-addons .button:focus, html.theme--documenter-dark .buttons.has-addons .button.is-focused, html.theme--documenter-dark .buttons.has-addons .button:active, html.theme--documenter-dark .buttons.has-addons .button.is-active, html.theme--documenter-dark .buttons.has-addons .button.is-selected { - z-index: 3; } - html.theme--documenter-dark .buttons.has-addons .button:focus:hover, html.theme--documenter-dark .buttons.has-addons .button.is-focused:hover, html.theme--documenter-dark .buttons.has-addons .button:active:hover, html.theme--documenter-dark .buttons.has-addons .button.is-active:hover, html.theme--documenter-dark .buttons.has-addons .button.is-selected:hover { - z-index: 4; } - html.theme--documenter-dark .buttons.has-addons .button.is-expanded { - flex-grow: 1; - flex-shrink: 1; } - html.theme--documenter-dark .buttons.is-centered { - justify-content: center; } - html.theme--documenter-dark .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) { - margin-left: 0.25rem; - margin-right: 0.25rem; } - html.theme--documenter-dark .buttons.is-right { - justify-content: flex-end; } - html.theme--documenter-dark .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) { - margin-left: 0.25rem; - margin-right: 0.25rem; } - html.theme--documenter-dark .container { - flex-grow: 1; - margin: 0 auto; - position: relative; - width: auto; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .container { - max-width: 992px; } - html.theme--documenter-dark .container.is-fluid { - margin-left: 32px; - margin-right: 32px; - max-width: none; } } - @media screen and (max-width: 1215px) { - html.theme--documenter-dark .container.is-widescreen { - max-width: 1152px; } } - @media screen and (max-width: 1407px) { - html.theme--documenter-dark .container.is-fullhd { - max-width: 1344px; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .container { - max-width: 1152px; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .container { - max-width: 1344px; } } - html.theme--documenter-dark .content li + li { - margin-top: 0.25em; } - html.theme--documenter-dark .content p:not(:last-child), - html.theme--documenter-dark .content dl:not(:last-child), - html.theme--documenter-dark .content ol:not(:last-child), - html.theme--documenter-dark .content ul:not(:last-child), - html.theme--documenter-dark .content blockquote:not(:last-child), - html.theme--documenter-dark .content pre:not(:last-child), - html.theme--documenter-dark .content table:not(:last-child) { - margin-bottom: 1em; } - html.theme--documenter-dark .content h1, - html.theme--documenter-dark .content h2, - html.theme--documenter-dark .content h3, - html.theme--documenter-dark .content h4, - html.theme--documenter-dark .content h5, - html.theme--documenter-dark .content h6 { - color: #f2f2f2; - font-weight: 600; - line-height: 1.125; } - html.theme--documenter-dark .content h1 { - font-size: 2em; - margin-bottom: 0.5em; } - html.theme--documenter-dark .content h1:not(:first-child) { - margin-top: 1em; } - html.theme--documenter-dark .content h2 { - font-size: 1.75em; - margin-bottom: 0.5714em; } - html.theme--documenter-dark .content h2:not(:first-child) { - margin-top: 1.1428em; } - html.theme--documenter-dark .content h3 { - font-size: 1.5em; - margin-bottom: 0.6666em; } - html.theme--documenter-dark .content h3:not(:first-child) { - margin-top: 1.3333em; } - html.theme--documenter-dark .content h4 { - font-size: 1.25em; - margin-bottom: 0.8em; } - html.theme--documenter-dark .content h5 { - font-size: 1.125em; - margin-bottom: 0.8888em; } - html.theme--documenter-dark .content h6 { - font-size: 1em; - margin-bottom: 1em; } - html.theme--documenter-dark .content blockquote { - background-color: #282f2f; - border-left: 5px solid #5e6d6f; - padding: 1.25em 1.5em; } - html.theme--documenter-dark .content ol { - list-style-position: outside; - margin-left: 2em; - margin-top: 1em; } - html.theme--documenter-dark .content ol:not([type]) { - list-style-type: decimal; } - html.theme--documenter-dark .content ol:not([type]).is-lower-alpha { - list-style-type: lower-alpha; } - html.theme--documenter-dark .content ol:not([type]).is-lower-roman { - list-style-type: lower-roman; } - html.theme--documenter-dark .content ol:not([type]).is-upper-alpha { - list-style-type: upper-alpha; } - html.theme--documenter-dark .content ol:not([type]).is-upper-roman { - list-style-type: upper-roman; } - html.theme--documenter-dark .content ul { - list-style: disc outside; - margin-left: 2em; - margin-top: 1em; } - html.theme--documenter-dark .content ul ul { - list-style-type: circle; - margin-top: 0.5em; } - html.theme--documenter-dark .content ul ul ul { - list-style-type: square; } - html.theme--documenter-dark .content dd { - margin-left: 2em; } - html.theme--documenter-dark .content figure { - margin-left: 2em; - margin-right: 2em; - text-align: center; } - html.theme--documenter-dark .content figure:not(:first-child) { - margin-top: 2em; } - html.theme--documenter-dark .content figure:not(:last-child) { - margin-bottom: 2em; } - html.theme--documenter-dark .content figure img { - display: inline-block; } - html.theme--documenter-dark .content figure figcaption { - font-style: italic; } - html.theme--documenter-dark .content pre { - -webkit-overflow-scrolling: touch; - overflow-x: auto; - padding: 0.7rem 0.5rem; - white-space: pre; - word-wrap: normal; } - html.theme--documenter-dark .content sup, - html.theme--documenter-dark .content sub { - font-size: 75%; } - html.theme--documenter-dark .content table { - width: 100%; } - html.theme--documenter-dark .content table td, - html.theme--documenter-dark .content table th { - border: 1px solid #5e6d6f; - border-width: 0 0 1px; - padding: 0.5em 0.75em; - vertical-align: top; } - html.theme--documenter-dark .content table th { - color: #f2f2f2; } - html.theme--documenter-dark .content table th:not([align]) { - text-align: left; } - html.theme--documenter-dark .content table thead td, - html.theme--documenter-dark .content table thead th { - border-width: 0 0 2px; - color: #f2f2f2; } - html.theme--documenter-dark .content table tfoot td, - html.theme--documenter-dark .content table tfoot th { - border-width: 2px 0 0; - color: #f2f2f2; } - html.theme--documenter-dark .content table tbody tr:last-child td, - html.theme--documenter-dark .content table tbody tr:last-child th { - border-bottom-width: 0; } - html.theme--documenter-dark .content .tabs li + li { - margin-top: 0; } - html.theme--documenter-dark .content.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.content { - font-size: 0.85em; } - html.theme--documenter-dark .content.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .content.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .icon { - align-items: center; - display: inline-flex; - justify-content: center; - height: 1.5rem; - width: 1.5rem; } - html.theme--documenter-dark .icon.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.icon { - height: 1rem; - width: 1rem; } - html.theme--documenter-dark .icon.is-medium { - height: 2rem; - width: 2rem; } - html.theme--documenter-dark .icon.is-large { - height: 3rem; - width: 3rem; } - html.theme--documenter-dark .image, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img { - display: block; - position: relative; } - html.theme--documenter-dark .image img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img img { - display: block; - height: auto; - width: 100%; } - html.theme--documenter-dark .image img.is-rounded, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img img.is-rounded { - border-radius: 290486px; } - html.theme--documenter-dark .image.is-square img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-square img, - html.theme--documenter-dark .image.is-square .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-square .has-ratio, html.theme--documenter-dark .image.is-1by1 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by1 img, - html.theme--documenter-dark .image.is-1by1 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by1 .has-ratio, html.theme--documenter-dark .image.is-5by4 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by4 img, - html.theme--documenter-dark .image.is-5by4 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by4 .has-ratio, html.theme--documenter-dark .image.is-4by3 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by3 img, - html.theme--documenter-dark .image.is-4by3 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by3 .has-ratio, html.theme--documenter-dark .image.is-3by2 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by2 img, - html.theme--documenter-dark .image.is-3by2 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by2 .has-ratio, html.theme--documenter-dark .image.is-5by3 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by3 img, - html.theme--documenter-dark .image.is-5by3 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by3 .has-ratio, html.theme--documenter-dark .image.is-16by9 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-16by9 img, - html.theme--documenter-dark .image.is-16by9 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-16by9 .has-ratio, html.theme--documenter-dark .image.is-2by1 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by1 img, - html.theme--documenter-dark .image.is-2by1 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by1 .has-ratio, html.theme--documenter-dark .image.is-3by1 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by1 img, - html.theme--documenter-dark .image.is-3by1 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by1 .has-ratio, html.theme--documenter-dark .image.is-4by5 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by5 img, - html.theme--documenter-dark .image.is-4by5 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by5 .has-ratio, html.theme--documenter-dark .image.is-3by4 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by4 img, - html.theme--documenter-dark .image.is-3by4 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by4 .has-ratio, html.theme--documenter-dark .image.is-2by3 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by3 img, - html.theme--documenter-dark .image.is-2by3 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by3 .has-ratio, html.theme--documenter-dark .image.is-3by5 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by5 img, - html.theme--documenter-dark .image.is-3by5 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by5 .has-ratio, html.theme--documenter-dark .image.is-9by16 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-9by16 img, - html.theme--documenter-dark .image.is-9by16 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-9by16 .has-ratio, html.theme--documenter-dark .image.is-1by2 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by2 img, - html.theme--documenter-dark .image.is-1by2 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by2 .has-ratio, html.theme--documenter-dark .image.is-1by3 img, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by3 img, - html.theme--documenter-dark .image.is-1by3 .has-ratio, - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by3 .has-ratio { - height: 100%; - width: 100%; } - html.theme--documenter-dark .image.is-square, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-square, html.theme--documenter-dark .image.is-1by1, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by1 { - padding-top: 100%; } - html.theme--documenter-dark .image.is-5by4, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by4 { - padding-top: 80%; } - html.theme--documenter-dark .image.is-4by3, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by3 { - padding-top: 75%; } - html.theme--documenter-dark .image.is-3by2, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by2 { - padding-top: 66.6666%; } - html.theme--documenter-dark .image.is-5by3, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-5by3 { - padding-top: 60%; } - html.theme--documenter-dark .image.is-16by9, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-16by9 { - padding-top: 56.25%; } - html.theme--documenter-dark .image.is-2by1, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by1 { - padding-top: 50%; } - html.theme--documenter-dark .image.is-3by1, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by1 { - padding-top: 33.3333%; } - html.theme--documenter-dark .image.is-4by5, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-4by5 { - padding-top: 125%; } - html.theme--documenter-dark .image.is-3by4, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by4 { - padding-top: 133.3333%; } - html.theme--documenter-dark .image.is-2by3, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-2by3 { - padding-top: 150%; } - html.theme--documenter-dark .image.is-3by5, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-3by5 { - padding-top: 166.6666%; } - html.theme--documenter-dark .image.is-9by16, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-9by16 { - padding-top: 177.7777%; } - html.theme--documenter-dark .image.is-1by2, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by2 { - padding-top: 200%; } - html.theme--documenter-dark .image.is-1by3, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-1by3 { - padding-top: 300%; } - html.theme--documenter-dark .image.is-16x16, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-16x16 { - height: 16px; - width: 16px; } - html.theme--documenter-dark .image.is-24x24, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-24x24 { - height: 24px; - width: 24px; } - html.theme--documenter-dark .image.is-32x32, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-32x32 { - height: 32px; - width: 32px; } - html.theme--documenter-dark .image.is-48x48, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-48x48 { - height: 48px; - width: 48px; } - html.theme--documenter-dark .image.is-64x64, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-64x64 { - height: 64px; - width: 64px; } - html.theme--documenter-dark .image.is-96x96, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-96x96 { - height: 96px; - width: 96px; } - html.theme--documenter-dark .image.is-128x128, html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img.is-128x128 { - height: 128px; - width: 128px; } - html.theme--documenter-dark .notification { - background-color: #282f2f; - border-radius: 0.4em; - padding: 1.25rem 2.5rem 1.25rem 1.5rem; - position: relative; } - html.theme--documenter-dark .notification a:not(.button):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; } - html.theme--documenter-dark .notification strong { - color: currentColor; } - html.theme--documenter-dark .notification code, - html.theme--documenter-dark .notification pre { - background: white; } - html.theme--documenter-dark .notification pre code { - background: transparent; } - html.theme--documenter-dark .notification > .delete { - position: absolute; - right: 0.5rem; - top: 0.5rem; } - html.theme--documenter-dark .notification .title, - html.theme--documenter-dark .notification .subtitle, - html.theme--documenter-dark .notification .content { - color: currentColor; } - html.theme--documenter-dark .notification.is-white { - background-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .notification.is-black { - background-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .notification.is-light { - background-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .notification.is-dark, html.theme--documenter-dark .content kbd.notification { - background-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .notification.is-primary, html.theme--documenter-dark .docstring > section > a.notification.docs-sourcelink { - background-color: #375a7f; - color: #fff; } - html.theme--documenter-dark .notification.is-link { - background-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .notification.is-info { - background-color: #024c7d; - color: #fff; } - html.theme--documenter-dark .notification.is-success { - background-color: #008438; - color: #fff; } - html.theme--documenter-dark .notification.is-warning { - background-color: #ad8100; - color: #fff; } - html.theme--documenter-dark .notification.is-danger { - background-color: #9e1b0d; - color: #fff; } - html.theme--documenter-dark .progress { - -moz-appearance: none; - -webkit-appearance: none; - border: none; - border-radius: 290486px; - display: block; - height: 15px; - overflow: hidden; - padding: 0; - width: 100%; } - html.theme--documenter-dark .progress::-webkit-progress-bar { - background-color: #5e6d6f; } - html.theme--documenter-dark .progress::-webkit-progress-value { - background-color: #dbdee0; } - html.theme--documenter-dark .progress::-moz-progress-bar { - background-color: #dbdee0; } - html.theme--documenter-dark .progress::-ms-fill { - background-color: #dbdee0; - border: none; } - html.theme--documenter-dark .progress.is-white::-webkit-progress-value { - background-color: white; } - html.theme--documenter-dark .progress.is-white::-moz-progress-bar { - background-color: white; } - html.theme--documenter-dark .progress.is-white::-ms-fill { - background-color: white; } - html.theme--documenter-dark .progress.is-white:indeterminate { - background-image: linear-gradient(to right, white 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress.is-black::-webkit-progress-value { - background-color: #0a0a0a; } - html.theme--documenter-dark .progress.is-black::-moz-progress-bar { - background-color: #0a0a0a; } - html.theme--documenter-dark .progress.is-black::-ms-fill { - background-color: #0a0a0a; } - html.theme--documenter-dark .progress.is-black:indeterminate { - background-image: linear-gradient(to right, #0a0a0a 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress.is-light::-webkit-progress-value { - background-color: #ecf0f1; } - html.theme--documenter-dark .progress.is-light::-moz-progress-bar { - background-color: #ecf0f1; } - html.theme--documenter-dark .progress.is-light::-ms-fill { - background-color: #ecf0f1; } - html.theme--documenter-dark .progress.is-light:indeterminate { - background-image: linear-gradient(to right, #ecf0f1 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress.is-dark::-webkit-progress-value, html.theme--documenter-dark .content kbd.progress::-webkit-progress-value { - background-color: #282f2f; } - html.theme--documenter-dark .progress.is-dark::-moz-progress-bar, html.theme--documenter-dark .content kbd.progress::-moz-progress-bar { - background-color: #282f2f; } - html.theme--documenter-dark .progress.is-dark::-ms-fill, html.theme--documenter-dark .content kbd.progress::-ms-fill { - background-color: #282f2f; } - html.theme--documenter-dark .progress.is-dark:indeterminate, html.theme--documenter-dark .content kbd.progress:indeterminate { - background-image: linear-gradient(to right, #282f2f 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress.is-primary::-webkit-progress-value, html.theme--documenter-dark .docstring > section > a.progress.docs-sourcelink::-webkit-progress-value { - background-color: #375a7f; } - html.theme--documenter-dark .progress.is-primary::-moz-progress-bar, html.theme--documenter-dark .docstring > section > a.progress.docs-sourcelink::-moz-progress-bar { - background-color: #375a7f; } - html.theme--documenter-dark .progress.is-primary::-ms-fill, html.theme--documenter-dark .docstring > section > a.progress.docs-sourcelink::-ms-fill { - background-color: #375a7f; } - html.theme--documenter-dark .progress.is-primary:indeterminate, html.theme--documenter-dark .docstring > section > a.progress.docs-sourcelink:indeterminate { - background-image: linear-gradient(to right, #375a7f 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress.is-link::-webkit-progress-value { - background-color: #1abc9c; } - html.theme--documenter-dark .progress.is-link::-moz-progress-bar { - background-color: #1abc9c; } - html.theme--documenter-dark .progress.is-link::-ms-fill { - background-color: #1abc9c; } - html.theme--documenter-dark .progress.is-link:indeterminate { - background-image: linear-gradient(to right, #1abc9c 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress.is-info::-webkit-progress-value { - background-color: #024c7d; } - html.theme--documenter-dark .progress.is-info::-moz-progress-bar { - background-color: #024c7d; } - html.theme--documenter-dark .progress.is-info::-ms-fill { - background-color: #024c7d; } - html.theme--documenter-dark .progress.is-info:indeterminate { - background-image: linear-gradient(to right, #024c7d 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress.is-success::-webkit-progress-value { - background-color: #008438; } - html.theme--documenter-dark .progress.is-success::-moz-progress-bar { - background-color: #008438; } - html.theme--documenter-dark .progress.is-success::-ms-fill { - background-color: #008438; } - html.theme--documenter-dark .progress.is-success:indeterminate { - background-image: linear-gradient(to right, #008438 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress.is-warning::-webkit-progress-value { - background-color: #ad8100; } - html.theme--documenter-dark .progress.is-warning::-moz-progress-bar { - background-color: #ad8100; } - html.theme--documenter-dark .progress.is-warning::-ms-fill { - background-color: #ad8100; } - html.theme--documenter-dark .progress.is-warning:indeterminate { - background-image: linear-gradient(to right, #ad8100 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress.is-danger::-webkit-progress-value { - background-color: #9e1b0d; } - html.theme--documenter-dark .progress.is-danger::-moz-progress-bar { - background-color: #9e1b0d; } - html.theme--documenter-dark .progress.is-danger::-ms-fill { - background-color: #9e1b0d; } - html.theme--documenter-dark .progress.is-danger:indeterminate { - background-image: linear-gradient(to right, #9e1b0d 30%, #5e6d6f 30%); } - html.theme--documenter-dark .progress:indeterminate { - animation-duration: 1.5s; - animation-iteration-count: infinite; - animation-name: moveIndeterminate; - animation-timing-function: linear; - background-color: #5e6d6f; - background-image: linear-gradient(to right, #fff 30%, #5e6d6f 30%); - background-position: top left; - background-repeat: no-repeat; - background-size: 150% 150%; } - html.theme--documenter-dark .progress:indeterminate::-webkit-progress-bar { - background-color: transparent; } - html.theme--documenter-dark .progress:indeterminate::-moz-progress-bar { - background-color: transparent; } - html.theme--documenter-dark .progress.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.progress { - height: 0.85em; } - html.theme--documenter-dark .progress.is-medium { - height: 1.25rem; } - html.theme--documenter-dark .progress.is-large { - height: 1.5rem; } - -@keyframes moveIndeterminate { - from { - background-position: 200% 0; } - to { - background-position: -200% 0; } } - html.theme--documenter-dark .table { - background-color: #343c3d; - color: #fff; } - html.theme--documenter-dark .table td, - html.theme--documenter-dark .table th { - border: 1px solid #5e6d6f; - border-width: 0 0 1px; - padding: 0.5em 0.75em; - vertical-align: top; } - html.theme--documenter-dark .table td.is-white, - html.theme--documenter-dark .table th.is-white { - background-color: white; - border-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .table td.is-black, - html.theme--documenter-dark .table th.is-black { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .table td.is-light, - html.theme--documenter-dark .table th.is-light { - background-color: #ecf0f1; - border-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .table td.is-dark, - html.theme--documenter-dark .table th.is-dark { - background-color: #282f2f; - border-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .table td.is-primary, - html.theme--documenter-dark .table th.is-primary { - background-color: #375a7f; - border-color: #375a7f; - color: #fff; } - html.theme--documenter-dark .table td.is-link, - html.theme--documenter-dark .table th.is-link { - background-color: #1abc9c; - border-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .table td.is-info, - html.theme--documenter-dark .table th.is-info { - background-color: #024c7d; - border-color: #024c7d; - color: #fff; } - html.theme--documenter-dark .table td.is-success, - html.theme--documenter-dark .table th.is-success { - background-color: #008438; - border-color: #008438; - color: #fff; } - html.theme--documenter-dark .table td.is-warning, - html.theme--documenter-dark .table th.is-warning { - background-color: #ad8100; - border-color: #ad8100; - color: #fff; } - html.theme--documenter-dark .table td.is-danger, - html.theme--documenter-dark .table th.is-danger { - background-color: #9e1b0d; - border-color: #9e1b0d; - color: #fff; } - html.theme--documenter-dark .table td.is-narrow, - html.theme--documenter-dark .table th.is-narrow { - white-space: nowrap; - width: 1%; } - html.theme--documenter-dark .table td.is-selected, - html.theme--documenter-dark .table th.is-selected { - background-color: #375a7f; - color: #fff; } - html.theme--documenter-dark .table td.is-selected a, - html.theme--documenter-dark .table td.is-selected strong, - html.theme--documenter-dark .table th.is-selected a, - html.theme--documenter-dark .table th.is-selected strong { - color: currentColor; } - html.theme--documenter-dark .table th { - color: #f2f2f2; } - html.theme--documenter-dark .table th:not([align]) { - text-align: left; } - html.theme--documenter-dark .table tr.is-selected { - background-color: #375a7f; - color: #fff; } - html.theme--documenter-dark .table tr.is-selected a, - html.theme--documenter-dark .table tr.is-selected strong { - color: currentColor; } - html.theme--documenter-dark .table tr.is-selected td, - html.theme--documenter-dark .table tr.is-selected th { - border-color: #fff; - color: currentColor; } - html.theme--documenter-dark .table thead { - background-color: transparent; } - html.theme--documenter-dark .table thead td, - html.theme--documenter-dark .table thead th { - border-width: 0 0 2px; - color: #f2f2f2; } - html.theme--documenter-dark .table tfoot { - background-color: transparent; } - html.theme--documenter-dark .table tfoot td, - html.theme--documenter-dark .table tfoot th { - border-width: 2px 0 0; - color: #f2f2f2; } - html.theme--documenter-dark .table tbody { - background-color: transparent; } - html.theme--documenter-dark .table tbody tr:last-child td, - html.theme--documenter-dark .table tbody tr:last-child th { - border-bottom-width: 0; } - html.theme--documenter-dark .table.is-bordered td, - html.theme--documenter-dark .table.is-bordered th { - border-width: 1px; } - html.theme--documenter-dark .table.is-bordered tr:last-child td, - html.theme--documenter-dark .table.is-bordered tr:last-child th { - border-bottom-width: 1px; } - html.theme--documenter-dark .table.is-fullwidth { - width: 100%; } - html.theme--documenter-dark .table.is-hoverable tbody tr:not(.is-selected):hover { - background-color: #282f2f; } - html.theme--documenter-dark .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover { - background-color: #282f2f; } - html.theme--documenter-dark .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) { - background-color: #2d3435; } - html.theme--documenter-dark .table.is-narrow td, - html.theme--documenter-dark .table.is-narrow th { - padding: 0.25em 0.5em; } - html.theme--documenter-dark .table.is-striped tbody tr:not(.is-selected):nth-child(even) { - background-color: #282f2f; } - html.theme--documenter-dark .table-container { - -webkit-overflow-scrolling: touch; - overflow: auto; - overflow-y: hidden; - max-width: 100%; } - html.theme--documenter-dark .tags { - align-items: center; - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - html.theme--documenter-dark .tags .tag, html.theme--documenter-dark .tags .docstring > section > a.docs-sourcelink, html.theme--documenter-dark .tags .content kbd, html.theme--documenter-dark .content .tags kbd { - margin-bottom: 0.5rem; } - html.theme--documenter-dark .tags .tag:not(:last-child), html.theme--documenter-dark .tags .docstring > section > a.docs-sourcelink:not(:last-child), html.theme--documenter-dark .tags .content kbd:not(:last-child), html.theme--documenter-dark .content .tags kbd:not(:last-child) { - margin-right: 0.5rem; } - html.theme--documenter-dark .tags:last-child { - margin-bottom: -0.5rem; } - html.theme--documenter-dark .tags:not(:last-child) { - margin-bottom: 1rem; } - html.theme--documenter-dark .tags.are-medium .tag:not(.is-normal):not(.is-large), html.theme--documenter-dark .tags.are-medium .docstring > section > a.docs-sourcelink:not(.is-normal):not(.is-large), html.theme--documenter-dark .tags.are-medium .content kbd:not(.is-normal):not(.is-large), html.theme--documenter-dark .content .tags.are-medium kbd:not(.is-normal):not(.is-large) { - font-size: 15px; } - html.theme--documenter-dark .tags.are-large .tag:not(.is-normal):not(.is-medium), html.theme--documenter-dark .tags.are-large .docstring > section > a.docs-sourcelink:not(.is-normal):not(.is-medium), html.theme--documenter-dark .tags.are-large .content kbd:not(.is-normal):not(.is-medium), html.theme--documenter-dark .content .tags.are-large kbd:not(.is-normal):not(.is-medium) { - font-size: 1.25rem; } - html.theme--documenter-dark .tags.is-centered { - justify-content: center; } - html.theme--documenter-dark .tags.is-centered .tag, html.theme--documenter-dark .tags.is-centered .docstring > section > a.docs-sourcelink, html.theme--documenter-dark .tags.is-centered .content kbd, html.theme--documenter-dark .content .tags.is-centered kbd { - margin-right: 0.25rem; - margin-left: 0.25rem; } - html.theme--documenter-dark .tags.is-right { - justify-content: flex-end; } - html.theme--documenter-dark .tags.is-right .tag:not(:first-child), html.theme--documenter-dark .tags.is-right .docstring > section > a.docs-sourcelink:not(:first-child), html.theme--documenter-dark .tags.is-right .content kbd:not(:first-child), html.theme--documenter-dark .content .tags.is-right kbd:not(:first-child) { - margin-left: 0.5rem; } - html.theme--documenter-dark .tags.is-right .tag:not(:last-child), html.theme--documenter-dark .tags.is-right .docstring > section > a.docs-sourcelink:not(:last-child), html.theme--documenter-dark .tags.is-right .content kbd:not(:last-child), html.theme--documenter-dark .content .tags.is-right kbd:not(:last-child) { - margin-right: 0; } - html.theme--documenter-dark .tags.has-addons .tag, html.theme--documenter-dark .tags.has-addons .docstring > section > a.docs-sourcelink, html.theme--documenter-dark .tags.has-addons .content kbd, html.theme--documenter-dark .content .tags.has-addons kbd { - margin-right: 0; } - html.theme--documenter-dark .tags.has-addons .tag:not(:first-child), html.theme--documenter-dark .tags.has-addons .docstring > section > a.docs-sourcelink:not(:first-child), html.theme--documenter-dark .tags.has-addons .content kbd:not(:first-child), html.theme--documenter-dark .content .tags.has-addons kbd:not(:first-child) { - margin-left: 0; - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - html.theme--documenter-dark .tags.has-addons .tag:not(:last-child), html.theme--documenter-dark .tags.has-addons .docstring > section > a.docs-sourcelink:not(:last-child), html.theme--documenter-dark .tags.has-addons .content kbd:not(:last-child), html.theme--documenter-dark .content .tags.has-addons kbd:not(:last-child) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - html.theme--documenter-dark .tag:not(body), html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body), html.theme--documenter-dark .content kbd:not(body) { - align-items: center; - background-color: #282f2f; - border-radius: 0.4em; - color: #fff; - display: inline-flex; - font-size: 0.85em; - height: 2em; - justify-content: center; - line-height: 1.5; - padding-left: 0.75em; - padding-right: 0.75em; - white-space: nowrap; } - html.theme--documenter-dark .tag:not(body) .delete, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body) .delete, html.theme--documenter-dark .content kbd:not(body) .delete { - margin-left: 0.25rem; - margin-right: -0.375rem; } - html.theme--documenter-dark .tag:not(body).is-white, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-white, html.theme--documenter-dark .content kbd:not(body).is-white { - background-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .tag:not(body).is-black, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-black, html.theme--documenter-dark .content kbd:not(body).is-black { - background-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .tag:not(body).is-light, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-light, html.theme--documenter-dark .content kbd:not(body).is-light { - background-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .tag:not(body).is-dark, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-dark, html.theme--documenter-dark .content kbd:not(body) { - background-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .tag:not(body).is-primary, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body), html.theme--documenter-dark .content kbd:not(body).is-primary { - background-color: #375a7f; - color: #fff; } - html.theme--documenter-dark .tag:not(body).is-link, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-link, html.theme--documenter-dark .content kbd:not(body).is-link { - background-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .tag:not(body).is-info, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-info, html.theme--documenter-dark .content kbd:not(body).is-info { - background-color: #024c7d; - color: #fff; } - html.theme--documenter-dark .tag:not(body).is-success, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-success, html.theme--documenter-dark .content kbd:not(body).is-success { - background-color: #008438; - color: #fff; } - html.theme--documenter-dark .tag:not(body).is-warning, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-warning, html.theme--documenter-dark .content kbd:not(body).is-warning { - background-color: #ad8100; - color: #fff; } - html.theme--documenter-dark .tag:not(body).is-danger, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-danger, html.theme--documenter-dark .content kbd:not(body).is-danger { - background-color: #9e1b0d; - color: #fff; } - html.theme--documenter-dark .tag:not(body).is-normal, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-normal, html.theme--documenter-dark .content kbd:not(body).is-normal { - font-size: 0.85em; } - html.theme--documenter-dark .tag:not(body).is-medium, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-medium, html.theme--documenter-dark .content kbd:not(body).is-medium { - font-size: 15px; } - html.theme--documenter-dark .tag:not(body).is-large, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-large, html.theme--documenter-dark .content kbd:not(body).is-large { - font-size: 1.25rem; } - html.theme--documenter-dark .tag:not(body) .icon:first-child:not(:last-child), html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body) .icon:first-child:not(:last-child), html.theme--documenter-dark .content kbd:not(body) .icon:first-child:not(:last-child) { - margin-left: -0.375em; - margin-right: 0.1875em; } - html.theme--documenter-dark .tag:not(body) .icon:last-child:not(:first-child), html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body) .icon:last-child:not(:first-child), html.theme--documenter-dark .content kbd:not(body) .icon:last-child:not(:first-child) { - margin-left: 0.1875em; - margin-right: -0.375em; } - html.theme--documenter-dark .tag:not(body) .icon:first-child:last-child, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body) .icon:first-child:last-child, html.theme--documenter-dark .content kbd:not(body) .icon:first-child:last-child { - margin-left: -0.375em; - margin-right: -0.375em; } - html.theme--documenter-dark .tag:not(body).is-delete, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-delete, html.theme--documenter-dark .content kbd:not(body).is-delete { - margin-left: 1px; - padding: 0; - position: relative; - width: 2em; } - html.theme--documenter-dark .tag:not(body).is-delete::before, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-delete::before, html.theme--documenter-dark .content kbd:not(body).is-delete::before, html.theme--documenter-dark .tag:not(body).is-delete::after, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-delete::after, html.theme--documenter-dark .content kbd:not(body).is-delete::after { - background-color: currentColor; - content: ""; - display: block; - left: 50%; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform-origin: center center; } - html.theme--documenter-dark .tag:not(body).is-delete::before, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-delete::before, html.theme--documenter-dark .content kbd:not(body).is-delete::before { - height: 1px; - width: 50%; } - html.theme--documenter-dark .tag:not(body).is-delete::after, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-delete::after, html.theme--documenter-dark .content kbd:not(body).is-delete::after { - height: 50%; - width: 1px; } - html.theme--documenter-dark .tag:not(body).is-delete:hover, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-delete:hover, html.theme--documenter-dark .content kbd:not(body).is-delete:hover, html.theme--documenter-dark .tag:not(body).is-delete:focus, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-delete:focus, html.theme--documenter-dark .content kbd:not(body).is-delete:focus { - background-color: #1d2122; } - html.theme--documenter-dark .tag:not(body).is-delete:active, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-delete:active, html.theme--documenter-dark .content kbd:not(body).is-delete:active { - background-color: #111414; } - html.theme--documenter-dark .tag:not(body).is-rounded, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:not(body).is-rounded, html.theme--documenter-dark .content kbd:not(body).is-rounded, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.tag:not(body) { - border-radius: 290486px; } - html.theme--documenter-dark a.tag:hover, html.theme--documenter-dark .docstring > section > a.docs-sourcelink:hover { - text-decoration: underline; } - html.theme--documenter-dark .title, - html.theme--documenter-dark .subtitle { - word-break: break-word; } - html.theme--documenter-dark .title em, - html.theme--documenter-dark .title span, - html.theme--documenter-dark .subtitle em, - html.theme--documenter-dark .subtitle span { - font-weight: inherit; } - html.theme--documenter-dark .title sub, - html.theme--documenter-dark .subtitle sub { - font-size: 0.75em; } - html.theme--documenter-dark .title sup, - html.theme--documenter-dark .subtitle sup { - font-size: 0.75em; } - html.theme--documenter-dark .title .tag, html.theme--documenter-dark .title .docstring > section > a.docs-sourcelink, html.theme--documenter-dark .title .content kbd, html.theme--documenter-dark .content .title kbd, - html.theme--documenter-dark .subtitle .tag, - html.theme--documenter-dark .subtitle .docstring > section > a.docs-sourcelink, - html.theme--documenter-dark .subtitle .content kbd, - html.theme--documenter-dark .content .subtitle kbd { - vertical-align: middle; } - html.theme--documenter-dark .title { - color: #fff; - font-size: 2rem; - font-weight: 500; - line-height: 1.125; } - html.theme--documenter-dark .title strong { - color: inherit; - font-weight: inherit; } - html.theme--documenter-dark .title + .highlight { - margin-top: -0.75rem; } - html.theme--documenter-dark .title:not(.is-spaced) + .subtitle { - margin-top: -1.25rem; } - html.theme--documenter-dark .title.is-1 { - font-size: 3rem; } - html.theme--documenter-dark .title.is-2 { - font-size: 2.5rem; } - html.theme--documenter-dark .title.is-3 { - font-size: 2rem; } - html.theme--documenter-dark .title.is-4 { - font-size: 1.5rem; } - html.theme--documenter-dark .title.is-5 { - font-size: 1.25rem; } - html.theme--documenter-dark .title.is-6 { - font-size: 15px; } - html.theme--documenter-dark .title.is-7 { - font-size: 0.85em; } - html.theme--documenter-dark .subtitle { - color: #8c9b9d; - font-size: 1.25rem; - font-weight: 400; - line-height: 1.25; } - html.theme--documenter-dark .subtitle strong { - color: #8c9b9d; - font-weight: 600; } - html.theme--documenter-dark .subtitle:not(.is-spaced) + .title { - margin-top: -1.25rem; } - html.theme--documenter-dark .subtitle.is-1 { - font-size: 3rem; } - html.theme--documenter-dark .subtitle.is-2 { - font-size: 2.5rem; } - html.theme--documenter-dark .subtitle.is-3 { - font-size: 2rem; } - html.theme--documenter-dark .subtitle.is-4 { - font-size: 1.5rem; } - html.theme--documenter-dark .subtitle.is-5 { - font-size: 1.25rem; } - html.theme--documenter-dark .subtitle.is-6 { - font-size: 15px; } - html.theme--documenter-dark .subtitle.is-7 { - font-size: 0.85em; } - html.theme--documenter-dark .heading { - display: block; - font-size: 11px; - letter-spacing: 1px; - margin-bottom: 5px; - text-transform: uppercase; } - html.theme--documenter-dark .highlight { - font-weight: 400; - max-width: 100%; - overflow: hidden; - padding: 0; } - html.theme--documenter-dark .highlight pre { - overflow: auto; - max-width: 100%; } - html.theme--documenter-dark .number { - align-items: center; - background-color: #282f2f; - border-radius: 290486px; - display: inline-flex; - font-size: 1.25rem; - height: 2em; - justify-content: center; - margin-right: 1.5rem; - min-width: 2.5em; - padding: 0.25rem 0.5rem; - text-align: center; - vertical-align: top; } - html.theme--documenter-dark .input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input, html.theme--documenter-dark .textarea, html.theme--documenter-dark .select select { - background-color: #1f2424; - border-color: #5e6d6f; - border-radius: 0.4em; - color: #dbdee0; } - html.theme--documenter-dark .input::-moz-placeholder, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input::-moz-placeholder, html.theme--documenter-dark .textarea::-moz-placeholder, html.theme--documenter-dark .select select::-moz-placeholder { - color: rgba(219, 222, 224, 0.3); } - html.theme--documenter-dark .input::-webkit-input-placeholder, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input::-webkit-input-placeholder, html.theme--documenter-dark .textarea::-webkit-input-placeholder, html.theme--documenter-dark .select select::-webkit-input-placeholder { - color: rgba(219, 222, 224, 0.3); } - html.theme--documenter-dark .input:-moz-placeholder, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input:-moz-placeholder, html.theme--documenter-dark .textarea:-moz-placeholder, html.theme--documenter-dark .select select:-moz-placeholder { - color: rgba(219, 222, 224, 0.3); } - html.theme--documenter-dark .input:-ms-input-placeholder, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input:-ms-input-placeholder, html.theme--documenter-dark .textarea:-ms-input-placeholder, html.theme--documenter-dark .select select:-ms-input-placeholder { - color: rgba(219, 222, 224, 0.3); } - html.theme--documenter-dark .input:hover, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input:hover, html.theme--documenter-dark .textarea:hover, html.theme--documenter-dark .select select:hover, html.theme--documenter-dark .is-hovered.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-hovered, html.theme--documenter-dark .is-hovered.textarea, html.theme--documenter-dark .select select.is-hovered { - border-color: #8c9b9d; } - html.theme--documenter-dark .input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input:focus, html.theme--documenter-dark .textarea:focus, html.theme--documenter-dark .select select:focus, html.theme--documenter-dark .is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-focused, html.theme--documenter-dark .is-focused.textarea, html.theme--documenter-dark .select select.is-focused, html.theme--documenter-dark .input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input:active, html.theme--documenter-dark .textarea:active, html.theme--documenter-dark .select select:active, html.theme--documenter-dark .is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-active, html.theme--documenter-dark .is-active.textarea, html.theme--documenter-dark .select select.is-active { - border-color: #1abc9c; - box-shadow: 0 0 0 0.125em rgba(26, 188, 156, 0.25); } - html.theme--documenter-dark .input[disabled], html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input[disabled], html.theme--documenter-dark .textarea[disabled], html.theme--documenter-dark .select select[disabled], - fieldset[disabled] html.theme--documenter-dark .input, - fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input, - fieldset[disabled] html.theme--documenter-dark .textarea, - fieldset[disabled] html.theme--documenter-dark .select select { - background-color: #8c9b9d; - border-color: #282f2f; - box-shadow: none; - color: white; } - html.theme--documenter-dark .input[disabled]::-moz-placeholder, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input[disabled]::-moz-placeholder, html.theme--documenter-dark .textarea[disabled]::-moz-placeholder, html.theme--documenter-dark .select select[disabled]::-moz-placeholder, - fieldset[disabled] html.theme--documenter-dark .input::-moz-placeholder, - fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input::-moz-placeholder, - fieldset[disabled] html.theme--documenter-dark .textarea::-moz-placeholder, - fieldset[disabled] html.theme--documenter-dark .select select::-moz-placeholder { - color: rgba(255, 255, 255, 0.3); } - html.theme--documenter-dark .input[disabled]::-webkit-input-placeholder, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input[disabled]::-webkit-input-placeholder, html.theme--documenter-dark .textarea[disabled]::-webkit-input-placeholder, html.theme--documenter-dark .select select[disabled]::-webkit-input-placeholder, - fieldset[disabled] html.theme--documenter-dark .input::-webkit-input-placeholder, - fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input::-webkit-input-placeholder, - fieldset[disabled] html.theme--documenter-dark .textarea::-webkit-input-placeholder, - fieldset[disabled] html.theme--documenter-dark .select select::-webkit-input-placeholder { - color: rgba(255, 255, 255, 0.3); } - html.theme--documenter-dark .input[disabled]:-moz-placeholder, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input[disabled]:-moz-placeholder, html.theme--documenter-dark .textarea[disabled]:-moz-placeholder, html.theme--documenter-dark .select select[disabled]:-moz-placeholder, - fieldset[disabled] html.theme--documenter-dark .input:-moz-placeholder, - fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input:-moz-placeholder, - fieldset[disabled] html.theme--documenter-dark .textarea:-moz-placeholder, - fieldset[disabled] html.theme--documenter-dark .select select:-moz-placeholder { - color: rgba(255, 255, 255, 0.3); } - html.theme--documenter-dark .input[disabled]:-ms-input-placeholder, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input[disabled]:-ms-input-placeholder, html.theme--documenter-dark .textarea[disabled]:-ms-input-placeholder, html.theme--documenter-dark .select select[disabled]:-ms-input-placeholder, - fieldset[disabled] html.theme--documenter-dark .input:-ms-input-placeholder, - fieldset[disabled] html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input:-ms-input-placeholder, - fieldset[disabled] html.theme--documenter-dark .textarea:-ms-input-placeholder, - fieldset[disabled] html.theme--documenter-dark .select select:-ms-input-placeholder { - color: rgba(255, 255, 255, 0.3); } - html.theme--documenter-dark .input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input, html.theme--documenter-dark .textarea { - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1); - max-width: 100%; - width: 100%; } - html.theme--documenter-dark .input[readonly], html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input[readonly], html.theme--documenter-dark .textarea[readonly] { - box-shadow: none; } - html.theme--documenter-dark .is-white.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-white, html.theme--documenter-dark .is-white.textarea { - border-color: white; } - html.theme--documenter-dark .is-white.input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-white:focus, html.theme--documenter-dark .is-white.textarea:focus, html.theme--documenter-dark .is-white.is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-white.is-focused, html.theme--documenter-dark .is-white.is-focused.textarea, html.theme--documenter-dark .is-white.input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-white:active, html.theme--documenter-dark .is-white.textarea:active, html.theme--documenter-dark .is-white.is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-white.is-active, html.theme--documenter-dark .is-white.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } - html.theme--documenter-dark .is-black.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-black, html.theme--documenter-dark .is-black.textarea { - border-color: #0a0a0a; } - html.theme--documenter-dark .is-black.input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-black:focus, html.theme--documenter-dark .is-black.textarea:focus, html.theme--documenter-dark .is-black.is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-black.is-focused, html.theme--documenter-dark .is-black.is-focused.textarea, html.theme--documenter-dark .is-black.input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-black:active, html.theme--documenter-dark .is-black.textarea:active, html.theme--documenter-dark .is-black.is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-black.is-active, html.theme--documenter-dark .is-black.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } - html.theme--documenter-dark .is-light.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-light, html.theme--documenter-dark .is-light.textarea { - border-color: #ecf0f1; } - html.theme--documenter-dark .is-light.input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-light:focus, html.theme--documenter-dark .is-light.textarea:focus, html.theme--documenter-dark .is-light.is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-light.is-focused, html.theme--documenter-dark .is-light.is-focused.textarea, html.theme--documenter-dark .is-light.input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-light:active, html.theme--documenter-dark .is-light.textarea:active, html.theme--documenter-dark .is-light.is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-light.is-active, html.theme--documenter-dark .is-light.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(236, 240, 241, 0.25); } - html.theme--documenter-dark .is-dark.input, html.theme--documenter-dark .content kbd.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-dark, html.theme--documenter-dark .is-dark.textarea, html.theme--documenter-dark .content kbd.textarea { - border-color: #282f2f; } - html.theme--documenter-dark .is-dark.input:focus, html.theme--documenter-dark .content kbd.input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-dark:focus, html.theme--documenter-dark .is-dark.textarea:focus, html.theme--documenter-dark .content kbd.textarea:focus, html.theme--documenter-dark .is-dark.is-focused.input, html.theme--documenter-dark .content kbd.is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-dark.is-focused, html.theme--documenter-dark .is-dark.is-focused.textarea, html.theme--documenter-dark .content kbd.is-focused.textarea, html.theme--documenter-dark .is-dark.input:active, html.theme--documenter-dark .content kbd.input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-dark:active, html.theme--documenter-dark .is-dark.textarea:active, html.theme--documenter-dark .content kbd.textarea:active, html.theme--documenter-dark .is-dark.is-active.input, html.theme--documenter-dark .content kbd.is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-dark.is-active, html.theme--documenter-dark .is-dark.is-active.textarea, html.theme--documenter-dark .content kbd.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(40, 47, 47, 0.25); } - html.theme--documenter-dark .is-primary.input, html.theme--documenter-dark .docstring > section > a.input.docs-sourcelink, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-primary, html.theme--documenter-dark .is-primary.textarea, html.theme--documenter-dark .docstring > section > a.textarea.docs-sourcelink { - border-color: #375a7f; } - html.theme--documenter-dark .is-primary.input:focus, html.theme--documenter-dark .docstring > section > a.input.docs-sourcelink:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-primary:focus, html.theme--documenter-dark .is-primary.textarea:focus, html.theme--documenter-dark .docstring > section > a.textarea.docs-sourcelink:focus, html.theme--documenter-dark .is-primary.is-focused.input, html.theme--documenter-dark .docstring > section > a.is-focused.input.docs-sourcelink, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-primary.is-focused, html.theme--documenter-dark .is-primary.is-focused.textarea, html.theme--documenter-dark .docstring > section > a.is-focused.textarea.docs-sourcelink, html.theme--documenter-dark .is-primary.input:active, html.theme--documenter-dark .docstring > section > a.input.docs-sourcelink:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-primary:active, html.theme--documenter-dark .is-primary.textarea:active, html.theme--documenter-dark .docstring > section > a.textarea.docs-sourcelink:active, html.theme--documenter-dark .is-primary.is-active.input, html.theme--documenter-dark .docstring > section > a.is-active.input.docs-sourcelink, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-primary.is-active, html.theme--documenter-dark .is-primary.is-active.textarea, html.theme--documenter-dark .docstring > section > a.is-active.textarea.docs-sourcelink { - box-shadow: 0 0 0 0.125em rgba(55, 90, 127, 0.25); } - html.theme--documenter-dark .is-link.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-link, html.theme--documenter-dark .is-link.textarea { - border-color: #1abc9c; } - html.theme--documenter-dark .is-link.input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-link:focus, html.theme--documenter-dark .is-link.textarea:focus, html.theme--documenter-dark .is-link.is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-link.is-focused, html.theme--documenter-dark .is-link.is-focused.textarea, html.theme--documenter-dark .is-link.input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-link:active, html.theme--documenter-dark .is-link.textarea:active, html.theme--documenter-dark .is-link.is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-link.is-active, html.theme--documenter-dark .is-link.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(26, 188, 156, 0.25); } - html.theme--documenter-dark .is-info.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-info, html.theme--documenter-dark .is-info.textarea { - border-color: #024c7d; } - html.theme--documenter-dark .is-info.input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-info:focus, html.theme--documenter-dark .is-info.textarea:focus, html.theme--documenter-dark .is-info.is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-info.is-focused, html.theme--documenter-dark .is-info.is-focused.textarea, html.theme--documenter-dark .is-info.input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-info:active, html.theme--documenter-dark .is-info.textarea:active, html.theme--documenter-dark .is-info.is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-info.is-active, html.theme--documenter-dark .is-info.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(2, 76, 125, 0.25); } - html.theme--documenter-dark .is-success.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-success, html.theme--documenter-dark .is-success.textarea { - border-color: #008438; } - html.theme--documenter-dark .is-success.input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-success:focus, html.theme--documenter-dark .is-success.textarea:focus, html.theme--documenter-dark .is-success.is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-success.is-focused, html.theme--documenter-dark .is-success.is-focused.textarea, html.theme--documenter-dark .is-success.input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-success:active, html.theme--documenter-dark .is-success.textarea:active, html.theme--documenter-dark .is-success.is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-success.is-active, html.theme--documenter-dark .is-success.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(0, 132, 56, 0.25); } - html.theme--documenter-dark .is-warning.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-warning, html.theme--documenter-dark .is-warning.textarea { - border-color: #ad8100; } - html.theme--documenter-dark .is-warning.input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-warning:focus, html.theme--documenter-dark .is-warning.textarea:focus, html.theme--documenter-dark .is-warning.is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-warning.is-focused, html.theme--documenter-dark .is-warning.is-focused.textarea, html.theme--documenter-dark .is-warning.input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-warning:active, html.theme--documenter-dark .is-warning.textarea:active, html.theme--documenter-dark .is-warning.is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-warning.is-active, html.theme--documenter-dark .is-warning.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(173, 129, 0, 0.25); } - html.theme--documenter-dark .is-danger.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-danger, html.theme--documenter-dark .is-danger.textarea { - border-color: #9e1b0d; } - html.theme--documenter-dark .is-danger.input:focus, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-danger:focus, html.theme--documenter-dark .is-danger.textarea:focus, html.theme--documenter-dark .is-danger.is-focused.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-danger.is-focused, html.theme--documenter-dark .is-danger.is-focused.textarea, html.theme--documenter-dark .is-danger.input:active, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-danger:active, html.theme--documenter-dark .is-danger.textarea:active, html.theme--documenter-dark .is-danger.is-active.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-danger.is-active, html.theme--documenter-dark .is-danger.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(158, 27, 13, 0.25); } - html.theme--documenter-dark .is-small.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input, html.theme--documenter-dark .is-small.textarea { - border-radius: 3px; - font-size: 0.85em; } - html.theme--documenter-dark .is-medium.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-medium, html.theme--documenter-dark .is-medium.textarea { - font-size: 1.25rem; } - html.theme--documenter-dark .is-large.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-large, html.theme--documenter-dark .is-large.textarea { - font-size: 1.5rem; } - html.theme--documenter-dark .is-fullwidth.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-fullwidth, html.theme--documenter-dark .is-fullwidth.textarea { - display: block; - width: 100%; } - html.theme--documenter-dark .is-inline.input, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-inline, html.theme--documenter-dark .is-inline.textarea { - display: inline; - width: auto; } - html.theme--documenter-dark .input.is-rounded, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input { - border-radius: 290486px; - padding-left: 1em; - padding-right: 1em; } - html.theme--documenter-dark .input.is-static, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.is-static { - background-color: transparent; - border-color: transparent; - box-shadow: none; - padding-left: 0; - padding-right: 0; } - html.theme--documenter-dark .textarea { - display: block; - max-width: 100%; - min-width: 100%; - padding: 0.625em; - resize: vertical; } - html.theme--documenter-dark .textarea:not([rows]) { - max-height: 600px; - min-height: 120px; } - html.theme--documenter-dark .textarea[rows] { - height: initial; } - html.theme--documenter-dark .textarea.has-fixed-size { - resize: none; } - html.theme--documenter-dark .checkbox, html.theme--documenter-dark .radio { - cursor: pointer; - display: inline-block; - line-height: 1.25; - position: relative; } - html.theme--documenter-dark .checkbox input, html.theme--documenter-dark .radio input { - cursor: pointer; } - html.theme--documenter-dark .checkbox:hover, html.theme--documenter-dark .radio:hover { - color: #8c9b9d; } - html.theme--documenter-dark .checkbox[disabled], html.theme--documenter-dark .radio[disabled], - fieldset[disabled] html.theme--documenter-dark .checkbox, - fieldset[disabled] html.theme--documenter-dark .radio { - color: white; - cursor: not-allowed; } - html.theme--documenter-dark .radio + .radio { - margin-left: 0.5em; } - html.theme--documenter-dark .select { - display: inline-block; - max-width: 100%; - position: relative; - vertical-align: top; } - html.theme--documenter-dark .select:not(.is-multiple) { - height: 2.25em; } - html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading)::after { - border-color: #1abc9c; - right: 1.125em; - z-index: 4; } - html.theme--documenter-dark .select.is-rounded select, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.select select { - border-radius: 290486px; - padding-left: 1em; } - html.theme--documenter-dark .select select { - cursor: pointer; - display: block; - font-size: 1em; - max-width: 100%; - outline: none; } - html.theme--documenter-dark .select select::-ms-expand { - display: none; } - html.theme--documenter-dark .select select[disabled]:hover, - fieldset[disabled] html.theme--documenter-dark .select select:hover { - border-color: #282f2f; } - html.theme--documenter-dark .select select:not([multiple]) { - padding-right: 2.5em; } - html.theme--documenter-dark .select select[multiple] { - height: auto; - padding: 0; } - html.theme--documenter-dark .select select[multiple] option { - padding: 0.5em 1em; } - html.theme--documenter-dark .select:not(.is-multiple):not(.is-loading):hover::after { - border-color: #8c9b9d; } - html.theme--documenter-dark .select.is-white:not(:hover)::after { - border-color: white; } - html.theme--documenter-dark .select.is-white select { - border-color: white; } - html.theme--documenter-dark .select.is-white select:hover, html.theme--documenter-dark .select.is-white select.is-hovered { - border-color: #f2f2f2; } - html.theme--documenter-dark .select.is-white select:focus, html.theme--documenter-dark .select.is-white select.is-focused, html.theme--documenter-dark .select.is-white select:active, html.theme--documenter-dark .select.is-white select.is-active { - box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } - html.theme--documenter-dark .select.is-black:not(:hover)::after { - border-color: #0a0a0a; } - html.theme--documenter-dark .select.is-black select { - border-color: #0a0a0a; } - html.theme--documenter-dark .select.is-black select:hover, html.theme--documenter-dark .select.is-black select.is-hovered { - border-color: black; } - html.theme--documenter-dark .select.is-black select:focus, html.theme--documenter-dark .select.is-black select.is-focused, html.theme--documenter-dark .select.is-black select:active, html.theme--documenter-dark .select.is-black select.is-active { - box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } - html.theme--documenter-dark .select.is-light:not(:hover)::after { - border-color: #ecf0f1; } - html.theme--documenter-dark .select.is-light select { - border-color: #ecf0f1; } - html.theme--documenter-dark .select.is-light select:hover, html.theme--documenter-dark .select.is-light select.is-hovered { - border-color: #dde4e6; } - html.theme--documenter-dark .select.is-light select:focus, html.theme--documenter-dark .select.is-light select.is-focused, html.theme--documenter-dark .select.is-light select:active, html.theme--documenter-dark .select.is-light select.is-active { - box-shadow: 0 0 0 0.125em rgba(236, 240, 241, 0.25); } - html.theme--documenter-dark .select.is-dark:not(:hover)::after, html.theme--documenter-dark .content kbd.select:not(:hover)::after { - border-color: #282f2f; } - html.theme--documenter-dark .select.is-dark select, html.theme--documenter-dark .content kbd.select select { - border-color: #282f2f; } - html.theme--documenter-dark .select.is-dark select:hover, html.theme--documenter-dark .content kbd.select select:hover, html.theme--documenter-dark .select.is-dark select.is-hovered, html.theme--documenter-dark .content kbd.select select.is-hovered { - border-color: #1d2122; } - html.theme--documenter-dark .select.is-dark select:focus, html.theme--documenter-dark .content kbd.select select:focus, html.theme--documenter-dark .select.is-dark select.is-focused, html.theme--documenter-dark .content kbd.select select.is-focused, html.theme--documenter-dark .select.is-dark select:active, html.theme--documenter-dark .content kbd.select select:active, html.theme--documenter-dark .select.is-dark select.is-active, html.theme--documenter-dark .content kbd.select select.is-active { - box-shadow: 0 0 0 0.125em rgba(40, 47, 47, 0.25); } - html.theme--documenter-dark .select.is-primary:not(:hover)::after, html.theme--documenter-dark .docstring > section > a.select.docs-sourcelink:not(:hover)::after { - border-color: #375a7f; } - html.theme--documenter-dark .select.is-primary select, html.theme--documenter-dark .docstring > section > a.select.docs-sourcelink select { - border-color: #375a7f; } - html.theme--documenter-dark .select.is-primary select:hover, html.theme--documenter-dark .docstring > section > a.select.docs-sourcelink select:hover, html.theme--documenter-dark .select.is-primary select.is-hovered, html.theme--documenter-dark .docstring > section > a.select.docs-sourcelink select.is-hovered { - border-color: #2f4d6d; } - html.theme--documenter-dark .select.is-primary select:focus, html.theme--documenter-dark .docstring > section > a.select.docs-sourcelink select:focus, html.theme--documenter-dark .select.is-primary select.is-focused, html.theme--documenter-dark .docstring > section > a.select.docs-sourcelink select.is-focused, html.theme--documenter-dark .select.is-primary select:active, html.theme--documenter-dark .docstring > section > a.select.docs-sourcelink select:active, html.theme--documenter-dark .select.is-primary select.is-active, html.theme--documenter-dark .docstring > section > a.select.docs-sourcelink select.is-active { - box-shadow: 0 0 0 0.125em rgba(55, 90, 127, 0.25); } - html.theme--documenter-dark .select.is-link:not(:hover)::after { - border-color: #1abc9c; } - html.theme--documenter-dark .select.is-link select { - border-color: #1abc9c; } - html.theme--documenter-dark .select.is-link select:hover, html.theme--documenter-dark .select.is-link select.is-hovered { - border-color: #17a689; } - html.theme--documenter-dark .select.is-link select:focus, html.theme--documenter-dark .select.is-link select.is-focused, html.theme--documenter-dark .select.is-link select:active, html.theme--documenter-dark .select.is-link select.is-active { - box-shadow: 0 0 0 0.125em rgba(26, 188, 156, 0.25); } - html.theme--documenter-dark .select.is-info:not(:hover)::after { - border-color: #024c7d; } - html.theme--documenter-dark .select.is-info select { - border-color: #024c7d; } - html.theme--documenter-dark .select.is-info select:hover, html.theme--documenter-dark .select.is-info select.is-hovered { - border-color: #023d64; } - html.theme--documenter-dark .select.is-info select:focus, html.theme--documenter-dark .select.is-info select.is-focused, html.theme--documenter-dark .select.is-info select:active, html.theme--documenter-dark .select.is-info select.is-active { - box-shadow: 0 0 0 0.125em rgba(2, 76, 125, 0.25); } - html.theme--documenter-dark .select.is-success:not(:hover)::after { - border-color: #008438; } - html.theme--documenter-dark .select.is-success select { - border-color: #008438; } - html.theme--documenter-dark .select.is-success select:hover, html.theme--documenter-dark .select.is-success select.is-hovered { - border-color: #006b2d; } - html.theme--documenter-dark .select.is-success select:focus, html.theme--documenter-dark .select.is-success select.is-focused, html.theme--documenter-dark .select.is-success select:active, html.theme--documenter-dark .select.is-success select.is-active { - box-shadow: 0 0 0 0.125em rgba(0, 132, 56, 0.25); } - html.theme--documenter-dark .select.is-warning:not(:hover)::after { - border-color: #ad8100; } - html.theme--documenter-dark .select.is-warning select { - border-color: #ad8100; } - html.theme--documenter-dark .select.is-warning select:hover, html.theme--documenter-dark .select.is-warning select.is-hovered { - border-color: #946e00; } - html.theme--documenter-dark .select.is-warning select:focus, html.theme--documenter-dark .select.is-warning select.is-focused, html.theme--documenter-dark .select.is-warning select:active, html.theme--documenter-dark .select.is-warning select.is-active { - box-shadow: 0 0 0 0.125em rgba(173, 129, 0, 0.25); } - html.theme--documenter-dark .select.is-danger:not(:hover)::after { - border-color: #9e1b0d; } - html.theme--documenter-dark .select.is-danger select { - border-color: #9e1b0d; } - html.theme--documenter-dark .select.is-danger select:hover, html.theme--documenter-dark .select.is-danger select.is-hovered { - border-color: #86170b; } - html.theme--documenter-dark .select.is-danger select:focus, html.theme--documenter-dark .select.is-danger select.is-focused, html.theme--documenter-dark .select.is-danger select:active, html.theme--documenter-dark .select.is-danger select.is-active { - box-shadow: 0 0 0 0.125em rgba(158, 27, 13, 0.25); } - html.theme--documenter-dark .select.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.select { - border-radius: 3px; - font-size: 0.85em; } - html.theme--documenter-dark .select.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .select.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .select.is-disabled::after { - border-color: white; } - html.theme--documenter-dark .select.is-fullwidth { - width: 100%; } - html.theme--documenter-dark .select.is-fullwidth select { - width: 100%; } - html.theme--documenter-dark .select.is-loading::after { - margin-top: 0; - position: absolute; - right: 0.625em; - top: 0.625em; - transform: none; } - html.theme--documenter-dark .select.is-loading.is-small:after, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.select.is-loading:after { - font-size: 0.85em; } - html.theme--documenter-dark .select.is-loading.is-medium:after { - font-size: 1.25rem; } - html.theme--documenter-dark .select.is-loading.is-large:after { - font-size: 1.5rem; } - html.theme--documenter-dark .file { - align-items: stretch; - display: flex; - justify-content: flex-start; - position: relative; } - html.theme--documenter-dark .file.is-white .file-cta { - background-color: white; - border-color: transparent; - color: #0a0a0a; } - html.theme--documenter-dark .file.is-white:hover .file-cta, html.theme--documenter-dark .file.is-white.is-hovered .file-cta { - background-color: #f9f9f9; - border-color: transparent; - color: #0a0a0a; } - html.theme--documenter-dark .file.is-white:focus .file-cta, html.theme--documenter-dark .file.is-white.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25); - color: #0a0a0a; } - html.theme--documenter-dark .file.is-white:active .file-cta, html.theme--documenter-dark .file.is-white.is-active .file-cta { - background-color: #f2f2f2; - border-color: transparent; - color: #0a0a0a; } - html.theme--documenter-dark .file.is-black .file-cta { - background-color: #0a0a0a; - border-color: transparent; - color: white; } - html.theme--documenter-dark .file.is-black:hover .file-cta, html.theme--documenter-dark .file.is-black.is-hovered .file-cta { - background-color: #040404; - border-color: transparent; - color: white; } - html.theme--documenter-dark .file.is-black:focus .file-cta, html.theme--documenter-dark .file.is-black.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25); - color: white; } - html.theme--documenter-dark .file.is-black:active .file-cta, html.theme--documenter-dark .file.is-black.is-active .file-cta { - background-color: black; - border-color: transparent; - color: white; } - html.theme--documenter-dark .file.is-light .file-cta { - background-color: #ecf0f1; - border-color: transparent; - color: #282f2f; } - html.theme--documenter-dark .file.is-light:hover .file-cta, html.theme--documenter-dark .file.is-light.is-hovered .file-cta { - background-color: #e5eaec; - border-color: transparent; - color: #282f2f; } - html.theme--documenter-dark .file.is-light:focus .file-cta, html.theme--documenter-dark .file.is-light.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(236, 240, 241, 0.25); - color: #282f2f; } - html.theme--documenter-dark .file.is-light:active .file-cta, html.theme--documenter-dark .file.is-light.is-active .file-cta { - background-color: #dde4e6; - border-color: transparent; - color: #282f2f; } - html.theme--documenter-dark .file.is-dark .file-cta, html.theme--documenter-dark .content kbd.file .file-cta { - background-color: #282f2f; - border-color: transparent; - color: #ecf0f1; } - html.theme--documenter-dark .file.is-dark:hover .file-cta, html.theme--documenter-dark .content kbd.file:hover .file-cta, html.theme--documenter-dark .file.is-dark.is-hovered .file-cta, html.theme--documenter-dark .content kbd.file.is-hovered .file-cta { - background-color: #232829; - border-color: transparent; - color: #ecf0f1; } - html.theme--documenter-dark .file.is-dark:focus .file-cta, html.theme--documenter-dark .content kbd.file:focus .file-cta, html.theme--documenter-dark .file.is-dark.is-focused .file-cta, html.theme--documenter-dark .content kbd.file.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(40, 47, 47, 0.25); - color: #ecf0f1; } - html.theme--documenter-dark .file.is-dark:active .file-cta, html.theme--documenter-dark .content kbd.file:active .file-cta, html.theme--documenter-dark .file.is-dark.is-active .file-cta, html.theme--documenter-dark .content kbd.file.is-active .file-cta { - background-color: #1d2122; - border-color: transparent; - color: #ecf0f1; } - html.theme--documenter-dark .file.is-primary .file-cta, html.theme--documenter-dark .docstring > section > a.file.docs-sourcelink .file-cta { - background-color: #375a7f; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-primary:hover .file-cta, html.theme--documenter-dark .docstring > section > a.file.docs-sourcelink:hover .file-cta, html.theme--documenter-dark .file.is-primary.is-hovered .file-cta, html.theme--documenter-dark .docstring > section > a.file.is-hovered.docs-sourcelink .file-cta { - background-color: #335476; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-primary:focus .file-cta, html.theme--documenter-dark .docstring > section > a.file.docs-sourcelink:focus .file-cta, html.theme--documenter-dark .file.is-primary.is-focused .file-cta, html.theme--documenter-dark .docstring > section > a.file.is-focused.docs-sourcelink .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(55, 90, 127, 0.25); - color: #fff; } - html.theme--documenter-dark .file.is-primary:active .file-cta, html.theme--documenter-dark .docstring > section > a.file.docs-sourcelink:active .file-cta, html.theme--documenter-dark .file.is-primary.is-active .file-cta, html.theme--documenter-dark .docstring > section > a.file.is-active.docs-sourcelink .file-cta { - background-color: #2f4d6d; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-link .file-cta { - background-color: #1abc9c; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-link:hover .file-cta, html.theme--documenter-dark .file.is-link.is-hovered .file-cta { - background-color: #18b193; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-link:focus .file-cta, html.theme--documenter-dark .file.is-link.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(26, 188, 156, 0.25); - color: #fff; } - html.theme--documenter-dark .file.is-link:active .file-cta, html.theme--documenter-dark .file.is-link.is-active .file-cta { - background-color: #17a689; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-info .file-cta { - background-color: #024c7d; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-info:hover .file-cta, html.theme--documenter-dark .file.is-info.is-hovered .file-cta { - background-color: #024470; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-info:focus .file-cta, html.theme--documenter-dark .file.is-info.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(2, 76, 125, 0.25); - color: #fff; } - html.theme--documenter-dark .file.is-info:active .file-cta, html.theme--documenter-dark .file.is-info.is-active .file-cta { - background-color: #023d64; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-success .file-cta { - background-color: #008438; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-success:hover .file-cta, html.theme--documenter-dark .file.is-success.is-hovered .file-cta { - background-color: #007733; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-success:focus .file-cta, html.theme--documenter-dark .file.is-success.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(0, 132, 56, 0.25); - color: #fff; } - html.theme--documenter-dark .file.is-success:active .file-cta, html.theme--documenter-dark .file.is-success.is-active .file-cta { - background-color: #006b2d; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-warning .file-cta { - background-color: #ad8100; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-warning:hover .file-cta, html.theme--documenter-dark .file.is-warning.is-hovered .file-cta { - background-color: #a07700; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-warning:focus .file-cta, html.theme--documenter-dark .file.is-warning.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(173, 129, 0, 0.25); - color: #fff; } - html.theme--documenter-dark .file.is-warning:active .file-cta, html.theme--documenter-dark .file.is-warning.is-active .file-cta { - background-color: #946e00; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-danger .file-cta { - background-color: #9e1b0d; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-danger:hover .file-cta, html.theme--documenter-dark .file.is-danger.is-hovered .file-cta { - background-color: #92190c; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-danger:focus .file-cta, html.theme--documenter-dark .file.is-danger.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(158, 27, 13, 0.25); - color: #fff; } - html.theme--documenter-dark .file.is-danger:active .file-cta, html.theme--documenter-dark .file.is-danger.is-active .file-cta { - background-color: #86170b; - border-color: transparent; - color: #fff; } - html.theme--documenter-dark .file.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.file { - font-size: 0.85em; } - html.theme--documenter-dark .file.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .file.is-medium .file-icon .fa { - font-size: 21px; } - html.theme--documenter-dark .file.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .file.is-large .file-icon .fa { - font-size: 28px; } - html.theme--documenter-dark .file.has-name .file-cta { - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - html.theme--documenter-dark .file.has-name .file-name { - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - html.theme--documenter-dark .file.has-name.is-empty .file-cta { - border-radius: 0.4em; } - html.theme--documenter-dark .file.has-name.is-empty .file-name { - display: none; } - html.theme--documenter-dark .file.is-boxed .file-label { - flex-direction: column; } - html.theme--documenter-dark .file.is-boxed .file-cta { - flex-direction: column; - height: auto; - padding: 1em 3em; } - html.theme--documenter-dark .file.is-boxed .file-name { - border-width: 0 1px 1px; } - html.theme--documenter-dark .file.is-boxed .file-icon { - height: 1.5em; - width: 1.5em; } - html.theme--documenter-dark .file.is-boxed .file-icon .fa { - font-size: 21px; } - html.theme--documenter-dark .file.is-boxed.is-small .file-icon .fa, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.file.is-boxed .file-icon .fa { - font-size: 14px; } - html.theme--documenter-dark .file.is-boxed.is-medium .file-icon .fa { - font-size: 28px; } - html.theme--documenter-dark .file.is-boxed.is-large .file-icon .fa { - font-size: 35px; } - html.theme--documenter-dark .file.is-boxed.has-name .file-cta { - border-radius: 0.4em 0.4em 0 0; } - html.theme--documenter-dark .file.is-boxed.has-name .file-name { - border-radius: 0 0 0.4em 0.4em; - border-width: 0 1px 1px; } - html.theme--documenter-dark .file.is-centered { - justify-content: center; } - html.theme--documenter-dark .file.is-fullwidth .file-label { - width: 100%; } - html.theme--documenter-dark .file.is-fullwidth .file-name { - flex-grow: 1; - max-width: none; } - html.theme--documenter-dark .file.is-right { - justify-content: flex-end; } - html.theme--documenter-dark .file.is-right .file-cta { - border-radius: 0 0.4em 0.4em 0; } - html.theme--documenter-dark .file.is-right .file-name { - border-radius: 0.4em 0 0 0.4em; - border-width: 1px 0 1px 1px; - order: -1; } - html.theme--documenter-dark .file-label { - align-items: stretch; - display: flex; - cursor: pointer; - justify-content: flex-start; - overflow: hidden; - position: relative; } - html.theme--documenter-dark .file-label:hover .file-cta { - background-color: #e5eaec; - color: #282f2f; } - html.theme--documenter-dark .file-label:hover .file-name { - border-color: #596668; } - html.theme--documenter-dark .file-label:active .file-cta { - background-color: #dde4e6; - color: #282f2f; } - html.theme--documenter-dark .file-label:active .file-name { - border-color: #535f61; } - html.theme--documenter-dark .file-input { - height: 100%; - left: 0; - opacity: 0; - outline: none; - position: absolute; - top: 0; - width: 100%; } - html.theme--documenter-dark .file-cta, - html.theme--documenter-dark .file-name { - border-color: #5e6d6f; - border-radius: 0.4em; - font-size: 1em; - padding-left: 1em; - padding-right: 1em; - white-space: nowrap; } - html.theme--documenter-dark .file-cta { - background-color: #ecf0f1; - color: #343c3d; } - html.theme--documenter-dark .file-name { - border-color: #5e6d6f; - border-style: solid; - border-width: 1px 1px 1px 0; - display: block; - max-width: 16em; - overflow: hidden; - text-align: left; - text-overflow: ellipsis; } - html.theme--documenter-dark .file-icon { - align-items: center; - display: flex; - height: 1em; - justify-content: center; - margin-right: 0.5em; - width: 1em; } - html.theme--documenter-dark .file-icon .fa { - font-size: 14px; } - html.theme--documenter-dark .label { - color: #282f2f; - display: block; - font-size: 15px; - font-weight: 700; } - html.theme--documenter-dark .label:not(:last-child) { - margin-bottom: 0.5em; } - html.theme--documenter-dark .label.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.label { - font-size: 0.85em; } - html.theme--documenter-dark .label.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .label.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .help { - display: block; - font-size: 0.85em; - margin-top: 0.25rem; } - html.theme--documenter-dark .help.is-white { - color: white; } - html.theme--documenter-dark .help.is-black { - color: #0a0a0a; } - html.theme--documenter-dark .help.is-light { - color: #ecf0f1; } - html.theme--documenter-dark .help.is-dark, html.theme--documenter-dark .content kbd.help { - color: #282f2f; } - html.theme--documenter-dark .help.is-primary, html.theme--documenter-dark .docstring > section > a.help.docs-sourcelink { - color: #375a7f; } - html.theme--documenter-dark .help.is-link { - color: #1abc9c; } - html.theme--documenter-dark .help.is-info { - color: #024c7d; } - html.theme--documenter-dark .help.is-success { - color: #008438; } - html.theme--documenter-dark .help.is-warning { - color: #ad8100; } - html.theme--documenter-dark .help.is-danger { - color: #9e1b0d; } - html.theme--documenter-dark .field:not(:last-child) { - margin-bottom: 0.75rem; } - html.theme--documenter-dark .field.has-addons { - display: flex; - justify-content: flex-start; } - html.theme--documenter-dark .field.has-addons .control:not(:last-child) { - margin-right: -1px; } - html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .button, - html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .input, - html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search > input, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search > input, - html.theme--documenter-dark .field.has-addons .control:not(:first-child):not(:last-child) .select select { - border-radius: 0; } - html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .button, - html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .input, - html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search > input, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search > input, - html.theme--documenter-dark .field.has-addons .control:first-child:not(:only-child) .select select { - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .button, - html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .input, - html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search > input, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search > input, - html.theme--documenter-dark .field.has-addons .control:last-child:not(:only-child) .select select { - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):hover, html.theme--documenter-dark .field.has-addons .control .button:not([disabled]).is-hovered, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):hover, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):hover, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):hover, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]).is-hovered, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-hovered, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-hovered, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):hover, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]).is-hovered { - z-index: 2; } - html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):focus, html.theme--documenter-dark .field.has-addons .control .button:not([disabled]).is-focused, html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):active, html.theme--documenter-dark .field.has-addons .control .button:not([disabled]).is-active, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):focus, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):focus, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):focus, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]).is-focused, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-focused, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-focused, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):active, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):active, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):active, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]).is-active, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-active, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-active, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):focus, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]).is-focused, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):active, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]).is-active { - z-index: 3; } - html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):focus:hover, html.theme--documenter-dark .field.has-addons .control .button:not([disabled]).is-focused:hover, html.theme--documenter-dark .field.has-addons .control .button:not([disabled]):active:hover, html.theme--documenter-dark .field.has-addons .control .button:not([disabled]).is-active:hover, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):focus:hover, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):focus:hover, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):focus:hover, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]).is-focused:hover, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-focused:hover, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-focused:hover, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]):active:hover, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):active:hover, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):active:hover, - html.theme--documenter-dark .field.has-addons .control .input:not([disabled]).is-active:hover, - html.theme--documenter-dark .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-active:hover, - html.theme--documenter-dark #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-active:hover, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):focus:hover, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]).is-focused:hover, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]):active:hover, - html.theme--documenter-dark .field.has-addons .control .select select:not([disabled]).is-active:hover { - z-index: 4; } - html.theme--documenter-dark .field.has-addons .control.is-expanded { - flex-grow: 1; - flex-shrink: 1; } - html.theme--documenter-dark .field.has-addons.has-addons-centered { - justify-content: center; } - html.theme--documenter-dark .field.has-addons.has-addons-right { - justify-content: flex-end; } - html.theme--documenter-dark .field.has-addons.has-addons-fullwidth .control { - flex-grow: 1; - flex-shrink: 0; } - html.theme--documenter-dark .field.is-grouped { - display: flex; - justify-content: flex-start; } - html.theme--documenter-dark .field.is-grouped > .control { - flex-shrink: 0; } - html.theme--documenter-dark .field.is-grouped > .control:not(:last-child) { - margin-bottom: 0; - margin-right: 0.75rem; } - html.theme--documenter-dark .field.is-grouped > .control.is-expanded { - flex-grow: 1; - flex-shrink: 1; } - html.theme--documenter-dark .field.is-grouped.is-grouped-centered { - justify-content: center; } - html.theme--documenter-dark .field.is-grouped.is-grouped-right { - justify-content: flex-end; } - html.theme--documenter-dark .field.is-grouped.is-grouped-multiline { - flex-wrap: wrap; } - html.theme--documenter-dark .field.is-grouped.is-grouped-multiline > .control:last-child, html.theme--documenter-dark .field.is-grouped.is-grouped-multiline > .control:not(:last-child) { - margin-bottom: 0.75rem; } - html.theme--documenter-dark .field.is-grouped.is-grouped-multiline:last-child { - margin-bottom: -0.75rem; } - html.theme--documenter-dark .field.is-grouped.is-grouped-multiline:not(:last-child) { - margin-bottom: 0; } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .field.is-horizontal { - display: flex; } } - html.theme--documenter-dark .field-label .label { - font-size: inherit; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .field-label { - margin-bottom: 0.5rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .field-label { - flex-basis: 0; - flex-grow: 1; - flex-shrink: 0; - margin-right: 1.5rem; - text-align: right; } - html.theme--documenter-dark .field-label.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.field-label { - font-size: 0.85em; - padding-top: 0.375em; } - html.theme--documenter-dark .field-label.is-normal { - padding-top: 0.375em; } - html.theme--documenter-dark .field-label.is-medium { - font-size: 1.25rem; - padding-top: 0.375em; } - html.theme--documenter-dark .field-label.is-large { - font-size: 1.5rem; - padding-top: 0.375em; } } - html.theme--documenter-dark .field-body .field .field { - margin-bottom: 0; } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .field-body { - display: flex; - flex-basis: 0; - flex-grow: 5; - flex-shrink: 1; } - html.theme--documenter-dark .field-body .field { - margin-bottom: 0; } - html.theme--documenter-dark .field-body > .field { - flex-shrink: 1; } - html.theme--documenter-dark .field-body > .field:not(.is-narrow) { - flex-grow: 1; } - html.theme--documenter-dark .field-body > .field:not(:last-child) { - margin-right: 0.75rem; } } - html.theme--documenter-dark .control { - box-sizing: border-box; - clear: both; - font-size: 15px; - position: relative; - text-align: left; } - html.theme--documenter-dark .control.has-icons-left .input:focus ~ .icon, html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search > input:focus ~ .icon, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search > input:focus ~ .icon, - html.theme--documenter-dark .control.has-icons-left .select:focus ~ .icon, html.theme--documenter-dark .control.has-icons-right .input:focus ~ .icon, html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search > input:focus ~ .icon, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search > input:focus ~ .icon, - html.theme--documenter-dark .control.has-icons-right .select:focus ~ .icon { - color: #5e6d6f; } - html.theme--documenter-dark .control.has-icons-left .input.is-small ~ .icon, html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search > input ~ .icon, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search > input ~ .icon, - html.theme--documenter-dark .control.has-icons-left .select.is-small ~ .icon, - html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search > input.select ~ .icon, - html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search > input.select ~ .icon, html.theme--documenter-dark .control.has-icons-right .input.is-small ~ .icon, html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search > input ~ .icon, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search > input ~ .icon, - html.theme--documenter-dark .control.has-icons-right .select.is-small ~ .icon, - html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search > input.select ~ .icon, - html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search > input.select ~ .icon { - font-size: 0.85em; } - html.theme--documenter-dark .control.has-icons-left .input.is-medium ~ .icon, html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search > input.is-medium ~ .icon, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search > input.is-medium ~ .icon, - html.theme--documenter-dark .control.has-icons-left .select.is-medium ~ .icon, html.theme--documenter-dark .control.has-icons-right .input.is-medium ~ .icon, html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search > input.is-medium ~ .icon, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search > input.is-medium ~ .icon, - html.theme--documenter-dark .control.has-icons-right .select.is-medium ~ .icon { - font-size: 1.25rem; } - html.theme--documenter-dark .control.has-icons-left .input.is-large ~ .icon, html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search > input.is-large ~ .icon, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search > input.is-large ~ .icon, - html.theme--documenter-dark .control.has-icons-left .select.is-large ~ .icon, html.theme--documenter-dark .control.has-icons-right .input.is-large ~ .icon, html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search > input.is-large ~ .icon, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search > input.is-large ~ .icon, - html.theme--documenter-dark .control.has-icons-right .select.is-large ~ .icon { - font-size: 1.5rem; } - html.theme--documenter-dark .control.has-icons-left .icon, html.theme--documenter-dark .control.has-icons-right .icon { - color: #dbdee0; - height: 2.25em; - pointer-events: none; - position: absolute; - top: 0; - width: 2.25em; - z-index: 4; } - html.theme--documenter-dark .control.has-icons-left .input, html.theme--documenter-dark .control.has-icons-left #documenter .docs-sidebar form.docs-search > input, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-left form.docs-search > input, - html.theme--documenter-dark .control.has-icons-left .select select { - padding-left: 2.25em; } - html.theme--documenter-dark .control.has-icons-left .icon.is-left { - left: 0; } - html.theme--documenter-dark .control.has-icons-right .input, html.theme--documenter-dark .control.has-icons-right #documenter .docs-sidebar form.docs-search > input, html.theme--documenter-dark #documenter .docs-sidebar .control.has-icons-right form.docs-search > input, - html.theme--documenter-dark .control.has-icons-right .select select { - padding-right: 2.25em; } - html.theme--documenter-dark .control.has-icons-right .icon.is-right { - right: 0; } - html.theme--documenter-dark .control.is-loading::after { - position: absolute !important; - right: 0.625em; - top: 0.625em; - z-index: 4; } - html.theme--documenter-dark .control.is-loading.is-small:after, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.control.is-loading:after { - font-size: 0.85em; } - html.theme--documenter-dark .control.is-loading.is-medium:after { - font-size: 1.25rem; } - html.theme--documenter-dark .control.is-loading.is-large:after { - font-size: 1.5rem; } - html.theme--documenter-dark .breadcrumb { - font-size: 15px; - white-space: nowrap; } - html.theme--documenter-dark .breadcrumb a { - align-items: center; - color: #1abc9c; - display: flex; - justify-content: center; - padding: 0 0.75em; } - html.theme--documenter-dark .breadcrumb a:hover { - color: #1dd2af; } - html.theme--documenter-dark .breadcrumb li { - align-items: center; - display: flex; } - html.theme--documenter-dark .breadcrumb li:first-child a { - padding-left: 0; } - html.theme--documenter-dark .breadcrumb li.is-active a { - color: #f2f2f2; - cursor: default; - pointer-events: none; } - html.theme--documenter-dark .breadcrumb li + li::before { - color: #8c9b9d; - content: "\0002f"; } - html.theme--documenter-dark .breadcrumb ul, - html.theme--documenter-dark .breadcrumb ol { - align-items: flex-start; - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - html.theme--documenter-dark .breadcrumb .icon:first-child { - margin-right: 0.5em; } - html.theme--documenter-dark .breadcrumb .icon:last-child { - margin-left: 0.5em; } - html.theme--documenter-dark .breadcrumb.is-centered ol, - html.theme--documenter-dark .breadcrumb.is-centered ul { - justify-content: center; } - html.theme--documenter-dark .breadcrumb.is-right ol, - html.theme--documenter-dark .breadcrumb.is-right ul { - justify-content: flex-end; } - html.theme--documenter-dark .breadcrumb.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.breadcrumb { - font-size: 0.85em; } - html.theme--documenter-dark .breadcrumb.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .breadcrumb.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .breadcrumb.has-arrow-separator li + li::before { - content: "\02192"; } - html.theme--documenter-dark .breadcrumb.has-bullet-separator li + li::before { - content: "\02022"; } - html.theme--documenter-dark .breadcrumb.has-dot-separator li + li::before { - content: "\000b7"; } - html.theme--documenter-dark .breadcrumb.has-succeeds-separator li + li::before { - content: "\0227B"; } - html.theme--documenter-dark .card { - background-color: white; - box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - color: #fff; - max-width: 100%; - position: relative; } - html.theme--documenter-dark .card-header { - background-color: transparent; - align-items: stretch; - box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1); - display: flex; } - html.theme--documenter-dark .card-header-title { - align-items: center; - color: #f2f2f2; - display: flex; - flex-grow: 1; - font-weight: 700; - padding: 0.75rem; } - html.theme--documenter-dark .card-header-title.is-centered { - justify-content: center; } - html.theme--documenter-dark .card-header-icon { - align-items: center; - cursor: pointer; - display: flex; - justify-content: center; - padding: 0.75rem; } - html.theme--documenter-dark .card-image { - display: block; - position: relative; } - html.theme--documenter-dark .card-content { - background-color: transparent; - padding: 1rem 1.25rem; } - html.theme--documenter-dark .card-footer { - background-color: transparent; - border-top: 1px solid #5e6d6f; - align-items: stretch; - display: flex; } - html.theme--documenter-dark .card-footer-item { - align-items: center; - display: flex; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 0; - justify-content: center; - padding: 0.75rem; } - html.theme--documenter-dark .card-footer-item:not(:last-child) { - border-right: 1px solid #5e6d6f; } - html.theme--documenter-dark .card .media:not(:last-child) { - margin-bottom: 1.5rem; } - html.theme--documenter-dark .dropdown { - display: inline-flex; - position: relative; - vertical-align: top; } - html.theme--documenter-dark .dropdown.is-active .dropdown-menu, html.theme--documenter-dark .dropdown.is-hoverable:hover .dropdown-menu { - display: block; } - html.theme--documenter-dark .dropdown.is-right .dropdown-menu { - left: auto; - right: 0; } - html.theme--documenter-dark .dropdown.is-up .dropdown-menu { - bottom: 100%; - padding-bottom: 4px; - padding-top: initial; - top: auto; } - html.theme--documenter-dark .dropdown-menu { - display: none; - left: 0; - min-width: 12rem; - padding-top: 4px; - position: absolute; - top: 100%; - z-index: 20; } - html.theme--documenter-dark .dropdown-content { - background-color: #282f2f; - border-radius: 0.4em; - box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - padding-bottom: 0.5rem; - padding-top: 0.5rem; } - html.theme--documenter-dark .dropdown-item { - color: #fff; - display: block; - font-size: 0.875rem; - line-height: 1.5; - padding: 0.375rem 1rem; - position: relative; } - html.theme--documenter-dark a.dropdown-item, - html.theme--documenter-dark button.dropdown-item { - padding-right: 3rem; - text-align: left; - white-space: nowrap; - width: 100%; } - html.theme--documenter-dark a.dropdown-item:hover, - html.theme--documenter-dark button.dropdown-item:hover { - background-color: #282f2f; - color: #0a0a0a; } - html.theme--documenter-dark a.dropdown-item.is-active, - html.theme--documenter-dark button.dropdown-item.is-active { - background-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .dropdown-divider { - background-color: #5e6d6f; - border: none; - display: block; - height: 1px; - margin: 0.5rem 0; } - html.theme--documenter-dark .level { - align-items: center; - justify-content: space-between; } - html.theme--documenter-dark .level code { - border-radius: 0.4em; } - html.theme--documenter-dark .level img { - display: inline-block; - vertical-align: top; } - html.theme--documenter-dark .level.is-mobile { - display: flex; } - html.theme--documenter-dark .level.is-mobile .level-left, - html.theme--documenter-dark .level.is-mobile .level-right { - display: flex; } - html.theme--documenter-dark .level.is-mobile .level-left + .level-right { - margin-top: 0; } - html.theme--documenter-dark .level.is-mobile .level-item:not(:last-child) { - margin-bottom: 0; - margin-right: 0.75rem; } - html.theme--documenter-dark .level.is-mobile .level-item:not(.is-narrow) { - flex-grow: 1; } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .level { - display: flex; } - html.theme--documenter-dark .level > .level-item:not(.is-narrow) { - flex-grow: 1; } } - html.theme--documenter-dark .level-item { - align-items: center; - display: flex; - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; - justify-content: center; } - html.theme--documenter-dark .level-item .title, - html.theme--documenter-dark .level-item .subtitle { - margin-bottom: 0; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .level-item:not(:last-child) { - margin-bottom: 0.75rem; } } - html.theme--documenter-dark .level-left, - html.theme--documenter-dark .level-right { - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; } - html.theme--documenter-dark .level-left .level-item.is-flexible, - html.theme--documenter-dark .level-right .level-item.is-flexible { - flex-grow: 1; } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .level-left .level-item:not(:last-child), - html.theme--documenter-dark .level-right .level-item:not(:last-child) { - margin-right: 0.75rem; } } - html.theme--documenter-dark .level-left { - align-items: center; - justify-content: flex-start; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .level-left + .level-right { - margin-top: 1.5rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .level-left { - display: flex; } } - html.theme--documenter-dark .level-right { - align-items: center; - justify-content: flex-end; } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .level-right { - display: flex; } } - html.theme--documenter-dark .list { - background-color: white; - border-radius: 0.4em; - box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .list-item { - display: block; - padding: 0.5em 1em; } - html.theme--documenter-dark .list-item:not(a) { - color: #fff; } - html.theme--documenter-dark .list-item:first-child { - border-top-left-radius: 0.4em; - border-top-right-radius: 0.4em; } - html.theme--documenter-dark .list-item:last-child { - border-bottom-left-radius: 0.4em; - border-bottom-right-radius: 0.4em; } - html.theme--documenter-dark .list-item:not(:last-child) { - border-bottom: 1px solid #5e6d6f; } - html.theme--documenter-dark .list-item.is-active { - background-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark a.list-item { - background-color: #282f2f; - cursor: pointer; } - html.theme--documenter-dark .media { - align-items: flex-start; - display: flex; - text-align: left; } - html.theme--documenter-dark .media .content:not(:last-child) { - margin-bottom: 0.75rem; } - html.theme--documenter-dark .media .media { - border-top: 1px solid rgba(94, 109, 111, 0.5); - display: flex; - padding-top: 0.75rem; } - html.theme--documenter-dark .media .media .content:not(:last-child), - html.theme--documenter-dark .media .media .control:not(:last-child) { - margin-bottom: 0.5rem; } - html.theme--documenter-dark .media .media .media { - padding-top: 0.5rem; } - html.theme--documenter-dark .media .media .media + .media { - margin-top: 0.5rem; } - html.theme--documenter-dark .media + .media { - border-top: 1px solid rgba(94, 109, 111, 0.5); - margin-top: 1rem; - padding-top: 1rem; } - html.theme--documenter-dark .media.is-large + .media { - margin-top: 1.5rem; - padding-top: 1.5rem; } - html.theme--documenter-dark .media-left, - html.theme--documenter-dark .media-right { - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; } - html.theme--documenter-dark .media-left { - margin-right: 1rem; } - html.theme--documenter-dark .media-right { - margin-left: 1rem; } - html.theme--documenter-dark .media-content { - flex-basis: auto; - flex-grow: 1; - flex-shrink: 1; - text-align: left; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .media-content { - overflow-x: auto; } } - html.theme--documenter-dark .menu { - font-size: 15px; } - html.theme--documenter-dark .menu.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.menu { - font-size: 0.85em; } - html.theme--documenter-dark .menu.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .menu.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .menu-list { - line-height: 1.25; } - html.theme--documenter-dark .menu-list a { - border-radius: 3px; - color: #fff; - display: block; - padding: 0.5em 0.75em; } - html.theme--documenter-dark .menu-list a:hover { - background-color: #282f2f; - color: #f2f2f2; } - html.theme--documenter-dark .menu-list a.is-active { - background-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .menu-list li ul { - border-left: 1px solid #5e6d6f; - margin: 0.75em; - padding-left: 0.75em; } - html.theme--documenter-dark .menu-label { - color: white; - font-size: 0.75em; - letter-spacing: 0.1em; - text-transform: uppercase; } - html.theme--documenter-dark .menu-label:not(:first-child) { - margin-top: 1em; } - html.theme--documenter-dark .menu-label:not(:last-child) { - margin-bottom: 1em; } - html.theme--documenter-dark .message { - background-color: #282f2f; - border-radius: 0.4em; - font-size: 15px; } - html.theme--documenter-dark .message strong { - color: currentColor; } - html.theme--documenter-dark .message a:not(.button):not(.tag):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; } - html.theme--documenter-dark .message.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.message { - font-size: 0.85em; } - html.theme--documenter-dark .message.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .message.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .message.is-white { - background-color: white; } - html.theme--documenter-dark .message.is-white .message-header { - background-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .message.is-white .message-body { - border-color: white; - color: #4d4d4d; } - html.theme--documenter-dark .message.is-black { - background-color: #fafafa; } - html.theme--documenter-dark .message.is-black .message-header { - background-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .message.is-black .message-body { - border-color: #0a0a0a; - color: #090909; } - html.theme--documenter-dark .message.is-light { - background-color: #f9fafb; } - html.theme--documenter-dark .message.is-light .message-header { - background-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .message.is-light .message-body { - border-color: #ecf0f1; - color: #505050; } - html.theme--documenter-dark .message.is-dark, html.theme--documenter-dark .content kbd.message { - background-color: #f9fafa; } - html.theme--documenter-dark .message.is-dark .message-header, html.theme--documenter-dark .content kbd.message .message-header { - background-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .message.is-dark .message-body, html.theme--documenter-dark .content kbd.message .message-body { - border-color: #282f2f; - color: #212526; } - html.theme--documenter-dark .message.is-primary, html.theme--documenter-dark .docstring > section > a.message.docs-sourcelink { - background-color: #f8fafc; } - html.theme--documenter-dark .message.is-primary .message-header, html.theme--documenter-dark .docstring > section > a.message.docs-sourcelink .message-header { - background-color: #375a7f; - color: #fff; } - html.theme--documenter-dark .message.is-primary .message-body, html.theme--documenter-dark .docstring > section > a.message.docs-sourcelink .message-body { - border-color: #375a7f; - color: #2b4159; } - html.theme--documenter-dark .message.is-link { - background-color: #f6fefc; } - html.theme--documenter-dark .message.is-link .message-header { - background-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .message.is-link .message-body { - border-color: #1abc9c; - color: #0b2f28; } - html.theme--documenter-dark .message.is-info { - background-color: #f5fbff; } - html.theme--documenter-dark .message.is-info .message-header { - background-color: #024c7d; - color: #fff; } - html.theme--documenter-dark .message.is-info .message-body { - border-color: #024c7d; - color: #033659; } - html.theme--documenter-dark .message.is-success { - background-color: #f5fff9; } - html.theme--documenter-dark .message.is-success .message-header { - background-color: #008438; - color: #fff; } - html.theme--documenter-dark .message.is-success .message-body { - border-color: #008438; - color: #023518; } - html.theme--documenter-dark .message.is-warning { - background-color: #fffcf5; } - html.theme--documenter-dark .message.is-warning .message-header { - background-color: #ad8100; - color: #fff; } - html.theme--documenter-dark .message.is-warning .message-body { - border-color: #ad8100; - color: #3d2e03; } - html.theme--documenter-dark .message.is-danger { - background-color: #fef6f6; } - html.theme--documenter-dark .message.is-danger .message-header { - background-color: #9e1b0d; - color: #fff; } - html.theme--documenter-dark .message.is-danger .message-body { - border-color: #9e1b0d; - color: #7a170c; } - html.theme--documenter-dark .message-header { - align-items: center; - background-color: #fff; - border-radius: 0.4em 0.4em 0 0; - color: rgba(0, 0, 0, 0.7); - display: flex; - font-weight: 700; - justify-content: space-between; - line-height: 1.25; - padding: 0.75em; - position: relative; } - html.theme--documenter-dark .message-header .delete { - flex-grow: 0; - flex-shrink: 0; - margin-left: 0.75em; } - html.theme--documenter-dark .message-header + .message-body { - border-width: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; } - html.theme--documenter-dark .message-body { - border-color: #5e6d6f; - border-radius: 0.4em; - border-style: solid; - border-width: 0 0 0 4px; - color: #fff; - padding: 1em 1.25em; } - html.theme--documenter-dark .message-body code, - html.theme--documenter-dark .message-body pre { - background-color: white; } - html.theme--documenter-dark .message-body pre code { - background-color: transparent; } - html.theme--documenter-dark .modal { - align-items: center; - display: none; - flex-direction: column; - justify-content: center; - overflow: hidden; - position: fixed; - z-index: 40; } - html.theme--documenter-dark .modal.is-active { - display: flex; } - html.theme--documenter-dark .modal-background { - background-color: rgba(10, 10, 10, 0.86); } - html.theme--documenter-dark .modal-content, - html.theme--documenter-dark .modal-card { - margin: 0 20px; - max-height: calc(100vh - 160px); - overflow: auto; - position: relative; - width: 100%; } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .modal-content, - html.theme--documenter-dark .modal-card { - margin: 0 auto; - max-height: calc(100vh - 40px); - width: 640px; } } - html.theme--documenter-dark .modal-close { - background: none; - height: 40px; - position: fixed; - right: 20px; - top: 20px; - width: 40px; } - html.theme--documenter-dark .modal-card { - display: flex; - flex-direction: column; - max-height: calc(100vh - 40px); - overflow: hidden; - -ms-overflow-y: visible; } - html.theme--documenter-dark .modal-card-head, - html.theme--documenter-dark .modal-card-foot { - align-items: center; - background-color: #282f2f; - display: flex; - flex-shrink: 0; - justify-content: flex-start; - padding: 20px; - position: relative; } - html.theme--documenter-dark .modal-card-head { - border-bottom: 1px solid #5e6d6f; - border-top-left-radius: 8px; - border-top-right-radius: 8px; } - html.theme--documenter-dark .modal-card-title { - color: #f2f2f2; - flex-grow: 1; - flex-shrink: 0; - font-size: 1.5rem; - line-height: 1; } - html.theme--documenter-dark .modal-card-foot { - border-bottom-left-radius: 8px; - border-bottom-right-radius: 8px; - border-top: 1px solid #5e6d6f; } - html.theme--documenter-dark .modal-card-foot .button:not(:last-child) { - margin-right: 0.5em; } - html.theme--documenter-dark .modal-card-body { - -webkit-overflow-scrolling: touch; - background-color: white; - flex-grow: 1; - flex-shrink: 1; - overflow: auto; - padding: 20px; } - html.theme--documenter-dark .navbar { - background-color: #375a7f; - min-height: 4rem; - position: relative; - z-index: 30; } - html.theme--documenter-dark .navbar.is-white { - background-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .navbar.is-white .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link { - color: #0a0a0a; } - html.theme--documenter-dark .navbar.is-white .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-white .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-white .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link.is-active { - background-color: #f2f2f2; - color: #0a0a0a; } - html.theme--documenter-dark .navbar.is-white .navbar-brand .navbar-link::after { - border-color: #0a0a0a; } - html.theme--documenter-dark .navbar.is-white .navbar-burger { - color: #0a0a0a; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-white .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-white .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link { - color: #0a0a0a; } - html.theme--documenter-dark .navbar.is-white .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-white .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-white .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-white .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-white .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-white .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link.is-active { - background-color: #f2f2f2; - color: #0a0a0a; } - html.theme--documenter-dark .navbar.is-white .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-white .navbar-end .navbar-link::after { - border-color: #0a0a0a; } - html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #f2f2f2; - color: #0a0a0a; } - html.theme--documenter-dark .navbar.is-white .navbar-dropdown a.navbar-item.is-active { - background-color: white; - color: #0a0a0a; } } - html.theme--documenter-dark .navbar.is-black { - background-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .navbar.is-black .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link { - color: white; } - html.theme--documenter-dark .navbar.is-black .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-black .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-black .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link.is-active { - background-color: black; - color: white; } - html.theme--documenter-dark .navbar.is-black .navbar-brand .navbar-link::after { - border-color: white; } - html.theme--documenter-dark .navbar.is-black .navbar-burger { - color: white; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-black .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-black .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link { - color: white; } - html.theme--documenter-dark .navbar.is-black .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-black .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-black .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-black .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-black .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-black .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link.is-active { - background-color: black; - color: white; } - html.theme--documenter-dark .navbar.is-black .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-black .navbar-end .navbar-link::after { - border-color: white; } - html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link { - background-color: black; - color: white; } - html.theme--documenter-dark .navbar.is-black .navbar-dropdown a.navbar-item.is-active { - background-color: #0a0a0a; - color: white; } } - html.theme--documenter-dark .navbar.is-light { - background-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .navbar.is-light .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link { - color: #282f2f; } - html.theme--documenter-dark .navbar.is-light .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-light .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-light .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link.is-active { - background-color: #dde4e6; - color: #282f2f; } - html.theme--documenter-dark .navbar.is-light .navbar-brand .navbar-link::after { - border-color: #282f2f; } - html.theme--documenter-dark .navbar.is-light .navbar-burger { - color: #282f2f; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-light .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-light .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link { - color: #282f2f; } - html.theme--documenter-dark .navbar.is-light .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-light .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-light .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-light .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-light .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-light .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link.is-active { - background-color: #dde4e6; - color: #282f2f; } - html.theme--documenter-dark .navbar.is-light .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-light .navbar-end .navbar-link::after { - border-color: #282f2f; } - html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #dde4e6; - color: #282f2f; } - html.theme--documenter-dark .navbar.is-light .navbar-dropdown a.navbar-item.is-active { - background-color: #ecf0f1; - color: #282f2f; } } - html.theme--documenter-dark .navbar.is-dark, html.theme--documenter-dark .content kbd.navbar { - background-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .navbar.is-dark .navbar-brand > .navbar-item, html.theme--documenter-dark .content kbd.navbar .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link, - html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link { - color: #ecf0f1; } - html.theme--documenter-dark .navbar.is-dark .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .content kbd.navbar .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-dark .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .content kbd.navbar .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-dark .navbar-brand > a.navbar-item.is-active, html.theme--documenter-dark .content kbd.navbar .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link.is-active, - html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link.is-active { - background-color: #1d2122; - color: #ecf0f1; } - html.theme--documenter-dark .navbar.is-dark .navbar-brand .navbar-link::after, html.theme--documenter-dark .content kbd.navbar .navbar-brand .navbar-link::after { - border-color: #ecf0f1; } - html.theme--documenter-dark .navbar.is-dark .navbar-burger, html.theme--documenter-dark .content kbd.navbar .navbar-burger { - color: #ecf0f1; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-dark .navbar-start > .navbar-item, html.theme--documenter-dark .content kbd.navbar .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link, - html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-dark .navbar-end > .navbar-item, - html.theme--documenter-dark .content kbd.navbar .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link, - html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link { - color: #ecf0f1; } - html.theme--documenter-dark .navbar.is-dark .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .content kbd.navbar .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-dark .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .content kbd.navbar .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-dark .navbar-start > a.navbar-item.is-active, html.theme--documenter-dark .content kbd.navbar .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link:focus, - html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link:hover, - html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-dark .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .content kbd.navbar .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-dark .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .content kbd.navbar .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-dark .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .content kbd.navbar .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link:focus, - html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link:hover, - html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link.is-active, - html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link.is-active { - background-color: #1d2122; - color: #ecf0f1; } - html.theme--documenter-dark .navbar.is-dark .navbar-start .navbar-link::after, html.theme--documenter-dark .content kbd.navbar .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-dark .navbar-end .navbar-link::after, - html.theme--documenter-dark .content kbd.navbar .navbar-end .navbar-link::after { - border-color: #ecf0f1; } - html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link, html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link, - html.theme--documenter-dark .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #1d2122; - color: #ecf0f1; } - html.theme--documenter-dark .navbar.is-dark .navbar-dropdown a.navbar-item.is-active, html.theme--documenter-dark .content kbd.navbar .navbar-dropdown a.navbar-item.is-active { - background-color: #282f2f; - color: #ecf0f1; } } - html.theme--documenter-dark .navbar.is-primary, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink { - background-color: #375a7f; - color: #fff; } - html.theme--documenter-dark .navbar.is-primary .navbar-brand > .navbar-item, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-primary .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-primary .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-primary .navbar-brand > a.navbar-item.is-active, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link.is-active, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active { - background-color: #2f4d6d; - color: #fff; } - html.theme--documenter-dark .navbar.is-primary .navbar-brand .navbar-link::after, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-primary .navbar-burger, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-primary .navbar-start > .navbar-item, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-primary .navbar-end > .navbar-item, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-primary .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-primary .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-primary .navbar-start > a.navbar-item.is-active, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link:focus, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link:hover, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-primary .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-primary .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-primary .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link:focus, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link:hover, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link.is-active, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active { - background-color: #2f4d6d; - color: #fff; } - html.theme--documenter-dark .navbar.is-primary .navbar-start .navbar-link::after, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-primary .navbar-end .navbar-link::after, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link, - html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #2f4d6d; - color: #fff; } - html.theme--documenter-dark .navbar.is-primary .navbar-dropdown a.navbar-item.is-active, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active { - background-color: #375a7f; - color: #fff; } } - html.theme--documenter-dark .navbar.is-link { - background-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .navbar.is-link .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-link .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-link .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-link .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link.is-active { - background-color: #17a689; - color: #fff; } - html.theme--documenter-dark .navbar.is-link .navbar-brand .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-link .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-link .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-link .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-link .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-link .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-link .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-link .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-link .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-link .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link.is-active { - background-color: #17a689; - color: #fff; } - html.theme--documenter-dark .navbar.is-link .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-link .navbar-end .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #17a689; - color: #fff; } - html.theme--documenter-dark .navbar.is-link .navbar-dropdown a.navbar-item.is-active { - background-color: #1abc9c; - color: #fff; } } - html.theme--documenter-dark .navbar.is-info { - background-color: #024c7d; - color: #fff; } - html.theme--documenter-dark .navbar.is-info .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-info .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-info .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-info .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link.is-active { - background-color: #023d64; - color: #fff; } - html.theme--documenter-dark .navbar.is-info .navbar-brand .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-info .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-info .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-info .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-info .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-info .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-info .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-info .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-info .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-info .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link.is-active { - background-color: #023d64; - color: #fff; } - html.theme--documenter-dark .navbar.is-info .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-info .navbar-end .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #023d64; - color: #fff; } - html.theme--documenter-dark .navbar.is-info .navbar-dropdown a.navbar-item.is-active { - background-color: #024c7d; - color: #fff; } } - html.theme--documenter-dark .navbar.is-success { - background-color: #008438; - color: #fff; } - html.theme--documenter-dark .navbar.is-success .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-success .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-success .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-success .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link.is-active { - background-color: #006b2d; - color: #fff; } - html.theme--documenter-dark .navbar.is-success .navbar-brand .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-success .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-success .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-success .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-success .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-success .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-success .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-success .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-success .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-success .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link.is-active { - background-color: #006b2d; - color: #fff; } - html.theme--documenter-dark .navbar.is-success .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-success .navbar-end .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #006b2d; - color: #fff; } - html.theme--documenter-dark .navbar.is-success .navbar-dropdown a.navbar-item.is-active { - background-color: #008438; - color: #fff; } } - html.theme--documenter-dark .navbar.is-warning { - background-color: #ad8100; - color: #fff; } - html.theme--documenter-dark .navbar.is-warning .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-warning .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-warning .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-warning .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link.is-active { - background-color: #946e00; - color: #fff; } - html.theme--documenter-dark .navbar.is-warning .navbar-brand .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-warning .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-warning .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-warning .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-warning .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-warning .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-warning .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-warning .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-warning .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-warning .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link.is-active { - background-color: #946e00; - color: #fff; } - html.theme--documenter-dark .navbar.is-warning .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-warning .navbar-end .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #946e00; - color: #fff; } - html.theme--documenter-dark .navbar.is-warning .navbar-dropdown a.navbar-item.is-active { - background-color: #ad8100; - color: #fff; } } - html.theme--documenter-dark .navbar.is-danger { - background-color: #9e1b0d; - color: #fff; } - html.theme--documenter-dark .navbar.is-danger .navbar-brand > .navbar-item, - html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-danger .navbar-brand > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-danger .navbar-brand > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-danger .navbar-brand > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link:focus, - html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link:hover, - html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link.is-active { - background-color: #86170b; - color: #fff; } - html.theme--documenter-dark .navbar.is-danger .navbar-brand .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-danger .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar.is-danger .navbar-start > .navbar-item, - html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link, - html.theme--documenter-dark .navbar.is-danger .navbar-end > .navbar-item, - html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link { - color: #fff; } - html.theme--documenter-dark .navbar.is-danger .navbar-start > a.navbar-item:focus, html.theme--documenter-dark .navbar.is-danger .navbar-start > a.navbar-item:hover, html.theme--documenter-dark .navbar.is-danger .navbar-start > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link:focus, - html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link:hover, - html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link.is-active, - html.theme--documenter-dark .navbar.is-danger .navbar-end > a.navbar-item:focus, - html.theme--documenter-dark .navbar.is-danger .navbar-end > a.navbar-item:hover, - html.theme--documenter-dark .navbar.is-danger .navbar-end > a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link:focus, - html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link:hover, - html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link.is-active { - background-color: #86170b; - color: #fff; } - html.theme--documenter-dark .navbar.is-danger .navbar-start .navbar-link::after, - html.theme--documenter-dark .navbar.is-danger .navbar-end .navbar-link::after { - border-color: #fff; } - html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link, - html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link, - html.theme--documenter-dark .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #86170b; - color: #fff; } - html.theme--documenter-dark .navbar.is-danger .navbar-dropdown a.navbar-item.is-active { - background-color: #9e1b0d; - color: #fff; } } - html.theme--documenter-dark .navbar > .container { - align-items: stretch; - display: flex; - min-height: 4rem; - width: 100%; } - html.theme--documenter-dark .navbar.has-shadow { - box-shadow: 0 2px 0 0 #282f2f; } - html.theme--documenter-dark .navbar.is-fixed-bottom, html.theme--documenter-dark .navbar.is-fixed-top { - left: 0; - position: fixed; - right: 0; - z-index: 30; } - html.theme--documenter-dark .navbar.is-fixed-bottom { - bottom: 0; } - html.theme--documenter-dark .navbar.is-fixed-bottom.has-shadow { - box-shadow: 0 -2px 0 0 #282f2f; } - html.theme--documenter-dark .navbar.is-fixed-top { - top: 0; } - html.theme--documenter-dark html.has-navbar-fixed-top, - html.theme--documenter-dark body.has-navbar-fixed-top { - padding-top: 4rem; } - html.theme--documenter-dark html.has-navbar-fixed-bottom, - html.theme--documenter-dark body.has-navbar-fixed-bottom { - padding-bottom: 4rem; } - html.theme--documenter-dark .navbar-brand, - html.theme--documenter-dark .navbar-tabs { - align-items: stretch; - display: flex; - flex-shrink: 0; - min-height: 4rem; } - html.theme--documenter-dark .navbar-brand a.navbar-item:focus, html.theme--documenter-dark .navbar-brand a.navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .navbar-tabs { - -webkit-overflow-scrolling: touch; - max-width: 100vw; - overflow-x: auto; - overflow-y: hidden; } - html.theme--documenter-dark .navbar-burger { - color: #fff; - cursor: pointer; - display: block; - height: 4rem; - position: relative; - width: 4rem; - margin-left: auto; } - html.theme--documenter-dark .navbar-burger span { - background-color: currentColor; - display: block; - height: 1px; - left: calc(50% - 8px); - position: absolute; - transform-origin: center; - transition-duration: 86ms; - transition-property: background-color, opacity, transform; - transition-timing-function: ease-out; - width: 16px; } - html.theme--documenter-dark .navbar-burger span:nth-child(1) { - top: calc(50% - 6px); } - html.theme--documenter-dark .navbar-burger span:nth-child(2) { - top: calc(50% - 1px); } - html.theme--documenter-dark .navbar-burger span:nth-child(3) { - top: calc(50% + 4px); } - html.theme--documenter-dark .navbar-burger:hover { - background-color: rgba(0, 0, 0, 0.05); } - html.theme--documenter-dark .navbar-burger.is-active span:nth-child(1) { - transform: translateY(5px) rotate(45deg); } - html.theme--documenter-dark .navbar-burger.is-active span:nth-child(2) { - opacity: 0; } - html.theme--documenter-dark .navbar-burger.is-active span:nth-child(3) { - transform: translateY(-5px) rotate(-45deg); } - html.theme--documenter-dark .navbar-menu { - display: none; } - html.theme--documenter-dark .navbar-item, - html.theme--documenter-dark .navbar-link { - color: #fff; - display: block; - line-height: 1.5; - padding: 0.5rem 0.75rem; - position: relative; } - html.theme--documenter-dark .navbar-item .icon:only-child, - html.theme--documenter-dark .navbar-link .icon:only-child { - margin-left: -0.25rem; - margin-right: -0.25rem; } - html.theme--documenter-dark a.navbar-item, - html.theme--documenter-dark .navbar-link { - cursor: pointer; } - html.theme--documenter-dark a.navbar-item:focus, html.theme--documenter-dark a.navbar-item:focus-within, html.theme--documenter-dark a.navbar-item:hover, html.theme--documenter-dark a.navbar-item.is-active, - html.theme--documenter-dark .navbar-link:focus, - html.theme--documenter-dark .navbar-link:focus-within, - html.theme--documenter-dark .navbar-link:hover, - html.theme--documenter-dark .navbar-link.is-active { - background-color: transparent; - color: #1abc9c; } - html.theme--documenter-dark .navbar-item { - display: block; - flex-grow: 0; - flex-shrink: 0; } - html.theme--documenter-dark .navbar-item img { - max-height: 1.75rem; } - html.theme--documenter-dark .navbar-item.has-dropdown { - padding: 0; } - html.theme--documenter-dark .navbar-item.is-expanded { - flex-grow: 1; - flex-shrink: 1; } - html.theme--documenter-dark .navbar-item.is-tab { - border-bottom: 1px solid transparent; - min-height: 4rem; - padding-bottom: calc(0.5rem - 1px); } - html.theme--documenter-dark .navbar-item.is-tab:focus, html.theme--documenter-dark .navbar-item.is-tab:hover { - background-color: transparent; - border-bottom-color: #1abc9c; } - html.theme--documenter-dark .navbar-item.is-tab.is-active { - background-color: transparent; - border-bottom-color: #1abc9c; - border-bottom-style: solid; - border-bottom-width: 3px; - color: #1abc9c; - padding-bottom: calc(0.5rem - 3px); } - html.theme--documenter-dark .navbar-content { - flex-grow: 1; - flex-shrink: 1; } - html.theme--documenter-dark .navbar-link:not(.is-arrowless) { - padding-right: 2.5em; } - html.theme--documenter-dark .navbar-link:not(.is-arrowless)::after { - border-color: #fff; - margin-top: -0.375em; - right: 1.125em; } - html.theme--documenter-dark .navbar-dropdown { - font-size: 0.875rem; - padding-bottom: 0.5rem; - padding-top: 0.5rem; } - html.theme--documenter-dark .navbar-dropdown .navbar-item { - padding-left: 1.5rem; - padding-right: 1.5rem; } - html.theme--documenter-dark .navbar-divider { - background-color: rgba(0, 0, 0, 0.2); - border: none; - display: none; - height: 2px; - margin: 0.5rem 0; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .navbar > .container { - display: block; } - html.theme--documenter-dark .navbar-brand .navbar-item, - html.theme--documenter-dark .navbar-tabs .navbar-item { - align-items: center; - display: flex; } - html.theme--documenter-dark .navbar-link::after { - display: none; } - html.theme--documenter-dark .navbar-menu { - background-color: #375a7f; - box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1); - padding: 0.5rem 0; } - html.theme--documenter-dark .navbar-menu.is-active { - display: block; } - html.theme--documenter-dark .navbar.is-fixed-bottom-touch, html.theme--documenter-dark .navbar.is-fixed-top-touch { - left: 0; - position: fixed; - right: 0; - z-index: 30; } - html.theme--documenter-dark .navbar.is-fixed-bottom-touch { - bottom: 0; } - html.theme--documenter-dark .navbar.is-fixed-bottom-touch.has-shadow { - box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .navbar.is-fixed-top-touch { - top: 0; } - html.theme--documenter-dark .navbar.is-fixed-top .navbar-menu, html.theme--documenter-dark .navbar.is-fixed-top-touch .navbar-menu { - -webkit-overflow-scrolling: touch; - max-height: calc(100vh - 4rem); - overflow: auto; } - html.theme--documenter-dark html.has-navbar-fixed-top-touch, - html.theme--documenter-dark body.has-navbar-fixed-top-touch { - padding-top: 4rem; } - html.theme--documenter-dark html.has-navbar-fixed-bottom-touch, - html.theme--documenter-dark body.has-navbar-fixed-bottom-touch { - padding-bottom: 4rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .navbar, - html.theme--documenter-dark .navbar-menu, - html.theme--documenter-dark .navbar-start, - html.theme--documenter-dark .navbar-end { - align-items: stretch; - display: flex; } - html.theme--documenter-dark .navbar { - min-height: 4rem; } - html.theme--documenter-dark .navbar.is-spaced { - padding: 1rem 2rem; } - html.theme--documenter-dark .navbar.is-spaced .navbar-start, - html.theme--documenter-dark .navbar.is-spaced .navbar-end { - align-items: center; } - html.theme--documenter-dark .navbar.is-spaced a.navbar-item, - html.theme--documenter-dark .navbar.is-spaced .navbar-link { - border-radius: 0.4em; } - html.theme--documenter-dark .navbar.is-transparent a.navbar-item:focus, html.theme--documenter-dark .navbar.is-transparent a.navbar-item:hover, html.theme--documenter-dark .navbar.is-transparent a.navbar-item.is-active, - html.theme--documenter-dark .navbar.is-transparent .navbar-link:focus, - html.theme--documenter-dark .navbar.is-transparent .navbar-link:hover, - html.theme--documenter-dark .navbar.is-transparent .navbar-link.is-active { - background-color: transparent !important; } - html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link, html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link, html.theme--documenter-dark .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link { - background-color: transparent !important; } - html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item:hover { - background-color: transparent; - color: #dbdee0; } - html.theme--documenter-dark .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active { - background-color: transparent; - color: #1abc9c; } - html.theme--documenter-dark .navbar-burger { - display: none; } - html.theme--documenter-dark .navbar-item, - html.theme--documenter-dark .navbar-link { - align-items: center; - display: flex; } - html.theme--documenter-dark .navbar-item { - display: flex; } - html.theme--documenter-dark .navbar-item.has-dropdown { - align-items: stretch; } - html.theme--documenter-dark .navbar-item.has-dropdown-up .navbar-link::after { - transform: rotate(135deg) translate(0.25em, -0.25em); } - html.theme--documenter-dark .navbar-item.has-dropdown-up .navbar-dropdown { - border-bottom: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 8px 8px 0 0; - border-top: none; - bottom: 100%; - box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1); - top: auto; } - html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown, html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown, html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown, html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown { - display: block; } - .navbar.is-spaced html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown, html.theme--documenter-dark .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown, html.theme--documenter-dark .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown, html.theme--documenter-dark .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown, html.theme--documenter-dark .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed { - opacity: 1; - pointer-events: auto; - transform: translateY(0); } - html.theme--documenter-dark .navbar-menu { - flex-grow: 1; - flex-shrink: 0; } - html.theme--documenter-dark .navbar-start { - justify-content: flex-start; - margin-right: auto; } - html.theme--documenter-dark .navbar-end { - justify-content: flex-end; - margin-left: auto; } - html.theme--documenter-dark .navbar-dropdown { - background-color: #375a7f; - border-bottom-left-radius: 8px; - border-bottom-right-radius: 8px; - border-top: 1px solid rgba(0, 0, 0, 0.2); - box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1); - display: none; - font-size: 0.875rem; - left: 0; - min-width: 100%; - position: absolute; - top: 100%; - z-index: 20; } - html.theme--documenter-dark .navbar-dropdown .navbar-item { - padding: 0.375rem 1rem; - white-space: nowrap; } - html.theme--documenter-dark .navbar-dropdown a.navbar-item { - padding-right: 3rem; } - html.theme--documenter-dark .navbar-dropdown a.navbar-item:focus, html.theme--documenter-dark .navbar-dropdown a.navbar-item:hover { - background-color: transparent; - color: #dbdee0; } - html.theme--documenter-dark .navbar-dropdown a.navbar-item.is-active { - background-color: transparent; - color: #1abc9c; } - .navbar.is-spaced html.theme--documenter-dark .navbar-dropdown, html.theme--documenter-dark .navbar-dropdown.is-boxed { - border-radius: 8px; - border-top: none; - box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - display: block; - opacity: 0; - pointer-events: none; - top: calc(100% + (-4px)); - transform: translateY(-5px); - transition-duration: 86ms; - transition-property: opacity, transform; } - html.theme--documenter-dark .navbar-dropdown.is-right { - left: auto; - right: 0; } - html.theme--documenter-dark .navbar-divider { - display: block; } - html.theme--documenter-dark .navbar > .container .navbar-brand, - html.theme--documenter-dark .container > .navbar .navbar-brand { - margin-left: -.75rem; } - html.theme--documenter-dark .navbar > .container .navbar-menu, - html.theme--documenter-dark .container > .navbar .navbar-menu { - margin-right: -.75rem; } - html.theme--documenter-dark .navbar.is-fixed-bottom-desktop, html.theme--documenter-dark .navbar.is-fixed-top-desktop { - left: 0; - position: fixed; - right: 0; - z-index: 30; } - html.theme--documenter-dark .navbar.is-fixed-bottom-desktop { - bottom: 0; } - html.theme--documenter-dark .navbar.is-fixed-bottom-desktop.has-shadow { - box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .navbar.is-fixed-top-desktop { - top: 0; } - html.theme--documenter-dark html.has-navbar-fixed-top-desktop, - html.theme--documenter-dark body.has-navbar-fixed-top-desktop { - padding-top: 4rem; } - html.theme--documenter-dark html.has-navbar-fixed-bottom-desktop, - html.theme--documenter-dark body.has-navbar-fixed-bottom-desktop { - padding-bottom: 4rem; } - html.theme--documenter-dark html.has-spaced-navbar-fixed-top, - html.theme--documenter-dark body.has-spaced-navbar-fixed-top { - padding-top: 6rem; } - html.theme--documenter-dark html.has-spaced-navbar-fixed-bottom, - html.theme--documenter-dark body.has-spaced-navbar-fixed-bottom { - padding-bottom: 6rem; } - html.theme--documenter-dark a.navbar-item.is-active, - html.theme--documenter-dark .navbar-link.is-active { - color: #1abc9c; } - html.theme--documenter-dark a.navbar-item.is-active:not(:focus):not(:hover), - html.theme--documenter-dark .navbar-link.is-active:not(:focus):not(:hover) { - background-color: transparent; } - html.theme--documenter-dark .navbar-item.has-dropdown:focus .navbar-link, html.theme--documenter-dark .navbar-item.has-dropdown:hover .navbar-link, html.theme--documenter-dark .navbar-item.has-dropdown.is-active .navbar-link { - background-color: transparent; } } - html.theme--documenter-dark .hero.is-fullheight-with-navbar { - min-height: calc(100vh - 4rem); } - html.theme--documenter-dark .pagination { - font-size: 15px; - margin: -0.25rem; } - html.theme--documenter-dark .pagination.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.pagination { - font-size: 0.85em; } - html.theme--documenter-dark .pagination.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .pagination.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .pagination.is-rounded .pagination-previous, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.pagination .pagination-previous, - html.theme--documenter-dark .pagination.is-rounded .pagination-next, - html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.pagination .pagination-next { - padding-left: 1em; - padding-right: 1em; - border-radius: 290486px; } - html.theme--documenter-dark .pagination.is-rounded .pagination-link, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.pagination .pagination-link { - border-radius: 290486px; } - html.theme--documenter-dark .pagination, - html.theme--documenter-dark .pagination-list { - align-items: center; - display: flex; - justify-content: center; - text-align: center; } - html.theme--documenter-dark .pagination-previous, - html.theme--documenter-dark .pagination-next, - html.theme--documenter-dark .pagination-link, - html.theme--documenter-dark .pagination-ellipsis { - font-size: 1em; - justify-content: center; - margin: 0.25rem; - padding-left: 0.5em; - padding-right: 0.5em; - text-align: center; } - html.theme--documenter-dark .pagination-previous, - html.theme--documenter-dark .pagination-next, - html.theme--documenter-dark .pagination-link { - border-color: #5e6d6f; - color: #1abc9c; - min-width: 2.25em; } - html.theme--documenter-dark .pagination-previous:hover, - html.theme--documenter-dark .pagination-next:hover, - html.theme--documenter-dark .pagination-link:hover { - border-color: #8c9b9d; - color: #1dd2af; } - html.theme--documenter-dark .pagination-previous:focus, - html.theme--documenter-dark .pagination-next:focus, - html.theme--documenter-dark .pagination-link:focus { - border-color: #8c9b9d; } - html.theme--documenter-dark .pagination-previous:active, - html.theme--documenter-dark .pagination-next:active, - html.theme--documenter-dark .pagination-link:active { - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); } - html.theme--documenter-dark .pagination-previous[disabled], - html.theme--documenter-dark .pagination-next[disabled], - html.theme--documenter-dark .pagination-link[disabled] { - background-color: #dbdee0; - border-color: #dbdee0; - box-shadow: none; - color: #5e6d6f; - opacity: 0.5; } - html.theme--documenter-dark .pagination-previous, - html.theme--documenter-dark .pagination-next { - padding-left: 0.75em; - padding-right: 0.75em; - white-space: nowrap; } - html.theme--documenter-dark .pagination-link.is-current { - background-color: #1abc9c; - border-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .pagination-ellipsis { - color: #8c9b9d; - pointer-events: none; } - html.theme--documenter-dark .pagination-list { - flex-wrap: wrap; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .pagination { - flex-wrap: wrap; } - html.theme--documenter-dark .pagination-previous, - html.theme--documenter-dark .pagination-next { - flex-grow: 1; - flex-shrink: 1; } - html.theme--documenter-dark .pagination-list li { - flex-grow: 1; - flex-shrink: 1; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .pagination-list { - flex-grow: 1; - flex-shrink: 1; - justify-content: flex-start; - order: 1; } - html.theme--documenter-dark .pagination-previous { - order: 2; } - html.theme--documenter-dark .pagination-next { - order: 3; } - html.theme--documenter-dark .pagination { - justify-content: space-between; } - html.theme--documenter-dark .pagination.is-centered .pagination-previous { - order: 1; } - html.theme--documenter-dark .pagination.is-centered .pagination-list { - justify-content: center; - order: 2; } - html.theme--documenter-dark .pagination.is-centered .pagination-next { - order: 3; } - html.theme--documenter-dark .pagination.is-right .pagination-previous { - order: 1; } - html.theme--documenter-dark .pagination.is-right .pagination-next { - order: 2; } - html.theme--documenter-dark .pagination.is-right .pagination-list { - justify-content: flex-end; - order: 3; } } - html.theme--documenter-dark .panel { - font-size: 15px; } - html.theme--documenter-dark .panel:not(:last-child) { - margin-bottom: 1.5rem; } - html.theme--documenter-dark .panel-heading, - html.theme--documenter-dark .panel-tabs, - html.theme--documenter-dark .panel-block { - border-bottom: 1px solid #5e6d6f; - border-left: 1px solid #5e6d6f; - border-right: 1px solid #5e6d6f; } - html.theme--documenter-dark .panel-heading:first-child, - html.theme--documenter-dark .panel-tabs:first-child, - html.theme--documenter-dark .panel-block:first-child { - border-top: 1px solid #5e6d6f; } - html.theme--documenter-dark .panel-heading { - background-color: #282f2f; - border-radius: 0.4em 0.4em 0 0; - color: #f2f2f2; - font-size: 1.25em; - font-weight: 300; - line-height: 1.25; - padding: 0.5em 0.75em; } - html.theme--documenter-dark .panel-tabs { - align-items: flex-end; - display: flex; - font-size: 0.875em; - justify-content: center; } - html.theme--documenter-dark .panel-tabs a { - border-bottom: 1px solid #5e6d6f; - margin-bottom: -1px; - padding: 0.5em; } - html.theme--documenter-dark .panel-tabs a.is-active { - border-bottom-color: #343c3d; - color: #17a689; } - html.theme--documenter-dark .panel-list a { - color: #fff; } - html.theme--documenter-dark .panel-list a:hover { - color: #1abc9c; } - html.theme--documenter-dark .panel-block { - align-items: center; - color: #f2f2f2; - display: flex; - justify-content: flex-start; - padding: 0.5em 0.75em; } - html.theme--documenter-dark .panel-block input[type="checkbox"] { - margin-right: 0.75em; } - html.theme--documenter-dark .panel-block > .control { - flex-grow: 1; - flex-shrink: 1; - width: 100%; } - html.theme--documenter-dark .panel-block.is-wrapped { - flex-wrap: wrap; } - html.theme--documenter-dark .panel-block.is-active { - border-left-color: #1abc9c; - color: #17a689; } - html.theme--documenter-dark .panel-block.is-active .panel-icon { - color: #1abc9c; } - html.theme--documenter-dark a.panel-block, - html.theme--documenter-dark label.panel-block { - cursor: pointer; } - html.theme--documenter-dark a.panel-block:hover, - html.theme--documenter-dark label.panel-block:hover { - background-color: #282f2f; } - html.theme--documenter-dark .panel-icon { - display: inline-block; - font-size: 14px; - height: 1em; - line-height: 1em; - text-align: center; - vertical-align: top; - width: 1em; - color: white; - margin-right: 0.75em; } - html.theme--documenter-dark .panel-icon .fa { - font-size: inherit; - line-height: inherit; } - html.theme--documenter-dark .tabs { - -webkit-overflow-scrolling: touch; - align-items: stretch; - display: flex; - font-size: 15px; - justify-content: space-between; - overflow: hidden; - overflow-x: auto; - white-space: nowrap; } - html.theme--documenter-dark .tabs a { - align-items: center; - border-bottom-color: #5e6d6f; - border-bottom-style: solid; - border-bottom-width: 1px; - color: #fff; - display: flex; - justify-content: center; - margin-bottom: -1px; - padding: 0.5em 1em; - vertical-align: top; } - html.theme--documenter-dark .tabs a:hover { - border-bottom-color: #f2f2f2; - color: #f2f2f2; } - html.theme--documenter-dark .tabs li { - display: block; } - html.theme--documenter-dark .tabs li.is-active a { - border-bottom-color: #1abc9c; - color: #1abc9c; } - html.theme--documenter-dark .tabs ul { - align-items: center; - border-bottom-color: #5e6d6f; - border-bottom-style: solid; - border-bottom-width: 1px; - display: flex; - flex-grow: 1; - flex-shrink: 0; - justify-content: flex-start; } - html.theme--documenter-dark .tabs ul.is-left { - padding-right: 0.75em; } - html.theme--documenter-dark .tabs ul.is-center { - flex: none; - justify-content: center; - padding-left: 0.75em; - padding-right: 0.75em; } - html.theme--documenter-dark .tabs ul.is-right { - justify-content: flex-end; - padding-left: 0.75em; } - html.theme--documenter-dark .tabs .icon:first-child { - margin-right: 0.5em; } - html.theme--documenter-dark .tabs .icon:last-child { - margin-left: 0.5em; } - html.theme--documenter-dark .tabs.is-centered ul { - justify-content: center; } - html.theme--documenter-dark .tabs.is-right ul { - justify-content: flex-end; } - html.theme--documenter-dark .tabs.is-boxed a { - border: 1px solid transparent; - border-radius: 0.4em 0.4em 0 0; } - html.theme--documenter-dark .tabs.is-boxed a:hover { - background-color: #282f2f; - border-bottom-color: #5e6d6f; } - html.theme--documenter-dark .tabs.is-boxed li.is-active a { - background-color: white; - border-color: #5e6d6f; - border-bottom-color: transparent !important; } - html.theme--documenter-dark .tabs.is-fullwidth li { - flex-grow: 1; - flex-shrink: 0; } - html.theme--documenter-dark .tabs.is-toggle a { - border-color: #5e6d6f; - border-style: solid; - border-width: 1px; - margin-bottom: 0; - position: relative; } - html.theme--documenter-dark .tabs.is-toggle a:hover { - background-color: #282f2f; - border-color: #8c9b9d; - z-index: 2; } - html.theme--documenter-dark .tabs.is-toggle li + li { - margin-left: -1px; } - html.theme--documenter-dark .tabs.is-toggle li:first-child a { - border-radius: 0.4em 0 0 0.4em; } - html.theme--documenter-dark .tabs.is-toggle li:last-child a { - border-radius: 0 0.4em 0.4em 0; } - html.theme--documenter-dark .tabs.is-toggle li.is-active a { - background-color: #1abc9c; - border-color: #1abc9c; - color: #fff; - z-index: 1; } - html.theme--documenter-dark .tabs.is-toggle ul { - border-bottom: none; } - html.theme--documenter-dark .tabs.is-toggle.is-toggle-rounded li:first-child a { - border-bottom-left-radius: 290486px; - border-top-left-radius: 290486px; - padding-left: 1.25em; } - html.theme--documenter-dark .tabs.is-toggle.is-toggle-rounded li:last-child a { - border-bottom-right-radius: 290486px; - border-top-right-radius: 290486px; - padding-right: 1.25em; } - html.theme--documenter-dark .tabs.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.tabs { - font-size: 0.85em; } - html.theme--documenter-dark .tabs.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .tabs.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .column { - display: block; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 1; - padding: 0.75rem; } - .columns.is-mobile > html.theme--documenter-dark .column.is-narrow { - flex: none; } - .columns.is-mobile > html.theme--documenter-dark .column.is-full { - flex: none; - width: 100%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-three-quarters { - flex: none; - width: 75%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-two-thirds { - flex: none; - width: 66.6666%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-half { - flex: none; - width: 50%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-one-third { - flex: none; - width: 33.3333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-one-quarter { - flex: none; - width: 25%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-one-fifth { - flex: none; - width: 20%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-two-fifths { - flex: none; - width: 40%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-three-fifths { - flex: none; - width: 60%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-four-fifths { - flex: none; - width: 80%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-three-quarters { - margin-left: 75%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-two-thirds { - margin-left: 66.6666%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-half { - margin-left: 50%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-one-third { - margin-left: 33.3333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-one-quarter { - margin-left: 25%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-one-fifth { - margin-left: 20%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-two-fifths { - margin-left: 40%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-three-fifths { - margin-left: 60%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-four-fifths { - margin-left: 80%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-0 { - flex: none; - width: 0%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-0 { - margin-left: 0%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-1 { - flex: none; - width: 8.33333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-1 { - margin-left: 8.33333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-2 { - flex: none; - width: 16.66667%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-2 { - margin-left: 16.66667%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-3 { - flex: none; - width: 25%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-3 { - margin-left: 25%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-4 { - flex: none; - width: 33.33333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-4 { - margin-left: 33.33333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-5 { - flex: none; - width: 41.66667%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-5 { - margin-left: 41.66667%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-6 { - flex: none; - width: 50%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-6 { - margin-left: 50%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-7 { - flex: none; - width: 58.33333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-7 { - margin-left: 58.33333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-8 { - flex: none; - width: 66.66667%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-8 { - margin-left: 66.66667%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-9 { - flex: none; - width: 75%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-9 { - margin-left: 75%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-10 { - flex: none; - width: 83.33333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-10 { - margin-left: 83.33333%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-11 { - flex: none; - width: 91.66667%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-11 { - margin-left: 91.66667%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-12 { - flex: none; - width: 100%; } - .columns.is-mobile > html.theme--documenter-dark .column.is-offset-12 { - margin-left: 100%; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .column.is-narrow-mobile { - flex: none; } - html.theme--documenter-dark .column.is-full-mobile { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-three-quarters-mobile { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-two-thirds-mobile { - flex: none; - width: 66.6666%; } - html.theme--documenter-dark .column.is-half-mobile { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-one-third-mobile { - flex: none; - width: 33.3333%; } - html.theme--documenter-dark .column.is-one-quarter-mobile { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-one-fifth-mobile { - flex: none; - width: 20%; } - html.theme--documenter-dark .column.is-two-fifths-mobile { - flex: none; - width: 40%; } - html.theme--documenter-dark .column.is-three-fifths-mobile { - flex: none; - width: 60%; } - html.theme--documenter-dark .column.is-four-fifths-mobile { - flex: none; - width: 80%; } - html.theme--documenter-dark .column.is-offset-three-quarters-mobile { - margin-left: 75%; } - html.theme--documenter-dark .column.is-offset-two-thirds-mobile { - margin-left: 66.6666%; } - html.theme--documenter-dark .column.is-offset-half-mobile { - margin-left: 50%; } - html.theme--documenter-dark .column.is-offset-one-third-mobile { - margin-left: 33.3333%; } - html.theme--documenter-dark .column.is-offset-one-quarter-mobile { - margin-left: 25%; } - html.theme--documenter-dark .column.is-offset-one-fifth-mobile { - margin-left: 20%; } - html.theme--documenter-dark .column.is-offset-two-fifths-mobile { - margin-left: 40%; } - html.theme--documenter-dark .column.is-offset-three-fifths-mobile { - margin-left: 60%; } - html.theme--documenter-dark .column.is-offset-four-fifths-mobile { - margin-left: 80%; } - html.theme--documenter-dark .column.is-0-mobile { - flex: none; - width: 0%; } - html.theme--documenter-dark .column.is-offset-0-mobile { - margin-left: 0%; } - html.theme--documenter-dark .column.is-1-mobile { - flex: none; - width: 8.33333%; } - html.theme--documenter-dark .column.is-offset-1-mobile { - margin-left: 8.33333%; } - html.theme--documenter-dark .column.is-2-mobile { - flex: none; - width: 16.66667%; } - html.theme--documenter-dark .column.is-offset-2-mobile { - margin-left: 16.66667%; } - html.theme--documenter-dark .column.is-3-mobile { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-offset-3-mobile { - margin-left: 25%; } - html.theme--documenter-dark .column.is-4-mobile { - flex: none; - width: 33.33333%; } - html.theme--documenter-dark .column.is-offset-4-mobile { - margin-left: 33.33333%; } - html.theme--documenter-dark .column.is-5-mobile { - flex: none; - width: 41.66667%; } - html.theme--documenter-dark .column.is-offset-5-mobile { - margin-left: 41.66667%; } - html.theme--documenter-dark .column.is-6-mobile { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-offset-6-mobile { - margin-left: 50%; } - html.theme--documenter-dark .column.is-7-mobile { - flex: none; - width: 58.33333%; } - html.theme--documenter-dark .column.is-offset-7-mobile { - margin-left: 58.33333%; } - html.theme--documenter-dark .column.is-8-mobile { - flex: none; - width: 66.66667%; } - html.theme--documenter-dark .column.is-offset-8-mobile { - margin-left: 66.66667%; } - html.theme--documenter-dark .column.is-9-mobile { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-offset-9-mobile { - margin-left: 75%; } - html.theme--documenter-dark .column.is-10-mobile { - flex: none; - width: 83.33333%; } - html.theme--documenter-dark .column.is-offset-10-mobile { - margin-left: 83.33333%; } - html.theme--documenter-dark .column.is-11-mobile { - flex: none; - width: 91.66667%; } - html.theme--documenter-dark .column.is-offset-11-mobile { - margin-left: 91.66667%; } - html.theme--documenter-dark .column.is-12-mobile { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-offset-12-mobile { - margin-left: 100%; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .column.is-narrow, html.theme--documenter-dark .column.is-narrow-tablet { - flex: none; } - html.theme--documenter-dark .column.is-full, html.theme--documenter-dark .column.is-full-tablet { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-three-quarters, html.theme--documenter-dark .column.is-three-quarters-tablet { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-two-thirds, html.theme--documenter-dark .column.is-two-thirds-tablet { - flex: none; - width: 66.6666%; } - html.theme--documenter-dark .column.is-half, html.theme--documenter-dark .column.is-half-tablet { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-one-third, html.theme--documenter-dark .column.is-one-third-tablet { - flex: none; - width: 33.3333%; } - html.theme--documenter-dark .column.is-one-quarter, html.theme--documenter-dark .column.is-one-quarter-tablet { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-one-fifth, html.theme--documenter-dark .column.is-one-fifth-tablet { - flex: none; - width: 20%; } - html.theme--documenter-dark .column.is-two-fifths, html.theme--documenter-dark .column.is-two-fifths-tablet { - flex: none; - width: 40%; } - html.theme--documenter-dark .column.is-three-fifths, html.theme--documenter-dark .column.is-three-fifths-tablet { - flex: none; - width: 60%; } - html.theme--documenter-dark .column.is-four-fifths, html.theme--documenter-dark .column.is-four-fifths-tablet { - flex: none; - width: 80%; } - html.theme--documenter-dark .column.is-offset-three-quarters, html.theme--documenter-dark .column.is-offset-three-quarters-tablet { - margin-left: 75%; } - html.theme--documenter-dark .column.is-offset-two-thirds, html.theme--documenter-dark .column.is-offset-two-thirds-tablet { - margin-left: 66.6666%; } - html.theme--documenter-dark .column.is-offset-half, html.theme--documenter-dark .column.is-offset-half-tablet { - margin-left: 50%; } - html.theme--documenter-dark .column.is-offset-one-third, html.theme--documenter-dark .column.is-offset-one-third-tablet { - margin-left: 33.3333%; } - html.theme--documenter-dark .column.is-offset-one-quarter, html.theme--documenter-dark .column.is-offset-one-quarter-tablet { - margin-left: 25%; } - html.theme--documenter-dark .column.is-offset-one-fifth, html.theme--documenter-dark .column.is-offset-one-fifth-tablet { - margin-left: 20%; } - html.theme--documenter-dark .column.is-offset-two-fifths, html.theme--documenter-dark .column.is-offset-two-fifths-tablet { - margin-left: 40%; } - html.theme--documenter-dark .column.is-offset-three-fifths, html.theme--documenter-dark .column.is-offset-three-fifths-tablet { - margin-left: 60%; } - html.theme--documenter-dark .column.is-offset-four-fifths, html.theme--documenter-dark .column.is-offset-four-fifths-tablet { - margin-left: 80%; } - html.theme--documenter-dark .column.is-0, html.theme--documenter-dark .column.is-0-tablet { - flex: none; - width: 0%; } - html.theme--documenter-dark .column.is-offset-0, html.theme--documenter-dark .column.is-offset-0-tablet { - margin-left: 0%; } - html.theme--documenter-dark .column.is-1, html.theme--documenter-dark .column.is-1-tablet { - flex: none; - width: 8.33333%; } - html.theme--documenter-dark .column.is-offset-1, html.theme--documenter-dark .column.is-offset-1-tablet { - margin-left: 8.33333%; } - html.theme--documenter-dark .column.is-2, html.theme--documenter-dark .column.is-2-tablet { - flex: none; - width: 16.66667%; } - html.theme--documenter-dark .column.is-offset-2, html.theme--documenter-dark .column.is-offset-2-tablet { - margin-left: 16.66667%; } - html.theme--documenter-dark .column.is-3, html.theme--documenter-dark .column.is-3-tablet { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-offset-3, html.theme--documenter-dark .column.is-offset-3-tablet { - margin-left: 25%; } - html.theme--documenter-dark .column.is-4, html.theme--documenter-dark .column.is-4-tablet { - flex: none; - width: 33.33333%; } - html.theme--documenter-dark .column.is-offset-4, html.theme--documenter-dark .column.is-offset-4-tablet { - margin-left: 33.33333%; } - html.theme--documenter-dark .column.is-5, html.theme--documenter-dark .column.is-5-tablet { - flex: none; - width: 41.66667%; } - html.theme--documenter-dark .column.is-offset-5, html.theme--documenter-dark .column.is-offset-5-tablet { - margin-left: 41.66667%; } - html.theme--documenter-dark .column.is-6, html.theme--documenter-dark .column.is-6-tablet { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-offset-6, html.theme--documenter-dark .column.is-offset-6-tablet { - margin-left: 50%; } - html.theme--documenter-dark .column.is-7, html.theme--documenter-dark .column.is-7-tablet { - flex: none; - width: 58.33333%; } - html.theme--documenter-dark .column.is-offset-7, html.theme--documenter-dark .column.is-offset-7-tablet { - margin-left: 58.33333%; } - html.theme--documenter-dark .column.is-8, html.theme--documenter-dark .column.is-8-tablet { - flex: none; - width: 66.66667%; } - html.theme--documenter-dark .column.is-offset-8, html.theme--documenter-dark .column.is-offset-8-tablet { - margin-left: 66.66667%; } - html.theme--documenter-dark .column.is-9, html.theme--documenter-dark .column.is-9-tablet { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-offset-9, html.theme--documenter-dark .column.is-offset-9-tablet { - margin-left: 75%; } - html.theme--documenter-dark .column.is-10, html.theme--documenter-dark .column.is-10-tablet { - flex: none; - width: 83.33333%; } - html.theme--documenter-dark .column.is-offset-10, html.theme--documenter-dark .column.is-offset-10-tablet { - margin-left: 83.33333%; } - html.theme--documenter-dark .column.is-11, html.theme--documenter-dark .column.is-11-tablet { - flex: none; - width: 91.66667%; } - html.theme--documenter-dark .column.is-offset-11, html.theme--documenter-dark .column.is-offset-11-tablet { - margin-left: 91.66667%; } - html.theme--documenter-dark .column.is-12, html.theme--documenter-dark .column.is-12-tablet { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-offset-12, html.theme--documenter-dark .column.is-offset-12-tablet { - margin-left: 100%; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .column.is-narrow-touch { - flex: none; } - html.theme--documenter-dark .column.is-full-touch { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-three-quarters-touch { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-two-thirds-touch { - flex: none; - width: 66.6666%; } - html.theme--documenter-dark .column.is-half-touch { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-one-third-touch { - flex: none; - width: 33.3333%; } - html.theme--documenter-dark .column.is-one-quarter-touch { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-one-fifth-touch { - flex: none; - width: 20%; } - html.theme--documenter-dark .column.is-two-fifths-touch { - flex: none; - width: 40%; } - html.theme--documenter-dark .column.is-three-fifths-touch { - flex: none; - width: 60%; } - html.theme--documenter-dark .column.is-four-fifths-touch { - flex: none; - width: 80%; } - html.theme--documenter-dark .column.is-offset-three-quarters-touch { - margin-left: 75%; } - html.theme--documenter-dark .column.is-offset-two-thirds-touch { - margin-left: 66.6666%; } - html.theme--documenter-dark .column.is-offset-half-touch { - margin-left: 50%; } - html.theme--documenter-dark .column.is-offset-one-third-touch { - margin-left: 33.3333%; } - html.theme--documenter-dark .column.is-offset-one-quarter-touch { - margin-left: 25%; } - html.theme--documenter-dark .column.is-offset-one-fifth-touch { - margin-left: 20%; } - html.theme--documenter-dark .column.is-offset-two-fifths-touch { - margin-left: 40%; } - html.theme--documenter-dark .column.is-offset-three-fifths-touch { - margin-left: 60%; } - html.theme--documenter-dark .column.is-offset-four-fifths-touch { - margin-left: 80%; } - html.theme--documenter-dark .column.is-0-touch { - flex: none; - width: 0%; } - html.theme--documenter-dark .column.is-offset-0-touch { - margin-left: 0%; } - html.theme--documenter-dark .column.is-1-touch { - flex: none; - width: 8.33333%; } - html.theme--documenter-dark .column.is-offset-1-touch { - margin-left: 8.33333%; } - html.theme--documenter-dark .column.is-2-touch { - flex: none; - width: 16.66667%; } - html.theme--documenter-dark .column.is-offset-2-touch { - margin-left: 16.66667%; } - html.theme--documenter-dark .column.is-3-touch { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-offset-3-touch { - margin-left: 25%; } - html.theme--documenter-dark .column.is-4-touch { - flex: none; - width: 33.33333%; } - html.theme--documenter-dark .column.is-offset-4-touch { - margin-left: 33.33333%; } - html.theme--documenter-dark .column.is-5-touch { - flex: none; - width: 41.66667%; } - html.theme--documenter-dark .column.is-offset-5-touch { - margin-left: 41.66667%; } - html.theme--documenter-dark .column.is-6-touch { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-offset-6-touch { - margin-left: 50%; } - html.theme--documenter-dark .column.is-7-touch { - flex: none; - width: 58.33333%; } - html.theme--documenter-dark .column.is-offset-7-touch { - margin-left: 58.33333%; } - html.theme--documenter-dark .column.is-8-touch { - flex: none; - width: 66.66667%; } - html.theme--documenter-dark .column.is-offset-8-touch { - margin-left: 66.66667%; } - html.theme--documenter-dark .column.is-9-touch { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-offset-9-touch { - margin-left: 75%; } - html.theme--documenter-dark .column.is-10-touch { - flex: none; - width: 83.33333%; } - html.theme--documenter-dark .column.is-offset-10-touch { - margin-left: 83.33333%; } - html.theme--documenter-dark .column.is-11-touch { - flex: none; - width: 91.66667%; } - html.theme--documenter-dark .column.is-offset-11-touch { - margin-left: 91.66667%; } - html.theme--documenter-dark .column.is-12-touch { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-offset-12-touch { - margin-left: 100%; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .column.is-narrow-desktop { - flex: none; } - html.theme--documenter-dark .column.is-full-desktop { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-three-quarters-desktop { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-two-thirds-desktop { - flex: none; - width: 66.6666%; } - html.theme--documenter-dark .column.is-half-desktop { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-one-third-desktop { - flex: none; - width: 33.3333%; } - html.theme--documenter-dark .column.is-one-quarter-desktop { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-one-fifth-desktop { - flex: none; - width: 20%; } - html.theme--documenter-dark .column.is-two-fifths-desktop { - flex: none; - width: 40%; } - html.theme--documenter-dark .column.is-three-fifths-desktop { - flex: none; - width: 60%; } - html.theme--documenter-dark .column.is-four-fifths-desktop { - flex: none; - width: 80%; } - html.theme--documenter-dark .column.is-offset-three-quarters-desktop { - margin-left: 75%; } - html.theme--documenter-dark .column.is-offset-two-thirds-desktop { - margin-left: 66.6666%; } - html.theme--documenter-dark .column.is-offset-half-desktop { - margin-left: 50%; } - html.theme--documenter-dark .column.is-offset-one-third-desktop { - margin-left: 33.3333%; } - html.theme--documenter-dark .column.is-offset-one-quarter-desktop { - margin-left: 25%; } - html.theme--documenter-dark .column.is-offset-one-fifth-desktop { - margin-left: 20%; } - html.theme--documenter-dark .column.is-offset-two-fifths-desktop { - margin-left: 40%; } - html.theme--documenter-dark .column.is-offset-three-fifths-desktop { - margin-left: 60%; } - html.theme--documenter-dark .column.is-offset-four-fifths-desktop { - margin-left: 80%; } - html.theme--documenter-dark .column.is-0-desktop { - flex: none; - width: 0%; } - html.theme--documenter-dark .column.is-offset-0-desktop { - margin-left: 0%; } - html.theme--documenter-dark .column.is-1-desktop { - flex: none; - width: 8.33333%; } - html.theme--documenter-dark .column.is-offset-1-desktop { - margin-left: 8.33333%; } - html.theme--documenter-dark .column.is-2-desktop { - flex: none; - width: 16.66667%; } - html.theme--documenter-dark .column.is-offset-2-desktop { - margin-left: 16.66667%; } - html.theme--documenter-dark .column.is-3-desktop { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-offset-3-desktop { - margin-left: 25%; } - html.theme--documenter-dark .column.is-4-desktop { - flex: none; - width: 33.33333%; } - html.theme--documenter-dark .column.is-offset-4-desktop { - margin-left: 33.33333%; } - html.theme--documenter-dark .column.is-5-desktop { - flex: none; - width: 41.66667%; } - html.theme--documenter-dark .column.is-offset-5-desktop { - margin-left: 41.66667%; } - html.theme--documenter-dark .column.is-6-desktop { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-offset-6-desktop { - margin-left: 50%; } - html.theme--documenter-dark .column.is-7-desktop { - flex: none; - width: 58.33333%; } - html.theme--documenter-dark .column.is-offset-7-desktop { - margin-left: 58.33333%; } - html.theme--documenter-dark .column.is-8-desktop { - flex: none; - width: 66.66667%; } - html.theme--documenter-dark .column.is-offset-8-desktop { - margin-left: 66.66667%; } - html.theme--documenter-dark .column.is-9-desktop { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-offset-9-desktop { - margin-left: 75%; } - html.theme--documenter-dark .column.is-10-desktop { - flex: none; - width: 83.33333%; } - html.theme--documenter-dark .column.is-offset-10-desktop { - margin-left: 83.33333%; } - html.theme--documenter-dark .column.is-11-desktop { - flex: none; - width: 91.66667%; } - html.theme--documenter-dark .column.is-offset-11-desktop { - margin-left: 91.66667%; } - html.theme--documenter-dark .column.is-12-desktop { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-offset-12-desktop { - margin-left: 100%; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .column.is-narrow-widescreen { - flex: none; } - html.theme--documenter-dark .column.is-full-widescreen { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-three-quarters-widescreen { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-two-thirds-widescreen { - flex: none; - width: 66.6666%; } - html.theme--documenter-dark .column.is-half-widescreen { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-one-third-widescreen { - flex: none; - width: 33.3333%; } - html.theme--documenter-dark .column.is-one-quarter-widescreen { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-one-fifth-widescreen { - flex: none; - width: 20%; } - html.theme--documenter-dark .column.is-two-fifths-widescreen { - flex: none; - width: 40%; } - html.theme--documenter-dark .column.is-three-fifths-widescreen { - flex: none; - width: 60%; } - html.theme--documenter-dark .column.is-four-fifths-widescreen { - flex: none; - width: 80%; } - html.theme--documenter-dark .column.is-offset-three-quarters-widescreen { - margin-left: 75%; } - html.theme--documenter-dark .column.is-offset-two-thirds-widescreen { - margin-left: 66.6666%; } - html.theme--documenter-dark .column.is-offset-half-widescreen { - margin-left: 50%; } - html.theme--documenter-dark .column.is-offset-one-third-widescreen { - margin-left: 33.3333%; } - html.theme--documenter-dark .column.is-offset-one-quarter-widescreen { - margin-left: 25%; } - html.theme--documenter-dark .column.is-offset-one-fifth-widescreen { - margin-left: 20%; } - html.theme--documenter-dark .column.is-offset-two-fifths-widescreen { - margin-left: 40%; } - html.theme--documenter-dark .column.is-offset-three-fifths-widescreen { - margin-left: 60%; } - html.theme--documenter-dark .column.is-offset-four-fifths-widescreen { - margin-left: 80%; } - html.theme--documenter-dark .column.is-0-widescreen { - flex: none; - width: 0%; } - html.theme--documenter-dark .column.is-offset-0-widescreen { - margin-left: 0%; } - html.theme--documenter-dark .column.is-1-widescreen { - flex: none; - width: 8.33333%; } - html.theme--documenter-dark .column.is-offset-1-widescreen { - margin-left: 8.33333%; } - html.theme--documenter-dark .column.is-2-widescreen { - flex: none; - width: 16.66667%; } - html.theme--documenter-dark .column.is-offset-2-widescreen { - margin-left: 16.66667%; } - html.theme--documenter-dark .column.is-3-widescreen { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-offset-3-widescreen { - margin-left: 25%; } - html.theme--documenter-dark .column.is-4-widescreen { - flex: none; - width: 33.33333%; } - html.theme--documenter-dark .column.is-offset-4-widescreen { - margin-left: 33.33333%; } - html.theme--documenter-dark .column.is-5-widescreen { - flex: none; - width: 41.66667%; } - html.theme--documenter-dark .column.is-offset-5-widescreen { - margin-left: 41.66667%; } - html.theme--documenter-dark .column.is-6-widescreen { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-offset-6-widescreen { - margin-left: 50%; } - html.theme--documenter-dark .column.is-7-widescreen { - flex: none; - width: 58.33333%; } - html.theme--documenter-dark .column.is-offset-7-widescreen { - margin-left: 58.33333%; } - html.theme--documenter-dark .column.is-8-widescreen { - flex: none; - width: 66.66667%; } - html.theme--documenter-dark .column.is-offset-8-widescreen { - margin-left: 66.66667%; } - html.theme--documenter-dark .column.is-9-widescreen { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-offset-9-widescreen { - margin-left: 75%; } - html.theme--documenter-dark .column.is-10-widescreen { - flex: none; - width: 83.33333%; } - html.theme--documenter-dark .column.is-offset-10-widescreen { - margin-left: 83.33333%; } - html.theme--documenter-dark .column.is-11-widescreen { - flex: none; - width: 91.66667%; } - html.theme--documenter-dark .column.is-offset-11-widescreen { - margin-left: 91.66667%; } - html.theme--documenter-dark .column.is-12-widescreen { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-offset-12-widescreen { - margin-left: 100%; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .column.is-narrow-fullhd { - flex: none; } - html.theme--documenter-dark .column.is-full-fullhd { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-three-quarters-fullhd { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-two-thirds-fullhd { - flex: none; - width: 66.6666%; } - html.theme--documenter-dark .column.is-half-fullhd { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-one-third-fullhd { - flex: none; - width: 33.3333%; } - html.theme--documenter-dark .column.is-one-quarter-fullhd { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-one-fifth-fullhd { - flex: none; - width: 20%; } - html.theme--documenter-dark .column.is-two-fifths-fullhd { - flex: none; - width: 40%; } - html.theme--documenter-dark .column.is-three-fifths-fullhd { - flex: none; - width: 60%; } - html.theme--documenter-dark .column.is-four-fifths-fullhd { - flex: none; - width: 80%; } - html.theme--documenter-dark .column.is-offset-three-quarters-fullhd { - margin-left: 75%; } - html.theme--documenter-dark .column.is-offset-two-thirds-fullhd { - margin-left: 66.6666%; } - html.theme--documenter-dark .column.is-offset-half-fullhd { - margin-left: 50%; } - html.theme--documenter-dark .column.is-offset-one-third-fullhd { - margin-left: 33.3333%; } - html.theme--documenter-dark .column.is-offset-one-quarter-fullhd { - margin-left: 25%; } - html.theme--documenter-dark .column.is-offset-one-fifth-fullhd { - margin-left: 20%; } - html.theme--documenter-dark .column.is-offset-two-fifths-fullhd { - margin-left: 40%; } - html.theme--documenter-dark .column.is-offset-three-fifths-fullhd { - margin-left: 60%; } - html.theme--documenter-dark .column.is-offset-four-fifths-fullhd { - margin-left: 80%; } - html.theme--documenter-dark .column.is-0-fullhd { - flex: none; - width: 0%; } - html.theme--documenter-dark .column.is-offset-0-fullhd { - margin-left: 0%; } - html.theme--documenter-dark .column.is-1-fullhd { - flex: none; - width: 8.33333%; } - html.theme--documenter-dark .column.is-offset-1-fullhd { - margin-left: 8.33333%; } - html.theme--documenter-dark .column.is-2-fullhd { - flex: none; - width: 16.66667%; } - html.theme--documenter-dark .column.is-offset-2-fullhd { - margin-left: 16.66667%; } - html.theme--documenter-dark .column.is-3-fullhd { - flex: none; - width: 25%; } - html.theme--documenter-dark .column.is-offset-3-fullhd { - margin-left: 25%; } - html.theme--documenter-dark .column.is-4-fullhd { - flex: none; - width: 33.33333%; } - html.theme--documenter-dark .column.is-offset-4-fullhd { - margin-left: 33.33333%; } - html.theme--documenter-dark .column.is-5-fullhd { - flex: none; - width: 41.66667%; } - html.theme--documenter-dark .column.is-offset-5-fullhd { - margin-left: 41.66667%; } - html.theme--documenter-dark .column.is-6-fullhd { - flex: none; - width: 50%; } - html.theme--documenter-dark .column.is-offset-6-fullhd { - margin-left: 50%; } - html.theme--documenter-dark .column.is-7-fullhd { - flex: none; - width: 58.33333%; } - html.theme--documenter-dark .column.is-offset-7-fullhd { - margin-left: 58.33333%; } - html.theme--documenter-dark .column.is-8-fullhd { - flex: none; - width: 66.66667%; } - html.theme--documenter-dark .column.is-offset-8-fullhd { - margin-left: 66.66667%; } - html.theme--documenter-dark .column.is-9-fullhd { - flex: none; - width: 75%; } - html.theme--documenter-dark .column.is-offset-9-fullhd { - margin-left: 75%; } - html.theme--documenter-dark .column.is-10-fullhd { - flex: none; - width: 83.33333%; } - html.theme--documenter-dark .column.is-offset-10-fullhd { - margin-left: 83.33333%; } - html.theme--documenter-dark .column.is-11-fullhd { - flex: none; - width: 91.66667%; } - html.theme--documenter-dark .column.is-offset-11-fullhd { - margin-left: 91.66667%; } - html.theme--documenter-dark .column.is-12-fullhd { - flex: none; - width: 100%; } - html.theme--documenter-dark .column.is-offset-12-fullhd { - margin-left: 100%; } } - html.theme--documenter-dark .columns { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; } - html.theme--documenter-dark .columns:last-child { - margin-bottom: -0.75rem; } - html.theme--documenter-dark .columns:not(:last-child) { - margin-bottom: calc(1.5rem - 0.75rem); } - html.theme--documenter-dark .columns.is-centered { - justify-content: center; } - html.theme--documenter-dark .columns.is-gapless { - margin-left: 0; - margin-right: 0; - margin-top: 0; } - html.theme--documenter-dark .columns.is-gapless > .column { - margin: 0; - padding: 0 !important; } - html.theme--documenter-dark .columns.is-gapless:not(:last-child) { - margin-bottom: 1.5rem; } - html.theme--documenter-dark .columns.is-gapless:last-child { - margin-bottom: 0; } - html.theme--documenter-dark .columns.is-mobile { - display: flex; } - html.theme--documenter-dark .columns.is-multiline { - flex-wrap: wrap; } - html.theme--documenter-dark .columns.is-vcentered { - align-items: center; } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns:not(.is-desktop) { - display: flex; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-desktop { - display: flex; } } - html.theme--documenter-dark .columns.is-variable { - --columnGap: 0.75rem; - margin-left: calc(-1 * var(--columnGap)); - margin-right: calc(-1 * var(--columnGap)); } - html.theme--documenter-dark .columns.is-variable .column { - padding-left: var(--columnGap); - padding-right: var(--columnGap); } - html.theme--documenter-dark .columns.is-variable.is-0 { - --columnGap: 0rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .columns.is-variable.is-0-mobile { - --columnGap: 0rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns.is-variable.is-0-tablet { - --columnGap: 0rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-0-tablet-only { - --columnGap: 0rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-0-touch { - --columnGap: 0rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-variable.is-0-desktop { - --columnGap: 0rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - html.theme--documenter-dark .columns.is-variable.is-0-desktop-only { - --columnGap: 0rem; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .columns.is-variable.is-0-widescreen { - --columnGap: 0rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - html.theme--documenter-dark .columns.is-variable.is-0-widescreen-only { - --columnGap: 0rem; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .columns.is-variable.is-0-fullhd { - --columnGap: 0rem; } } - html.theme--documenter-dark .columns.is-variable.is-1 { - --columnGap: 0.25rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .columns.is-variable.is-1-mobile { - --columnGap: 0.25rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns.is-variable.is-1-tablet { - --columnGap: 0.25rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-1-tablet-only { - --columnGap: 0.25rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-1-touch { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-variable.is-1-desktop { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - html.theme--documenter-dark .columns.is-variable.is-1-desktop-only { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .columns.is-variable.is-1-widescreen { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - html.theme--documenter-dark .columns.is-variable.is-1-widescreen-only { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .columns.is-variable.is-1-fullhd { - --columnGap: 0.25rem; } } - html.theme--documenter-dark .columns.is-variable.is-2 { - --columnGap: 0.5rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .columns.is-variable.is-2-mobile { - --columnGap: 0.5rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns.is-variable.is-2-tablet { - --columnGap: 0.5rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-2-tablet-only { - --columnGap: 0.5rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-2-touch { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-variable.is-2-desktop { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - html.theme--documenter-dark .columns.is-variable.is-2-desktop-only { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .columns.is-variable.is-2-widescreen { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - html.theme--documenter-dark .columns.is-variable.is-2-widescreen-only { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .columns.is-variable.is-2-fullhd { - --columnGap: 0.5rem; } } - html.theme--documenter-dark .columns.is-variable.is-3 { - --columnGap: 0.75rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .columns.is-variable.is-3-mobile { - --columnGap: 0.75rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns.is-variable.is-3-tablet { - --columnGap: 0.75rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-3-tablet-only { - --columnGap: 0.75rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-3-touch { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-variable.is-3-desktop { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - html.theme--documenter-dark .columns.is-variable.is-3-desktop-only { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .columns.is-variable.is-3-widescreen { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - html.theme--documenter-dark .columns.is-variable.is-3-widescreen-only { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .columns.is-variable.is-3-fullhd { - --columnGap: 0.75rem; } } - html.theme--documenter-dark .columns.is-variable.is-4 { - --columnGap: 1rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .columns.is-variable.is-4-mobile { - --columnGap: 1rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns.is-variable.is-4-tablet { - --columnGap: 1rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-4-tablet-only { - --columnGap: 1rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-4-touch { - --columnGap: 1rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-variable.is-4-desktop { - --columnGap: 1rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - html.theme--documenter-dark .columns.is-variable.is-4-desktop-only { - --columnGap: 1rem; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .columns.is-variable.is-4-widescreen { - --columnGap: 1rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - html.theme--documenter-dark .columns.is-variable.is-4-widescreen-only { - --columnGap: 1rem; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .columns.is-variable.is-4-fullhd { - --columnGap: 1rem; } } - html.theme--documenter-dark .columns.is-variable.is-5 { - --columnGap: 1.25rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .columns.is-variable.is-5-mobile { - --columnGap: 1.25rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns.is-variable.is-5-tablet { - --columnGap: 1.25rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-5-tablet-only { - --columnGap: 1.25rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-5-touch { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-variable.is-5-desktop { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - html.theme--documenter-dark .columns.is-variable.is-5-desktop-only { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .columns.is-variable.is-5-widescreen { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - html.theme--documenter-dark .columns.is-variable.is-5-widescreen-only { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .columns.is-variable.is-5-fullhd { - --columnGap: 1.25rem; } } - html.theme--documenter-dark .columns.is-variable.is-6 { - --columnGap: 1.5rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .columns.is-variable.is-6-mobile { - --columnGap: 1.5rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns.is-variable.is-6-tablet { - --columnGap: 1.5rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-6-tablet-only { - --columnGap: 1.5rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-6-touch { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-variable.is-6-desktop { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - html.theme--documenter-dark .columns.is-variable.is-6-desktop-only { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .columns.is-variable.is-6-widescreen { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - html.theme--documenter-dark .columns.is-variable.is-6-widescreen-only { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .columns.is-variable.is-6-fullhd { - --columnGap: 1.5rem; } } - html.theme--documenter-dark .columns.is-variable.is-7 { - --columnGap: 1.75rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .columns.is-variable.is-7-mobile { - --columnGap: 1.75rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns.is-variable.is-7-tablet { - --columnGap: 1.75rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-7-tablet-only { - --columnGap: 1.75rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-7-touch { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-variable.is-7-desktop { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - html.theme--documenter-dark .columns.is-variable.is-7-desktop-only { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .columns.is-variable.is-7-widescreen { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - html.theme--documenter-dark .columns.is-variable.is-7-widescreen-only { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .columns.is-variable.is-7-fullhd { - --columnGap: 1.75rem; } } - html.theme--documenter-dark .columns.is-variable.is-8 { - --columnGap: 2rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .columns.is-variable.is-8-mobile { - --columnGap: 2rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .columns.is-variable.is-8-tablet { - --columnGap: 2rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-8-tablet-only { - --columnGap: 2rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .columns.is-variable.is-8-touch { - --columnGap: 2rem; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .columns.is-variable.is-8-desktop { - --columnGap: 2rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - html.theme--documenter-dark .columns.is-variable.is-8-desktop-only { - --columnGap: 2rem; } } - @media screen and (min-width: 1216px) { - html.theme--documenter-dark .columns.is-variable.is-8-widescreen { - --columnGap: 2rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - html.theme--documenter-dark .columns.is-variable.is-8-widescreen-only { - --columnGap: 2rem; } } - @media screen and (min-width: 1408px) { - html.theme--documenter-dark .columns.is-variable.is-8-fullhd { - --columnGap: 2rem; } } - html.theme--documenter-dark .tile { - align-items: stretch; - display: block; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 1; - min-height: min-content; } - html.theme--documenter-dark .tile.is-ancestor { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; } - html.theme--documenter-dark .tile.is-ancestor:last-child { - margin-bottom: -0.75rem; } - html.theme--documenter-dark .tile.is-ancestor:not(:last-child) { - margin-bottom: 0.75rem; } - html.theme--documenter-dark .tile.is-child { - margin: 0 !important; } - html.theme--documenter-dark .tile.is-parent { - padding: 0.75rem; } - html.theme--documenter-dark .tile.is-vertical { - flex-direction: column; } - html.theme--documenter-dark .tile.is-vertical > .tile.is-child:not(:last-child) { - margin-bottom: 1.5rem !important; } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .tile:not(.is-child) { - display: flex; } - html.theme--documenter-dark .tile.is-1 { - flex: none; - width: 8.33333%; } - html.theme--documenter-dark .tile.is-2 { - flex: none; - width: 16.66667%; } - html.theme--documenter-dark .tile.is-3 { - flex: none; - width: 25%; } - html.theme--documenter-dark .tile.is-4 { - flex: none; - width: 33.33333%; } - html.theme--documenter-dark .tile.is-5 { - flex: none; - width: 41.66667%; } - html.theme--documenter-dark .tile.is-6 { - flex: none; - width: 50%; } - html.theme--documenter-dark .tile.is-7 { - flex: none; - width: 58.33333%; } - html.theme--documenter-dark .tile.is-8 { - flex: none; - width: 66.66667%; } - html.theme--documenter-dark .tile.is-9 { - flex: none; - width: 75%; } - html.theme--documenter-dark .tile.is-10 { - flex: none; - width: 83.33333%; } - html.theme--documenter-dark .tile.is-11 { - flex: none; - width: 91.66667%; } - html.theme--documenter-dark .tile.is-12 { - flex: none; - width: 100%; } } - html.theme--documenter-dark .hero { - align-items: stretch; - display: flex; - flex-direction: column; - justify-content: space-between; } - html.theme--documenter-dark .hero .navbar { - background: none; } - html.theme--documenter-dark .hero .tabs ul { - border-bottom: none; } - html.theme--documenter-dark .hero.is-white { - background-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-white strong { - color: inherit; } - html.theme--documenter-dark .hero.is-white .title { - color: #0a0a0a; } - html.theme--documenter-dark .hero.is-white .subtitle { - color: rgba(10, 10, 10, 0.9); } - html.theme--documenter-dark .hero.is-white .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-white .subtitle strong { - color: #0a0a0a; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-white .navbar-menu { - background-color: white; } } - html.theme--documenter-dark .hero.is-white .navbar-item, - html.theme--documenter-dark .hero.is-white .navbar-link { - color: rgba(10, 10, 10, 0.7); } - html.theme--documenter-dark .hero.is-white a.navbar-item:hover, html.theme--documenter-dark .hero.is-white a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-white .navbar-link:hover, - html.theme--documenter-dark .hero.is-white .navbar-link.is-active { - background-color: #f2f2f2; - color: #0a0a0a; } - html.theme--documenter-dark .hero.is-white .tabs a { - color: #0a0a0a; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-white .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-white .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-white .tabs.is-boxed a, html.theme--documenter-dark .hero.is-white .tabs.is-toggle a { - color: #0a0a0a; } - html.theme--documenter-dark .hero.is-white .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-white .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-white .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-white .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-white .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-white .tabs.is-toggle li.is-active a:hover { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .hero.is-white.is-bold { - background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-white.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); } } - html.theme--documenter-dark .hero.is-black { - background-color: #0a0a0a; - color: white; } - html.theme--documenter-dark .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-black strong { - color: inherit; } - html.theme--documenter-dark .hero.is-black .title { - color: white; } - html.theme--documenter-dark .hero.is-black .subtitle { - color: rgba(255, 255, 255, 0.9); } - html.theme--documenter-dark .hero.is-black .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-black .subtitle strong { - color: white; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-black .navbar-menu { - background-color: #0a0a0a; } } - html.theme--documenter-dark .hero.is-black .navbar-item, - html.theme--documenter-dark .hero.is-black .navbar-link { - color: rgba(255, 255, 255, 0.7); } - html.theme--documenter-dark .hero.is-black a.navbar-item:hover, html.theme--documenter-dark .hero.is-black a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-black .navbar-link:hover, - html.theme--documenter-dark .hero.is-black .navbar-link.is-active { - background-color: black; - color: white; } - html.theme--documenter-dark .hero.is-black .tabs a { - color: white; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-black .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-black .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-black .tabs.is-boxed a, html.theme--documenter-dark .hero.is-black .tabs.is-toggle a { - color: white; } - html.theme--documenter-dark .hero.is-black .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-black .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-black .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-black .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-black .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-black .tabs.is-toggle li.is-active a:hover { - background-color: white; - border-color: white; - color: #0a0a0a; } - html.theme--documenter-dark .hero.is-black.is-bold { - background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-black.is-bold .navbar-menu { - background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); } } - html.theme--documenter-dark .hero.is-light { - background-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-light strong { - color: inherit; } - html.theme--documenter-dark .hero.is-light .title { - color: #282f2f; } - html.theme--documenter-dark .hero.is-light .subtitle { - color: rgba(40, 47, 47, 0.9); } - html.theme--documenter-dark .hero.is-light .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-light .subtitle strong { - color: #282f2f; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-light .navbar-menu { - background-color: #ecf0f1; } } - html.theme--documenter-dark .hero.is-light .navbar-item, - html.theme--documenter-dark .hero.is-light .navbar-link { - color: rgba(40, 47, 47, 0.7); } - html.theme--documenter-dark .hero.is-light a.navbar-item:hover, html.theme--documenter-dark .hero.is-light a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-light .navbar-link:hover, - html.theme--documenter-dark .hero.is-light .navbar-link.is-active { - background-color: #dde4e6; - color: #282f2f; } - html.theme--documenter-dark .hero.is-light .tabs a { - color: #282f2f; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-light .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-light .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-light .tabs.is-boxed a, html.theme--documenter-dark .hero.is-light .tabs.is-toggle a { - color: #282f2f; } - html.theme--documenter-dark .hero.is-light .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-light .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-light .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-light .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-light .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-light .tabs.is-toggle li.is-active a:hover { - background-color: #282f2f; - border-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .hero.is-light.is-bold { - background-image: linear-gradient(141deg, #cadfe0 0%, #ecf0f1 71%, #fafbfc 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-light.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #cadfe0 0%, #ecf0f1 71%, #fafbfc 100%); } } - html.theme--documenter-dark .hero.is-dark, html.theme--documenter-dark .content kbd.hero { - background-color: #282f2f; - color: #ecf0f1; } - html.theme--documenter-dark .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), html.theme--documenter-dark .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-dark strong, - html.theme--documenter-dark .content kbd.hero strong { - color: inherit; } - html.theme--documenter-dark .hero.is-dark .title, html.theme--documenter-dark .content kbd.hero .title { - color: #ecf0f1; } - html.theme--documenter-dark .hero.is-dark .subtitle, html.theme--documenter-dark .content kbd.hero .subtitle { - color: rgba(236, 240, 241, 0.9); } - html.theme--documenter-dark .hero.is-dark .subtitle a:not(.button), html.theme--documenter-dark .content kbd.hero .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-dark .subtitle strong, - html.theme--documenter-dark .content kbd.hero .subtitle strong { - color: #ecf0f1; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-dark .navbar-menu, html.theme--documenter-dark .content kbd.hero .navbar-menu { - background-color: #282f2f; } } - html.theme--documenter-dark .hero.is-dark .navbar-item, html.theme--documenter-dark .content kbd.hero .navbar-item, - html.theme--documenter-dark .hero.is-dark .navbar-link, - html.theme--documenter-dark .content kbd.hero .navbar-link { - color: rgba(236, 240, 241, 0.7); } - html.theme--documenter-dark .hero.is-dark a.navbar-item:hover, html.theme--documenter-dark .content kbd.hero a.navbar-item:hover, html.theme--documenter-dark .hero.is-dark a.navbar-item.is-active, html.theme--documenter-dark .content kbd.hero a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-dark .navbar-link:hover, - html.theme--documenter-dark .content kbd.hero .navbar-link:hover, - html.theme--documenter-dark .hero.is-dark .navbar-link.is-active, - html.theme--documenter-dark .content kbd.hero .navbar-link.is-active { - background-color: #1d2122; - color: #ecf0f1; } - html.theme--documenter-dark .hero.is-dark .tabs a, html.theme--documenter-dark .content kbd.hero .tabs a { - color: #ecf0f1; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-dark .tabs a:hover, html.theme--documenter-dark .content kbd.hero .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-dark .tabs li.is-active a, html.theme--documenter-dark .content kbd.hero .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-dark .tabs.is-boxed a, html.theme--documenter-dark .content kbd.hero .tabs.is-boxed a, html.theme--documenter-dark .hero.is-dark .tabs.is-toggle a, html.theme--documenter-dark .content kbd.hero .tabs.is-toggle a { - color: #ecf0f1; } - html.theme--documenter-dark .hero.is-dark .tabs.is-boxed a:hover, html.theme--documenter-dark .content kbd.hero .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-dark .tabs.is-toggle a:hover, html.theme--documenter-dark .content kbd.hero .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-dark .tabs.is-boxed li.is-active a, html.theme--documenter-dark .content kbd.hero .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-dark .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .content kbd.hero .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-dark .tabs.is-toggle li.is-active a, html.theme--documenter-dark .content kbd.hero .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-dark .tabs.is-toggle li.is-active a:hover, html.theme--documenter-dark .content kbd.hero .tabs.is-toggle li.is-active a:hover { - background-color: #ecf0f1; - border-color: #ecf0f1; - color: #282f2f; } - html.theme--documenter-dark .hero.is-dark.is-bold, html.theme--documenter-dark .content kbd.hero.is-bold { - background-image: linear-gradient(141deg, #0f1615 0%, #282f2f 71%, #313c40 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-dark.is-bold .navbar-menu, html.theme--documenter-dark .content kbd.hero.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #0f1615 0%, #282f2f 71%, #313c40 100%); } } - html.theme--documenter-dark .hero.is-primary, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink { - background-color: #375a7f; - color: #fff; } - html.theme--documenter-dark .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-primary strong, - html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink strong { - color: inherit; } - html.theme--documenter-dark .hero.is-primary .title, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .title { - color: #fff; } - html.theme--documenter-dark .hero.is-primary .subtitle, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .subtitle { - color: rgba(255, 255, 255, 0.9); } - html.theme--documenter-dark .hero.is-primary .subtitle a:not(.button), html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-primary .subtitle strong, - html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-primary .navbar-menu, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .navbar-menu { - background-color: #375a7f; } } - html.theme--documenter-dark .hero.is-primary .navbar-item, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .navbar-item, - html.theme--documenter-dark .hero.is-primary .navbar-link, - html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .navbar-link { - color: rgba(255, 255, 255, 0.7); } - html.theme--documenter-dark .hero.is-primary a.navbar-item:hover, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink a.navbar-item:hover, html.theme--documenter-dark .hero.is-primary a.navbar-item.is-active, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-primary .navbar-link:hover, - html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .navbar-link:hover, - html.theme--documenter-dark .hero.is-primary .navbar-link.is-active, - html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .navbar-link.is-active { - background-color: #2f4d6d; - color: #fff; } - html.theme--documenter-dark .hero.is-primary .tabs a, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs a { - color: #fff; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-primary .tabs a:hover, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-primary .tabs li.is-active a, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-primary .tabs.is-boxed a, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs.is-boxed a, html.theme--documenter-dark .hero.is-primary .tabs.is-toggle a, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs.is-toggle a { - color: #fff; } - html.theme--documenter-dark .hero.is-primary .tabs.is-boxed a:hover, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-primary .tabs.is-toggle a:hover, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-primary .tabs.is-boxed li.is-active a, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-primary .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-primary .tabs.is-toggle li.is-active a, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-primary .tabs.is-toggle li.is-active a:hover, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #375a7f; } - html.theme--documenter-dark .hero.is-primary.is-bold, html.theme--documenter-dark .docstring > section > a.hero.is-bold.docs-sourcelink { - background-image: linear-gradient(141deg, #214b62 0%, #375a7f 71%, #3a5796 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-primary.is-bold .navbar-menu, html.theme--documenter-dark .docstring > section > a.hero.is-bold.docs-sourcelink .navbar-menu { - background-image: linear-gradient(141deg, #214b62 0%, #375a7f 71%, #3a5796 100%); } } - html.theme--documenter-dark .hero.is-link { - background-color: #1abc9c; - color: #fff; } - html.theme--documenter-dark .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-link strong { - color: inherit; } - html.theme--documenter-dark .hero.is-link .title { - color: #fff; } - html.theme--documenter-dark .hero.is-link .subtitle { - color: rgba(255, 255, 255, 0.9); } - html.theme--documenter-dark .hero.is-link .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-link .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-link .navbar-menu { - background-color: #1abc9c; } } - html.theme--documenter-dark .hero.is-link .navbar-item, - html.theme--documenter-dark .hero.is-link .navbar-link { - color: rgba(255, 255, 255, 0.7); } - html.theme--documenter-dark .hero.is-link a.navbar-item:hover, html.theme--documenter-dark .hero.is-link a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-link .navbar-link:hover, - html.theme--documenter-dark .hero.is-link .navbar-link.is-active { - background-color: #17a689; - color: #fff; } - html.theme--documenter-dark .hero.is-link .tabs a { - color: #fff; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-link .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-link .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-link .tabs.is-boxed a, html.theme--documenter-dark .hero.is-link .tabs.is-toggle a { - color: #fff; } - html.theme--documenter-dark .hero.is-link .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-link .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-link .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-link .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-link .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-link .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #1abc9c; } - html.theme--documenter-dark .hero.is-link.is-bold { - background-image: linear-gradient(141deg, #0c9764 0%, #1abc9c 71%, #17d8d2 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-link.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #0c9764 0%, #1abc9c 71%, #17d8d2 100%); } } - html.theme--documenter-dark .hero.is-info { - background-color: #024c7d; - color: #fff; } - html.theme--documenter-dark .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-info strong { - color: inherit; } - html.theme--documenter-dark .hero.is-info .title { - color: #fff; } - html.theme--documenter-dark .hero.is-info .subtitle { - color: rgba(255, 255, 255, 0.9); } - html.theme--documenter-dark .hero.is-info .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-info .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-info .navbar-menu { - background-color: #024c7d; } } - html.theme--documenter-dark .hero.is-info .navbar-item, - html.theme--documenter-dark .hero.is-info .navbar-link { - color: rgba(255, 255, 255, 0.7); } - html.theme--documenter-dark .hero.is-info a.navbar-item:hover, html.theme--documenter-dark .hero.is-info a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-info .navbar-link:hover, - html.theme--documenter-dark .hero.is-info .navbar-link.is-active { - background-color: #023d64; - color: #fff; } - html.theme--documenter-dark .hero.is-info .tabs a { - color: #fff; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-info .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-info .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-info .tabs.is-boxed a, html.theme--documenter-dark .hero.is-info .tabs.is-toggle a { - color: #fff; } - html.theme--documenter-dark .hero.is-info .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-info .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-info .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-info .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-info .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-info .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #024c7d; } - html.theme--documenter-dark .hero.is-info.is-bold { - background-image: linear-gradient(141deg, #003a4c 0%, #024c7d 71%, #004299 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-info.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #003a4c 0%, #024c7d 71%, #004299 100%); } } - html.theme--documenter-dark .hero.is-success { - background-color: #008438; - color: #fff; } - html.theme--documenter-dark .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-success strong { - color: inherit; } - html.theme--documenter-dark .hero.is-success .title { - color: #fff; } - html.theme--documenter-dark .hero.is-success .subtitle { - color: rgba(255, 255, 255, 0.9); } - html.theme--documenter-dark .hero.is-success .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-success .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-success .navbar-menu { - background-color: #008438; } } - html.theme--documenter-dark .hero.is-success .navbar-item, - html.theme--documenter-dark .hero.is-success .navbar-link { - color: rgba(255, 255, 255, 0.7); } - html.theme--documenter-dark .hero.is-success a.navbar-item:hover, html.theme--documenter-dark .hero.is-success a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-success .navbar-link:hover, - html.theme--documenter-dark .hero.is-success .navbar-link.is-active { - background-color: #006b2d; - color: #fff; } - html.theme--documenter-dark .hero.is-success .tabs a { - color: #fff; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-success .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-success .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-success .tabs.is-boxed a, html.theme--documenter-dark .hero.is-success .tabs.is-toggle a { - color: #fff; } - html.theme--documenter-dark .hero.is-success .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-success .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-success .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-success .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-success .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-success .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #008438; } - html.theme--documenter-dark .hero.is-success.is-bold { - background-image: linear-gradient(141deg, #005115 0%, #008438 71%, #009e5d 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-success.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #005115 0%, #008438 71%, #009e5d 100%); } } - html.theme--documenter-dark .hero.is-warning { - background-color: #ad8100; - color: #fff; } - html.theme--documenter-dark .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-warning strong { - color: inherit; } - html.theme--documenter-dark .hero.is-warning .title { - color: #fff; } - html.theme--documenter-dark .hero.is-warning .subtitle { - color: rgba(255, 255, 255, 0.9); } - html.theme--documenter-dark .hero.is-warning .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-warning .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-warning .navbar-menu { - background-color: #ad8100; } } - html.theme--documenter-dark .hero.is-warning .navbar-item, - html.theme--documenter-dark .hero.is-warning .navbar-link { - color: rgba(255, 255, 255, 0.7); } - html.theme--documenter-dark .hero.is-warning a.navbar-item:hover, html.theme--documenter-dark .hero.is-warning a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-warning .navbar-link:hover, - html.theme--documenter-dark .hero.is-warning .navbar-link.is-active { - background-color: #946e00; - color: #fff; } - html.theme--documenter-dark .hero.is-warning .tabs a { - color: #fff; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-warning .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-warning .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-warning .tabs.is-boxed a, html.theme--documenter-dark .hero.is-warning .tabs.is-toggle a { - color: #fff; } - html.theme--documenter-dark .hero.is-warning .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-warning .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-warning .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-warning .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-warning .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-warning .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #ad8100; } - html.theme--documenter-dark .hero.is-warning.is-bold { - background-image: linear-gradient(141deg, #7a4700 0%, #ad8100 71%, #c7b500 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-warning.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #7a4700 0%, #ad8100 71%, #c7b500 100%); } } - html.theme--documenter-dark .hero.is-danger { - background-color: #9e1b0d; - color: #fff; } - html.theme--documenter-dark .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - html.theme--documenter-dark .hero.is-danger strong { - color: inherit; } - html.theme--documenter-dark .hero.is-danger .title { - color: #fff; } - html.theme--documenter-dark .hero.is-danger .subtitle { - color: rgba(255, 255, 255, 0.9); } - html.theme--documenter-dark .hero.is-danger .subtitle a:not(.button), - html.theme--documenter-dark .hero.is-danger .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .hero.is-danger .navbar-menu { - background-color: #9e1b0d; } } - html.theme--documenter-dark .hero.is-danger .navbar-item, - html.theme--documenter-dark .hero.is-danger .navbar-link { - color: rgba(255, 255, 255, 0.7); } - html.theme--documenter-dark .hero.is-danger a.navbar-item:hover, html.theme--documenter-dark .hero.is-danger a.navbar-item.is-active, - html.theme--documenter-dark .hero.is-danger .navbar-link:hover, - html.theme--documenter-dark .hero.is-danger .navbar-link.is-active { - background-color: #86170b; - color: #fff; } - html.theme--documenter-dark .hero.is-danger .tabs a { - color: #fff; - opacity: 0.9; } - html.theme--documenter-dark .hero.is-danger .tabs a:hover { - opacity: 1; } - html.theme--documenter-dark .hero.is-danger .tabs li.is-active a { - opacity: 1; } - html.theme--documenter-dark .hero.is-danger .tabs.is-boxed a, html.theme--documenter-dark .hero.is-danger .tabs.is-toggle a { - color: #fff; } - html.theme--documenter-dark .hero.is-danger .tabs.is-boxed a:hover, html.theme--documenter-dark .hero.is-danger .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - html.theme--documenter-dark .hero.is-danger .tabs.is-boxed li.is-active a, html.theme--documenter-dark .hero.is-danger .tabs.is-boxed li.is-active a:hover, html.theme--documenter-dark .hero.is-danger .tabs.is-toggle li.is-active a, html.theme--documenter-dark .hero.is-danger .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #9e1b0d; } - html.theme--documenter-dark .hero.is-danger.is-bold { - background-image: linear-gradient(141deg, #75030b 0%, #9e1b0d 71%, #ba380a 100%); } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero.is-danger.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #75030b 0%, #9e1b0d 71%, #ba380a 100%); } } - html.theme--documenter-dark .hero.is-small .hero-body, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.hero .hero-body { - padding-bottom: 1.5rem; - padding-top: 1.5rem; } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .hero.is-medium .hero-body { - padding-bottom: 9rem; - padding-top: 9rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .hero.is-large .hero-body { - padding-bottom: 18rem; - padding-top: 18rem; } } - html.theme--documenter-dark .hero.is-halfheight .hero-body, html.theme--documenter-dark .hero.is-fullheight .hero-body, html.theme--documenter-dark .hero.is-fullheight-with-navbar .hero-body { - align-items: center; - display: flex; } - html.theme--documenter-dark .hero.is-halfheight .hero-body > .container, html.theme--documenter-dark .hero.is-fullheight .hero-body > .container, html.theme--documenter-dark .hero.is-fullheight-with-navbar .hero-body > .container { - flex-grow: 1; - flex-shrink: 1; } - html.theme--documenter-dark .hero.is-halfheight { - min-height: 50vh; } - html.theme--documenter-dark .hero.is-fullheight { - min-height: 100vh; } - html.theme--documenter-dark .hero-video { - overflow: hidden; } - html.theme--documenter-dark .hero-video video { - left: 50%; - min-height: 100%; - min-width: 100%; - position: absolute; - top: 50%; - transform: translate3d(-50%, -50%, 0); } - html.theme--documenter-dark .hero-video.is-transparent { - opacity: 0.3; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero-video { - display: none; } } - html.theme--documenter-dark .hero-buttons { - margin-top: 1.5rem; } - @media screen and (max-width: 768px) { - html.theme--documenter-dark .hero-buttons .button { - display: flex; } - html.theme--documenter-dark .hero-buttons .button:not(:last-child) { - margin-bottom: 0.75rem; } } - @media screen and (min-width: 769px), print { - html.theme--documenter-dark .hero-buttons { - display: flex; - justify-content: center; } - html.theme--documenter-dark .hero-buttons .button:not(:last-child) { - margin-right: 1.5rem; } } - html.theme--documenter-dark .hero-head, - html.theme--documenter-dark .hero-foot { - flex-grow: 0; - flex-shrink: 0; } - html.theme--documenter-dark .hero-body { - flex-grow: 1; - flex-shrink: 0; - padding: 3rem 1.5rem; } - html.theme--documenter-dark .section { - padding: 3rem 1.5rem; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark .section.is-medium { - padding: 9rem 1.5rem; } - html.theme--documenter-dark .section.is-large { - padding: 18rem 1.5rem; } } - html.theme--documenter-dark .footer { - background-color: #282f2f; - padding: 3rem 1.5rem 6rem; } - html.theme--documenter-dark hr { - height: 1px; } - html.theme--documenter-dark h6 { - text-transform: uppercase; - letter-spacing: 0.5px; } - html.theme--documenter-dark .hero { - background-color: #343c3d; } - html.theme--documenter-dark a { - transition: all 200ms ease; } - html.theme--documenter-dark .button { - transition: all 200ms ease; - border-width: 1px; - color: white; } - html.theme--documenter-dark .button.is-active, html.theme--documenter-dark .button.is-focused, html.theme--documenter-dark .button:active, html.theme--documenter-dark .button:focus { - box-shadow: 0 0 0 2px rgba(140, 155, 157, 0.5); } - html.theme--documenter-dark .button.is-white.is-hovered, html.theme--documenter-dark .button.is-white:hover { - background-color: white; } - html.theme--documenter-dark .button.is-white.is-active, html.theme--documenter-dark .button.is-white.is-focused, html.theme--documenter-dark .button.is-white:active, html.theme--documenter-dark .button.is-white:focus { - border-color: white; - box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5); } - html.theme--documenter-dark .button.is-black.is-hovered, html.theme--documenter-dark .button.is-black:hover { - background-color: #1d1d1d; } - html.theme--documenter-dark .button.is-black.is-active, html.theme--documenter-dark .button.is-black.is-focused, html.theme--documenter-dark .button.is-black:active, html.theme--documenter-dark .button.is-black:focus { - border-color: #0a0a0a; - box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.5); } - html.theme--documenter-dark .button.is-light.is-hovered, html.theme--documenter-dark .button.is-light:hover { - background-color: white; } - html.theme--documenter-dark .button.is-light.is-active, html.theme--documenter-dark .button.is-light.is-focused, html.theme--documenter-dark .button.is-light:active, html.theme--documenter-dark .button.is-light:focus { - border-color: #ecf0f1; - box-shadow: 0 0 0 2px rgba(236, 240, 241, 0.5); } - html.theme--documenter-dark .button.is-dark.is-hovered, html.theme--documenter-dark .content kbd.button.is-hovered, html.theme--documenter-dark .button.is-dark:hover, html.theme--documenter-dark .content kbd.button:hover { - background-color: #3a4344; } - html.theme--documenter-dark .button.is-dark.is-active, html.theme--documenter-dark .content kbd.button.is-active, html.theme--documenter-dark .button.is-dark.is-focused, html.theme--documenter-dark .content kbd.button.is-focused, html.theme--documenter-dark .button.is-dark:active, html.theme--documenter-dark .content kbd.button:active, html.theme--documenter-dark .button.is-dark:focus, html.theme--documenter-dark .content kbd.button:focus { - border-color: #282f2f; - box-shadow: 0 0 0 2px rgba(40, 47, 47, 0.5); } - html.theme--documenter-dark .button.is-primary.is-hovered, html.theme--documenter-dark .docstring > section > a.button.is-hovered.docs-sourcelink, html.theme--documenter-dark .button.is-primary:hover, html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink:hover { - background-color: #436d9a; } - html.theme--documenter-dark .button.is-primary.is-active, html.theme--documenter-dark .docstring > section > a.button.is-active.docs-sourcelink, html.theme--documenter-dark .button.is-primary.is-focused, html.theme--documenter-dark .docstring > section > a.button.is-focused.docs-sourcelink, html.theme--documenter-dark .button.is-primary:active, html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink:active, html.theme--documenter-dark .button.is-primary:focus, html.theme--documenter-dark .docstring > section > a.button.docs-sourcelink:focus { - border-color: #375a7f; - box-shadow: 0 0 0 2px rgba(55, 90, 127, 0.5); } - html.theme--documenter-dark .button.is-link.is-hovered, html.theme--documenter-dark .button.is-link:hover { - background-color: #1fdeb8; } - html.theme--documenter-dark .button.is-link.is-active, html.theme--documenter-dark .button.is-link.is-focused, html.theme--documenter-dark .button.is-link:active, html.theme--documenter-dark .button.is-link:focus { - border-color: #1abc9c; - box-shadow: 0 0 0 2px rgba(26, 188, 156, 0.5); } - html.theme--documenter-dark .button.is-info.is-hovered, html.theme--documenter-dark .button.is-info:hover { - background-color: #0363a3; } - html.theme--documenter-dark .button.is-info.is-active, html.theme--documenter-dark .button.is-info.is-focused, html.theme--documenter-dark .button.is-info:active, html.theme--documenter-dark .button.is-info:focus { - border-color: #024c7d; - box-shadow: 0 0 0 2px rgba(2, 76, 125, 0.5); } - html.theme--documenter-dark .button.is-success.is-hovered, html.theme--documenter-dark .button.is-success:hover { - background-color: #00aa48; } - html.theme--documenter-dark .button.is-success.is-active, html.theme--documenter-dark .button.is-success.is-focused, html.theme--documenter-dark .button.is-success:active, html.theme--documenter-dark .button.is-success:focus { - border-color: #008438; - box-shadow: 0 0 0 2px rgba(0, 132, 56, 0.5); } - html.theme--documenter-dark .button.is-warning.is-hovered, html.theme--documenter-dark .button.is-warning:hover { - background-color: #d39e00; } - html.theme--documenter-dark .button.is-warning.is-active, html.theme--documenter-dark .button.is-warning.is-focused, html.theme--documenter-dark .button.is-warning:active, html.theme--documenter-dark .button.is-warning:focus { - border-color: #ad8100; - box-shadow: 0 0 0 2px rgba(173, 129, 0, 0.5); } - html.theme--documenter-dark .button.is-danger.is-hovered, html.theme--documenter-dark .button.is-danger:hover { - background-color: #c12110; } - html.theme--documenter-dark .button.is-danger.is-active, html.theme--documenter-dark .button.is-danger.is-focused, html.theme--documenter-dark .button.is-danger:active, html.theme--documenter-dark .button.is-danger:focus { - border-color: #9e1b0d; - box-shadow: 0 0 0 2px rgba(158, 27, 13, 0.5); } - html.theme--documenter-dark .label { - color: #dbdee0; } - html.theme--documenter-dark .button, - html.theme--documenter-dark .control.has-icons-left .icon, - html.theme--documenter-dark .control.has-icons-right .icon, - html.theme--documenter-dark .input, - html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input, - html.theme--documenter-dark .pagination-ellipsis, - html.theme--documenter-dark .pagination-link, - html.theme--documenter-dark .pagination-next, - html.theme--documenter-dark .pagination-previous, - html.theme--documenter-dark .select, - html.theme--documenter-dark .select select, - html.theme--documenter-dark .textarea { - height: 2.5em; } - - html.theme--documenter-dark .input, - html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input, - html.theme--documenter-dark .textarea { - transition: all 200ms ease; - box-shadow: none; - border-width: 1px; - padding-left: 1em; - padding-right: 1em; } - html.theme--documenter-dark .select:after, - html.theme--documenter-dark .select select { - border-width: 1px; } - html.theme--documenter-dark .control.has-addons .button, - html.theme--documenter-dark .control.has-addons .input, - html.theme--documenter-dark .control.has-addons #documenter .docs-sidebar form.docs-search > input, - html.theme--documenter-dark #documenter .docs-sidebar .control.has-addons form.docs-search > input, - html.theme--documenter-dark .control.has-addons .select { - margin-right: -1px; } - html.theme--documenter-dark .notification { - background-color: #343c3d; } - html.theme--documenter-dark .card { - box-shadow: none; - border: 1px solid #343c3d; - background-color: #282f2f; - border-radius: 0.4em; } - html.theme--documenter-dark .card .card-image img { - border-radius: 0.4em 0.4em 0 0; } - html.theme--documenter-dark .card .card-header { - box-shadow: none; - background-color: rgba(18, 18, 18, 0.2); - border-radius: 0.4em 0.4em 0 0; } - html.theme--documenter-dark .card .card-footer { - background-color: rgba(18, 18, 18, 0.2); } - html.theme--documenter-dark .card .card-footer, - html.theme--documenter-dark .card .card-footer-item { - border-width: 1px; - border-color: #343c3d; } - html.theme--documenter-dark .notification.is-white a:not(.button) { - color: #0a0a0a; - text-decoration: underline; } - html.theme--documenter-dark .notification.is-black a:not(.button) { - color: white; - text-decoration: underline; } - html.theme--documenter-dark .notification.is-light a:not(.button) { - color: #282f2f; - text-decoration: underline; } - html.theme--documenter-dark .notification.is-dark a:not(.button), html.theme--documenter-dark .content kbd.notification a:not(.button) { - color: #ecf0f1; - text-decoration: underline; } - html.theme--documenter-dark .notification.is-primary a:not(.button), html.theme--documenter-dark .docstring > section > a.notification.docs-sourcelink a:not(.button) { - color: #fff; - text-decoration: underline; } - html.theme--documenter-dark .notification.is-link a:not(.button) { - color: #fff; - text-decoration: underline; } - html.theme--documenter-dark .notification.is-info a:not(.button) { - color: #fff; - text-decoration: underline; } - html.theme--documenter-dark .notification.is-success a:not(.button) { - color: #fff; - text-decoration: underline; } - html.theme--documenter-dark .notification.is-warning a:not(.button) { - color: #fff; - text-decoration: underline; } - html.theme--documenter-dark .notification.is-danger a:not(.button) { - color: #fff; - text-decoration: underline; } - html.theme--documenter-dark .tag, html.theme--documenter-dark .docstring > section > a.docs-sourcelink, html.theme--documenter-dark .content kbd { - border-radius: 0.4em; } - html.theme--documenter-dark .menu-list a { - transition: all 300ms ease; } - html.theme--documenter-dark .modal-card-body { - background-color: #282f2f; } - html.theme--documenter-dark .modal-card-foot, - html.theme--documenter-dark .modal-card-head { - border-color: #343c3d; } - html.theme--documenter-dark .message-header { - font-weight: 700; - background-color: #343c3d; - color: white; } - html.theme--documenter-dark .message-body { - border-width: 1px; - border-color: #343c3d; } - html.theme--documenter-dark .navbar { - border-radius: 0.4em; } - html.theme--documenter-dark .navbar.is-transparent { - background: none; } - html.theme--documenter-dark .navbar.is-primary .navbar-dropdown a.navbar-item.is-active, html.theme--documenter-dark .docstring > section > a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active { - background-color: #1abc9c; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark .navbar .navbar-menu { - background-color: #375a7f; - border-radius: 0 0 0.4em 0.4em; } } - html.theme--documenter-dark .hero .navbar, - html.theme--documenter-dark body > .navbar { - border-radius: 0; } - html.theme--documenter-dark .pagination-link, - html.theme--documenter-dark .pagination-next, - html.theme--documenter-dark .pagination-previous { - border-width: 1px; } - html.theme--documenter-dark .panel-block, - html.theme--documenter-dark .panel-heading, - html.theme--documenter-dark .panel-tabs { - border-width: 1px; } - html.theme--documenter-dark .panel-block:first-child, - html.theme--documenter-dark .panel-heading:first-child, - html.theme--documenter-dark .panel-tabs:first-child { - border-top-width: 1px; } - html.theme--documenter-dark .panel-heading { - font-weight: 700; } - html.theme--documenter-dark .panel-tabs a { - border-width: 1px; - margin-bottom: -1px; } - html.theme--documenter-dark .panel-tabs a.is-active { - border-bottom-color: #17a689; } - html.theme--documenter-dark .panel-block:hover { - color: #1dd2af; } - html.theme--documenter-dark .panel-block:hover .panel-icon { - color: #1dd2af; } - html.theme--documenter-dark .panel-block.is-active .panel-icon { - color: #17a689; } - html.theme--documenter-dark .tabs a { - border-bottom-width: 1px; - margin-bottom: -1px; } - html.theme--documenter-dark .tabs ul { - border-bottom-width: 1px; } - html.theme--documenter-dark .tabs.is-boxed a { - border-width: 1px; } - html.theme--documenter-dark .tabs.is-boxed li.is-active a { - background-color: #1f2424; } - html.theme--documenter-dark .tabs.is-toggle li a { - border-width: 1px; - margin-bottom: 0; } - html.theme--documenter-dark .tabs.is-toggle li + li { - margin-left: -1px; } - html.theme--documenter-dark .hero.is-white .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .hero.is-black .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .hero.is-light .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .hero.is-dark .navbar .navbar-dropdown .navbar-item:hover, html.theme--documenter-dark .content kbd.hero .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .hero.is-primary .navbar .navbar-dropdown .navbar-item:hover, html.theme--documenter-dark .docstring > section > a.hero.docs-sourcelink .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .hero.is-link .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .hero.is-info .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .hero.is-success .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .hero.is-warning .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark .hero.is-danger .navbar .navbar-dropdown .navbar-item:hover { - background-color: transparent; } - html.theme--documenter-dark h1 .docs-heading-anchor, html.theme--documenter-dark h1 .docs-heading-anchor:hover, html.theme--documenter-dark h1 .docs-heading-anchor:visited, html.theme--documenter-dark h2 .docs-heading-anchor, html.theme--documenter-dark h2 .docs-heading-anchor:hover, html.theme--documenter-dark h2 .docs-heading-anchor:visited, html.theme--documenter-dark h3 .docs-heading-anchor, html.theme--documenter-dark h3 .docs-heading-anchor:hover, html.theme--documenter-dark h3 .docs-heading-anchor:visited, html.theme--documenter-dark h4 .docs-heading-anchor, html.theme--documenter-dark h4 .docs-heading-anchor:hover, html.theme--documenter-dark h4 .docs-heading-anchor:visited, html.theme--documenter-dark h5 .docs-heading-anchor, html.theme--documenter-dark h5 .docs-heading-anchor:hover, html.theme--documenter-dark h5 .docs-heading-anchor:visited, html.theme--documenter-dark h6 .docs-heading-anchor, html.theme--documenter-dark h6 .docs-heading-anchor:hover, html.theme--documenter-dark h6 .docs-heading-anchor:visited { - color: #f2f2f2; } - html.theme--documenter-dark h1 .docs-heading-anchor-permalink, html.theme--documenter-dark h2 .docs-heading-anchor-permalink, html.theme--documenter-dark h3 .docs-heading-anchor-permalink, html.theme--documenter-dark h4 .docs-heading-anchor-permalink, html.theme--documenter-dark h5 .docs-heading-anchor-permalink, html.theme--documenter-dark h6 .docs-heading-anchor-permalink { - visibility: hidden; - vertical-align: middle; - margin-left: 0.5em; - font-size: 0.7rem; } - html.theme--documenter-dark h1 .docs-heading-anchor-permalink::before, html.theme--documenter-dark h2 .docs-heading-anchor-permalink::before, html.theme--documenter-dark h3 .docs-heading-anchor-permalink::before, html.theme--documenter-dark h4 .docs-heading-anchor-permalink::before, html.theme--documenter-dark h5 .docs-heading-anchor-permalink::before, html.theme--documenter-dark h6 .docs-heading-anchor-permalink::before { - font-family: "Font Awesome 5 Free"; - font-weight: 900; - content: "\f0c1"; } - html.theme--documenter-dark h1:hover .docs-heading-anchor-permalink, html.theme--documenter-dark h2:hover .docs-heading-anchor-permalink, html.theme--documenter-dark h3:hover .docs-heading-anchor-permalink, html.theme--documenter-dark h4:hover .docs-heading-anchor-permalink, html.theme--documenter-dark h5:hover .docs-heading-anchor-permalink, html.theme--documenter-dark h6:hover .docs-heading-anchor-permalink { - visibility: visible; } - html.theme--documenter-dark .docs-light-only { - display: none !important; } - html.theme--documenter-dark .admonition { - background-color: #282f2f; - border-style: solid; - border-width: 1px; - border-color: #5e6d6f; - border-radius: 0.4em; - font-size: 15px; } - html.theme--documenter-dark .admonition strong { - color: currentColor; } - html.theme--documenter-dark .admonition.is-small, html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input.admonition { - font-size: 0.85em; } - html.theme--documenter-dark .admonition.is-medium { - font-size: 1.25rem; } - html.theme--documenter-dark .admonition.is-large { - font-size: 1.5rem; } - html.theme--documenter-dark .admonition.is-default { - background-color: #282f2f; - border-color: #5e6d6f; } - html.theme--documenter-dark .admonition.is-default > .admonition-header { - background-color: #5e6d6f; } - html.theme--documenter-dark .admonition.is-info { - background-color: #282f2f; - border-color: #024c7d; } - html.theme--documenter-dark .admonition.is-info > .admonition-header { - background-color: #024c7d; } - html.theme--documenter-dark .admonition.is-success { - background-color: #282f2f; - border-color: #008438; } - html.theme--documenter-dark .admonition.is-success > .admonition-header { - background-color: #008438; } - html.theme--documenter-dark .admonition.is-warning { - background-color: #282f2f; - border-color: #ad8100; } - html.theme--documenter-dark .admonition.is-warning > .admonition-header { - background-color: #ad8100; } - html.theme--documenter-dark .admonition.is-danger { - background-color: #282f2f; - border-color: #9e1b0d; } - html.theme--documenter-dark .admonition.is-danger > .admonition-header { - background-color: #9e1b0d; } - html.theme--documenter-dark .admonition.is-compat { - background-color: #282f2f; - border-color: #137886; } - html.theme--documenter-dark .admonition.is-compat > .admonition-header { - background-color: #137886; } - html.theme--documenter-dark .admonition-header { - background-color: #5e6d6f; - align-items: center; - font-weight: 700; - justify-content: space-between; - line-height: 1.25; - padding: 0.75em; - position: relative; } - html.theme--documenter-dark .admonition-header:before { - font-family: "Font Awesome 5 Free"; - font-weight: 900; - margin-right: 0.75em; - content: "\f06a"; } - html.theme--documenter-dark .admonition-body { - color: #fff; - padding: 1em 1.25em; } - html.theme--documenter-dark .admonition-body pre { - background-color: #282f2f; } - html.theme--documenter-dark .admonition-body code { - background-color: rgba(255, 255, 255, 0.05); } - html.theme--documenter-dark .docstring { - margin-bottom: 1em; - background-color: transparent; - border: 1px solid #5e6d6f; - box-shadow: none; - max-width: 100%; } - html.theme--documenter-dark .docstring > header { - display: flex; - flex-grow: 1; - align-items: stretch; - padding: 0.75rem; - background-color: #282f2f; - box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1); - box-shadow: none; - border-bottom: 1px solid #5e6d6f; } - html.theme--documenter-dark .docstring > header code { - background-color: transparent; } - html.theme--documenter-dark .docstring > header .docstring-binding { - margin-right: 0.3em; } - html.theme--documenter-dark .docstring > header .docstring-category { - margin-left: 0.3em; } - html.theme--documenter-dark .docstring > section { - position: relative; - padding: 1rem 1.25rem; - border-bottom: 1px solid #5e6d6f; } - html.theme--documenter-dark .docstring > section:last-child { - border-bottom: none; } - html.theme--documenter-dark .docstring > section > a.docs-sourcelink { - transition: opacity 0.3s; - opacity: 0; - position: absolute; - right: 0.625rem; - bottom: 0.5rem; } - html.theme--documenter-dark .docstring:hover > section > a.docs-sourcelink { - opacity: 0.2; } - html.theme--documenter-dark .docstring > section:hover a.docs-sourcelink { - opacity: 1; } - html.theme--documenter-dark .documenter-example-output { - background-color: #1f2424; } - html.theme--documenter-dark .outdated-warning-overlay { - position: fixed; - top: 0; - left: 0; - right: 0; - box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); - z-index: 999; - background-color: #282f2f; - border-bottom: 3px solid #9e1b0d; - padding: 10px 35px; - text-align: center; - font-size: 15px; } - html.theme--documenter-dark .outdated-warning-overlay .outdated-warning-closer { - position: absolute; - top: calc(50% - 10px); - right: 18px; - cursor: pointer; - width: 12px; } - html.theme--documenter-dark .outdated-warning-overlay a { - color: #1abc9c; } - html.theme--documenter-dark .outdated-warning-overlay a:hover { - color: #1dd2af; } - html.theme--documenter-dark .content pre { - border: 1px solid #5e6d6f; } - html.theme--documenter-dark .content code { - font-weight: inherit; } - html.theme--documenter-dark .content a code { - color: #1abc9c; } - html.theme--documenter-dark .content h1 code, html.theme--documenter-dark .content h2 code, html.theme--documenter-dark .content h3 code, html.theme--documenter-dark .content h4 code, html.theme--documenter-dark .content h5 code, html.theme--documenter-dark .content h6 code { - color: #f2f2f2; } - html.theme--documenter-dark .content table { - display: block; - width: initial; - max-width: 100%; - overflow-x: auto; } - html.theme--documenter-dark .content blockquote > ul:first-child, html.theme--documenter-dark .content blockquote > ol:first-child, html.theme--documenter-dark .content .admonition-body > ul:first-child, html.theme--documenter-dark .content .admonition-body > ol:first-child { - margin-top: 0; } - html.theme--documenter-dark pre, html.theme--documenter-dark code { - font-variant-ligatures: no-contextual; } - html.theme--documenter-dark .breadcrumb a.is-disabled { - cursor: default; - pointer-events: none; } - html.theme--documenter-dark .breadcrumb a.is-disabled, html.theme--documenter-dark .breadcrumb a.is-disabled:hover { - color: #f2f2f2; } - html.theme--documenter-dark .hljs { - background: initial !important; - padding: initial !important; } - html.theme--documenter-dark .katex .katex-mathml { - top: 0; - right: 0; } - html.theme--documenter-dark .katex-display, html.theme--documenter-dark mjx-container, html.theme--documenter-dark .MathJax_Display { - margin: 0.5em 0 !important; } - html.theme--documenter-dark html { - -moz-osx-font-smoothing: auto; - -webkit-font-smoothing: auto; } - html.theme--documenter-dark #documenter .docs-main > article { - overflow-wrap: break-word; } - html.theme--documenter-dark #documenter .docs-main > article .math-container { - overflow-x: auto; - overflow-y: hidden; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark #documenter .docs-main { - max-width: 52rem; - margin-left: 20rem; - padding-right: 1rem; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark #documenter .docs-main { - width: 100%; } - html.theme--documenter-dark #documenter .docs-main > article { - max-width: 52rem; - margin-left: auto; - margin-right: auto; - margin-bottom: 1rem; - padding: 0 1rem; } - html.theme--documenter-dark #documenter .docs-main > header, html.theme--documenter-dark #documenter .docs-main > nav { - max-width: 100%; - width: 100%; - margin: 0; } } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar { - background-color: #1f2424; - border-bottom: 1px solid #5e6d6f; - z-index: 2; - min-height: 4rem; - margin-bottom: 1rem; - display: flex; } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar .breadcrumb { - flex-grow: 1; } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right { - display: flex; - white-space: nowrap; } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-icon, html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-label, html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-sidebar-button { - display: inline-block; } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-label { - padding: 0; - margin-left: 0.3em; } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-settings-button { - margin: auto 0 auto 1rem; } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar .docs-right .docs-sidebar-button { - font-size: 1.5rem; - margin: auto 0 auto 1rem; } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar > * { - margin: auto 0; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark #documenter .docs-main header.docs-navbar { - position: sticky; - top: 0; - padding: 0 1rem; - /* For Headroom.js */ - transition-property: top, box-shadow; - -webkit-transition-property: top, box-shadow; - /* Safari */ - transition-duration: 0.3s; - -webkit-transition-duration: 0.3s; - /* Safari */ } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar.headroom--not-top { - box-shadow: 0.2rem 0rem 0.4rem #171717; - transition-duration: 0.7s; - -webkit-transition-duration: 0.7s; - /* Safari */ } - html.theme--documenter-dark #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom { - top: -4.5rem; - transition-duration: 0.7s; - -webkit-transition-duration: 0.7s; - /* Safari */ } } - html.theme--documenter-dark #documenter .docs-main section.footnotes { - border-top: 1px solid #5e6d6f; } - html.theme--documenter-dark #documenter .docs-main section.footnotes li .tag:first-child, html.theme--documenter-dark #documenter .docs-main section.footnotes li .docstring > section > a.docs-sourcelink:first-child, html.theme--documenter-dark #documenter .docs-main section.footnotes li .content kbd:first-child, html.theme--documenter-dark .content #documenter .docs-main section.footnotes li kbd:first-child { - margin-right: 1em; - margin-bottom: 0.4em; } - html.theme--documenter-dark #documenter .docs-main .docs-footer { - display: flex; - flex-wrap: wrap; - margin-left: 0; - margin-right: 0; - border-top: 1px solid #5e6d6f; - padding-top: 1rem; - padding-bottom: 1rem; } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark #documenter .docs-main .docs-footer { - padding-left: 1rem; - padding-right: 1rem; } } - html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-nextpage, html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-prevpage { - flex-grow: 1; } - html.theme--documenter-dark #documenter .docs-main .docs-footer .docs-footer-nextpage { - text-align: right; } - html.theme--documenter-dark #documenter .docs-main .docs-footer .flexbox-break { - flex-basis: 100%; - height: 0; } - html.theme--documenter-dark #documenter .docs-main .docs-footer .footer-message { - font-size: 0.8em; - margin: 0.5em auto 0 auto; - text-align: center; } - html.theme--documenter-dark #documenter .docs-sidebar { - display: flex; - flex-direction: column; - color: #fff; - background-color: #282f2f; - border-right: 1px solid #5e6d6f; - padding: 0; - flex: 0 0 18rem; - z-index: 5; - font-size: 15px; - position: fixed; - left: -18rem; - width: 18rem; - height: 100%; - transition: left 0.3s; - /* Setting up a nicer theme style for the scrollbar */ } - html.theme--documenter-dark #documenter .docs-sidebar.visible { - left: 0; - box-shadow: 0.4rem 0rem 0.8rem #171717; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark #documenter .docs-sidebar.visible { - box-shadow: none; } } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark #documenter .docs-sidebar { - left: 0; - top: 0; } } - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo { - margin-top: 1rem; - padding: 0 1rem; } - html.theme--documenter-dark #documenter .docs-sidebar .docs-logo > img { - max-height: 6rem; - margin: auto; } - html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name { - flex-shrink: 0; - font-size: 1.5rem; - font-weight: 700; - text-align: center; - white-space: nowrap; - overflow: hidden; - padding: 0.5rem 0; } - html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name .docs-autofit { - max-width: 16.2rem; } - html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a, html.theme--documenter-dark #documenter .docs-sidebar .docs-package-name a:hover { - color: #fff; } - html.theme--documenter-dark #documenter .docs-sidebar .docs-version-selector { - border-top: 1px solid #5e6d6f; - display: none; - padding: 0.5rem; } - html.theme--documenter-dark #documenter .docs-sidebar .docs-version-selector.visible { - display: flex; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu { - flex-grow: 1; - user-select: none; - border-top: 1px solid #5e6d6f; - padding-bottom: 1.5rem; - /* Managing collapsible submenus */ } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu > li > .tocitem { - font-weight: bold; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu > li li { - font-size: 14.25px; - margin-left: 1em; - border-left: 1px solid #5e6d6f; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input.collapse-toggle { - display: none; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.collapsed { - display: none; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input:checked ~ ul.collapsed { - display: block; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem { - display: flex; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label { - flex-grow: 2; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron { - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - line-height: 1; - font-size: 11.25px; - margin-left: 1rem; - margin-top: auto; - margin-bottom: auto; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before { - font-family: "Font Awesome 5 Free"; - font-weight: 900; - content: "\f054"; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu input:checked ~ label.tocitem .docs-chevron::before { - content: "\f078"; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem { - display: block; - padding: 0.5rem 0.5rem; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem, html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu .tocitem:hover { - color: #fff; - background: #282f2f; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu a.tocitem:hover, html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu label.tocitem:hover { - color: #fff; - background-color: #32393a; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active { - border-top: 1px solid #5e6d6f; - border-bottom: 1px solid #5e6d6f; - background-color: #1f2424; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem, html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover { - background-color: #1f2424; - color: #fff; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover { - background-color: #32393a; - color: #fff; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu > li.is-active:first-child { - border-top: none; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal { - margin: 0 0.5rem 0.5rem; - border-top: 1px solid #5e6d6f; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal li { - font-size: 12.75px; - border-left: none; - margin-left: 0; - margin-top: 0.5rem; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem { - width: 100%; - padding: 0; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before { - content: "⚬"; - margin-right: 0.4em; } - html.theme--documenter-dark #documenter .docs-sidebar form.docs-search { - margin: auto; - margin-top: 0.5rem; - margin-bottom: 0.5rem; } - html.theme--documenter-dark #documenter .docs-sidebar form.docs-search > input { - width: 14.4rem; } - @media screen and (min-width: 1056px) { - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu { - overflow-y: auto; - -webkit-overflow-scroll: touch; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar { - width: .3rem; - background: none; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb { - border-radius: 5px 0px 0px 5px; - background: #3b4445; } - html.theme--documenter-dark #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover { - background: #4e5a5c; } } - @media screen and (max-width: 1055px) { - html.theme--documenter-dark #documenter .docs-sidebar { - overflow-y: auto; - -webkit-overflow-scroll: touch; } - html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar { - width: .3rem; - background: none; } - html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar-thumb { - border-radius: 5px 0px 0px 5px; - background: #3b4445; } - html.theme--documenter-dark #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover { - background: #4e5a5c; } } - html.theme--documenter-dark #documenter .docs-main #documenter-search-info { - margin-bottom: 1rem; } - html.theme--documenter-dark #documenter .docs-main #documenter-search-results { - list-style-type: circle; - list-style-position: outside; } - html.theme--documenter-dark #documenter .docs-main #documenter-search-results li { - margin-left: 2rem; } - html.theme--documenter-dark #documenter .docs-main #documenter-search-results .docs-highlight { - background-color: yellow; } - html.theme--documenter-dark { - background-color: #1f2424; - font-size: 16px; - min-width: 300px; - overflow-x: auto; - overflow-y: scroll; - text-rendering: optimizeLegibility; - text-size-adjust: 100%; } - html.theme--documenter-dark .ansi span.sgr1 { - font-weight: bolder; } - html.theme--documenter-dark .ansi span.sgr2 { - font-weight: lighter; } - html.theme--documenter-dark .ansi span.sgr3 { - font-style: italic; } - html.theme--documenter-dark .ansi span.sgr4 { - text-decoration: underline; } - html.theme--documenter-dark .ansi span.sgr7 { - color: #1f2424; - background-color: #fff; } - html.theme--documenter-dark .ansi span.sgr8 { - color: transparent; } - html.theme--documenter-dark .ansi span.sgr8 span { - color: transparent; } - html.theme--documenter-dark .ansi span.sgr9 { - text-decoration: line-through; } - html.theme--documenter-dark .ansi span.sgr30 { - color: #242424; } - html.theme--documenter-dark .ansi span.sgr31 { - color: #f6705f; } - html.theme--documenter-dark .ansi span.sgr32 { - color: #4fb43a; } - html.theme--documenter-dark .ansi span.sgr33 { - color: #f4c72f; } - html.theme--documenter-dark .ansi span.sgr34 { - color: #7587f0; } - html.theme--documenter-dark .ansi span.sgr35 { - color: #bc89d3; } - html.theme--documenter-dark .ansi span.sgr36 { - color: #49b6ca; } - html.theme--documenter-dark .ansi span.sgr37 { - color: #b3bdbe; } - html.theme--documenter-dark .ansi span.sgr40 { - background-color: #242424; } - html.theme--documenter-dark .ansi span.sgr41 { - background-color: #f6705f; } - html.theme--documenter-dark .ansi span.sgr42 { - background-color: #4fb43a; } - html.theme--documenter-dark .ansi span.sgr43 { - background-color: #f4c72f; } - html.theme--documenter-dark .ansi span.sgr44 { - background-color: #7587f0; } - html.theme--documenter-dark .ansi span.sgr45 { - background-color: #bc89d3; } - html.theme--documenter-dark .ansi span.sgr46 { - background-color: #49b6ca; } - html.theme--documenter-dark .ansi span.sgr47 { - background-color: #b3bdbe; } - html.theme--documenter-dark .ansi span.sgr90 { - color: #92a0a2; } - html.theme--documenter-dark .ansi span.sgr91 { - color: #ff8674; } - html.theme--documenter-dark .ansi span.sgr92 { - color: #79d462; } - html.theme--documenter-dark .ansi span.sgr93 { - color: #ffe76b; } - html.theme--documenter-dark .ansi span.sgr94 { - color: #8a98ff; } - html.theme--documenter-dark .ansi span.sgr95 { - color: #d2a4e6; } - html.theme--documenter-dark .ansi span.sgr96 { - color: #6bc8db; } - html.theme--documenter-dark .ansi span.sgr97 { - color: #ecf0f1; } - html.theme--documenter-dark .ansi span.sgr100 { - background-color: #92a0a2; } - html.theme--documenter-dark .ansi span.sgr101 { - background-color: #ff8674; } - html.theme--documenter-dark .ansi span.sgr102 { - background-color: #79d462; } - html.theme--documenter-dark .ansi span.sgr103 { - background-color: #ffe76b; } - html.theme--documenter-dark .ansi span.sgr104 { - background-color: #8a98ff; } - html.theme--documenter-dark .ansi span.sgr105 { - background-color: #d2a4e6; } - html.theme--documenter-dark .ansi span.sgr106 { - background-color: #6bc8db; } - html.theme--documenter-dark .ansi span.sgr107 { - background-color: #ecf0f1; } - html.theme--documenter-dark code.language-julia-repl > span.hljs-meta { - color: #4fb43a; - font-weight: bolder; } - html.theme--documenter-dark .hljs { - background: #2b2b2b; - color: #f8f8f2; } - html.theme--documenter-dark .hljs-comment, - html.theme--documenter-dark .hljs-quote { - color: #d4d0ab; } - html.theme--documenter-dark .hljs-variable, - html.theme--documenter-dark .hljs-template-variable, - html.theme--documenter-dark .hljs-tag, - html.theme--documenter-dark .hljs-name, - html.theme--documenter-dark .hljs-selector-id, - html.theme--documenter-dark .hljs-selector-class, - html.theme--documenter-dark .hljs-regexp, - html.theme--documenter-dark .hljs-deletion { - color: #ffa07a; } - html.theme--documenter-dark .hljs-number, - html.theme--documenter-dark .hljs-built_in, - html.theme--documenter-dark .hljs-literal, - html.theme--documenter-dark .hljs-type, - html.theme--documenter-dark .hljs-params, - html.theme--documenter-dark .hljs-meta, - html.theme--documenter-dark .hljs-link { - color: #f5ab35; } - html.theme--documenter-dark .hljs-attribute { - color: #ffd700; } - html.theme--documenter-dark .hljs-string, - html.theme--documenter-dark .hljs-symbol, - html.theme--documenter-dark .hljs-bullet, - html.theme--documenter-dark .hljs-addition { - color: #abe338; } - html.theme--documenter-dark .hljs-title, - html.theme--documenter-dark .hljs-section { - color: #00e0e0; } - html.theme--documenter-dark .hljs-keyword, - html.theme--documenter-dark .hljs-selector-tag { - color: #dcc6e0; } - html.theme--documenter-dark .hljs-emphasis { - font-style: italic; } - html.theme--documenter-dark .hljs-strong { - font-weight: bold; } - @media screen and (-ms-high-contrast: active) { - html.theme--documenter-dark .hljs-addition, - html.theme--documenter-dark .hljs-attribute, - html.theme--documenter-dark .hljs-built_in, - html.theme--documenter-dark .hljs-bullet, - html.theme--documenter-dark .hljs-comment, - html.theme--documenter-dark .hljs-link, - html.theme--documenter-dark .hljs-literal, - html.theme--documenter-dark .hljs-meta, - html.theme--documenter-dark .hljs-number, - html.theme--documenter-dark .hljs-params, - html.theme--documenter-dark .hljs-string, - html.theme--documenter-dark .hljs-symbol, - html.theme--documenter-dark .hljs-type, - html.theme--documenter-dark .hljs-quote { - color: highlight; } - html.theme--documenter-dark .hljs-keyword, - html.theme--documenter-dark .hljs-selector-tag { - font-weight: bold; } } - html.theme--documenter-dark .hljs-subst { - color: #f8f8f2; } diff --git a/v0.1.7/assets/themes/documenter-light.css b/v0.1.7/assets/themes/documenter-light.css deleted file mode 100644 index 3ce8010..0000000 --- a/v0.1.7/assets/themes/documenter-light.css +++ /dev/null @@ -1,7810 +0,0 @@ -@charset "UTF-8"; -/* Font Awesome 5 mixin. Can be included in any rule that should render Font Awesome icons. */ -@keyframes spinAround { - from { - transform: rotate(0deg); } - to { - transform: rotate(359deg); } } - -.delete, .modal-close, .is-unselectable, .button, .file, .breadcrumb, .pagination-previous, -.pagination-next, -.pagination-link, -.pagination-ellipsis, .tabs { - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; } - -.select:not(.is-multiple):not(.is-loading)::after, .navbar-link:not(.is-arrowless)::after { - border: 3px solid transparent; - border-radius: 2px; - border-right: 0; - border-top: 0; - content: " "; - display: block; - height: 0.625em; - margin-top: -0.4375em; - pointer-events: none; - position: absolute; - top: 50%; - transform: rotate(-45deg); - transform-origin: center; - width: 0.625em; } - -.box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child), -.subtitle:not(:last-child), .block:not(:last-child), .highlight:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .list:not(:last-child), .message:not(:last-child), .tabs:not(:last-child), .admonition:not(:last-child) { - margin-bottom: 1.5rem; } - -.delete, .modal-close { - -moz-appearance: none; - -webkit-appearance: none; - background-color: rgba(10, 10, 10, 0.2); - border: none; - border-radius: 290486px; - cursor: pointer; - pointer-events: auto; - display: inline-block; - flex-grow: 0; - flex-shrink: 0; - font-size: 0; - height: 20px; - max-height: 20px; - max-width: 20px; - min-height: 20px; - min-width: 20px; - outline: none; - position: relative; - vertical-align: top; - width: 20px; } - .delete::before, .modal-close::before, .delete::after, .modal-close::after { - background-color: white; - content: ""; - display: block; - left: 50%; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform-origin: center center; } - .delete::before, .modal-close::before { - height: 2px; - width: 50%; } - .delete::after, .modal-close::after { - height: 50%; - width: 2px; } - .delete:hover, .modal-close:hover, .delete:focus, .modal-close:focus { - background-color: rgba(10, 10, 10, 0.3); } - .delete:active, .modal-close:active { - background-color: rgba(10, 10, 10, 0.4); } - .is-small.delete, #documenter .docs-sidebar form.docs-search > input.delete, .is-small.modal-close, #documenter .docs-sidebar form.docs-search > input.modal-close { - height: 16px; - max-height: 16px; - max-width: 16px; - min-height: 16px; - min-width: 16px; - width: 16px; } - .is-medium.delete, .is-medium.modal-close { - height: 24px; - max-height: 24px; - max-width: 24px; - min-height: 24px; - min-width: 24px; - width: 24px; } - .is-large.delete, .is-large.modal-close { - height: 32px; - max-height: 32px; - max-width: 32px; - min-height: 32px; - min-width: 32px; - width: 32px; } - -.button.is-loading::after, .loader, .select.is-loading::after, .control.is-loading::after { - animation: spinAround 500ms infinite linear; - border: 2px solid #dbdbdb; - border-radius: 290486px; - border-right-color: transparent; - border-top-color: transparent; - content: ""; - display: block; - height: 1em; - position: relative; - width: 1em; } - -.is-overlay, .image.is-square img, #documenter .docs-sidebar .docs-logo > img.is-square img, -.image.is-square .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-square .has-ratio, .image.is-1by1 img, #documenter .docs-sidebar .docs-logo > img.is-1by1 img, -.image.is-1by1 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-1by1 .has-ratio, .image.is-5by4 img, #documenter .docs-sidebar .docs-logo > img.is-5by4 img, -.image.is-5by4 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-5by4 .has-ratio, .image.is-4by3 img, #documenter .docs-sidebar .docs-logo > img.is-4by3 img, -.image.is-4by3 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-4by3 .has-ratio, .image.is-3by2 img, #documenter .docs-sidebar .docs-logo > img.is-3by2 img, -.image.is-3by2 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-3by2 .has-ratio, .image.is-5by3 img, #documenter .docs-sidebar .docs-logo > img.is-5by3 img, -.image.is-5by3 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-5by3 .has-ratio, .image.is-16by9 img, #documenter .docs-sidebar .docs-logo > img.is-16by9 img, -.image.is-16by9 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-16by9 .has-ratio, .image.is-2by1 img, #documenter .docs-sidebar .docs-logo > img.is-2by1 img, -.image.is-2by1 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-2by1 .has-ratio, .image.is-3by1 img, #documenter .docs-sidebar .docs-logo > img.is-3by1 img, -.image.is-3by1 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-3by1 .has-ratio, .image.is-4by5 img, #documenter .docs-sidebar .docs-logo > img.is-4by5 img, -.image.is-4by5 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-4by5 .has-ratio, .image.is-3by4 img, #documenter .docs-sidebar .docs-logo > img.is-3by4 img, -.image.is-3by4 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-3by4 .has-ratio, .image.is-2by3 img, #documenter .docs-sidebar .docs-logo > img.is-2by3 img, -.image.is-2by3 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-2by3 .has-ratio, .image.is-3by5 img, #documenter .docs-sidebar .docs-logo > img.is-3by5 img, -.image.is-3by5 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-3by5 .has-ratio, .image.is-9by16 img, #documenter .docs-sidebar .docs-logo > img.is-9by16 img, -.image.is-9by16 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-9by16 .has-ratio, .image.is-1by2 img, #documenter .docs-sidebar .docs-logo > img.is-1by2 img, -.image.is-1by2 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-1by2 .has-ratio, .image.is-1by3 img, #documenter .docs-sidebar .docs-logo > img.is-1by3 img, -.image.is-1by3 .has-ratio, -#documenter .docs-sidebar .docs-logo > img.is-1by3 .has-ratio, .modal, .modal-background, .hero-video { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; } - -.button, .input, #documenter .docs-sidebar form.docs-search > input, .textarea, .select select, .file-cta, -.file-name, .pagination-previous, -.pagination-next, -.pagination-link, -.pagination-ellipsis { - -moz-appearance: none; - -webkit-appearance: none; - align-items: center; - border: 1px solid transparent; - border-radius: 4px; - box-shadow: none; - display: inline-flex; - font-size: 1rem; - height: 2.25em; - justify-content: flex-start; - line-height: 1.5; - padding-bottom: calc(0.375em - 1px); - padding-left: calc(0.625em - 1px); - padding-right: calc(0.625em - 1px); - padding-top: calc(0.375em - 1px); - position: relative; - vertical-align: top; } - .button:focus, .input:focus, #documenter .docs-sidebar form.docs-search > input:focus, .textarea:focus, .select select:focus, .file-cta:focus, - .file-name:focus, .pagination-previous:focus, - .pagination-next:focus, - .pagination-link:focus, - .pagination-ellipsis:focus, .is-focused.button, .is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-focused, .is-focused.textarea, .select select.is-focused, .is-focused.file-cta, - .is-focused.file-name, .is-focused.pagination-previous, - .is-focused.pagination-next, - .is-focused.pagination-link, - .is-focused.pagination-ellipsis, .button:active, .input:active, #documenter .docs-sidebar form.docs-search > input:active, .textarea:active, .select select:active, .file-cta:active, - .file-name:active, .pagination-previous:active, - .pagination-next:active, - .pagination-link:active, - .pagination-ellipsis:active, .is-active.button, .is-active.input, #documenter .docs-sidebar form.docs-search > input.is-active, .is-active.textarea, .select select.is-active, .is-active.file-cta, - .is-active.file-name, .is-active.pagination-previous, - .is-active.pagination-next, - .is-active.pagination-link, - .is-active.pagination-ellipsis { - outline: none; } - .button[disabled], .input[disabled], #documenter .docs-sidebar form.docs-search > input[disabled], .textarea[disabled], .select select[disabled], .file-cta[disabled], - .file-name[disabled], .pagination-previous[disabled], - .pagination-next[disabled], - .pagination-link[disabled], - .pagination-ellipsis[disabled], - fieldset[disabled] .button, - fieldset[disabled] .input, - fieldset[disabled] #documenter .docs-sidebar form.docs-search > input, - #documenter .docs-sidebar fieldset[disabled] form.docs-search > input, - fieldset[disabled] .textarea, - fieldset[disabled] .select select, - .select fieldset[disabled] select, - fieldset[disabled] .file-cta, - fieldset[disabled] .file-name, - fieldset[disabled] .pagination-previous, - fieldset[disabled] .pagination-next, - fieldset[disabled] .pagination-link, - fieldset[disabled] .pagination-ellipsis { - cursor: not-allowed; } - -/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */ -html, -body, -p, -ol, -ul, -li, -dl, -dt, -dd, -blockquote, -figure, -fieldset, -legend, -textarea, -pre, -iframe, -hr, -h1, -h2, -h3, -h4, -h5, -h6 { - margin: 0; - padding: 0; } - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: 100%; - font-weight: normal; } - -ul { - list-style: none; } - -button, -input, -select, -textarea { - margin: 0; } - -html { - box-sizing: border-box; } - -*, *::before, *::after { - box-sizing: inherit; } - -img, -embed, -iframe, -object, -video { - height: auto; - max-width: 100%; } - -audio { - max-width: 100%; } - -iframe { - border: 0; } - -table { - border-collapse: collapse; - border-spacing: 0; } - -td, -th { - padding: 0; } - td:not([align]), - th:not([align]) { - text-align: left; } - -html { - background-color: white; - font-size: 16px; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - min-width: 300px; - overflow-x: auto; - overflow-y: scroll; - text-rendering: optimizeLegibility; - text-size-adjust: 100%; } - -article, -aside, -figure, -footer, -header, -hgroup, -section { - display: block; } - -body, -button, -input, -select, -textarea { - font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif; } - -code, -pre { - -moz-osx-font-smoothing: auto; - -webkit-font-smoothing: auto; - font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace; } - -body { - color: #222222; - font-size: 1em; - font-weight: 400; - line-height: 1.5; } - -a { - color: #2e63b8; - cursor: pointer; - text-decoration: none; } - a strong { - color: currentColor; } - a:hover { - color: #363636; } - -code { - background-color: rgba(0, 0, 0, 0.05); - color: #000000; - font-size: 0.875em; - font-weight: normal; - padding: 0.1em; } - -hr { - background-color: whitesmoke; - border: none; - display: block; - height: 2px; - margin: 1.5rem 0; } - -img { - height: auto; - max-width: 100%; } - -input[type="checkbox"], -input[type="radio"] { - vertical-align: baseline; } - -small { - font-size: 0.875em; } - -span { - font-style: inherit; - font-weight: inherit; } - -strong { - color: #222222; - font-weight: 700; } - -fieldset { - border: none; } - -pre { - -webkit-overflow-scrolling: touch; - background-color: whitesmoke; - color: #222222; - font-size: 0.875em; - overflow-x: auto; - padding: 1.25rem 1.5rem; - white-space: pre; - word-wrap: normal; } - pre code { - background-color: transparent; - color: currentColor; - font-size: 1em; - padding: 0; } - -table td, -table th { - vertical-align: top; } - table td:not([align]), - table th:not([align]) { - text-align: left; } - -table th { - color: #222222; } - -.is-clearfix::after { - clear: both; - content: " "; - display: table; } - -.is-pulled-left { - float: left !important; } - -.is-pulled-right { - float: right !important; } - -.is-clipped { - overflow: hidden !important; } - -.is-size-1 { - font-size: 3rem !important; } - -.is-size-2 { - font-size: 2.5rem !important; } - -.is-size-3 { - font-size: 2rem !important; } - -.is-size-4 { - font-size: 1.5rem !important; } - -.is-size-5 { - font-size: 1.25rem !important; } - -.is-size-6 { - font-size: 1rem !important; } - -.is-size-7, .docstring > section > a.docs-sourcelink { - font-size: 0.75rem !important; } - -@media screen and (max-width: 768px) { - .is-size-1-mobile { - font-size: 3rem !important; } - .is-size-2-mobile { - font-size: 2.5rem !important; } - .is-size-3-mobile { - font-size: 2rem !important; } - .is-size-4-mobile { - font-size: 1.5rem !important; } - .is-size-5-mobile { - font-size: 1.25rem !important; } - .is-size-6-mobile { - font-size: 1rem !important; } - .is-size-7-mobile { - font-size: 0.75rem !important; } } - -@media screen and (min-width: 769px), print { - .is-size-1-tablet { - font-size: 3rem !important; } - .is-size-2-tablet { - font-size: 2.5rem !important; } - .is-size-3-tablet { - font-size: 2rem !important; } - .is-size-4-tablet { - font-size: 1.5rem !important; } - .is-size-5-tablet { - font-size: 1.25rem !important; } - .is-size-6-tablet { - font-size: 1rem !important; } - .is-size-7-tablet { - font-size: 0.75rem !important; } } - -@media screen and (max-width: 1055px) { - .is-size-1-touch { - font-size: 3rem !important; } - .is-size-2-touch { - font-size: 2.5rem !important; } - .is-size-3-touch { - font-size: 2rem !important; } - .is-size-4-touch { - font-size: 1.5rem !important; } - .is-size-5-touch { - font-size: 1.25rem !important; } - .is-size-6-touch { - font-size: 1rem !important; } - .is-size-7-touch { - font-size: 0.75rem !important; } } - -@media screen and (min-width: 1056px) { - .is-size-1-desktop { - font-size: 3rem !important; } - .is-size-2-desktop { - font-size: 2.5rem !important; } - .is-size-3-desktop { - font-size: 2rem !important; } - .is-size-4-desktop { - font-size: 1.5rem !important; } - .is-size-5-desktop { - font-size: 1.25rem !important; } - .is-size-6-desktop { - font-size: 1rem !important; } - .is-size-7-desktop { - font-size: 0.75rem !important; } } - -@media screen and (min-width: 1216px) { - .is-size-1-widescreen { - font-size: 3rem !important; } - .is-size-2-widescreen { - font-size: 2.5rem !important; } - .is-size-3-widescreen { - font-size: 2rem !important; } - .is-size-4-widescreen { - font-size: 1.5rem !important; } - .is-size-5-widescreen { - font-size: 1.25rem !important; } - .is-size-6-widescreen { - font-size: 1rem !important; } - .is-size-7-widescreen { - font-size: 0.75rem !important; } } - -@media screen and (min-width: 1408px) { - .is-size-1-fullhd { - font-size: 3rem !important; } - .is-size-2-fullhd { - font-size: 2.5rem !important; } - .is-size-3-fullhd { - font-size: 2rem !important; } - .is-size-4-fullhd { - font-size: 1.5rem !important; } - .is-size-5-fullhd { - font-size: 1.25rem !important; } - .is-size-6-fullhd { - font-size: 1rem !important; } - .is-size-7-fullhd { - font-size: 0.75rem !important; } } - -.has-text-centered { - text-align: center !important; } - -.has-text-justified { - text-align: justify !important; } - -.has-text-left { - text-align: left !important; } - -.has-text-right { - text-align: right !important; } - -@media screen and (max-width: 768px) { - .has-text-centered-mobile { - text-align: center !important; } } - -@media screen and (min-width: 769px), print { - .has-text-centered-tablet { - text-align: center !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .has-text-centered-tablet-only { - text-align: center !important; } } - -@media screen and (max-width: 1055px) { - .has-text-centered-touch { - text-align: center !important; } } - -@media screen and (min-width: 1056px) { - .has-text-centered-desktop { - text-align: center !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .has-text-centered-desktop-only { - text-align: center !important; } } - -@media screen and (min-width: 1216px) { - .has-text-centered-widescreen { - text-align: center !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-centered-widescreen-only { - text-align: center !important; } } - -@media screen and (min-width: 1408px) { - .has-text-centered-fullhd { - text-align: center !important; } } - -@media screen and (max-width: 768px) { - .has-text-justified-mobile { - text-align: justify !important; } } - -@media screen and (min-width: 769px), print { - .has-text-justified-tablet { - text-align: justify !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .has-text-justified-tablet-only { - text-align: justify !important; } } - -@media screen and (max-width: 1055px) { - .has-text-justified-touch { - text-align: justify !important; } } - -@media screen and (min-width: 1056px) { - .has-text-justified-desktop { - text-align: justify !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .has-text-justified-desktop-only { - text-align: justify !important; } } - -@media screen and (min-width: 1216px) { - .has-text-justified-widescreen { - text-align: justify !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-justified-widescreen-only { - text-align: justify !important; } } - -@media screen and (min-width: 1408px) { - .has-text-justified-fullhd { - text-align: justify !important; } } - -@media screen and (max-width: 768px) { - .has-text-left-mobile { - text-align: left !important; } } - -@media screen and (min-width: 769px), print { - .has-text-left-tablet { - text-align: left !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .has-text-left-tablet-only { - text-align: left !important; } } - -@media screen and (max-width: 1055px) { - .has-text-left-touch { - text-align: left !important; } } - -@media screen and (min-width: 1056px) { - .has-text-left-desktop { - text-align: left !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .has-text-left-desktop-only { - text-align: left !important; } } - -@media screen and (min-width: 1216px) { - .has-text-left-widescreen { - text-align: left !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-left-widescreen-only { - text-align: left !important; } } - -@media screen and (min-width: 1408px) { - .has-text-left-fullhd { - text-align: left !important; } } - -@media screen and (max-width: 768px) { - .has-text-right-mobile { - text-align: right !important; } } - -@media screen and (min-width: 769px), print { - .has-text-right-tablet { - text-align: right !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .has-text-right-tablet-only { - text-align: right !important; } } - -@media screen and (max-width: 1055px) { - .has-text-right-touch { - text-align: right !important; } } - -@media screen and (min-width: 1056px) { - .has-text-right-desktop { - text-align: right !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .has-text-right-desktop-only { - text-align: right !important; } } - -@media screen and (min-width: 1216px) { - .has-text-right-widescreen { - text-align: right !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-right-widescreen-only { - text-align: right !important; } } - -@media screen and (min-width: 1408px) { - .has-text-right-fullhd { - text-align: right !important; } } - -.is-capitalized { - text-transform: capitalize !important; } - -.is-lowercase { - text-transform: lowercase !important; } - -.is-uppercase { - text-transform: uppercase !important; } - -.is-italic { - font-style: italic !important; } - -.has-text-white { - color: white !important; } - -a.has-text-white:hover, a.has-text-white:focus { - color: #e6e6e6 !important; } - -.has-background-white { - background-color: white !important; } - -.has-text-black { - color: #0a0a0a !important; } - -a.has-text-black:hover, a.has-text-black:focus { - color: black !important; } - -.has-background-black { - background-color: #0a0a0a !important; } - -.has-text-light { - color: whitesmoke !important; } - -a.has-text-light:hover, a.has-text-light:focus { - color: #dbdbdb !important; } - -.has-background-light { - background-color: whitesmoke !important; } - -.has-text-dark { - color: #363636 !important; } - -a.has-text-dark:hover, a.has-text-dark:focus { - color: #1c1c1c !important; } - -.has-background-dark { - background-color: #363636 !important; } - -.has-text-primary { - color: #4eb5de !important; } - -a.has-text-primary:hover, a.has-text-primary:focus { - color: #27a1d2 !important; } - -.has-background-primary { - background-color: #4eb5de !important; } - -.has-text-link { - color: #2e63b8 !important; } - -a.has-text-link:hover, a.has-text-link:focus { - color: #244d8f !important; } - -.has-background-link { - background-color: #2e63b8 !important; } - -.has-text-info { - color: #209cee !important; } - -a.has-text-info:hover, a.has-text-info:focus { - color: #1081cb !important; } - -.has-background-info { - background-color: #209cee !important; } - -.has-text-success { - color: #22c35b !important; } - -a.has-text-success:hover, a.has-text-success:focus { - color: #1a9847 !important; } - -.has-background-success { - background-color: #22c35b !important; } - -.has-text-warning { - color: #ffdd57 !important; } - -a.has-text-warning:hover, a.has-text-warning:focus { - color: #ffd324 !important; } - -.has-background-warning { - background-color: #ffdd57 !important; } - -.has-text-danger { - color: #da0b00 !important; } - -a.has-text-danger:hover, a.has-text-danger:focus { - color: #a70800 !important; } - -.has-background-danger { - background-color: #da0b00 !important; } - -.has-text-black-bis { - color: #121212 !important; } - -.has-background-black-bis { - background-color: #121212 !important; } - -.has-text-black-ter { - color: #242424 !important; } - -.has-background-black-ter { - background-color: #242424 !important; } - -.has-text-grey-darker { - color: #363636 !important; } - -.has-background-grey-darker { - background-color: #363636 !important; } - -.has-text-grey-dark { - color: #4a4a4a !important; } - -.has-background-grey-dark { - background-color: #4a4a4a !important; } - -.has-text-grey { - color: #7a7a7a !important; } - -.has-background-grey { - background-color: #7a7a7a !important; } - -.has-text-grey-light { - color: #b5b5b5 !important; } - -.has-background-grey-light { - background-color: #b5b5b5 !important; } - -.has-text-grey-lighter { - color: #dbdbdb !important; } - -.has-background-grey-lighter { - background-color: #dbdbdb !important; } - -.has-text-white-ter { - color: whitesmoke !important; } - -.has-background-white-ter { - background-color: whitesmoke !important; } - -.has-text-white-bis { - color: #fafafa !important; } - -.has-background-white-bis { - background-color: #fafafa !important; } - -.has-text-weight-light { - font-weight: 300 !important; } - -.has-text-weight-normal { - font-weight: 400 !important; } - -.has-text-weight-medium { - font-weight: 500 !important; } - -.has-text-weight-semibold { - font-weight: 600 !important; } - -.has-text-weight-bold { - font-weight: 700 !important; } - -.is-family-primary { - font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; } - -.is-family-secondary { - font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; } - -.is-family-sans-serif { - font-family: "Lato Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important; } - -.is-family-monospace { - font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; } - -.is-family-code { - font-family: "JuliaMono", "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", "DejaVu Sans Mono", monospace !important; } - -.is-block { - display: block !important; } - -@media screen and (max-width: 768px) { - .is-block-mobile { - display: block !important; } } - -@media screen and (min-width: 769px), print { - .is-block-tablet { - display: block !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-block-tablet-only { - display: block !important; } } - -@media screen and (max-width: 1055px) { - .is-block-touch { - display: block !important; } } - -@media screen and (min-width: 1056px) { - .is-block-desktop { - display: block !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-block-desktop-only { - display: block !important; } } - -@media screen and (min-width: 1216px) { - .is-block-widescreen { - display: block !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-block-widescreen-only { - display: block !important; } } - -@media screen and (min-width: 1408px) { - .is-block-fullhd { - display: block !important; } } - -.is-flex { - display: flex !important; } - -@media screen and (max-width: 768px) { - .is-flex-mobile { - display: flex !important; } } - -@media screen and (min-width: 769px), print { - .is-flex-tablet { - display: flex !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-flex-tablet-only { - display: flex !important; } } - -@media screen and (max-width: 1055px) { - .is-flex-touch { - display: flex !important; } } - -@media screen and (min-width: 1056px) { - .is-flex-desktop { - display: flex !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-flex-desktop-only { - display: flex !important; } } - -@media screen and (min-width: 1216px) { - .is-flex-widescreen { - display: flex !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-flex-widescreen-only { - display: flex !important; } } - -@media screen and (min-width: 1408px) { - .is-flex-fullhd { - display: flex !important; } } - -.is-inline { - display: inline !important; } - -@media screen and (max-width: 768px) { - .is-inline-mobile { - display: inline !important; } } - -@media screen and (min-width: 769px), print { - .is-inline-tablet { - display: inline !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-inline-tablet-only { - display: inline !important; } } - -@media screen and (max-width: 1055px) { - .is-inline-touch { - display: inline !important; } } - -@media screen and (min-width: 1056px) { - .is-inline-desktop { - display: inline !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-inline-desktop-only { - display: inline !important; } } - -@media screen and (min-width: 1216px) { - .is-inline-widescreen { - display: inline !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-widescreen-only { - display: inline !important; } } - -@media screen and (min-width: 1408px) { - .is-inline-fullhd { - display: inline !important; } } - -.is-inline-block { - display: inline-block !important; } - -@media screen and (max-width: 768px) { - .is-inline-block-mobile { - display: inline-block !important; } } - -@media screen and (min-width: 769px), print { - .is-inline-block-tablet { - display: inline-block !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-inline-block-tablet-only { - display: inline-block !important; } } - -@media screen and (max-width: 1055px) { - .is-inline-block-touch { - display: inline-block !important; } } - -@media screen and (min-width: 1056px) { - .is-inline-block-desktop { - display: inline-block !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-inline-block-desktop-only { - display: inline-block !important; } } - -@media screen and (min-width: 1216px) { - .is-inline-block-widescreen { - display: inline-block !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-block-widescreen-only { - display: inline-block !important; } } - -@media screen and (min-width: 1408px) { - .is-inline-block-fullhd { - display: inline-block !important; } } - -.is-inline-flex { - display: inline-flex !important; } - -@media screen and (max-width: 768px) { - .is-inline-flex-mobile { - display: inline-flex !important; } } - -@media screen and (min-width: 769px), print { - .is-inline-flex-tablet { - display: inline-flex !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-inline-flex-tablet-only { - display: inline-flex !important; } } - -@media screen and (max-width: 1055px) { - .is-inline-flex-touch { - display: inline-flex !important; } } - -@media screen and (min-width: 1056px) { - .is-inline-flex-desktop { - display: inline-flex !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-inline-flex-desktop-only { - display: inline-flex !important; } } - -@media screen and (min-width: 1216px) { - .is-inline-flex-widescreen { - display: inline-flex !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-flex-widescreen-only { - display: inline-flex !important; } } - -@media screen and (min-width: 1408px) { - .is-inline-flex-fullhd { - display: inline-flex !important; } } - -.is-hidden { - display: none !important; } - -.is-sr-only { - border: none !important; - clip: rect(0, 0, 0, 0) !important; - height: 0.01em !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - white-space: nowrap !important; - width: 0.01em !important; } - -@media screen and (max-width: 768px) { - .is-hidden-mobile { - display: none !important; } } - -@media screen and (min-width: 769px), print { - .is-hidden-tablet { - display: none !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-hidden-tablet-only { - display: none !important; } } - -@media screen and (max-width: 1055px) { - .is-hidden-touch { - display: none !important; } } - -@media screen and (min-width: 1056px) { - .is-hidden-desktop { - display: none !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-hidden-desktop-only { - display: none !important; } } - -@media screen and (min-width: 1216px) { - .is-hidden-widescreen { - display: none !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-hidden-widescreen-only { - display: none !important; } } - -@media screen and (min-width: 1408px) { - .is-hidden-fullhd { - display: none !important; } } - -.is-invisible { - visibility: hidden !important; } - -@media screen and (max-width: 768px) { - .is-invisible-mobile { - visibility: hidden !important; } } - -@media screen and (min-width: 769px), print { - .is-invisible-tablet { - visibility: hidden !important; } } - -@media screen and (min-width: 769px) and (max-width: 1055px) { - .is-invisible-tablet-only { - visibility: hidden !important; } } - -@media screen and (max-width: 1055px) { - .is-invisible-touch { - visibility: hidden !important; } } - -@media screen and (min-width: 1056px) { - .is-invisible-desktop { - visibility: hidden !important; } } - -@media screen and (min-width: 1056px) and (max-width: 1215px) { - .is-invisible-desktop-only { - visibility: hidden !important; } } - -@media screen and (min-width: 1216px) { - .is-invisible-widescreen { - visibility: hidden !important; } } - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-invisible-widescreen-only { - visibility: hidden !important; } } - -@media screen and (min-width: 1408px) { - .is-invisible-fullhd { - visibility: hidden !important; } } - -.is-marginless { - margin: 0 !important; } - -.is-paddingless { - padding: 0 !important; } - -.is-radiusless { - border-radius: 0 !important; } - -.is-shadowless { - box-shadow: none !important; } - -.is-relative { - position: relative !important; } - -.box { - background-color: white; - border-radius: 6px; - box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - color: #222222; - display: block; - padding: 1.25rem; } - -a.box:hover, a.box:focus { - box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #2e63b8; } - -a.box:active { - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #2e63b8; } - -.button { - background-color: white; - border-color: #dbdbdb; - border-width: 1px; - color: #363636; - cursor: pointer; - justify-content: center; - padding-bottom: calc(0.375em - 1px); - padding-left: 0.75em; - padding-right: 0.75em; - padding-top: calc(0.375em - 1px); - text-align: center; - white-space: nowrap; } - .button strong { - color: inherit; } - .button .icon, .button .icon.is-small, .button #documenter .docs-sidebar form.docs-search > input.icon, #documenter .docs-sidebar .button form.docs-search > input.icon, .button .icon.is-medium, .button .icon.is-large { - height: 1.5em; - width: 1.5em; } - .button .icon:first-child:not(:last-child) { - margin-left: calc(-0.375em - 1px); - margin-right: 0.1875em; } - .button .icon:last-child:not(:first-child) { - margin-left: 0.1875em; - margin-right: calc(-0.375em - 1px); } - .button .icon:first-child:last-child { - margin-left: calc(-0.375em - 1px); - margin-right: calc(-0.375em - 1px); } - .button:hover, .button.is-hovered { - border-color: #b5b5b5; - color: #363636; } - .button:focus, .button.is-focused { - border-color: #3c5dcd; - color: #363636; } - .button:focus:not(:active), .button.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(46, 99, 184, 0.25); } - .button:active, .button.is-active { - border-color: #4a4a4a; - color: #363636; } - .button.is-text { - background-color: transparent; - border-color: transparent; - color: #222222; - text-decoration: underline; } - .button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused { - background-color: whitesmoke; - color: #222222; } - .button.is-text:active, .button.is-text.is-active { - background-color: #e8e8e8; - color: #222222; } - .button.is-text[disabled], - fieldset[disabled] .button.is-text { - background-color: transparent; - border-color: transparent; - box-shadow: none; } - .button.is-white { - background-color: white; - border-color: transparent; - color: #0a0a0a; } - .button.is-white:hover, .button.is-white.is-hovered { - background-color: #f9f9f9; - border-color: transparent; - color: #0a0a0a; } - .button.is-white:focus, .button.is-white.is-focused { - border-color: transparent; - color: #0a0a0a; } - .button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } - .button.is-white:active, .button.is-white.is-active { - background-color: #f2f2f2; - border-color: transparent; - color: #0a0a0a; } - .button.is-white[disabled], - fieldset[disabled] .button.is-white { - background-color: white; - border-color: transparent; - box-shadow: none; } - .button.is-white.is-inverted { - background-color: #0a0a0a; - color: white; } - .button.is-white.is-inverted:hover, .button.is-white.is-inverted.is-hovered { - background-color: black; } - .button.is-white.is-inverted[disabled], - fieldset[disabled] .button.is-white.is-inverted { - background-color: #0a0a0a; - border-color: transparent; - box-shadow: none; - color: white; } - .button.is-white.is-loading::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; } - .button.is-white.is-outlined { - background-color: transparent; - border-color: white; - color: white; } - .button.is-white.is-outlined:hover, .button.is-white.is-outlined.is-hovered, .button.is-white.is-outlined:focus, .button.is-white.is-outlined.is-focused { - background-color: white; - border-color: white; - color: #0a0a0a; } - .button.is-white.is-outlined.is-loading::after { - border-color: transparent transparent white white !important; } - .button.is-white.is-outlined.is-loading:hover::after, .button.is-white.is-outlined.is-loading.is-hovered::after, .button.is-white.is-outlined.is-loading:focus::after, .button.is-white.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; } - .button.is-white.is-outlined[disabled], - fieldset[disabled] .button.is-white.is-outlined { - background-color: transparent; - border-color: white; - box-shadow: none; - color: white; } - .button.is-white.is-inverted.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - color: #0a0a0a; } - .button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined.is-hovered, .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined.is-focused { - background-color: #0a0a0a; - color: white; } - .button.is-white.is-inverted.is-outlined.is-loading:hover::after, .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-white.is-inverted.is-outlined.is-loading:focus::after, .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent white white !important; } - .button.is-white.is-inverted.is-outlined[disabled], - fieldset[disabled] .button.is-white.is-inverted.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - box-shadow: none; - color: #0a0a0a; } - .button.is-black { - background-color: #0a0a0a; - border-color: transparent; - color: white; } - .button.is-black:hover, .button.is-black.is-hovered { - background-color: #040404; - border-color: transparent; - color: white; } - .button.is-black:focus, .button.is-black.is-focused { - border-color: transparent; - color: white; } - .button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } - .button.is-black:active, .button.is-black.is-active { - background-color: black; - border-color: transparent; - color: white; } - .button.is-black[disabled], - fieldset[disabled] .button.is-black { - background-color: #0a0a0a; - border-color: transparent; - box-shadow: none; } - .button.is-black.is-inverted { - background-color: white; - color: #0a0a0a; } - .button.is-black.is-inverted:hover, .button.is-black.is-inverted.is-hovered { - background-color: #f2f2f2; } - .button.is-black.is-inverted[disabled], - fieldset[disabled] .button.is-black.is-inverted { - background-color: white; - border-color: transparent; - box-shadow: none; - color: #0a0a0a; } - .button.is-black.is-loading::after { - border-color: transparent transparent white white !important; } - .button.is-black.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - color: #0a0a0a; } - .button.is-black.is-outlined:hover, .button.is-black.is-outlined.is-hovered, .button.is-black.is-outlined:focus, .button.is-black.is-outlined.is-focused { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; } - .button.is-black.is-outlined.is-loading::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; } - .button.is-black.is-outlined.is-loading:hover::after, .button.is-black.is-outlined.is-loading.is-hovered::after, .button.is-black.is-outlined.is-loading:focus::after, .button.is-black.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent white white !important; } - .button.is-black.is-outlined[disabled], - fieldset[disabled] .button.is-black.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - box-shadow: none; - color: #0a0a0a; } - .button.is-black.is-inverted.is-outlined { - background-color: transparent; - border-color: white; - color: white; } - .button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined.is-hovered, .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined.is-focused { - background-color: white; - color: #0a0a0a; } - .button.is-black.is-inverted.is-outlined.is-loading:hover::after, .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-black.is-inverted.is-outlined.is-loading:focus::after, .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; } - .button.is-black.is-inverted.is-outlined[disabled], - fieldset[disabled] .button.is-black.is-inverted.is-outlined { - background-color: transparent; - border-color: white; - box-shadow: none; - color: white; } - .button.is-light { - background-color: whitesmoke; - border-color: transparent; - color: #363636; } - .button.is-light:hover, .button.is-light.is-hovered { - background-color: #eeeeee; - border-color: transparent; - color: #363636; } - .button.is-light:focus, .button.is-light.is-focused { - border-color: transparent; - color: #363636; } - .button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); } - .button.is-light:active, .button.is-light.is-active { - background-color: #e8e8e8; - border-color: transparent; - color: #363636; } - .button.is-light[disabled], - fieldset[disabled] .button.is-light { - background-color: whitesmoke; - border-color: transparent; - box-shadow: none; } - .button.is-light.is-inverted { - background-color: #363636; - color: whitesmoke; } - .button.is-light.is-inverted:hover, .button.is-light.is-inverted.is-hovered { - background-color: #292929; } - .button.is-light.is-inverted[disabled], - fieldset[disabled] .button.is-light.is-inverted { - background-color: #363636; - border-color: transparent; - box-shadow: none; - color: whitesmoke; } - .button.is-light.is-loading::after { - border-color: transparent transparent #363636 #363636 !important; } - .button.is-light.is-outlined { - background-color: transparent; - border-color: whitesmoke; - color: whitesmoke; } - .button.is-light.is-outlined:hover, .button.is-light.is-outlined.is-hovered, .button.is-light.is-outlined:focus, .button.is-light.is-outlined.is-focused { - background-color: whitesmoke; - border-color: whitesmoke; - color: #363636; } - .button.is-light.is-outlined.is-loading::after { - border-color: transparent transparent whitesmoke whitesmoke !important; } - .button.is-light.is-outlined.is-loading:hover::after, .button.is-light.is-outlined.is-loading.is-hovered::after, .button.is-light.is-outlined.is-loading:focus::after, .button.is-light.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #363636 #363636 !important; } - .button.is-light.is-outlined[disabled], - fieldset[disabled] .button.is-light.is-outlined { - background-color: transparent; - border-color: whitesmoke; - box-shadow: none; - color: whitesmoke; } - .button.is-light.is-inverted.is-outlined { - background-color: transparent; - border-color: #363636; - color: #363636; } - .button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined.is-hovered, .button.is-light.is-inverted.is-outlined:focus, .button.is-light.is-inverted.is-outlined.is-focused { - background-color: #363636; - color: whitesmoke; } - .button.is-light.is-inverted.is-outlined.is-loading:hover::after, .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-light.is-inverted.is-outlined.is-loading:focus::after, .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent whitesmoke whitesmoke !important; } - .button.is-light.is-inverted.is-outlined[disabled], - fieldset[disabled] .button.is-light.is-inverted.is-outlined { - background-color: transparent; - border-color: #363636; - box-shadow: none; - color: #363636; } - .button.is-dark, .content kbd.button { - background-color: #363636; - border-color: transparent; - color: whitesmoke; } - .button.is-dark:hover, .content kbd.button:hover, .button.is-dark.is-hovered, .content kbd.button.is-hovered { - background-color: #2f2f2f; - border-color: transparent; - color: whitesmoke; } - .button.is-dark:focus, .content kbd.button:focus, .button.is-dark.is-focused, .content kbd.button.is-focused { - border-color: transparent; - color: whitesmoke; } - .button.is-dark:focus:not(:active), .content kbd.button:focus:not(:active), .button.is-dark.is-focused:not(:active), .content kbd.button.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); } - .button.is-dark:active, .content kbd.button:active, .button.is-dark.is-active, .content kbd.button.is-active { - background-color: #292929; - border-color: transparent; - color: whitesmoke; } - .button.is-dark[disabled], .content kbd.button[disabled], - fieldset[disabled] .button.is-dark, - fieldset[disabled] .content kbd.button, - .content fieldset[disabled] kbd.button { - background-color: #363636; - border-color: transparent; - box-shadow: none; } - .button.is-dark.is-inverted, .content kbd.button.is-inverted { - background-color: whitesmoke; - color: #363636; } - .button.is-dark.is-inverted:hover, .content kbd.button.is-inverted:hover, .button.is-dark.is-inverted.is-hovered, .content kbd.button.is-inverted.is-hovered { - background-color: #e8e8e8; } - .button.is-dark.is-inverted[disabled], .content kbd.button.is-inverted[disabled], - fieldset[disabled] .button.is-dark.is-inverted, - fieldset[disabled] .content kbd.button.is-inverted, - .content fieldset[disabled] kbd.button.is-inverted { - background-color: whitesmoke; - border-color: transparent; - box-shadow: none; - color: #363636; } - .button.is-dark.is-loading::after, .content kbd.button.is-loading::after { - border-color: transparent transparent whitesmoke whitesmoke !important; } - .button.is-dark.is-outlined, .content kbd.button.is-outlined { - background-color: transparent; - border-color: #363636; - color: #363636; } - .button.is-dark.is-outlined:hover, .content kbd.button.is-outlined:hover, .button.is-dark.is-outlined.is-hovered, .content kbd.button.is-outlined.is-hovered, .button.is-dark.is-outlined:focus, .content kbd.button.is-outlined:focus, .button.is-dark.is-outlined.is-focused, .content kbd.button.is-outlined.is-focused { - background-color: #363636; - border-color: #363636; - color: whitesmoke; } - .button.is-dark.is-outlined.is-loading::after, .content kbd.button.is-outlined.is-loading::after { - border-color: transparent transparent #363636 #363636 !important; } - .button.is-dark.is-outlined.is-loading:hover::after, .content kbd.button.is-outlined.is-loading:hover::after, .button.is-dark.is-outlined.is-loading.is-hovered::after, .content kbd.button.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-outlined.is-loading:focus::after, .content kbd.button.is-outlined.is-loading:focus::after, .button.is-dark.is-outlined.is-loading.is-focused::after, .content kbd.button.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent whitesmoke whitesmoke !important; } - .button.is-dark.is-outlined[disabled], .content kbd.button.is-outlined[disabled], - fieldset[disabled] .button.is-dark.is-outlined, - fieldset[disabled] .content kbd.button.is-outlined, - .content fieldset[disabled] kbd.button.is-outlined { - background-color: transparent; - border-color: #363636; - box-shadow: none; - color: #363636; } - .button.is-dark.is-inverted.is-outlined, .content kbd.button.is-inverted.is-outlined { - background-color: transparent; - border-color: whitesmoke; - color: whitesmoke; } - .button.is-dark.is-inverted.is-outlined:hover, .content kbd.button.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined.is-hovered, .content kbd.button.is-inverted.is-outlined.is-hovered, .button.is-dark.is-inverted.is-outlined:focus, .content kbd.button.is-inverted.is-outlined:focus, .button.is-dark.is-inverted.is-outlined.is-focused, .content kbd.button.is-inverted.is-outlined.is-focused { - background-color: whitesmoke; - color: #363636; } - .button.is-dark.is-inverted.is-outlined.is-loading:hover::after, .content kbd.button.is-inverted.is-outlined.is-loading:hover::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after, .content kbd.button.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-inverted.is-outlined.is-loading:focus::after, .content kbd.button.is-inverted.is-outlined.is-loading:focus::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after, .content kbd.button.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #363636 #363636 !important; } - .button.is-dark.is-inverted.is-outlined[disabled], .content kbd.button.is-inverted.is-outlined[disabled], - fieldset[disabled] .button.is-dark.is-inverted.is-outlined, - fieldset[disabled] .content kbd.button.is-inverted.is-outlined, - .content fieldset[disabled] kbd.button.is-inverted.is-outlined { - background-color: transparent; - border-color: whitesmoke; - box-shadow: none; - color: whitesmoke; } - .button.is-primary, .docstring > section > a.button.docs-sourcelink { - background-color: #4eb5de; - border-color: transparent; - color: #fff; } - .button.is-primary:hover, .docstring > section > a.button.docs-sourcelink:hover, .button.is-primary.is-hovered, .docstring > section > a.button.is-hovered.docs-sourcelink { - background-color: #43b1dc; - border-color: transparent; - color: #fff; } - .button.is-primary:focus, .docstring > section > a.button.docs-sourcelink:focus, .button.is-primary.is-focused, .docstring > section > a.button.is-focused.docs-sourcelink { - border-color: transparent; - color: #fff; } - .button.is-primary:focus:not(:active), .docstring > section > a.button.docs-sourcelink:focus:not(:active), .button.is-primary.is-focused:not(:active), .docstring > section > a.button.is-focused.docs-sourcelink:not(:active) { - box-shadow: 0 0 0 0.125em rgba(78, 181, 222, 0.25); } - .button.is-primary:active, .docstring > section > a.button.docs-sourcelink:active, .button.is-primary.is-active, .docstring > section > a.button.is-active.docs-sourcelink { - background-color: #39acda; - border-color: transparent; - color: #fff; } - .button.is-primary[disabled], .docstring > section > a.button.docs-sourcelink[disabled], - fieldset[disabled] .button.is-primary, - fieldset[disabled] .docstring > section > a.button.docs-sourcelink { - background-color: #4eb5de; - border-color: transparent; - box-shadow: none; } - .button.is-primary.is-inverted, .docstring > section > a.button.is-inverted.docs-sourcelink { - background-color: #fff; - color: #4eb5de; } - .button.is-primary.is-inverted:hover, .docstring > section > a.button.is-inverted.docs-sourcelink:hover, .button.is-primary.is-inverted.is-hovered, .docstring > section > a.button.is-inverted.is-hovered.docs-sourcelink { - background-color: #f2f2f2; } - .button.is-primary.is-inverted[disabled], .docstring > section > a.button.is-inverted.docs-sourcelink[disabled], - fieldset[disabled] .button.is-primary.is-inverted, - fieldset[disabled] .docstring > section > a.button.is-inverted.docs-sourcelink { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #4eb5de; } - .button.is-primary.is-loading::after, .docstring > section > a.button.is-loading.docs-sourcelink::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-primary.is-outlined, .docstring > section > a.button.is-outlined.docs-sourcelink { - background-color: transparent; - border-color: #4eb5de; - color: #4eb5de; } - .button.is-primary.is-outlined:hover, .docstring > section > a.button.is-outlined.docs-sourcelink:hover, .button.is-primary.is-outlined.is-hovered, .docstring > section > a.button.is-outlined.is-hovered.docs-sourcelink, .button.is-primary.is-outlined:focus, .docstring > section > a.button.is-outlined.docs-sourcelink:focus, .button.is-primary.is-outlined.is-focused, .docstring > section > a.button.is-outlined.is-focused.docs-sourcelink { - background-color: #4eb5de; - border-color: #4eb5de; - color: #fff; } - .button.is-primary.is-outlined.is-loading::after, .docstring > section > a.button.is-outlined.is-loading.docs-sourcelink::after { - border-color: transparent transparent #4eb5de #4eb5de !important; } - .button.is-primary.is-outlined.is-loading:hover::after, .docstring > section > a.button.is-outlined.is-loading.docs-sourcelink:hover::after, .button.is-primary.is-outlined.is-loading.is-hovered::after, .docstring > section > a.button.is-outlined.is-loading.is-hovered.docs-sourcelink::after, .button.is-primary.is-outlined.is-loading:focus::after, .docstring > section > a.button.is-outlined.is-loading.docs-sourcelink:focus::after, .button.is-primary.is-outlined.is-loading.is-focused::after, .docstring > section > a.button.is-outlined.is-loading.is-focused.docs-sourcelink::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-primary.is-outlined[disabled], .docstring > section > a.button.is-outlined.docs-sourcelink[disabled], - fieldset[disabled] .button.is-primary.is-outlined, - fieldset[disabled] .docstring > section > a.button.is-outlined.docs-sourcelink { - background-color: transparent; - border-color: #4eb5de; - box-shadow: none; - color: #4eb5de; } - .button.is-primary.is-inverted.is-outlined, .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink { - background-color: transparent; - border-color: #fff; - color: #fff; } - .button.is-primary.is-inverted.is-outlined:hover, .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink:hover, .button.is-primary.is-inverted.is-outlined.is-hovered, .docstring > section > a.button.is-inverted.is-outlined.is-hovered.docs-sourcelink, .button.is-primary.is-inverted.is-outlined:focus, .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink:focus, .button.is-primary.is-inverted.is-outlined.is-focused, .docstring > section > a.button.is-inverted.is-outlined.is-focused.docs-sourcelink { - background-color: #fff; - color: #4eb5de; } - .button.is-primary.is-inverted.is-outlined.is-loading:hover::after, .docstring > section > a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:hover::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, .docstring > section > a.button.is-inverted.is-outlined.is-loading.is-hovered.docs-sourcelink::after, .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, .docstring > section > a.button.is-inverted.is-outlined.is-loading.docs-sourcelink:focus::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after, .docstring > section > a.button.is-inverted.is-outlined.is-loading.is-focused.docs-sourcelink::after { - border-color: transparent transparent #4eb5de #4eb5de !important; } - .button.is-primary.is-inverted.is-outlined[disabled], .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink[disabled], - fieldset[disabled] .button.is-primary.is-inverted.is-outlined, - fieldset[disabled] .docstring > section > a.button.is-inverted.is-outlined.docs-sourcelink { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - .button.is-link { - background-color: #2e63b8; - border-color: transparent; - color: #fff; } - .button.is-link:hover, .button.is-link.is-hovered { - background-color: #2b5eae; - border-color: transparent; - color: #fff; } - .button.is-link:focus, .button.is-link.is-focused { - border-color: transparent; - color: #fff; } - .button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(46, 99, 184, 0.25); } - .button.is-link:active, .button.is-link.is-active { - background-color: #2958a4; - border-color: transparent; - color: #fff; } - .button.is-link[disabled], - fieldset[disabled] .button.is-link { - background-color: #2e63b8; - border-color: transparent; - box-shadow: none; } - .button.is-link.is-inverted { - background-color: #fff; - color: #2e63b8; } - .button.is-link.is-inverted:hover, .button.is-link.is-inverted.is-hovered { - background-color: #f2f2f2; } - .button.is-link.is-inverted[disabled], - fieldset[disabled] .button.is-link.is-inverted { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #2e63b8; } - .button.is-link.is-loading::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-link.is-outlined { - background-color: transparent; - border-color: #2e63b8; - color: #2e63b8; } - .button.is-link.is-outlined:hover, .button.is-link.is-outlined.is-hovered, .button.is-link.is-outlined:focus, .button.is-link.is-outlined.is-focused { - background-color: #2e63b8; - border-color: #2e63b8; - color: #fff; } - .button.is-link.is-outlined.is-loading::after { - border-color: transparent transparent #2e63b8 #2e63b8 !important; } - .button.is-link.is-outlined.is-loading:hover::after, .button.is-link.is-outlined.is-loading.is-hovered::after, .button.is-link.is-outlined.is-loading:focus::after, .button.is-link.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-link.is-outlined[disabled], - fieldset[disabled] .button.is-link.is-outlined { - background-color: transparent; - border-color: #2e63b8; - box-shadow: none; - color: #2e63b8; } - .button.is-link.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; } - .button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined.is-hovered, .button.is-link.is-inverted.is-outlined:focus, .button.is-link.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #2e63b8; } - .button.is-link.is-inverted.is-outlined.is-loading:hover::after, .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-link.is-inverted.is-outlined.is-loading:focus::after, .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #2e63b8 #2e63b8 !important; } - .button.is-link.is-inverted.is-outlined[disabled], - fieldset[disabled] .button.is-link.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - .button.is-info { - background-color: #209cee; - border-color: transparent; - color: #fff; } - .button.is-info:hover, .button.is-info.is-hovered { - background-color: #1497ed; - border-color: transparent; - color: #fff; } - .button.is-info:focus, .button.is-info.is-focused { - border-color: transparent; - color: #fff; } - .button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); } - .button.is-info:active, .button.is-info.is-active { - background-color: #1190e3; - border-color: transparent; - color: #fff; } - .button.is-info[disabled], - fieldset[disabled] .button.is-info { - background-color: #209cee; - border-color: transparent; - box-shadow: none; } - .button.is-info.is-inverted { - background-color: #fff; - color: #209cee; } - .button.is-info.is-inverted:hover, .button.is-info.is-inverted.is-hovered { - background-color: #f2f2f2; } - .button.is-info.is-inverted[disabled], - fieldset[disabled] .button.is-info.is-inverted { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #209cee; } - .button.is-info.is-loading::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-info.is-outlined { - background-color: transparent; - border-color: #209cee; - color: #209cee; } - .button.is-info.is-outlined:hover, .button.is-info.is-outlined.is-hovered, .button.is-info.is-outlined:focus, .button.is-info.is-outlined.is-focused { - background-color: #209cee; - border-color: #209cee; - color: #fff; } - .button.is-info.is-outlined.is-loading::after { - border-color: transparent transparent #209cee #209cee !important; } - .button.is-info.is-outlined.is-loading:hover::after, .button.is-info.is-outlined.is-loading.is-hovered::after, .button.is-info.is-outlined.is-loading:focus::after, .button.is-info.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-info.is-outlined[disabled], - fieldset[disabled] .button.is-info.is-outlined { - background-color: transparent; - border-color: #209cee; - box-shadow: none; - color: #209cee; } - .button.is-info.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; } - .button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined.is-hovered, .button.is-info.is-inverted.is-outlined:focus, .button.is-info.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #209cee; } - .button.is-info.is-inverted.is-outlined.is-loading:hover::after, .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-info.is-inverted.is-outlined.is-loading:focus::after, .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #209cee #209cee !important; } - .button.is-info.is-inverted.is-outlined[disabled], - fieldset[disabled] .button.is-info.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - .button.is-success { - background-color: #22c35b; - border-color: transparent; - color: #fff; } - .button.is-success:hover, .button.is-success.is-hovered { - background-color: #20b856; - border-color: transparent; - color: #fff; } - .button.is-success:focus, .button.is-success.is-focused { - border-color: transparent; - color: #fff; } - .button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(34, 195, 91, 0.25); } - .button.is-success:active, .button.is-success.is-active { - background-color: #1ead51; - border-color: transparent; - color: #fff; } - .button.is-success[disabled], - fieldset[disabled] .button.is-success { - background-color: #22c35b; - border-color: transparent; - box-shadow: none; } - .button.is-success.is-inverted { - background-color: #fff; - color: #22c35b; } - .button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered { - background-color: #f2f2f2; } - .button.is-success.is-inverted[disabled], - fieldset[disabled] .button.is-success.is-inverted { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #22c35b; } - .button.is-success.is-loading::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-success.is-outlined { - background-color: transparent; - border-color: #22c35b; - color: #22c35b; } - .button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused { - background-color: #22c35b; - border-color: #22c35b; - color: #fff; } - .button.is-success.is-outlined.is-loading::after { - border-color: transparent transparent #22c35b #22c35b !important; } - .button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-success.is-outlined[disabled], - fieldset[disabled] .button.is-success.is-outlined { - background-color: transparent; - border-color: #22c35b; - box-shadow: none; - color: #22c35b; } - .button.is-success.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; } - .button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #22c35b; } - .button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #22c35b #22c35b !important; } - .button.is-success.is-inverted.is-outlined[disabled], - fieldset[disabled] .button.is-success.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - .button.is-warning { - background-color: #ffdd57; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); } - .button.is-warning:hover, .button.is-warning.is-hovered { - background-color: #ffda4a; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); } - .button.is-warning:focus, .button.is-warning.is-focused { - border-color: transparent; - color: rgba(0, 0, 0, 0.7); } - .button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); } - .button.is-warning:active, .button.is-warning.is-active { - background-color: #ffd83e; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); } - .button.is-warning[disabled], - fieldset[disabled] .button.is-warning { - background-color: #ffdd57; - border-color: transparent; - box-shadow: none; } - .button.is-warning.is-inverted { - background-color: rgba(0, 0, 0, 0.7); - color: #ffdd57; } - .button.is-warning.is-inverted:hover, .button.is-warning.is-inverted.is-hovered { - background-color: rgba(0, 0, 0, 0.7); } - .button.is-warning.is-inverted[disabled], - fieldset[disabled] .button.is-warning.is-inverted { - background-color: rgba(0, 0, 0, 0.7); - border-color: transparent; - box-shadow: none; - color: #ffdd57; } - .button.is-warning.is-loading::after { - border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; } - .button.is-warning.is-outlined { - background-color: transparent; - border-color: #ffdd57; - color: #ffdd57; } - .button.is-warning.is-outlined:hover, .button.is-warning.is-outlined.is-hovered, .button.is-warning.is-outlined:focus, .button.is-warning.is-outlined.is-focused { - background-color: #ffdd57; - border-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); } - .button.is-warning.is-outlined.is-loading::after { - border-color: transparent transparent #ffdd57 #ffdd57 !important; } - .button.is-warning.is-outlined.is-loading:hover::after, .button.is-warning.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-outlined.is-loading:focus::after, .button.is-warning.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; } - .button.is-warning.is-outlined[disabled], - fieldset[disabled] .button.is-warning.is-outlined { - background-color: transparent; - border-color: #ffdd57; - box-shadow: none; - color: #ffdd57; } - .button.is-warning.is-inverted.is-outlined { - background-color: transparent; - border-color: rgba(0, 0, 0, 0.7); - color: rgba(0, 0, 0, 0.7); } - .button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined.is-hovered, .button.is-warning.is-inverted.is-outlined:focus, .button.is-warning.is-inverted.is-outlined.is-focused { - background-color: rgba(0, 0, 0, 0.7); - color: #ffdd57; } - .button.is-warning.is-inverted.is-outlined.is-loading:hover::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-inverted.is-outlined.is-loading:focus::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #ffdd57 #ffdd57 !important; } - .button.is-warning.is-inverted.is-outlined[disabled], - fieldset[disabled] .button.is-warning.is-inverted.is-outlined { - background-color: transparent; - border-color: rgba(0, 0, 0, 0.7); - box-shadow: none; - color: rgba(0, 0, 0, 0.7); } - .button.is-danger { - background-color: #da0b00; - border-color: transparent; - color: #fff; } - .button.is-danger:hover, .button.is-danger.is-hovered { - background-color: #cd0a00; - border-color: transparent; - color: #fff; } - .button.is-danger:focus, .button.is-danger.is-focused { - border-color: transparent; - color: #fff; } - .button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) { - box-shadow: 0 0 0 0.125em rgba(218, 11, 0, 0.25); } - .button.is-danger:active, .button.is-danger.is-active { - background-color: #c10a00; - border-color: transparent; - color: #fff; } - .button.is-danger[disabled], - fieldset[disabled] .button.is-danger { - background-color: #da0b00; - border-color: transparent; - box-shadow: none; } - .button.is-danger.is-inverted { - background-color: #fff; - color: #da0b00; } - .button.is-danger.is-inverted:hover, .button.is-danger.is-inverted.is-hovered { - background-color: #f2f2f2; } - .button.is-danger.is-inverted[disabled], - fieldset[disabled] .button.is-danger.is-inverted { - background-color: #fff; - border-color: transparent; - box-shadow: none; - color: #da0b00; } - .button.is-danger.is-loading::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-danger.is-outlined { - background-color: transparent; - border-color: #da0b00; - color: #da0b00; } - .button.is-danger.is-outlined:hover, .button.is-danger.is-outlined.is-hovered, .button.is-danger.is-outlined:focus, .button.is-danger.is-outlined.is-focused { - background-color: #da0b00; - border-color: #da0b00; - color: #fff; } - .button.is-danger.is-outlined.is-loading::after { - border-color: transparent transparent #da0b00 #da0b00 !important; } - .button.is-danger.is-outlined.is-loading:hover::after, .button.is-danger.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-outlined.is-loading:focus::after, .button.is-danger.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; } - .button.is-danger.is-outlined[disabled], - fieldset[disabled] .button.is-danger.is-outlined { - background-color: transparent; - border-color: #da0b00; - box-shadow: none; - color: #da0b00; } - .button.is-danger.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; } - .button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined.is-hovered, .button.is-danger.is-inverted.is-outlined:focus, .button.is-danger.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #da0b00; } - .button.is-danger.is-inverted.is-outlined.is-loading:hover::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-inverted.is-outlined.is-loading:focus::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #da0b00 #da0b00 !important; } - .button.is-danger.is-inverted.is-outlined[disabled], - fieldset[disabled] .button.is-danger.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - box-shadow: none; - color: #fff; } - .button.is-small, #documenter .docs-sidebar form.docs-search > input.button { - border-radius: 2px; - font-size: 0.75rem; } - .button.is-normal { - font-size: 1rem; } - .button.is-medium { - font-size: 1.25rem; } - .button.is-large { - font-size: 1.5rem; } - .button[disabled], - fieldset[disabled] .button { - background-color: white; - border-color: #dbdbdb; - box-shadow: none; - opacity: 0.5; } - .button.is-fullwidth { - display: flex; - width: 100%; } - .button.is-loading { - color: transparent !important; - pointer-events: none; } - .button.is-loading::after { - position: absolute; - left: calc(50% - (1em / 2)); - top: calc(50% - (1em / 2)); - position: absolute !important; } - .button.is-static { - background-color: whitesmoke; - border-color: #dbdbdb; - color: #7a7a7a; - box-shadow: none; - pointer-events: none; } - .button.is-rounded, #documenter .docs-sidebar form.docs-search > input.button { - border-radius: 290486px; - padding-left: 1em; - padding-right: 1em; } - -.buttons { - align-items: center; - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .buttons .button { - margin-bottom: 0.5rem; } - .buttons .button:not(:last-child):not(.is-fullwidth) { - margin-right: 0.5rem; } - .buttons:last-child { - margin-bottom: -0.5rem; } - .buttons:not(:last-child) { - margin-bottom: 1rem; } - .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) { - border-radius: 2px; - font-size: 0.75rem; } - .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) { - font-size: 1.25rem; } - .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) { - font-size: 1.5rem; } - .buttons.has-addons .button:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - .buttons.has-addons .button:not(:last-child) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; - margin-right: -1px; } - .buttons.has-addons .button:last-child { - margin-right: 0; } - .buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered { - z-index: 2; } - .buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected { - z-index: 3; } - .buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover { - z-index: 4; } - .buttons.has-addons .button.is-expanded { - flex-grow: 1; - flex-shrink: 1; } - .buttons.is-centered { - justify-content: center; } - .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) { - margin-left: 0.25rem; - margin-right: 0.25rem; } - .buttons.is-right { - justify-content: flex-end; } - .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) { - margin-left: 0.25rem; - margin-right: 0.25rem; } - -.container { - flex-grow: 1; - margin: 0 auto; - position: relative; - width: auto; } - @media screen and (min-width: 1056px) { - .container { - max-width: 992px; } - .container.is-fluid { - margin-left: 32px; - margin-right: 32px; - max-width: none; } } - @media screen and (max-width: 1215px) { - .container.is-widescreen { - max-width: 1152px; } } - @media screen and (max-width: 1407px) { - .container.is-fullhd { - max-width: 1344px; } } - @media screen and (min-width: 1216px) { - .container { - max-width: 1152px; } } - @media screen and (min-width: 1408px) { - .container { - max-width: 1344px; } } - -.content li + li { - margin-top: 0.25em; } - -.content p:not(:last-child), -.content dl:not(:last-child), -.content ol:not(:last-child), -.content ul:not(:last-child), -.content blockquote:not(:last-child), -.content pre:not(:last-child), -.content table:not(:last-child) { - margin-bottom: 1em; } - -.content h1, -.content h2, -.content h3, -.content h4, -.content h5, -.content h6 { - color: #222222; - font-weight: 600; - line-height: 1.125; } - -.content h1 { - font-size: 2em; - margin-bottom: 0.5em; } - .content h1:not(:first-child) { - margin-top: 1em; } - -.content h2 { - font-size: 1.75em; - margin-bottom: 0.5714em; } - .content h2:not(:first-child) { - margin-top: 1.1428em; } - -.content h3 { - font-size: 1.5em; - margin-bottom: 0.6666em; } - .content h3:not(:first-child) { - margin-top: 1.3333em; } - -.content h4 { - font-size: 1.25em; - margin-bottom: 0.8em; } - -.content h5 { - font-size: 1.125em; - margin-bottom: 0.8888em; } - -.content h6 { - font-size: 1em; - margin-bottom: 1em; } - -.content blockquote { - background-color: whitesmoke; - border-left: 5px solid #dbdbdb; - padding: 1.25em 1.5em; } - -.content ol { - list-style-position: outside; - margin-left: 2em; - margin-top: 1em; } - .content ol:not([type]) { - list-style-type: decimal; } - .content ol:not([type]).is-lower-alpha { - list-style-type: lower-alpha; } - .content ol:not([type]).is-lower-roman { - list-style-type: lower-roman; } - .content ol:not([type]).is-upper-alpha { - list-style-type: upper-alpha; } - .content ol:not([type]).is-upper-roman { - list-style-type: upper-roman; } - -.content ul { - list-style: disc outside; - margin-left: 2em; - margin-top: 1em; } - .content ul ul { - list-style-type: circle; - margin-top: 0.5em; } - .content ul ul ul { - list-style-type: square; } - -.content dd { - margin-left: 2em; } - -.content figure { - margin-left: 2em; - margin-right: 2em; - text-align: center; } - .content figure:not(:first-child) { - margin-top: 2em; } - .content figure:not(:last-child) { - margin-bottom: 2em; } - .content figure img { - display: inline-block; } - .content figure figcaption { - font-style: italic; } - -.content pre { - -webkit-overflow-scrolling: touch; - overflow-x: auto; - padding: 0.7rem 0.5rem; - white-space: pre; - word-wrap: normal; } - -.content sup, -.content sub { - font-size: 75%; } - -.content table { - width: 100%; } - .content table td, - .content table th { - border: 1px solid #dbdbdb; - border-width: 0 0 1px; - padding: 0.5em 0.75em; - vertical-align: top; } - .content table th { - color: #222222; } - .content table th:not([align]) { - text-align: left; } - .content table thead td, - .content table thead th { - border-width: 0 0 2px; - color: #222222; } - .content table tfoot td, - .content table tfoot th { - border-width: 2px 0 0; - color: #222222; } - .content table tbody tr:last-child td, - .content table tbody tr:last-child th { - border-bottom-width: 0; } - -.content .tabs li + li { - margin-top: 0; } - -.content.is-small, #documenter .docs-sidebar form.docs-search > input.content { - font-size: 0.75rem; } - -.content.is-medium { - font-size: 1.25rem; } - -.content.is-large { - font-size: 1.5rem; } - -.icon { - align-items: center; - display: inline-flex; - justify-content: center; - height: 1.5rem; - width: 1.5rem; } - .icon.is-small, #documenter .docs-sidebar form.docs-search > input.icon { - height: 1rem; - width: 1rem; } - .icon.is-medium { - height: 2rem; - width: 2rem; } - .icon.is-large { - height: 3rem; - width: 3rem; } - -.image, #documenter .docs-sidebar .docs-logo > img { - display: block; - position: relative; } - .image img, #documenter .docs-sidebar .docs-logo > img img { - display: block; - height: auto; - width: 100%; } - .image img.is-rounded, #documenter .docs-sidebar .docs-logo > img img.is-rounded { - border-radius: 290486px; } - .image.is-square img, #documenter .docs-sidebar .docs-logo > img.is-square img, - .image.is-square .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-square .has-ratio, .image.is-1by1 img, #documenter .docs-sidebar .docs-logo > img.is-1by1 img, - .image.is-1by1 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-1by1 .has-ratio, .image.is-5by4 img, #documenter .docs-sidebar .docs-logo > img.is-5by4 img, - .image.is-5by4 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-5by4 .has-ratio, .image.is-4by3 img, #documenter .docs-sidebar .docs-logo > img.is-4by3 img, - .image.is-4by3 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-4by3 .has-ratio, .image.is-3by2 img, #documenter .docs-sidebar .docs-logo > img.is-3by2 img, - .image.is-3by2 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-3by2 .has-ratio, .image.is-5by3 img, #documenter .docs-sidebar .docs-logo > img.is-5by3 img, - .image.is-5by3 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-5by3 .has-ratio, .image.is-16by9 img, #documenter .docs-sidebar .docs-logo > img.is-16by9 img, - .image.is-16by9 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-16by9 .has-ratio, .image.is-2by1 img, #documenter .docs-sidebar .docs-logo > img.is-2by1 img, - .image.is-2by1 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-2by1 .has-ratio, .image.is-3by1 img, #documenter .docs-sidebar .docs-logo > img.is-3by1 img, - .image.is-3by1 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-3by1 .has-ratio, .image.is-4by5 img, #documenter .docs-sidebar .docs-logo > img.is-4by5 img, - .image.is-4by5 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-4by5 .has-ratio, .image.is-3by4 img, #documenter .docs-sidebar .docs-logo > img.is-3by4 img, - .image.is-3by4 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-3by4 .has-ratio, .image.is-2by3 img, #documenter .docs-sidebar .docs-logo > img.is-2by3 img, - .image.is-2by3 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-2by3 .has-ratio, .image.is-3by5 img, #documenter .docs-sidebar .docs-logo > img.is-3by5 img, - .image.is-3by5 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-3by5 .has-ratio, .image.is-9by16 img, #documenter .docs-sidebar .docs-logo > img.is-9by16 img, - .image.is-9by16 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-9by16 .has-ratio, .image.is-1by2 img, #documenter .docs-sidebar .docs-logo > img.is-1by2 img, - .image.is-1by2 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-1by2 .has-ratio, .image.is-1by3 img, #documenter .docs-sidebar .docs-logo > img.is-1by3 img, - .image.is-1by3 .has-ratio, - #documenter .docs-sidebar .docs-logo > img.is-1by3 .has-ratio { - height: 100%; - width: 100%; } - .image.is-square, #documenter .docs-sidebar .docs-logo > img.is-square, .image.is-1by1, #documenter .docs-sidebar .docs-logo > img.is-1by1 { - padding-top: 100%; } - .image.is-5by4, #documenter .docs-sidebar .docs-logo > img.is-5by4 { - padding-top: 80%; } - .image.is-4by3, #documenter .docs-sidebar .docs-logo > img.is-4by3 { - padding-top: 75%; } - .image.is-3by2, #documenter .docs-sidebar .docs-logo > img.is-3by2 { - padding-top: 66.6666%; } - .image.is-5by3, #documenter .docs-sidebar .docs-logo > img.is-5by3 { - padding-top: 60%; } - .image.is-16by9, #documenter .docs-sidebar .docs-logo > img.is-16by9 { - padding-top: 56.25%; } - .image.is-2by1, #documenter .docs-sidebar .docs-logo > img.is-2by1 { - padding-top: 50%; } - .image.is-3by1, #documenter .docs-sidebar .docs-logo > img.is-3by1 { - padding-top: 33.3333%; } - .image.is-4by5, #documenter .docs-sidebar .docs-logo > img.is-4by5 { - padding-top: 125%; } - .image.is-3by4, #documenter .docs-sidebar .docs-logo > img.is-3by4 { - padding-top: 133.3333%; } - .image.is-2by3, #documenter .docs-sidebar .docs-logo > img.is-2by3 { - padding-top: 150%; } - .image.is-3by5, #documenter .docs-sidebar .docs-logo > img.is-3by5 { - padding-top: 166.6666%; } - .image.is-9by16, #documenter .docs-sidebar .docs-logo > img.is-9by16 { - padding-top: 177.7777%; } - .image.is-1by2, #documenter .docs-sidebar .docs-logo > img.is-1by2 { - padding-top: 200%; } - .image.is-1by3, #documenter .docs-sidebar .docs-logo > img.is-1by3 { - padding-top: 300%; } - .image.is-16x16, #documenter .docs-sidebar .docs-logo > img.is-16x16 { - height: 16px; - width: 16px; } - .image.is-24x24, #documenter .docs-sidebar .docs-logo > img.is-24x24 { - height: 24px; - width: 24px; } - .image.is-32x32, #documenter .docs-sidebar .docs-logo > img.is-32x32 { - height: 32px; - width: 32px; } - .image.is-48x48, #documenter .docs-sidebar .docs-logo > img.is-48x48 { - height: 48px; - width: 48px; } - .image.is-64x64, #documenter .docs-sidebar .docs-logo > img.is-64x64 { - height: 64px; - width: 64px; } - .image.is-96x96, #documenter .docs-sidebar .docs-logo > img.is-96x96 { - height: 96px; - width: 96px; } - .image.is-128x128, #documenter .docs-sidebar .docs-logo > img.is-128x128 { - height: 128px; - width: 128px; } - -.notification { - background-color: whitesmoke; - border-radius: 4px; - padding: 1.25rem 2.5rem 1.25rem 1.5rem; - position: relative; } - .notification a:not(.button):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; } - .notification strong { - color: currentColor; } - .notification code, - .notification pre { - background: white; } - .notification pre code { - background: transparent; } - .notification > .delete { - position: absolute; - right: 0.5rem; - top: 0.5rem; } - .notification .title, - .notification .subtitle, - .notification .content { - color: currentColor; } - .notification.is-white { - background-color: white; - color: #0a0a0a; } - .notification.is-black { - background-color: #0a0a0a; - color: white; } - .notification.is-light { - background-color: whitesmoke; - color: #363636; } - .notification.is-dark, .content kbd.notification { - background-color: #363636; - color: whitesmoke; } - .notification.is-primary, .docstring > section > a.notification.docs-sourcelink { - background-color: #4eb5de; - color: #fff; } - .notification.is-link { - background-color: #2e63b8; - color: #fff; } - .notification.is-info { - background-color: #209cee; - color: #fff; } - .notification.is-success { - background-color: #22c35b; - color: #fff; } - .notification.is-warning { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); } - .notification.is-danger { - background-color: #da0b00; - color: #fff; } - -.progress { - -moz-appearance: none; - -webkit-appearance: none; - border: none; - border-radius: 290486px; - display: block; - height: 1rem; - overflow: hidden; - padding: 0; - width: 100%; } - .progress::-webkit-progress-bar { - background-color: #dbdbdb; } - .progress::-webkit-progress-value { - background-color: #222222; } - .progress::-moz-progress-bar { - background-color: #222222; } - .progress::-ms-fill { - background-color: #222222; - border: none; } - .progress.is-white::-webkit-progress-value { - background-color: white; } - .progress.is-white::-moz-progress-bar { - background-color: white; } - .progress.is-white::-ms-fill { - background-color: white; } - .progress.is-white:indeterminate { - background-image: linear-gradient(to right, white 30%, #dbdbdb 30%); } - .progress.is-black::-webkit-progress-value { - background-color: #0a0a0a; } - .progress.is-black::-moz-progress-bar { - background-color: #0a0a0a; } - .progress.is-black::-ms-fill { - background-color: #0a0a0a; } - .progress.is-black:indeterminate { - background-image: linear-gradient(to right, #0a0a0a 30%, #dbdbdb 30%); } - .progress.is-light::-webkit-progress-value { - background-color: whitesmoke; } - .progress.is-light::-moz-progress-bar { - background-color: whitesmoke; } - .progress.is-light::-ms-fill { - background-color: whitesmoke; } - .progress.is-light:indeterminate { - background-image: linear-gradient(to right, whitesmoke 30%, #dbdbdb 30%); } - .progress.is-dark::-webkit-progress-value, .content kbd.progress::-webkit-progress-value { - background-color: #363636; } - .progress.is-dark::-moz-progress-bar, .content kbd.progress::-moz-progress-bar { - background-color: #363636; } - .progress.is-dark::-ms-fill, .content kbd.progress::-ms-fill { - background-color: #363636; } - .progress.is-dark:indeterminate, .content kbd.progress:indeterminate { - background-image: linear-gradient(to right, #363636 30%, #dbdbdb 30%); } - .progress.is-primary::-webkit-progress-value, .docstring > section > a.progress.docs-sourcelink::-webkit-progress-value { - background-color: #4eb5de; } - .progress.is-primary::-moz-progress-bar, .docstring > section > a.progress.docs-sourcelink::-moz-progress-bar { - background-color: #4eb5de; } - .progress.is-primary::-ms-fill, .docstring > section > a.progress.docs-sourcelink::-ms-fill { - background-color: #4eb5de; } - .progress.is-primary:indeterminate, .docstring > section > a.progress.docs-sourcelink:indeterminate { - background-image: linear-gradient(to right, #4eb5de 30%, #dbdbdb 30%); } - .progress.is-link::-webkit-progress-value { - background-color: #2e63b8; } - .progress.is-link::-moz-progress-bar { - background-color: #2e63b8; } - .progress.is-link::-ms-fill { - background-color: #2e63b8; } - .progress.is-link:indeterminate { - background-image: linear-gradient(to right, #2e63b8 30%, #dbdbdb 30%); } - .progress.is-info::-webkit-progress-value { - background-color: #209cee; } - .progress.is-info::-moz-progress-bar { - background-color: #209cee; } - .progress.is-info::-ms-fill { - background-color: #209cee; } - .progress.is-info:indeterminate { - background-image: linear-gradient(to right, #209cee 30%, #dbdbdb 30%); } - .progress.is-success::-webkit-progress-value { - background-color: #22c35b; } - .progress.is-success::-moz-progress-bar { - background-color: #22c35b; } - .progress.is-success::-ms-fill { - background-color: #22c35b; } - .progress.is-success:indeterminate { - background-image: linear-gradient(to right, #22c35b 30%, #dbdbdb 30%); } - .progress.is-warning::-webkit-progress-value { - background-color: #ffdd57; } - .progress.is-warning::-moz-progress-bar { - background-color: #ffdd57; } - .progress.is-warning::-ms-fill { - background-color: #ffdd57; } - .progress.is-warning:indeterminate { - background-image: linear-gradient(to right, #ffdd57 30%, #dbdbdb 30%); } - .progress.is-danger::-webkit-progress-value { - background-color: #da0b00; } - .progress.is-danger::-moz-progress-bar { - background-color: #da0b00; } - .progress.is-danger::-ms-fill { - background-color: #da0b00; } - .progress.is-danger:indeterminate { - background-image: linear-gradient(to right, #da0b00 30%, #dbdbdb 30%); } - .progress:indeterminate { - animation-duration: 1.5s; - animation-iteration-count: infinite; - animation-name: moveIndeterminate; - animation-timing-function: linear; - background-color: #dbdbdb; - background-image: linear-gradient(to right, #222222 30%, #dbdbdb 30%); - background-position: top left; - background-repeat: no-repeat; - background-size: 150% 150%; } - .progress:indeterminate::-webkit-progress-bar { - background-color: transparent; } - .progress:indeterminate::-moz-progress-bar { - background-color: transparent; } - .progress.is-small, #documenter .docs-sidebar form.docs-search > input.progress { - height: 0.75rem; } - .progress.is-medium { - height: 1.25rem; } - .progress.is-large { - height: 1.5rem; } - -@keyframes moveIndeterminate { - from { - background-position: 200% 0; } - to { - background-position: -200% 0; } } - -.table { - background-color: white; - color: #363636; } - .table td, - .table th { - border: 1px solid #dbdbdb; - border-width: 0 0 1px; - padding: 0.5em 0.75em; - vertical-align: top; } - .table td.is-white, - .table th.is-white { - background-color: white; - border-color: white; - color: #0a0a0a; } - .table td.is-black, - .table th.is-black { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; } - .table td.is-light, - .table th.is-light { - background-color: whitesmoke; - border-color: whitesmoke; - color: #363636; } - .table td.is-dark, - .table th.is-dark { - background-color: #363636; - border-color: #363636; - color: whitesmoke; } - .table td.is-primary, - .table th.is-primary { - background-color: #4eb5de; - border-color: #4eb5de; - color: #fff; } - .table td.is-link, - .table th.is-link { - background-color: #2e63b8; - border-color: #2e63b8; - color: #fff; } - .table td.is-info, - .table th.is-info { - background-color: #209cee; - border-color: #209cee; - color: #fff; } - .table td.is-success, - .table th.is-success { - background-color: #22c35b; - border-color: #22c35b; - color: #fff; } - .table td.is-warning, - .table th.is-warning { - background-color: #ffdd57; - border-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); } - .table td.is-danger, - .table th.is-danger { - background-color: #da0b00; - border-color: #da0b00; - color: #fff; } - .table td.is-narrow, - .table th.is-narrow { - white-space: nowrap; - width: 1%; } - .table td.is-selected, - .table th.is-selected { - background-color: #4eb5de; - color: #fff; } - .table td.is-selected a, - .table td.is-selected strong, - .table th.is-selected a, - .table th.is-selected strong { - color: currentColor; } - .table th { - color: #222222; } - .table th:not([align]) { - text-align: left; } - .table tr.is-selected { - background-color: #4eb5de; - color: #fff; } - .table tr.is-selected a, - .table tr.is-selected strong { - color: currentColor; } - .table tr.is-selected td, - .table tr.is-selected th { - border-color: #fff; - color: currentColor; } - .table thead { - background-color: transparent; } - .table thead td, - .table thead th { - border-width: 0 0 2px; - color: #222222; } - .table tfoot { - background-color: transparent; } - .table tfoot td, - .table tfoot th { - border-width: 2px 0 0; - color: #222222; } - .table tbody { - background-color: transparent; } - .table tbody tr:last-child td, - .table tbody tr:last-child th { - border-bottom-width: 0; } - .table.is-bordered td, - .table.is-bordered th { - border-width: 1px; } - .table.is-bordered tr:last-child td, - .table.is-bordered tr:last-child th { - border-bottom-width: 1px; } - .table.is-fullwidth { - width: 100%; } - .table.is-hoverable tbody tr:not(.is-selected):hover { - background-color: #fafafa; } - .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover { - background-color: #fafafa; } - .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) { - background-color: whitesmoke; } - .table.is-narrow td, - .table.is-narrow th { - padding: 0.25em 0.5em; } - .table.is-striped tbody tr:not(.is-selected):nth-child(even) { - background-color: #fafafa; } - -.table-container { - -webkit-overflow-scrolling: touch; - overflow: auto; - overflow-y: hidden; - max-width: 100%; } - -.tags { - align-items: center; - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .tags .tag, .tags .docstring > section > a.docs-sourcelink, .tags .content kbd, .content .tags kbd { - margin-bottom: 0.5rem; } - .tags .tag:not(:last-child), .tags .docstring > section > a.docs-sourcelink:not(:last-child), .tags .content kbd:not(:last-child), .content .tags kbd:not(:last-child) { - margin-right: 0.5rem; } - .tags:last-child { - margin-bottom: -0.5rem; } - .tags:not(:last-child) { - margin-bottom: 1rem; } - .tags.are-medium .tag:not(.is-normal):not(.is-large), .tags.are-medium .docstring > section > a.docs-sourcelink:not(.is-normal):not(.is-large), .tags.are-medium .content kbd:not(.is-normal):not(.is-large), .content .tags.are-medium kbd:not(.is-normal):not(.is-large) { - font-size: 1rem; } - .tags.are-large .tag:not(.is-normal):not(.is-medium), .tags.are-large .docstring > section > a.docs-sourcelink:not(.is-normal):not(.is-medium), .tags.are-large .content kbd:not(.is-normal):not(.is-medium), .content .tags.are-large kbd:not(.is-normal):not(.is-medium) { - font-size: 1.25rem; } - .tags.is-centered { - justify-content: center; } - .tags.is-centered .tag, .tags.is-centered .docstring > section > a.docs-sourcelink, .tags.is-centered .content kbd, .content .tags.is-centered kbd { - margin-right: 0.25rem; - margin-left: 0.25rem; } - .tags.is-right { - justify-content: flex-end; } - .tags.is-right .tag:not(:first-child), .tags.is-right .docstring > section > a.docs-sourcelink:not(:first-child), .tags.is-right .content kbd:not(:first-child), .content .tags.is-right kbd:not(:first-child) { - margin-left: 0.5rem; } - .tags.is-right .tag:not(:last-child), .tags.is-right .docstring > section > a.docs-sourcelink:not(:last-child), .tags.is-right .content kbd:not(:last-child), .content .tags.is-right kbd:not(:last-child) { - margin-right: 0; } - .tags.has-addons .tag, .tags.has-addons .docstring > section > a.docs-sourcelink, .tags.has-addons .content kbd, .content .tags.has-addons kbd { - margin-right: 0; } - .tags.has-addons .tag:not(:first-child), .tags.has-addons .docstring > section > a.docs-sourcelink:not(:first-child), .tags.has-addons .content kbd:not(:first-child), .content .tags.has-addons kbd:not(:first-child) { - margin-left: 0; - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - .tags.has-addons .tag:not(:last-child), .tags.has-addons .docstring > section > a.docs-sourcelink:not(:last-child), .tags.has-addons .content kbd:not(:last-child), .content .tags.has-addons kbd:not(:last-child) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - -.tag:not(body), .docstring > section > a.docs-sourcelink:not(body), .content kbd:not(body) { - align-items: center; - background-color: whitesmoke; - border-radius: 4px; - color: #222222; - display: inline-flex; - font-size: 0.75rem; - height: 2em; - justify-content: center; - line-height: 1.5; - padding-left: 0.75em; - padding-right: 0.75em; - white-space: nowrap; } - .tag:not(body) .delete, .docstring > section > a.docs-sourcelink:not(body) .delete, .content kbd:not(body) .delete { - margin-left: 0.25rem; - margin-right: -0.375rem; } - .tag:not(body).is-white, .docstring > section > a.docs-sourcelink:not(body).is-white, .content kbd:not(body).is-white { - background-color: white; - color: #0a0a0a; } - .tag:not(body).is-black, .docstring > section > a.docs-sourcelink:not(body).is-black, .content kbd:not(body).is-black { - background-color: #0a0a0a; - color: white; } - .tag:not(body).is-light, .docstring > section > a.docs-sourcelink:not(body).is-light, .content kbd:not(body).is-light { - background-color: whitesmoke; - color: #363636; } - .tag:not(body).is-dark, .docstring > section > a.docs-sourcelink:not(body).is-dark, .content kbd:not(body) { - background-color: #363636; - color: whitesmoke; } - .tag:not(body).is-primary, .docstring > section > a.docs-sourcelink:not(body), .content kbd:not(body).is-primary { - background-color: #4eb5de; - color: #fff; } - .tag:not(body).is-link, .docstring > section > a.docs-sourcelink:not(body).is-link, .content kbd:not(body).is-link { - background-color: #2e63b8; - color: #fff; } - .tag:not(body).is-info, .docstring > section > a.docs-sourcelink:not(body).is-info, .content kbd:not(body).is-info { - background-color: #209cee; - color: #fff; } - .tag:not(body).is-success, .docstring > section > a.docs-sourcelink:not(body).is-success, .content kbd:not(body).is-success { - background-color: #22c35b; - color: #fff; } - .tag:not(body).is-warning, .docstring > section > a.docs-sourcelink:not(body).is-warning, .content kbd:not(body).is-warning { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); } - .tag:not(body).is-danger, .docstring > section > a.docs-sourcelink:not(body).is-danger, .content kbd:not(body).is-danger { - background-color: #da0b00; - color: #fff; } - .tag:not(body).is-normal, .docstring > section > a.docs-sourcelink:not(body).is-normal, .content kbd:not(body).is-normal { - font-size: 0.75rem; } - .tag:not(body).is-medium, .docstring > section > a.docs-sourcelink:not(body).is-medium, .content kbd:not(body).is-medium { - font-size: 1rem; } - .tag:not(body).is-large, .docstring > section > a.docs-sourcelink:not(body).is-large, .content kbd:not(body).is-large { - font-size: 1.25rem; } - .tag:not(body) .icon:first-child:not(:last-child), .docstring > section > a.docs-sourcelink:not(body) .icon:first-child:not(:last-child), .content kbd:not(body) .icon:first-child:not(:last-child) { - margin-left: -0.375em; - margin-right: 0.1875em; } - .tag:not(body) .icon:last-child:not(:first-child), .docstring > section > a.docs-sourcelink:not(body) .icon:last-child:not(:first-child), .content kbd:not(body) .icon:last-child:not(:first-child) { - margin-left: 0.1875em; - margin-right: -0.375em; } - .tag:not(body) .icon:first-child:last-child, .docstring > section > a.docs-sourcelink:not(body) .icon:first-child:last-child, .content kbd:not(body) .icon:first-child:last-child { - margin-left: -0.375em; - margin-right: -0.375em; } - .tag:not(body).is-delete, .docstring > section > a.docs-sourcelink:not(body).is-delete, .content kbd:not(body).is-delete { - margin-left: 1px; - padding: 0; - position: relative; - width: 2em; } - .tag:not(body).is-delete::before, .docstring > section > a.docs-sourcelink:not(body).is-delete::before, .content kbd:not(body).is-delete::before, .tag:not(body).is-delete::after, .docstring > section > a.docs-sourcelink:not(body).is-delete::after, .content kbd:not(body).is-delete::after { - background-color: currentColor; - content: ""; - display: block; - left: 50%; - position: absolute; - top: 50%; - transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform-origin: center center; } - .tag:not(body).is-delete::before, .docstring > section > a.docs-sourcelink:not(body).is-delete::before, .content kbd:not(body).is-delete::before { - height: 1px; - width: 50%; } - .tag:not(body).is-delete::after, .docstring > section > a.docs-sourcelink:not(body).is-delete::after, .content kbd:not(body).is-delete::after { - height: 50%; - width: 1px; } - .tag:not(body).is-delete:hover, .docstring > section > a.docs-sourcelink:not(body).is-delete:hover, .content kbd:not(body).is-delete:hover, .tag:not(body).is-delete:focus, .docstring > section > a.docs-sourcelink:not(body).is-delete:focus, .content kbd:not(body).is-delete:focus { - background-color: #e8e8e8; } - .tag:not(body).is-delete:active, .docstring > section > a.docs-sourcelink:not(body).is-delete:active, .content kbd:not(body).is-delete:active { - background-color: #dbdbdb; } - .tag:not(body).is-rounded, .docstring > section > a.docs-sourcelink:not(body).is-rounded, .content kbd:not(body).is-rounded, #documenter .docs-sidebar form.docs-search > input.tag:not(body) { - border-radius: 290486px; } - -a.tag:hover, .docstring > section > a.docs-sourcelink:hover { - text-decoration: underline; } - -.title, -.subtitle { - word-break: break-word; } - .title em, - .title span, - .subtitle em, - .subtitle span { - font-weight: inherit; } - .title sub, - .subtitle sub { - font-size: 0.75em; } - .title sup, - .subtitle sup { - font-size: 0.75em; } - .title .tag, .title .docstring > section > a.docs-sourcelink, .title .content kbd, .content .title kbd, - .subtitle .tag, - .subtitle .docstring > section > a.docs-sourcelink, - .subtitle .content kbd, - .content .subtitle kbd { - vertical-align: middle; } - -.title { - color: #363636; - font-size: 2rem; - font-weight: 600; - line-height: 1.125; } - .title strong { - color: inherit; - font-weight: inherit; } - .title + .highlight { - margin-top: -0.75rem; } - .title:not(.is-spaced) + .subtitle { - margin-top: -1.25rem; } - .title.is-1 { - font-size: 3rem; } - .title.is-2 { - font-size: 2.5rem; } - .title.is-3 { - font-size: 2rem; } - .title.is-4 { - font-size: 1.5rem; } - .title.is-5 { - font-size: 1.25rem; } - .title.is-6 { - font-size: 1rem; } - .title.is-7 { - font-size: 0.75rem; } - -.subtitle { - color: #4a4a4a; - font-size: 1.25rem; - font-weight: 400; - line-height: 1.25; } - .subtitle strong { - color: #363636; - font-weight: 600; } - .subtitle:not(.is-spaced) + .title { - margin-top: -1.25rem; } - .subtitle.is-1 { - font-size: 3rem; } - .subtitle.is-2 { - font-size: 2.5rem; } - .subtitle.is-3 { - font-size: 2rem; } - .subtitle.is-4 { - font-size: 1.5rem; } - .subtitle.is-5 { - font-size: 1.25rem; } - .subtitle.is-6 { - font-size: 1rem; } - .subtitle.is-7 { - font-size: 0.75rem; } - -.heading { - display: block; - font-size: 11px; - letter-spacing: 1px; - margin-bottom: 5px; - text-transform: uppercase; } - -.highlight { - font-weight: 400; - max-width: 100%; - overflow: hidden; - padding: 0; } - .highlight pre { - overflow: auto; - max-width: 100%; } - -.number { - align-items: center; - background-color: whitesmoke; - border-radius: 290486px; - display: inline-flex; - font-size: 1.25rem; - height: 2em; - justify-content: center; - margin-right: 1.5rem; - min-width: 2.5em; - padding: 0.25rem 0.5rem; - text-align: center; - vertical-align: top; } - -.input, #documenter .docs-sidebar form.docs-search > input, .textarea, .select select { - background-color: white; - border-color: #dbdbdb; - border-radius: 4px; - color: #363636; } - .input::-moz-placeholder, #documenter .docs-sidebar form.docs-search > input::-moz-placeholder, .textarea::-moz-placeholder, .select select::-moz-placeholder { - color: rgba(54, 54, 54, 0.3); } - .input::-webkit-input-placeholder, #documenter .docs-sidebar form.docs-search > input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .select select::-webkit-input-placeholder { - color: rgba(54, 54, 54, 0.3); } - .input:-moz-placeholder, #documenter .docs-sidebar form.docs-search > input:-moz-placeholder, .textarea:-moz-placeholder, .select select:-moz-placeholder { - color: rgba(54, 54, 54, 0.3); } - .input:-ms-input-placeholder, #documenter .docs-sidebar form.docs-search > input:-ms-input-placeholder, .textarea:-ms-input-placeholder, .select select:-ms-input-placeholder { - color: rgba(54, 54, 54, 0.3); } - .input:hover, #documenter .docs-sidebar form.docs-search > input:hover, .textarea:hover, .select select:hover, .is-hovered.input, #documenter .docs-sidebar form.docs-search > input.is-hovered, .is-hovered.textarea, .select select.is-hovered { - border-color: #b5b5b5; } - .input:focus, #documenter .docs-sidebar form.docs-search > input:focus, .textarea:focus, .select select:focus, .is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-focused, .is-focused.textarea, .select select.is-focused, .input:active, #documenter .docs-sidebar form.docs-search > input:active, .textarea:active, .select select:active, .is-active.input, #documenter .docs-sidebar form.docs-search > input.is-active, .is-active.textarea, .select select.is-active { - border-color: #2e63b8; - box-shadow: 0 0 0 0.125em rgba(46, 99, 184, 0.25); } - .input[disabled], #documenter .docs-sidebar form.docs-search > input[disabled], .textarea[disabled], .select select[disabled], - fieldset[disabled] .input, - fieldset[disabled] #documenter .docs-sidebar form.docs-search > input, - #documenter .docs-sidebar fieldset[disabled] form.docs-search > input, - fieldset[disabled] .textarea, - fieldset[disabled] .select select, - .select fieldset[disabled] select { - background-color: whitesmoke; - border-color: whitesmoke; - box-shadow: none; - color: #7a7a7a; } - .input[disabled]::-moz-placeholder, #documenter .docs-sidebar form.docs-search > input[disabled]::-moz-placeholder, .textarea[disabled]::-moz-placeholder, .select select[disabled]::-moz-placeholder, - fieldset[disabled] .input::-moz-placeholder, - fieldset[disabled] #documenter .docs-sidebar form.docs-search > input::-moz-placeholder, - #documenter .docs-sidebar fieldset[disabled] form.docs-search > input::-moz-placeholder, - fieldset[disabled] .textarea::-moz-placeholder, - fieldset[disabled] .select select::-moz-placeholder, - .select fieldset[disabled] select::-moz-placeholder { - color: rgba(122, 122, 122, 0.3); } - .input[disabled]::-webkit-input-placeholder, #documenter .docs-sidebar form.docs-search > input[disabled]::-webkit-input-placeholder, .textarea[disabled]::-webkit-input-placeholder, .select select[disabled]::-webkit-input-placeholder, - fieldset[disabled] .input::-webkit-input-placeholder, - fieldset[disabled] #documenter .docs-sidebar form.docs-search > input::-webkit-input-placeholder, - #documenter .docs-sidebar fieldset[disabled] form.docs-search > input::-webkit-input-placeholder, - fieldset[disabled] .textarea::-webkit-input-placeholder, - fieldset[disabled] .select select::-webkit-input-placeholder, - .select fieldset[disabled] select::-webkit-input-placeholder { - color: rgba(122, 122, 122, 0.3); } - .input[disabled]:-moz-placeholder, #documenter .docs-sidebar form.docs-search > input[disabled]:-moz-placeholder, .textarea[disabled]:-moz-placeholder, .select select[disabled]:-moz-placeholder, - fieldset[disabled] .input:-moz-placeholder, - fieldset[disabled] #documenter .docs-sidebar form.docs-search > input:-moz-placeholder, - #documenter .docs-sidebar fieldset[disabled] form.docs-search > input:-moz-placeholder, - fieldset[disabled] .textarea:-moz-placeholder, - fieldset[disabled] .select select:-moz-placeholder, - .select fieldset[disabled] select:-moz-placeholder { - color: rgba(122, 122, 122, 0.3); } - .input[disabled]:-ms-input-placeholder, #documenter .docs-sidebar form.docs-search > input[disabled]:-ms-input-placeholder, .textarea[disabled]:-ms-input-placeholder, .select select[disabled]:-ms-input-placeholder, - fieldset[disabled] .input:-ms-input-placeholder, - fieldset[disabled] #documenter .docs-sidebar form.docs-search > input:-ms-input-placeholder, - #documenter .docs-sidebar fieldset[disabled] form.docs-search > input:-ms-input-placeholder, - fieldset[disabled] .textarea:-ms-input-placeholder, - fieldset[disabled] .select select:-ms-input-placeholder, - .select fieldset[disabled] select:-ms-input-placeholder { - color: rgba(122, 122, 122, 0.3); } - -.input, #documenter .docs-sidebar form.docs-search > input, .textarea { - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1); - max-width: 100%; - width: 100%; } - .input[readonly], #documenter .docs-sidebar form.docs-search > input[readonly], .textarea[readonly] { - box-shadow: none; } - .is-white.input, #documenter .docs-sidebar form.docs-search > input.is-white, .is-white.textarea { - border-color: white; } - .is-white.input:focus, #documenter .docs-sidebar form.docs-search > input.is-white:focus, .is-white.textarea:focus, .is-white.is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-white.is-focused, .is-white.is-focused.textarea, .is-white.input:active, #documenter .docs-sidebar form.docs-search > input.is-white:active, .is-white.textarea:active, .is-white.is-active.input, #documenter .docs-sidebar form.docs-search > input.is-white.is-active, .is-white.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } - .is-black.input, #documenter .docs-sidebar form.docs-search > input.is-black, .is-black.textarea { - border-color: #0a0a0a; } - .is-black.input:focus, #documenter .docs-sidebar form.docs-search > input.is-black:focus, .is-black.textarea:focus, .is-black.is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-black.is-focused, .is-black.is-focused.textarea, .is-black.input:active, #documenter .docs-sidebar form.docs-search > input.is-black:active, .is-black.textarea:active, .is-black.is-active.input, #documenter .docs-sidebar form.docs-search > input.is-black.is-active, .is-black.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } - .is-light.input, #documenter .docs-sidebar form.docs-search > input.is-light, .is-light.textarea { - border-color: whitesmoke; } - .is-light.input:focus, #documenter .docs-sidebar form.docs-search > input.is-light:focus, .is-light.textarea:focus, .is-light.is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-light.is-focused, .is-light.is-focused.textarea, .is-light.input:active, #documenter .docs-sidebar form.docs-search > input.is-light:active, .is-light.textarea:active, .is-light.is-active.input, #documenter .docs-sidebar form.docs-search > input.is-light.is-active, .is-light.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); } - .is-dark.input, .content kbd.input, #documenter .docs-sidebar form.docs-search > input.is-dark, .is-dark.textarea, .content kbd.textarea { - border-color: #363636; } - .is-dark.input:focus, .content kbd.input:focus, #documenter .docs-sidebar form.docs-search > input.is-dark:focus, .is-dark.textarea:focus, .content kbd.textarea:focus, .is-dark.is-focused.input, .content kbd.is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-dark.is-focused, .is-dark.is-focused.textarea, .content kbd.is-focused.textarea, .is-dark.input:active, .content kbd.input:active, #documenter .docs-sidebar form.docs-search > input.is-dark:active, .is-dark.textarea:active, .content kbd.textarea:active, .is-dark.is-active.input, .content kbd.is-active.input, #documenter .docs-sidebar form.docs-search > input.is-dark.is-active, .is-dark.is-active.textarea, .content kbd.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); } - .is-primary.input, .docstring > section > a.input.docs-sourcelink, #documenter .docs-sidebar form.docs-search > input.is-primary, .is-primary.textarea, .docstring > section > a.textarea.docs-sourcelink { - border-color: #4eb5de; } - .is-primary.input:focus, .docstring > section > a.input.docs-sourcelink:focus, #documenter .docs-sidebar form.docs-search > input.is-primary:focus, .is-primary.textarea:focus, .docstring > section > a.textarea.docs-sourcelink:focus, .is-primary.is-focused.input, .docstring > section > a.is-focused.input.docs-sourcelink, #documenter .docs-sidebar form.docs-search > input.is-primary.is-focused, .is-primary.is-focused.textarea, .docstring > section > a.is-focused.textarea.docs-sourcelink, .is-primary.input:active, .docstring > section > a.input.docs-sourcelink:active, #documenter .docs-sidebar form.docs-search > input.is-primary:active, .is-primary.textarea:active, .docstring > section > a.textarea.docs-sourcelink:active, .is-primary.is-active.input, .docstring > section > a.is-active.input.docs-sourcelink, #documenter .docs-sidebar form.docs-search > input.is-primary.is-active, .is-primary.is-active.textarea, .docstring > section > a.is-active.textarea.docs-sourcelink { - box-shadow: 0 0 0 0.125em rgba(78, 181, 222, 0.25); } - .is-link.input, #documenter .docs-sidebar form.docs-search > input.is-link, .is-link.textarea { - border-color: #2e63b8; } - .is-link.input:focus, #documenter .docs-sidebar form.docs-search > input.is-link:focus, .is-link.textarea:focus, .is-link.is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-link.is-focused, .is-link.is-focused.textarea, .is-link.input:active, #documenter .docs-sidebar form.docs-search > input.is-link:active, .is-link.textarea:active, .is-link.is-active.input, #documenter .docs-sidebar form.docs-search > input.is-link.is-active, .is-link.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(46, 99, 184, 0.25); } - .is-info.input, #documenter .docs-sidebar form.docs-search > input.is-info, .is-info.textarea { - border-color: #209cee; } - .is-info.input:focus, #documenter .docs-sidebar form.docs-search > input.is-info:focus, .is-info.textarea:focus, .is-info.is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-info.is-focused, .is-info.is-focused.textarea, .is-info.input:active, #documenter .docs-sidebar form.docs-search > input.is-info:active, .is-info.textarea:active, .is-info.is-active.input, #documenter .docs-sidebar form.docs-search > input.is-info.is-active, .is-info.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); } - .is-success.input, #documenter .docs-sidebar form.docs-search > input.is-success, .is-success.textarea { - border-color: #22c35b; } - .is-success.input:focus, #documenter .docs-sidebar form.docs-search > input.is-success:focus, .is-success.textarea:focus, .is-success.is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-success.is-focused, .is-success.is-focused.textarea, .is-success.input:active, #documenter .docs-sidebar form.docs-search > input.is-success:active, .is-success.textarea:active, .is-success.is-active.input, #documenter .docs-sidebar form.docs-search > input.is-success.is-active, .is-success.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(34, 195, 91, 0.25); } - .is-warning.input, #documenter .docs-sidebar form.docs-search > input.is-warning, .is-warning.textarea { - border-color: #ffdd57; } - .is-warning.input:focus, #documenter .docs-sidebar form.docs-search > input.is-warning:focus, .is-warning.textarea:focus, .is-warning.is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-warning.is-focused, .is-warning.is-focused.textarea, .is-warning.input:active, #documenter .docs-sidebar form.docs-search > input.is-warning:active, .is-warning.textarea:active, .is-warning.is-active.input, #documenter .docs-sidebar form.docs-search > input.is-warning.is-active, .is-warning.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); } - .is-danger.input, #documenter .docs-sidebar form.docs-search > input.is-danger, .is-danger.textarea { - border-color: #da0b00; } - .is-danger.input:focus, #documenter .docs-sidebar form.docs-search > input.is-danger:focus, .is-danger.textarea:focus, .is-danger.is-focused.input, #documenter .docs-sidebar form.docs-search > input.is-danger.is-focused, .is-danger.is-focused.textarea, .is-danger.input:active, #documenter .docs-sidebar form.docs-search > input.is-danger:active, .is-danger.textarea:active, .is-danger.is-active.input, #documenter .docs-sidebar form.docs-search > input.is-danger.is-active, .is-danger.is-active.textarea { - box-shadow: 0 0 0 0.125em rgba(218, 11, 0, 0.25); } - .is-small.input, #documenter .docs-sidebar form.docs-search > input, .is-small.textarea { - border-radius: 2px; - font-size: 0.75rem; } - .is-medium.input, #documenter .docs-sidebar form.docs-search > input.is-medium, .is-medium.textarea { - font-size: 1.25rem; } - .is-large.input, #documenter .docs-sidebar form.docs-search > input.is-large, .is-large.textarea { - font-size: 1.5rem; } - .is-fullwidth.input, #documenter .docs-sidebar form.docs-search > input.is-fullwidth, .is-fullwidth.textarea { - display: block; - width: 100%; } - .is-inline.input, #documenter .docs-sidebar form.docs-search > input.is-inline, .is-inline.textarea { - display: inline; - width: auto; } - -.input.is-rounded, #documenter .docs-sidebar form.docs-search > input { - border-radius: 290486px; - padding-left: 1em; - padding-right: 1em; } - -.input.is-static, #documenter .docs-sidebar form.docs-search > input.is-static { - background-color: transparent; - border-color: transparent; - box-shadow: none; - padding-left: 0; - padding-right: 0; } - -.textarea { - display: block; - max-width: 100%; - min-width: 100%; - padding: 0.625em; - resize: vertical; } - .textarea:not([rows]) { - max-height: 600px; - min-height: 120px; } - .textarea[rows] { - height: initial; } - .textarea.has-fixed-size { - resize: none; } - -.checkbox, .radio { - cursor: pointer; - display: inline-block; - line-height: 1.25; - position: relative; } - .checkbox input, .radio input { - cursor: pointer; } - .checkbox:hover, .radio:hover { - color: #363636; } - .checkbox[disabled], .radio[disabled], - fieldset[disabled] .checkbox, - fieldset[disabled] .radio { - color: #7a7a7a; - cursor: not-allowed; } - -.radio + .radio { - margin-left: 0.5em; } - -.select { - display: inline-block; - max-width: 100%; - position: relative; - vertical-align: top; } - .select:not(.is-multiple) { - height: 2.25em; } - .select:not(.is-multiple):not(.is-loading)::after { - border-color: #2e63b8; - right: 1.125em; - z-index: 4; } - .select.is-rounded select, #documenter .docs-sidebar form.docs-search > input.select select { - border-radius: 290486px; - padding-left: 1em; } - .select select { - cursor: pointer; - display: block; - font-size: 1em; - max-width: 100%; - outline: none; } - .select select::-ms-expand { - display: none; } - .select select[disabled]:hover, - fieldset[disabled] .select select:hover { - border-color: whitesmoke; } - .select select:not([multiple]) { - padding-right: 2.5em; } - .select select[multiple] { - height: auto; - padding: 0; } - .select select[multiple] option { - padding: 0.5em 1em; } - .select:not(.is-multiple):not(.is-loading):hover::after { - border-color: #363636; } - .select.is-white:not(:hover)::after { - border-color: white; } - .select.is-white select { - border-color: white; } - .select.is-white select:hover, .select.is-white select.is-hovered { - border-color: #f2f2f2; } - .select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active { - box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); } - .select.is-black:not(:hover)::after { - border-color: #0a0a0a; } - .select.is-black select { - border-color: #0a0a0a; } - .select.is-black select:hover, .select.is-black select.is-hovered { - border-color: black; } - .select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active { - box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); } - .select.is-light:not(:hover)::after { - border-color: whitesmoke; } - .select.is-light select { - border-color: whitesmoke; } - .select.is-light select:hover, .select.is-light select.is-hovered { - border-color: #e8e8e8; } - .select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active { - box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); } - .select.is-dark:not(:hover)::after, .content kbd.select:not(:hover)::after { - border-color: #363636; } - .select.is-dark select, .content kbd.select select { - border-color: #363636; } - .select.is-dark select:hover, .content kbd.select select:hover, .select.is-dark select.is-hovered, .content kbd.select select.is-hovered { - border-color: #292929; } - .select.is-dark select:focus, .content kbd.select select:focus, .select.is-dark select.is-focused, .content kbd.select select.is-focused, .select.is-dark select:active, .content kbd.select select:active, .select.is-dark select.is-active, .content kbd.select select.is-active { - box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); } - .select.is-primary:not(:hover)::after, .docstring > section > a.select.docs-sourcelink:not(:hover)::after { - border-color: #4eb5de; } - .select.is-primary select, .docstring > section > a.select.docs-sourcelink select { - border-color: #4eb5de; } - .select.is-primary select:hover, .docstring > section > a.select.docs-sourcelink select:hover, .select.is-primary select.is-hovered, .docstring > section > a.select.docs-sourcelink select.is-hovered { - border-color: #39acda; } - .select.is-primary select:focus, .docstring > section > a.select.docs-sourcelink select:focus, .select.is-primary select.is-focused, .docstring > section > a.select.docs-sourcelink select.is-focused, .select.is-primary select:active, .docstring > section > a.select.docs-sourcelink select:active, .select.is-primary select.is-active, .docstring > section > a.select.docs-sourcelink select.is-active { - box-shadow: 0 0 0 0.125em rgba(78, 181, 222, 0.25); } - .select.is-link:not(:hover)::after { - border-color: #2e63b8; } - .select.is-link select { - border-color: #2e63b8; } - .select.is-link select:hover, .select.is-link select.is-hovered { - border-color: #2958a4; } - .select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active { - box-shadow: 0 0 0 0.125em rgba(46, 99, 184, 0.25); } - .select.is-info:not(:hover)::after { - border-color: #209cee; } - .select.is-info select { - border-color: #209cee; } - .select.is-info select:hover, .select.is-info select.is-hovered { - border-color: #1190e3; } - .select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active { - box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); } - .select.is-success:not(:hover)::after { - border-color: #22c35b; } - .select.is-success select { - border-color: #22c35b; } - .select.is-success select:hover, .select.is-success select.is-hovered { - border-color: #1ead51; } - .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active { - box-shadow: 0 0 0 0.125em rgba(34, 195, 91, 0.25); } - .select.is-warning:not(:hover)::after { - border-color: #ffdd57; } - .select.is-warning select { - border-color: #ffdd57; } - .select.is-warning select:hover, .select.is-warning select.is-hovered { - border-color: #ffd83e; } - .select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active { - box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); } - .select.is-danger:not(:hover)::after { - border-color: #da0b00; } - .select.is-danger select { - border-color: #da0b00; } - .select.is-danger select:hover, .select.is-danger select.is-hovered { - border-color: #c10a00; } - .select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active { - box-shadow: 0 0 0 0.125em rgba(218, 11, 0, 0.25); } - .select.is-small, #documenter .docs-sidebar form.docs-search > input.select { - border-radius: 2px; - font-size: 0.75rem; } - .select.is-medium { - font-size: 1.25rem; } - .select.is-large { - font-size: 1.5rem; } - .select.is-disabled::after { - border-color: #7a7a7a; } - .select.is-fullwidth { - width: 100%; } - .select.is-fullwidth select { - width: 100%; } - .select.is-loading::after { - margin-top: 0; - position: absolute; - right: 0.625em; - top: 0.625em; - transform: none; } - .select.is-loading.is-small:after, #documenter .docs-sidebar form.docs-search > input.select.is-loading:after { - font-size: 0.75rem; } - .select.is-loading.is-medium:after { - font-size: 1.25rem; } - .select.is-loading.is-large:after { - font-size: 1.5rem; } - -.file { - align-items: stretch; - display: flex; - justify-content: flex-start; - position: relative; } - .file.is-white .file-cta { - background-color: white; - border-color: transparent; - color: #0a0a0a; } - .file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta { - background-color: #f9f9f9; - border-color: transparent; - color: #0a0a0a; } - .file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25); - color: #0a0a0a; } - .file.is-white:active .file-cta, .file.is-white.is-active .file-cta { - background-color: #f2f2f2; - border-color: transparent; - color: #0a0a0a; } - .file.is-black .file-cta { - background-color: #0a0a0a; - border-color: transparent; - color: white; } - .file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta { - background-color: #040404; - border-color: transparent; - color: white; } - .file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25); - color: white; } - .file.is-black:active .file-cta, .file.is-black.is-active .file-cta { - background-color: black; - border-color: transparent; - color: white; } - .file.is-light .file-cta { - background-color: whitesmoke; - border-color: transparent; - color: #363636; } - .file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta { - background-color: #eeeeee; - border-color: transparent; - color: #363636; } - .file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25); - color: #363636; } - .file.is-light:active .file-cta, .file.is-light.is-active .file-cta { - background-color: #e8e8e8; - border-color: transparent; - color: #363636; } - .file.is-dark .file-cta, .content kbd.file .file-cta { - background-color: #363636; - border-color: transparent; - color: whitesmoke; } - .file.is-dark:hover .file-cta, .content kbd.file:hover .file-cta, .file.is-dark.is-hovered .file-cta, .content kbd.file.is-hovered .file-cta { - background-color: #2f2f2f; - border-color: transparent; - color: whitesmoke; } - .file.is-dark:focus .file-cta, .content kbd.file:focus .file-cta, .file.is-dark.is-focused .file-cta, .content kbd.file.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25); - color: whitesmoke; } - .file.is-dark:active .file-cta, .content kbd.file:active .file-cta, .file.is-dark.is-active .file-cta, .content kbd.file.is-active .file-cta { - background-color: #292929; - border-color: transparent; - color: whitesmoke; } - .file.is-primary .file-cta, .docstring > section > a.file.docs-sourcelink .file-cta { - background-color: #4eb5de; - border-color: transparent; - color: #fff; } - .file.is-primary:hover .file-cta, .docstring > section > a.file.docs-sourcelink:hover .file-cta, .file.is-primary.is-hovered .file-cta, .docstring > section > a.file.is-hovered.docs-sourcelink .file-cta { - background-color: #43b1dc; - border-color: transparent; - color: #fff; } - .file.is-primary:focus .file-cta, .docstring > section > a.file.docs-sourcelink:focus .file-cta, .file.is-primary.is-focused .file-cta, .docstring > section > a.file.is-focused.docs-sourcelink .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(78, 181, 222, 0.25); - color: #fff; } - .file.is-primary:active .file-cta, .docstring > section > a.file.docs-sourcelink:active .file-cta, .file.is-primary.is-active .file-cta, .docstring > section > a.file.is-active.docs-sourcelink .file-cta { - background-color: #39acda; - border-color: transparent; - color: #fff; } - .file.is-link .file-cta { - background-color: #2e63b8; - border-color: transparent; - color: #fff; } - .file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta { - background-color: #2b5eae; - border-color: transparent; - color: #fff; } - .file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(46, 99, 184, 0.25); - color: #fff; } - .file.is-link:active .file-cta, .file.is-link.is-active .file-cta { - background-color: #2958a4; - border-color: transparent; - color: #fff; } - .file.is-info .file-cta { - background-color: #209cee; - border-color: transparent; - color: #fff; } - .file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta { - background-color: #1497ed; - border-color: transparent; - color: #fff; } - .file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25); - color: #fff; } - .file.is-info:active .file-cta, .file.is-info.is-active .file-cta { - background-color: #1190e3; - border-color: transparent; - color: #fff; } - .file.is-success .file-cta { - background-color: #22c35b; - border-color: transparent; - color: #fff; } - .file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta { - background-color: #20b856; - border-color: transparent; - color: #fff; } - .file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(34, 195, 91, 0.25); - color: #fff; } - .file.is-success:active .file-cta, .file.is-success.is-active .file-cta { - background-color: #1ead51; - border-color: transparent; - color: #fff; } - .file.is-warning .file-cta { - background-color: #ffdd57; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); } - .file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta { - background-color: #ffda4a; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); } - .file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25); - color: rgba(0, 0, 0, 0.7); } - .file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta { - background-color: #ffd83e; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); } - .file.is-danger .file-cta { - background-color: #da0b00; - border-color: transparent; - color: #fff; } - .file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta { - background-color: #cd0a00; - border-color: transparent; - color: #fff; } - .file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta { - border-color: transparent; - box-shadow: 0 0 0.5em rgba(218, 11, 0, 0.25); - color: #fff; } - .file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta { - background-color: #c10a00; - border-color: transparent; - color: #fff; } - .file.is-small, #documenter .docs-sidebar form.docs-search > input.file { - font-size: 0.75rem; } - .file.is-medium { - font-size: 1.25rem; } - .file.is-medium .file-icon .fa { - font-size: 21px; } - .file.is-large { - font-size: 1.5rem; } - .file.is-large .file-icon .fa { - font-size: 28px; } - .file.has-name .file-cta { - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - .file.has-name .file-name { - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - .file.has-name.is-empty .file-cta { - border-radius: 4px; } - .file.has-name.is-empty .file-name { - display: none; } - .file.is-boxed .file-label { - flex-direction: column; } - .file.is-boxed .file-cta { - flex-direction: column; - height: auto; - padding: 1em 3em; } - .file.is-boxed .file-name { - border-width: 0 1px 1px; } - .file.is-boxed .file-icon { - height: 1.5em; - width: 1.5em; } - .file.is-boxed .file-icon .fa { - font-size: 21px; } - .file.is-boxed.is-small .file-icon .fa, #documenter .docs-sidebar form.docs-search > input.file.is-boxed .file-icon .fa { - font-size: 14px; } - .file.is-boxed.is-medium .file-icon .fa { - font-size: 28px; } - .file.is-boxed.is-large .file-icon .fa { - font-size: 35px; } - .file.is-boxed.has-name .file-cta { - border-radius: 4px 4px 0 0; } - .file.is-boxed.has-name .file-name { - border-radius: 0 0 4px 4px; - border-width: 0 1px 1px; } - .file.is-centered { - justify-content: center; } - .file.is-fullwidth .file-label { - width: 100%; } - .file.is-fullwidth .file-name { - flex-grow: 1; - max-width: none; } - .file.is-right { - justify-content: flex-end; } - .file.is-right .file-cta { - border-radius: 0 4px 4px 0; } - .file.is-right .file-name { - border-radius: 4px 0 0 4px; - border-width: 1px 0 1px 1px; - order: -1; } - -.file-label { - align-items: stretch; - display: flex; - cursor: pointer; - justify-content: flex-start; - overflow: hidden; - position: relative; } - .file-label:hover .file-cta { - background-color: #eeeeee; - color: #363636; } - .file-label:hover .file-name { - border-color: #d5d5d5; } - .file-label:active .file-cta { - background-color: #e8e8e8; - color: #363636; } - .file-label:active .file-name { - border-color: #cfcfcf; } - -.file-input { - height: 100%; - left: 0; - opacity: 0; - outline: none; - position: absolute; - top: 0; - width: 100%; } - -.file-cta, -.file-name { - border-color: #dbdbdb; - border-radius: 4px; - font-size: 1em; - padding-left: 1em; - padding-right: 1em; - white-space: nowrap; } - -.file-cta { - background-color: whitesmoke; - color: #4a4a4a; } - -.file-name { - border-color: #dbdbdb; - border-style: solid; - border-width: 1px 1px 1px 0; - display: block; - max-width: 16em; - overflow: hidden; - text-align: left; - text-overflow: ellipsis; } - -.file-icon { - align-items: center; - display: flex; - height: 1em; - justify-content: center; - margin-right: 0.5em; - width: 1em; } - .file-icon .fa { - font-size: 14px; } - -.label { - color: #363636; - display: block; - font-size: 1rem; - font-weight: 700; } - .label:not(:last-child) { - margin-bottom: 0.5em; } - .label.is-small, #documenter .docs-sidebar form.docs-search > input.label { - font-size: 0.75rem; } - .label.is-medium { - font-size: 1.25rem; } - .label.is-large { - font-size: 1.5rem; } - -.help { - display: block; - font-size: 0.75rem; - margin-top: 0.25rem; } - .help.is-white { - color: white; } - .help.is-black { - color: #0a0a0a; } - .help.is-light { - color: whitesmoke; } - .help.is-dark, .content kbd.help { - color: #363636; } - .help.is-primary, .docstring > section > a.help.docs-sourcelink { - color: #4eb5de; } - .help.is-link { - color: #2e63b8; } - .help.is-info { - color: #209cee; } - .help.is-success { - color: #22c35b; } - .help.is-warning { - color: #ffdd57; } - .help.is-danger { - color: #da0b00; } - -.field:not(:last-child) { - margin-bottom: 0.75rem; } - -.field.has-addons { - display: flex; - justify-content: flex-start; } - .field.has-addons .control:not(:last-child) { - margin-right: -1px; } - .field.has-addons .control:not(:first-child):not(:last-child) .button, - .field.has-addons .control:not(:first-child):not(:last-child) .input, - .field.has-addons .control:not(:first-child):not(:last-child) #documenter .docs-sidebar form.docs-search > input, - #documenter .docs-sidebar .field.has-addons .control:not(:first-child):not(:last-child) form.docs-search > input, - .field.has-addons .control:not(:first-child):not(:last-child) .select select { - border-radius: 0; } - .field.has-addons .control:first-child:not(:only-child) .button, - .field.has-addons .control:first-child:not(:only-child) .input, - .field.has-addons .control:first-child:not(:only-child) #documenter .docs-sidebar form.docs-search > input, - #documenter .docs-sidebar .field.has-addons .control:first-child:not(:only-child) form.docs-search > input, - .field.has-addons .control:first-child:not(:only-child) .select select { - border-bottom-right-radius: 0; - border-top-right-radius: 0; } - .field.has-addons .control:last-child:not(:only-child) .button, - .field.has-addons .control:last-child:not(:only-child) .input, - .field.has-addons .control:last-child:not(:only-child) #documenter .docs-sidebar form.docs-search > input, - #documenter .docs-sidebar .field.has-addons .control:last-child:not(:only-child) form.docs-search > input, - .field.has-addons .control:last-child:not(:only-child) .select select { - border-bottom-left-radius: 0; - border-top-left-radius: 0; } - .field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered, - .field.has-addons .control .input:not([disabled]):hover, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):hover, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):hover, - .field.has-addons .control .input:not([disabled]).is-hovered, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-hovered, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-hovered, - .field.has-addons .control .select select:not([disabled]):hover, - .field.has-addons .control .select select:not([disabled]).is-hovered { - z-index: 2; } - .field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active, - .field.has-addons .control .input:not([disabled]):focus, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):focus, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):focus, - .field.has-addons .control .input:not([disabled]).is-focused, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-focused, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-focused, - .field.has-addons .control .input:not([disabled]):active, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):active, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):active, - .field.has-addons .control .input:not([disabled]).is-active, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-active, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-active, - .field.has-addons .control .select select:not([disabled]):focus, - .field.has-addons .control .select select:not([disabled]).is-focused, - .field.has-addons .control .select select:not([disabled]):active, - .field.has-addons .control .select select:not([disabled]).is-active { - z-index: 3; } - .field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover, - .field.has-addons .control .input:not([disabled]):focus:hover, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):focus:hover, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):focus:hover, - .field.has-addons .control .input:not([disabled]).is-focused:hover, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-focused:hover, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-focused:hover, - .field.has-addons .control .input:not([disabled]):active:hover, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]):active:hover, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]):active:hover, - .field.has-addons .control .input:not([disabled]).is-active:hover, - .field.has-addons .control #documenter .docs-sidebar form.docs-search > input:not([disabled]).is-active:hover, - #documenter .docs-sidebar .field.has-addons .control form.docs-search > input:not([disabled]).is-active:hover, - .field.has-addons .control .select select:not([disabled]):focus:hover, - .field.has-addons .control .select select:not([disabled]).is-focused:hover, - .field.has-addons .control .select select:not([disabled]):active:hover, - .field.has-addons .control .select select:not([disabled]).is-active:hover { - z-index: 4; } - .field.has-addons .control.is-expanded { - flex-grow: 1; - flex-shrink: 1; } - .field.has-addons.has-addons-centered { - justify-content: center; } - .field.has-addons.has-addons-right { - justify-content: flex-end; } - .field.has-addons.has-addons-fullwidth .control { - flex-grow: 1; - flex-shrink: 0; } - -.field.is-grouped { - display: flex; - justify-content: flex-start; } - .field.is-grouped > .control { - flex-shrink: 0; } - .field.is-grouped > .control:not(:last-child) { - margin-bottom: 0; - margin-right: 0.75rem; } - .field.is-grouped > .control.is-expanded { - flex-grow: 1; - flex-shrink: 1; } - .field.is-grouped.is-grouped-centered { - justify-content: center; } - .field.is-grouped.is-grouped-right { - justify-content: flex-end; } - .field.is-grouped.is-grouped-multiline { - flex-wrap: wrap; } - .field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) { - margin-bottom: 0.75rem; } - .field.is-grouped.is-grouped-multiline:last-child { - margin-bottom: -0.75rem; } - .field.is-grouped.is-grouped-multiline:not(:last-child) { - margin-bottom: 0; } - -@media screen and (min-width: 769px), print { - .field.is-horizontal { - display: flex; } } - -.field-label .label { - font-size: inherit; } - -@media screen and (max-width: 768px) { - .field-label { - margin-bottom: 0.5rem; } } - -@media screen and (min-width: 769px), print { - .field-label { - flex-basis: 0; - flex-grow: 1; - flex-shrink: 0; - margin-right: 1.5rem; - text-align: right; } - .field-label.is-small, #documenter .docs-sidebar form.docs-search > input.field-label { - font-size: 0.75rem; - padding-top: 0.375em; } - .field-label.is-normal { - padding-top: 0.375em; } - .field-label.is-medium { - font-size: 1.25rem; - padding-top: 0.375em; } - .field-label.is-large { - font-size: 1.5rem; - padding-top: 0.375em; } } - -.field-body .field .field { - margin-bottom: 0; } - -@media screen and (min-width: 769px), print { - .field-body { - display: flex; - flex-basis: 0; - flex-grow: 5; - flex-shrink: 1; } - .field-body .field { - margin-bottom: 0; } - .field-body > .field { - flex-shrink: 1; } - .field-body > .field:not(.is-narrow) { - flex-grow: 1; } - .field-body > .field:not(:last-child) { - margin-right: 0.75rem; } } - -.control { - box-sizing: border-box; - clear: both; - font-size: 1rem; - position: relative; - text-align: left; } - .control.has-icons-left .input:focus ~ .icon, .control.has-icons-left #documenter .docs-sidebar form.docs-search > input:focus ~ .icon, #documenter .docs-sidebar .control.has-icons-left form.docs-search > input:focus ~ .icon, - .control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon, .control.has-icons-right #documenter .docs-sidebar form.docs-search > input:focus ~ .icon, #documenter .docs-sidebar .control.has-icons-right form.docs-search > input:focus ~ .icon, - .control.has-icons-right .select:focus ~ .icon { - color: #7a7a7a; } - .control.has-icons-left .input.is-small ~ .icon, .control.has-icons-left #documenter .docs-sidebar form.docs-search > input ~ .icon, #documenter .docs-sidebar .control.has-icons-left form.docs-search > input ~ .icon, - .control.has-icons-left .select.is-small ~ .icon, - .control.has-icons-left #documenter .docs-sidebar form.docs-search > input.select ~ .icon, - #documenter .docs-sidebar .control.has-icons-left form.docs-search > input.select ~ .icon, .control.has-icons-right .input.is-small ~ .icon, .control.has-icons-right #documenter .docs-sidebar form.docs-search > input ~ .icon, #documenter .docs-sidebar .control.has-icons-right form.docs-search > input ~ .icon, - .control.has-icons-right .select.is-small ~ .icon, - .control.has-icons-right #documenter .docs-sidebar form.docs-search > input.select ~ .icon, - #documenter .docs-sidebar .control.has-icons-right form.docs-search > input.select ~ .icon { - font-size: 0.75rem; } - .control.has-icons-left .input.is-medium ~ .icon, .control.has-icons-left #documenter .docs-sidebar form.docs-search > input.is-medium ~ .icon, #documenter .docs-sidebar .control.has-icons-left form.docs-search > input.is-medium ~ .icon, - .control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon, .control.has-icons-right #documenter .docs-sidebar form.docs-search > input.is-medium ~ .icon, #documenter .docs-sidebar .control.has-icons-right form.docs-search > input.is-medium ~ .icon, - .control.has-icons-right .select.is-medium ~ .icon { - font-size: 1.25rem; } - .control.has-icons-left .input.is-large ~ .icon, .control.has-icons-left #documenter .docs-sidebar form.docs-search > input.is-large ~ .icon, #documenter .docs-sidebar .control.has-icons-left form.docs-search > input.is-large ~ .icon, - .control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon, .control.has-icons-right #documenter .docs-sidebar form.docs-search > input.is-large ~ .icon, #documenter .docs-sidebar .control.has-icons-right form.docs-search > input.is-large ~ .icon, - .control.has-icons-right .select.is-large ~ .icon { - font-size: 1.5rem; } - .control.has-icons-left .icon, .control.has-icons-right .icon { - color: #dbdbdb; - height: 2.25em; - pointer-events: none; - position: absolute; - top: 0; - width: 2.25em; - z-index: 4; } - .control.has-icons-left .input, .control.has-icons-left #documenter .docs-sidebar form.docs-search > input, #documenter .docs-sidebar .control.has-icons-left form.docs-search > input, - .control.has-icons-left .select select { - padding-left: 2.25em; } - .control.has-icons-left .icon.is-left { - left: 0; } - .control.has-icons-right .input, .control.has-icons-right #documenter .docs-sidebar form.docs-search > input, #documenter .docs-sidebar .control.has-icons-right form.docs-search > input, - .control.has-icons-right .select select { - padding-right: 2.25em; } - .control.has-icons-right .icon.is-right { - right: 0; } - .control.is-loading::after { - position: absolute !important; - right: 0.625em; - top: 0.625em; - z-index: 4; } - .control.is-loading.is-small:after, #documenter .docs-sidebar form.docs-search > input.control.is-loading:after { - font-size: 0.75rem; } - .control.is-loading.is-medium:after { - font-size: 1.25rem; } - .control.is-loading.is-large:after { - font-size: 1.5rem; } - -.breadcrumb { - font-size: 1rem; - white-space: nowrap; } - .breadcrumb a { - align-items: center; - color: #2e63b8; - display: flex; - justify-content: center; - padding: 0 0.75em; } - .breadcrumb a:hover { - color: #363636; } - .breadcrumb li { - align-items: center; - display: flex; } - .breadcrumb li:first-child a { - padding-left: 0; } - .breadcrumb li.is-active a { - color: #222222; - cursor: default; - pointer-events: none; } - .breadcrumb li + li::before { - color: #b5b5b5; - content: "\0002f"; } - .breadcrumb ul, - .breadcrumb ol { - align-items: flex-start; - display: flex; - flex-wrap: wrap; - justify-content: flex-start; } - .breadcrumb .icon:first-child { - margin-right: 0.5em; } - .breadcrumb .icon:last-child { - margin-left: 0.5em; } - .breadcrumb.is-centered ol, - .breadcrumb.is-centered ul { - justify-content: center; } - .breadcrumb.is-right ol, - .breadcrumb.is-right ul { - justify-content: flex-end; } - .breadcrumb.is-small, #documenter .docs-sidebar form.docs-search > input.breadcrumb { - font-size: 0.75rem; } - .breadcrumb.is-medium { - font-size: 1.25rem; } - .breadcrumb.is-large { - font-size: 1.5rem; } - .breadcrumb.has-arrow-separator li + li::before { - content: "\02192"; } - .breadcrumb.has-bullet-separator li + li::before { - content: "\02022"; } - .breadcrumb.has-dot-separator li + li::before { - content: "\000b7"; } - .breadcrumb.has-succeeds-separator li + li::before { - content: "\0227B"; } - -.card { - background-color: white; - box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - color: #222222; - max-width: 100%; - position: relative; } - -.card-header { - background-color: transparent; - align-items: stretch; - box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1); - display: flex; } - -.card-header-title { - align-items: center; - color: #222222; - display: flex; - flex-grow: 1; - font-weight: 700; - padding: 0.75rem; } - .card-header-title.is-centered { - justify-content: center; } - -.card-header-icon { - align-items: center; - cursor: pointer; - display: flex; - justify-content: center; - padding: 0.75rem; } - -.card-image { - display: block; - position: relative; } - -.card-content { - background-color: transparent; - padding: 1rem 1.25rem; } - -.card-footer { - background-color: transparent; - border-top: 1px solid #dbdbdb; - align-items: stretch; - display: flex; } - -.card-footer-item { - align-items: center; - display: flex; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 0; - justify-content: center; - padding: 0.75rem; } - .card-footer-item:not(:last-child) { - border-right: 1px solid #dbdbdb; } - -.card .media:not(:last-child) { - margin-bottom: 1.5rem; } - -.dropdown { - display: inline-flex; - position: relative; - vertical-align: top; } - .dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu { - display: block; } - .dropdown.is-right .dropdown-menu { - left: auto; - right: 0; } - .dropdown.is-up .dropdown-menu { - bottom: 100%; - padding-bottom: 4px; - padding-top: initial; - top: auto; } - -.dropdown-menu { - display: none; - left: 0; - min-width: 12rem; - padding-top: 4px; - position: absolute; - top: 100%; - z-index: 20; } - -.dropdown-content { - background-color: white; - border-radius: 4px; - box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - padding-bottom: 0.5rem; - padding-top: 0.5rem; } - -.dropdown-item { - color: #4a4a4a; - display: block; - font-size: 0.875rem; - line-height: 1.5; - padding: 0.375rem 1rem; - position: relative; } - -a.dropdown-item, -button.dropdown-item { - padding-right: 3rem; - text-align: left; - white-space: nowrap; - width: 100%; } - a.dropdown-item:hover, - button.dropdown-item:hover { - background-color: whitesmoke; - color: #0a0a0a; } - a.dropdown-item.is-active, - button.dropdown-item.is-active { - background-color: #2e63b8; - color: #fff; } - -.dropdown-divider { - background-color: #dbdbdb; - border: none; - display: block; - height: 1px; - margin: 0.5rem 0; } - -.level { - align-items: center; - justify-content: space-between; } - .level code { - border-radius: 4px; } - .level img { - display: inline-block; - vertical-align: top; } - .level.is-mobile { - display: flex; } - .level.is-mobile .level-left, - .level.is-mobile .level-right { - display: flex; } - .level.is-mobile .level-left + .level-right { - margin-top: 0; } - .level.is-mobile .level-item:not(:last-child) { - margin-bottom: 0; - margin-right: 0.75rem; } - .level.is-mobile .level-item:not(.is-narrow) { - flex-grow: 1; } - @media screen and (min-width: 769px), print { - .level { - display: flex; } - .level > .level-item:not(.is-narrow) { - flex-grow: 1; } } - -.level-item { - align-items: center; - display: flex; - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; - justify-content: center; } - .level-item .title, - .level-item .subtitle { - margin-bottom: 0; } - @media screen and (max-width: 768px) { - .level-item:not(:last-child) { - margin-bottom: 0.75rem; } } - -.level-left, -.level-right { - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; } - .level-left .level-item.is-flexible, - .level-right .level-item.is-flexible { - flex-grow: 1; } - @media screen and (min-width: 769px), print { - .level-left .level-item:not(:last-child), - .level-right .level-item:not(:last-child) { - margin-right: 0.75rem; } } - -.level-left { - align-items: center; - justify-content: flex-start; } - @media screen and (max-width: 768px) { - .level-left + .level-right { - margin-top: 1.5rem; } } - @media screen and (min-width: 769px), print { - .level-left { - display: flex; } } - -.level-right { - align-items: center; - justify-content: flex-end; } - @media screen and (min-width: 769px), print { - .level-right { - display: flex; } } - -.list { - background-color: white; - border-radius: 4px; - box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); } - -.list-item { - display: block; - padding: 0.5em 1em; } - .list-item:not(a) { - color: #222222; } - .list-item:first-child { - border-top-left-radius: 4px; - border-top-right-radius: 4px; } - .list-item:last-child { - border-bottom-left-radius: 4px; - border-bottom-right-radius: 4px; } - .list-item:not(:last-child) { - border-bottom: 1px solid #dbdbdb; } - .list-item.is-active { - background-color: #2e63b8; - color: #fff; } - -a.list-item { - background-color: whitesmoke; - cursor: pointer; } - -.media { - align-items: flex-start; - display: flex; - text-align: left; } - .media .content:not(:last-child) { - margin-bottom: 0.75rem; } - .media .media { - border-top: 1px solid rgba(219, 219, 219, 0.5); - display: flex; - padding-top: 0.75rem; } - .media .media .content:not(:last-child), - .media .media .control:not(:last-child) { - margin-bottom: 0.5rem; } - .media .media .media { - padding-top: 0.5rem; } - .media .media .media + .media { - margin-top: 0.5rem; } - .media + .media { - border-top: 1px solid rgba(219, 219, 219, 0.5); - margin-top: 1rem; - padding-top: 1rem; } - .media.is-large + .media { - margin-top: 1.5rem; - padding-top: 1.5rem; } - -.media-left, -.media-right { - flex-basis: auto; - flex-grow: 0; - flex-shrink: 0; } - -.media-left { - margin-right: 1rem; } - -.media-right { - margin-left: 1rem; } - -.media-content { - flex-basis: auto; - flex-grow: 1; - flex-shrink: 1; - text-align: left; } - -@media screen and (max-width: 768px) { - .media-content { - overflow-x: auto; } } - -.menu { - font-size: 1rem; } - .menu.is-small, #documenter .docs-sidebar form.docs-search > input.menu { - font-size: 0.75rem; } - .menu.is-medium { - font-size: 1.25rem; } - .menu.is-large { - font-size: 1.5rem; } - -.menu-list { - line-height: 1.25; } - .menu-list a { - border-radius: 2px; - color: #222222; - display: block; - padding: 0.5em 0.75em; } - .menu-list a:hover { - background-color: whitesmoke; - color: #222222; } - .menu-list a.is-active { - background-color: #2e63b8; - color: #fff; } - .menu-list li ul { - border-left: 1px solid #dbdbdb; - margin: 0.75em; - padding-left: 0.75em; } - -.menu-label { - color: #7a7a7a; - font-size: 0.75em; - letter-spacing: 0.1em; - text-transform: uppercase; } - .menu-label:not(:first-child) { - margin-top: 1em; } - .menu-label:not(:last-child) { - margin-bottom: 1em; } - -.message { - background-color: whitesmoke; - border-radius: 4px; - font-size: 1rem; } - .message strong { - color: currentColor; } - .message a:not(.button):not(.tag):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; } - .message.is-small, #documenter .docs-sidebar form.docs-search > input.message { - font-size: 0.75rem; } - .message.is-medium { - font-size: 1.25rem; } - .message.is-large { - font-size: 1.5rem; } - .message.is-white { - background-color: white; } - .message.is-white .message-header { - background-color: white; - color: #0a0a0a; } - .message.is-white .message-body { - border-color: white; - color: #4d4d4d; } - .message.is-black { - background-color: #fafafa; } - .message.is-black .message-header { - background-color: #0a0a0a; - color: white; } - .message.is-black .message-body { - border-color: #0a0a0a; - color: #090909; } - .message.is-light { - background-color: #fafafa; } - .message.is-light .message-header { - background-color: whitesmoke; - color: #363636; } - .message.is-light .message-body { - border-color: whitesmoke; - color: #505050; } - .message.is-dark, .content kbd.message { - background-color: #fafafa; } - .message.is-dark .message-header, .content kbd.message .message-header { - background-color: #363636; - color: whitesmoke; } - .message.is-dark .message-body, .content kbd.message .message-body { - border-color: #363636; - color: #2a2a2a; } - .message.is-primary, .docstring > section > a.message.docs-sourcelink { - background-color: #f6fbfd; } - .message.is-primary .message-header, .docstring > section > a.message.docs-sourcelink .message-header { - background-color: #4eb5de; - color: #fff; } - .message.is-primary .message-body, .docstring > section > a.message.docs-sourcelink .message-body { - border-color: #4eb5de; - color: #1f556a; } - .message.is-link { - background-color: #f7f9fd; } - .message.is-link .message-header { - background-color: #2e63b8; - color: #fff; } - .message.is-link .message-body { - border-color: #2e63b8; - color: #264981; } - .message.is-info { - background-color: #f6fbfe; } - .message.is-info .message-header { - background-color: #209cee; - color: #fff; } - .message.is-info .message-body { - border-color: #209cee; - color: #12537d; } - .message.is-success { - background-color: #f6fdf9; } - .message.is-success .message-header { - background-color: #22c35b; - color: #fff; } - .message.is-success .message-body { - border-color: #22c35b; - color: #0f361d; } - .message.is-warning { - background-color: #fffdf5; } - .message.is-warning .message-header { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); } - .message.is-warning .message-body { - border-color: #ffdd57; - color: #3c3108; } - .message.is-danger { - background-color: #fff5f5; } - .message.is-danger .message-header { - background-color: #da0b00; - color: #fff; } - .message.is-danger .message-body { - border-color: #da0b00; - color: #9b0c04; } - -.message-header { - align-items: center; - background-color: #222222; - border-radius: 4px 4px 0 0; - color: #fff; - display: flex; - font-weight: 700; - justify-content: space-between; - line-height: 1.25; - padding: 0.75em; - position: relative; } - .message-header .delete { - flex-grow: 0; - flex-shrink: 0; - margin-left: 0.75em; } - .message-header + .message-body { - border-width: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.message-body { - border-color: #dbdbdb; - border-radius: 4px; - border-style: solid; - border-width: 0 0 0 4px; - color: #222222; - padding: 1em 1.25em; } - .message-body code, - .message-body pre { - background-color: white; } - .message-body pre code { - background-color: transparent; } - -.modal { - align-items: center; - display: none; - flex-direction: column; - justify-content: center; - overflow: hidden; - position: fixed; - z-index: 40; } - .modal.is-active { - display: flex; } - -.modal-background { - background-color: rgba(10, 10, 10, 0.86); } - -.modal-content, -.modal-card { - margin: 0 20px; - max-height: calc(100vh - 160px); - overflow: auto; - position: relative; - width: 100%; } - @media screen and (min-width: 769px), print { - .modal-content, - .modal-card { - margin: 0 auto; - max-height: calc(100vh - 40px); - width: 640px; } } - -.modal-close { - background: none; - height: 40px; - position: fixed; - right: 20px; - top: 20px; - width: 40px; } - -.modal-card { - display: flex; - flex-direction: column; - max-height: calc(100vh - 40px); - overflow: hidden; - -ms-overflow-y: visible; } - -.modal-card-head, -.modal-card-foot { - align-items: center; - background-color: whitesmoke; - display: flex; - flex-shrink: 0; - justify-content: flex-start; - padding: 20px; - position: relative; } - -.modal-card-head { - border-bottom: 1px solid #dbdbdb; - border-top-left-radius: 6px; - border-top-right-radius: 6px; } - -.modal-card-title { - color: #222222; - flex-grow: 1; - flex-shrink: 0; - font-size: 1.5rem; - line-height: 1; } - -.modal-card-foot { - border-bottom-left-radius: 6px; - border-bottom-right-radius: 6px; - border-top: 1px solid #dbdbdb; } - .modal-card-foot .button:not(:last-child) { - margin-right: 0.5em; } - -.modal-card-body { - -webkit-overflow-scrolling: touch; - background-color: white; - flex-grow: 1; - flex-shrink: 1; - overflow: auto; - padding: 20px; } - -.navbar { - background-color: white; - min-height: 3.25rem; - position: relative; - z-index: 30; } - .navbar.is-white { - background-color: white; - color: #0a0a0a; } - .navbar.is-white .navbar-brand > .navbar-item, - .navbar.is-white .navbar-brand .navbar-link { - color: #0a0a0a; } - .navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active, - .navbar.is-white .navbar-brand .navbar-link:focus, - .navbar.is-white .navbar-brand .navbar-link:hover, - .navbar.is-white .navbar-brand .navbar-link.is-active { - background-color: #f2f2f2; - color: #0a0a0a; } - .navbar.is-white .navbar-brand .navbar-link::after { - border-color: #0a0a0a; } - .navbar.is-white .navbar-burger { - color: #0a0a0a; } - @media screen and (min-width: 1056px) { - .navbar.is-white .navbar-start > .navbar-item, - .navbar.is-white .navbar-start .navbar-link, - .navbar.is-white .navbar-end > .navbar-item, - .navbar.is-white .navbar-end .navbar-link { - color: #0a0a0a; } - .navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active, - .navbar.is-white .navbar-start .navbar-link:focus, - .navbar.is-white .navbar-start .navbar-link:hover, - .navbar.is-white .navbar-start .navbar-link.is-active, - .navbar.is-white .navbar-end > a.navbar-item:focus, - .navbar.is-white .navbar-end > a.navbar-item:hover, - .navbar.is-white .navbar-end > a.navbar-item.is-active, - .navbar.is-white .navbar-end .navbar-link:focus, - .navbar.is-white .navbar-end .navbar-link:hover, - .navbar.is-white .navbar-end .navbar-link.is-active { - background-color: #f2f2f2; - color: #0a0a0a; } - .navbar.is-white .navbar-start .navbar-link::after, - .navbar.is-white .navbar-end .navbar-link::after { - border-color: #0a0a0a; } - .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #f2f2f2; - color: #0a0a0a; } - .navbar.is-white .navbar-dropdown a.navbar-item.is-active { - background-color: white; - color: #0a0a0a; } } - .navbar.is-black { - background-color: #0a0a0a; - color: white; } - .navbar.is-black .navbar-brand > .navbar-item, - .navbar.is-black .navbar-brand .navbar-link { - color: white; } - .navbar.is-black .navbar-brand > a.navbar-item:focus, .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active, - .navbar.is-black .navbar-brand .navbar-link:focus, - .navbar.is-black .navbar-brand .navbar-link:hover, - .navbar.is-black .navbar-brand .navbar-link.is-active { - background-color: black; - color: white; } - .navbar.is-black .navbar-brand .navbar-link::after { - border-color: white; } - .navbar.is-black .navbar-burger { - color: white; } - @media screen and (min-width: 1056px) { - .navbar.is-black .navbar-start > .navbar-item, - .navbar.is-black .navbar-start .navbar-link, - .navbar.is-black .navbar-end > .navbar-item, - .navbar.is-black .navbar-end .navbar-link { - color: white; } - .navbar.is-black .navbar-start > a.navbar-item:focus, .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active, - .navbar.is-black .navbar-start .navbar-link:focus, - .navbar.is-black .navbar-start .navbar-link:hover, - .navbar.is-black .navbar-start .navbar-link.is-active, - .navbar.is-black .navbar-end > a.navbar-item:focus, - .navbar.is-black .navbar-end > a.navbar-item:hover, - .navbar.is-black .navbar-end > a.navbar-item.is-active, - .navbar.is-black .navbar-end .navbar-link:focus, - .navbar.is-black .navbar-end .navbar-link:hover, - .navbar.is-black .navbar-end .navbar-link.is-active { - background-color: black; - color: white; } - .navbar.is-black .navbar-start .navbar-link::after, - .navbar.is-black .navbar-end .navbar-link::after { - border-color: white; } - .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link { - background-color: black; - color: white; } - .navbar.is-black .navbar-dropdown a.navbar-item.is-active { - background-color: #0a0a0a; - color: white; } } - .navbar.is-light { - background-color: whitesmoke; - color: #363636; } - .navbar.is-light .navbar-brand > .navbar-item, - .navbar.is-light .navbar-brand .navbar-link { - color: #363636; } - .navbar.is-light .navbar-brand > a.navbar-item:focus, .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active, - .navbar.is-light .navbar-brand .navbar-link:focus, - .navbar.is-light .navbar-brand .navbar-link:hover, - .navbar.is-light .navbar-brand .navbar-link.is-active { - background-color: #e8e8e8; - color: #363636; } - .navbar.is-light .navbar-brand .navbar-link::after { - border-color: #363636; } - .navbar.is-light .navbar-burger { - color: #363636; } - @media screen and (min-width: 1056px) { - .navbar.is-light .navbar-start > .navbar-item, - .navbar.is-light .navbar-start .navbar-link, - .navbar.is-light .navbar-end > .navbar-item, - .navbar.is-light .navbar-end .navbar-link { - color: #363636; } - .navbar.is-light .navbar-start > a.navbar-item:focus, .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active, - .navbar.is-light .navbar-start .navbar-link:focus, - .navbar.is-light .navbar-start .navbar-link:hover, - .navbar.is-light .navbar-start .navbar-link.is-active, - .navbar.is-light .navbar-end > a.navbar-item:focus, - .navbar.is-light .navbar-end > a.navbar-item:hover, - .navbar.is-light .navbar-end > a.navbar-item.is-active, - .navbar.is-light .navbar-end .navbar-link:focus, - .navbar.is-light .navbar-end .navbar-link:hover, - .navbar.is-light .navbar-end .navbar-link.is-active { - background-color: #e8e8e8; - color: #363636; } - .navbar.is-light .navbar-start .navbar-link::after, - .navbar.is-light .navbar-end .navbar-link::after { - border-color: #363636; } - .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #e8e8e8; - color: #363636; } - .navbar.is-light .navbar-dropdown a.navbar-item.is-active { - background-color: whitesmoke; - color: #363636; } } - .navbar.is-dark, .content kbd.navbar { - background-color: #363636; - color: whitesmoke; } - .navbar.is-dark .navbar-brand > .navbar-item, .content kbd.navbar .navbar-brand > .navbar-item, - .navbar.is-dark .navbar-brand .navbar-link, - .content kbd.navbar .navbar-brand .navbar-link { - color: whitesmoke; } - .navbar.is-dark .navbar-brand > a.navbar-item:focus, .content kbd.navbar .navbar-brand > a.navbar-item:focus, .navbar.is-dark .navbar-brand > a.navbar-item:hover, .content kbd.navbar .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active, .content kbd.navbar .navbar-brand > a.navbar-item.is-active, - .navbar.is-dark .navbar-brand .navbar-link:focus, - .content kbd.navbar .navbar-brand .navbar-link:focus, - .navbar.is-dark .navbar-brand .navbar-link:hover, - .content kbd.navbar .navbar-brand .navbar-link:hover, - .navbar.is-dark .navbar-brand .navbar-link.is-active, - .content kbd.navbar .navbar-brand .navbar-link.is-active { - background-color: #292929; - color: whitesmoke; } - .navbar.is-dark .navbar-brand .navbar-link::after, .content kbd.navbar .navbar-brand .navbar-link::after { - border-color: whitesmoke; } - .navbar.is-dark .navbar-burger, .content kbd.navbar .navbar-burger { - color: whitesmoke; } - @media screen and (min-width: 1056px) { - .navbar.is-dark .navbar-start > .navbar-item, .content kbd.navbar .navbar-start > .navbar-item, - .navbar.is-dark .navbar-start .navbar-link, - .content kbd.navbar .navbar-start .navbar-link, - .navbar.is-dark .navbar-end > .navbar-item, - .content kbd.navbar .navbar-end > .navbar-item, - .navbar.is-dark .navbar-end .navbar-link, - .content kbd.navbar .navbar-end .navbar-link { - color: whitesmoke; } - .navbar.is-dark .navbar-start > a.navbar-item:focus, .content kbd.navbar .navbar-start > a.navbar-item:focus, .navbar.is-dark .navbar-start > a.navbar-item:hover, .content kbd.navbar .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active, .content kbd.navbar .navbar-start > a.navbar-item.is-active, - .navbar.is-dark .navbar-start .navbar-link:focus, - .content kbd.navbar .navbar-start .navbar-link:focus, - .navbar.is-dark .navbar-start .navbar-link:hover, - .content kbd.navbar .navbar-start .navbar-link:hover, - .navbar.is-dark .navbar-start .navbar-link.is-active, - .content kbd.navbar .navbar-start .navbar-link.is-active, - .navbar.is-dark .navbar-end > a.navbar-item:focus, - .content kbd.navbar .navbar-end > a.navbar-item:focus, - .navbar.is-dark .navbar-end > a.navbar-item:hover, - .content kbd.navbar .navbar-end > a.navbar-item:hover, - .navbar.is-dark .navbar-end > a.navbar-item.is-active, - .content kbd.navbar .navbar-end > a.navbar-item.is-active, - .navbar.is-dark .navbar-end .navbar-link:focus, - .content kbd.navbar .navbar-end .navbar-link:focus, - .navbar.is-dark .navbar-end .navbar-link:hover, - .content kbd.navbar .navbar-end .navbar-link:hover, - .navbar.is-dark .navbar-end .navbar-link.is-active, - .content kbd.navbar .navbar-end .navbar-link.is-active { - background-color: #292929; - color: whitesmoke; } - .navbar.is-dark .navbar-start .navbar-link::after, .content kbd.navbar .navbar-start .navbar-link::after, - .navbar.is-dark .navbar-end .navbar-link::after, - .content kbd.navbar .navbar-end .navbar-link::after { - border-color: whitesmoke; } - .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link, .content kbd.navbar .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link, - .content kbd.navbar .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link, - .content kbd.navbar .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #292929; - color: whitesmoke; } - .navbar.is-dark .navbar-dropdown a.navbar-item.is-active, .content kbd.navbar .navbar-dropdown a.navbar-item.is-active { - background-color: #363636; - color: whitesmoke; } } - .navbar.is-primary, .docstring > section > a.navbar.docs-sourcelink { - background-color: #4eb5de; - color: #fff; } - .navbar.is-primary .navbar-brand > .navbar-item, .docstring > section > a.navbar.docs-sourcelink .navbar-brand > .navbar-item, - .navbar.is-primary .navbar-brand .navbar-link, - .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link { - color: #fff; } - .navbar.is-primary .navbar-brand > a.navbar-item:focus, .docstring > section > a.navbar.docs-sourcelink .navbar-brand > a.navbar-item:focus, .navbar.is-primary .navbar-brand > a.navbar-item:hover, .docstring > section > a.navbar.docs-sourcelink .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active, .docstring > section > a.navbar.docs-sourcelink .navbar-brand > a.navbar-item.is-active, - .navbar.is-primary .navbar-brand .navbar-link:focus, - .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link:focus, - .navbar.is-primary .navbar-brand .navbar-link:hover, - .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link:hover, - .navbar.is-primary .navbar-brand .navbar-link.is-active, - .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link.is-active { - background-color: #39acda; - color: #fff; } - .navbar.is-primary .navbar-brand .navbar-link::after, .docstring > section > a.navbar.docs-sourcelink .navbar-brand .navbar-link::after { - border-color: #fff; } - .navbar.is-primary .navbar-burger, .docstring > section > a.navbar.docs-sourcelink .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - .navbar.is-primary .navbar-start > .navbar-item, .docstring > section > a.navbar.docs-sourcelink .navbar-start > .navbar-item, - .navbar.is-primary .navbar-start .navbar-link, - .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link, - .navbar.is-primary .navbar-end > .navbar-item, - .docstring > section > a.navbar.docs-sourcelink .navbar-end > .navbar-item, - .navbar.is-primary .navbar-end .navbar-link, - .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link { - color: #fff; } - .navbar.is-primary .navbar-start > a.navbar-item:focus, .docstring > section > a.navbar.docs-sourcelink .navbar-start > a.navbar-item:focus, .navbar.is-primary .navbar-start > a.navbar-item:hover, .docstring > section > a.navbar.docs-sourcelink .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active, .docstring > section > a.navbar.docs-sourcelink .navbar-start > a.navbar-item.is-active, - .navbar.is-primary .navbar-start .navbar-link:focus, - .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link:focus, - .navbar.is-primary .navbar-start .navbar-link:hover, - .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link:hover, - .navbar.is-primary .navbar-start .navbar-link.is-active, - .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link.is-active, - .navbar.is-primary .navbar-end > a.navbar-item:focus, - .docstring > section > a.navbar.docs-sourcelink .navbar-end > a.navbar-item:focus, - .navbar.is-primary .navbar-end > a.navbar-item:hover, - .docstring > section > a.navbar.docs-sourcelink .navbar-end > a.navbar-item:hover, - .navbar.is-primary .navbar-end > a.navbar-item.is-active, - .docstring > section > a.navbar.docs-sourcelink .navbar-end > a.navbar-item.is-active, - .navbar.is-primary .navbar-end .navbar-link:focus, - .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link:focus, - .navbar.is-primary .navbar-end .navbar-link:hover, - .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link:hover, - .navbar.is-primary .navbar-end .navbar-link.is-active, - .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link.is-active { - background-color: #39acda; - color: #fff; } - .navbar.is-primary .navbar-start .navbar-link::after, .docstring > section > a.navbar.docs-sourcelink .navbar-start .navbar-link::after, - .navbar.is-primary .navbar-end .navbar-link::after, - .docstring > section > a.navbar.docs-sourcelink .navbar-end .navbar-link::after { - border-color: #fff; } - .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link, .docstring > section > a.navbar.docs-sourcelink .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link, - .docstring > section > a.navbar.docs-sourcelink .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link, - .docstring > section > a.navbar.docs-sourcelink .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #39acda; - color: #fff; } - .navbar.is-primary .navbar-dropdown a.navbar-item.is-active, .docstring > section > a.navbar.docs-sourcelink .navbar-dropdown a.navbar-item.is-active { - background-color: #4eb5de; - color: #fff; } } - .navbar.is-link { - background-color: #2e63b8; - color: #fff; } - .navbar.is-link .navbar-brand > .navbar-item, - .navbar.is-link .navbar-brand .navbar-link { - color: #fff; } - .navbar.is-link .navbar-brand > a.navbar-item:focus, .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active, - .navbar.is-link .navbar-brand .navbar-link:focus, - .navbar.is-link .navbar-brand .navbar-link:hover, - .navbar.is-link .navbar-brand .navbar-link.is-active { - background-color: #2958a4; - color: #fff; } - .navbar.is-link .navbar-brand .navbar-link::after { - border-color: #fff; } - .navbar.is-link .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - .navbar.is-link .navbar-start > .navbar-item, - .navbar.is-link .navbar-start .navbar-link, - .navbar.is-link .navbar-end > .navbar-item, - .navbar.is-link .navbar-end .navbar-link { - color: #fff; } - .navbar.is-link .navbar-start > a.navbar-item:focus, .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active, - .navbar.is-link .navbar-start .navbar-link:focus, - .navbar.is-link .navbar-start .navbar-link:hover, - .navbar.is-link .navbar-start .navbar-link.is-active, - .navbar.is-link .navbar-end > a.navbar-item:focus, - .navbar.is-link .navbar-end > a.navbar-item:hover, - .navbar.is-link .navbar-end > a.navbar-item.is-active, - .navbar.is-link .navbar-end .navbar-link:focus, - .navbar.is-link .navbar-end .navbar-link:hover, - .navbar.is-link .navbar-end .navbar-link.is-active { - background-color: #2958a4; - color: #fff; } - .navbar.is-link .navbar-start .navbar-link::after, - .navbar.is-link .navbar-end .navbar-link::after { - border-color: #fff; } - .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #2958a4; - color: #fff; } - .navbar.is-link .navbar-dropdown a.navbar-item.is-active { - background-color: #2e63b8; - color: #fff; } } - .navbar.is-info { - background-color: #209cee; - color: #fff; } - .navbar.is-info .navbar-brand > .navbar-item, - .navbar.is-info .navbar-brand .navbar-link { - color: #fff; } - .navbar.is-info .navbar-brand > a.navbar-item:focus, .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active, - .navbar.is-info .navbar-brand .navbar-link:focus, - .navbar.is-info .navbar-brand .navbar-link:hover, - .navbar.is-info .navbar-brand .navbar-link.is-active { - background-color: #1190e3; - color: #fff; } - .navbar.is-info .navbar-brand .navbar-link::after { - border-color: #fff; } - .navbar.is-info .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - .navbar.is-info .navbar-start > .navbar-item, - .navbar.is-info .navbar-start .navbar-link, - .navbar.is-info .navbar-end > .navbar-item, - .navbar.is-info .navbar-end .navbar-link { - color: #fff; } - .navbar.is-info .navbar-start > a.navbar-item:focus, .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active, - .navbar.is-info .navbar-start .navbar-link:focus, - .navbar.is-info .navbar-start .navbar-link:hover, - .navbar.is-info .navbar-start .navbar-link.is-active, - .navbar.is-info .navbar-end > a.navbar-item:focus, - .navbar.is-info .navbar-end > a.navbar-item:hover, - .navbar.is-info .navbar-end > a.navbar-item.is-active, - .navbar.is-info .navbar-end .navbar-link:focus, - .navbar.is-info .navbar-end .navbar-link:hover, - .navbar.is-info .navbar-end .navbar-link.is-active { - background-color: #1190e3; - color: #fff; } - .navbar.is-info .navbar-start .navbar-link::after, - .navbar.is-info .navbar-end .navbar-link::after { - border-color: #fff; } - .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #1190e3; - color: #fff; } - .navbar.is-info .navbar-dropdown a.navbar-item.is-active { - background-color: #209cee; - color: #fff; } } - .navbar.is-success { - background-color: #22c35b; - color: #fff; } - .navbar.is-success .navbar-brand > .navbar-item, - .navbar.is-success .navbar-brand .navbar-link { - color: #fff; } - .navbar.is-success .navbar-brand > a.navbar-item:focus, .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active, - .navbar.is-success .navbar-brand .navbar-link:focus, - .navbar.is-success .navbar-brand .navbar-link:hover, - .navbar.is-success .navbar-brand .navbar-link.is-active { - background-color: #1ead51; - color: #fff; } - .navbar.is-success .navbar-brand .navbar-link::after { - border-color: #fff; } - .navbar.is-success .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - .navbar.is-success .navbar-start > .navbar-item, - .navbar.is-success .navbar-start .navbar-link, - .navbar.is-success .navbar-end > .navbar-item, - .navbar.is-success .navbar-end .navbar-link { - color: #fff; } - .navbar.is-success .navbar-start > a.navbar-item:focus, .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active, - .navbar.is-success .navbar-start .navbar-link:focus, - .navbar.is-success .navbar-start .navbar-link:hover, - .navbar.is-success .navbar-start .navbar-link.is-active, - .navbar.is-success .navbar-end > a.navbar-item:focus, - .navbar.is-success .navbar-end > a.navbar-item:hover, - .navbar.is-success .navbar-end > a.navbar-item.is-active, - .navbar.is-success .navbar-end .navbar-link:focus, - .navbar.is-success .navbar-end .navbar-link:hover, - .navbar.is-success .navbar-end .navbar-link.is-active { - background-color: #1ead51; - color: #fff; } - .navbar.is-success .navbar-start .navbar-link::after, - .navbar.is-success .navbar-end .navbar-link::after { - border-color: #fff; } - .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #1ead51; - color: #fff; } - .navbar.is-success .navbar-dropdown a.navbar-item.is-active { - background-color: #22c35b; - color: #fff; } } - .navbar.is-warning { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); } - .navbar.is-warning .navbar-brand > .navbar-item, - .navbar.is-warning .navbar-brand .navbar-link { - color: rgba(0, 0, 0, 0.7); } - .navbar.is-warning .navbar-brand > a.navbar-item:focus, .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active, - .navbar.is-warning .navbar-brand .navbar-link:focus, - .navbar.is-warning .navbar-brand .navbar-link:hover, - .navbar.is-warning .navbar-brand .navbar-link.is-active { - background-color: #ffd83e; - color: rgba(0, 0, 0, 0.7); } - .navbar.is-warning .navbar-brand .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); } - .navbar.is-warning .navbar-burger { - color: rgba(0, 0, 0, 0.7); } - @media screen and (min-width: 1056px) { - .navbar.is-warning .navbar-start > .navbar-item, - .navbar.is-warning .navbar-start .navbar-link, - .navbar.is-warning .navbar-end > .navbar-item, - .navbar.is-warning .navbar-end .navbar-link { - color: rgba(0, 0, 0, 0.7); } - .navbar.is-warning .navbar-start > a.navbar-item:focus, .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active, - .navbar.is-warning .navbar-start .navbar-link:focus, - .navbar.is-warning .navbar-start .navbar-link:hover, - .navbar.is-warning .navbar-start .navbar-link.is-active, - .navbar.is-warning .navbar-end > a.navbar-item:focus, - .navbar.is-warning .navbar-end > a.navbar-item:hover, - .navbar.is-warning .navbar-end > a.navbar-item.is-active, - .navbar.is-warning .navbar-end .navbar-link:focus, - .navbar.is-warning .navbar-end .navbar-link:hover, - .navbar.is-warning .navbar-end .navbar-link.is-active { - background-color: #ffd83e; - color: rgba(0, 0, 0, 0.7); } - .navbar.is-warning .navbar-start .navbar-link::after, - .navbar.is-warning .navbar-end .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); } - .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #ffd83e; - color: rgba(0, 0, 0, 0.7); } - .navbar.is-warning .navbar-dropdown a.navbar-item.is-active { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); } } - .navbar.is-danger { - background-color: #da0b00; - color: #fff; } - .navbar.is-danger .navbar-brand > .navbar-item, - .navbar.is-danger .navbar-brand .navbar-link { - color: #fff; } - .navbar.is-danger .navbar-brand > a.navbar-item:focus, .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active, - .navbar.is-danger .navbar-brand .navbar-link:focus, - .navbar.is-danger .navbar-brand .navbar-link:hover, - .navbar.is-danger .navbar-brand .navbar-link.is-active { - background-color: #c10a00; - color: #fff; } - .navbar.is-danger .navbar-brand .navbar-link::after { - border-color: #fff; } - .navbar.is-danger .navbar-burger { - color: #fff; } - @media screen and (min-width: 1056px) { - .navbar.is-danger .navbar-start > .navbar-item, - .navbar.is-danger .navbar-start .navbar-link, - .navbar.is-danger .navbar-end > .navbar-item, - .navbar.is-danger .navbar-end .navbar-link { - color: #fff; } - .navbar.is-danger .navbar-start > a.navbar-item:focus, .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active, - .navbar.is-danger .navbar-start .navbar-link:focus, - .navbar.is-danger .navbar-start .navbar-link:hover, - .navbar.is-danger .navbar-start .navbar-link.is-active, - .navbar.is-danger .navbar-end > a.navbar-item:focus, - .navbar.is-danger .navbar-end > a.navbar-item:hover, - .navbar.is-danger .navbar-end > a.navbar-item.is-active, - .navbar.is-danger .navbar-end .navbar-link:focus, - .navbar.is-danger .navbar-end .navbar-link:hover, - .navbar.is-danger .navbar-end .navbar-link.is-active { - background-color: #c10a00; - color: #fff; } - .navbar.is-danger .navbar-start .navbar-link::after, - .navbar.is-danger .navbar-end .navbar-link::after { - border-color: #fff; } - .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #c10a00; - color: #fff; } - .navbar.is-danger .navbar-dropdown a.navbar-item.is-active { - background-color: #da0b00; - color: #fff; } } - .navbar > .container { - align-items: stretch; - display: flex; - min-height: 3.25rem; - width: 100%; } - .navbar.has-shadow { - box-shadow: 0 2px 0 0 whitesmoke; } - .navbar.is-fixed-bottom, .navbar.is-fixed-top { - left: 0; - position: fixed; - right: 0; - z-index: 30; } - .navbar.is-fixed-bottom { - bottom: 0; } - .navbar.is-fixed-bottom.has-shadow { - box-shadow: 0 -2px 0 0 whitesmoke; } - .navbar.is-fixed-top { - top: 0; } - -html.has-navbar-fixed-top, -body.has-navbar-fixed-top { - padding-top: 3.25rem; } - -html.has-navbar-fixed-bottom, -body.has-navbar-fixed-bottom { - padding-bottom: 3.25rem; } - -.navbar-brand, -.navbar-tabs { - align-items: stretch; - display: flex; - flex-shrink: 0; - min-height: 3.25rem; } - -.navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover { - background-color: transparent; } - -.navbar-tabs { - -webkit-overflow-scrolling: touch; - max-width: 100vw; - overflow-x: auto; - overflow-y: hidden; } - -.navbar-burger { - color: #4a4a4a; - cursor: pointer; - display: block; - height: 3.25rem; - position: relative; - width: 3.25rem; - margin-left: auto; } - .navbar-burger span { - background-color: currentColor; - display: block; - height: 1px; - left: calc(50% - 8px); - position: absolute; - transform-origin: center; - transition-duration: 86ms; - transition-property: background-color, opacity, transform; - transition-timing-function: ease-out; - width: 16px; } - .navbar-burger span:nth-child(1) { - top: calc(50% - 6px); } - .navbar-burger span:nth-child(2) { - top: calc(50% - 1px); } - .navbar-burger span:nth-child(3) { - top: calc(50% + 4px); } - .navbar-burger:hover { - background-color: rgba(0, 0, 0, 0.05); } - .navbar-burger.is-active span:nth-child(1) { - transform: translateY(5px) rotate(45deg); } - .navbar-burger.is-active span:nth-child(2) { - opacity: 0; } - .navbar-burger.is-active span:nth-child(3) { - transform: translateY(-5px) rotate(-45deg); } - -.navbar-menu { - display: none; } - -.navbar-item, -.navbar-link { - color: #4a4a4a; - display: block; - line-height: 1.5; - padding: 0.5rem 0.75rem; - position: relative; } - .navbar-item .icon:only-child, - .navbar-link .icon:only-child { - margin-left: -0.25rem; - margin-right: -0.25rem; } - -a.navbar-item, -.navbar-link { - cursor: pointer; } - a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active, - .navbar-link:focus, - .navbar-link:focus-within, - .navbar-link:hover, - .navbar-link.is-active { - background-color: #fafafa; - color: #2e63b8; } - -.navbar-item { - display: block; - flex-grow: 0; - flex-shrink: 0; } - .navbar-item img { - max-height: 1.75rem; } - .navbar-item.has-dropdown { - padding: 0; } - .navbar-item.is-expanded { - flex-grow: 1; - flex-shrink: 1; } - .navbar-item.is-tab { - border-bottom: 1px solid transparent; - min-height: 3.25rem; - padding-bottom: calc(0.5rem - 1px); } - .navbar-item.is-tab:focus, .navbar-item.is-tab:hover { - background-color: transparent; - border-bottom-color: #2e63b8; } - .navbar-item.is-tab.is-active { - background-color: transparent; - border-bottom-color: #2e63b8; - border-bottom-style: solid; - border-bottom-width: 3px; - color: #2e63b8; - padding-bottom: calc(0.5rem - 3px); } - -.navbar-content { - flex-grow: 1; - flex-shrink: 1; } - -.navbar-link:not(.is-arrowless) { - padding-right: 2.5em; } - .navbar-link:not(.is-arrowless)::after { - border-color: #2e63b8; - margin-top: -0.375em; - right: 1.125em; } - -.navbar-dropdown { - font-size: 0.875rem; - padding-bottom: 0.5rem; - padding-top: 0.5rem; } - .navbar-dropdown .navbar-item { - padding-left: 1.5rem; - padding-right: 1.5rem; } - -.navbar-divider { - background-color: whitesmoke; - border: none; - display: none; - height: 2px; - margin: 0.5rem 0; } - -@media screen and (max-width: 1055px) { - .navbar > .container { - display: block; } - .navbar-brand .navbar-item, - .navbar-tabs .navbar-item { - align-items: center; - display: flex; } - .navbar-link::after { - display: none; } - .navbar-menu { - background-color: white; - box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1); - padding: 0.5rem 0; } - .navbar-menu.is-active { - display: block; } - .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch { - left: 0; - position: fixed; - right: 0; - z-index: 30; } - .navbar.is-fixed-bottom-touch { - bottom: 0; } - .navbar.is-fixed-bottom-touch.has-shadow { - box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); } - .navbar.is-fixed-top-touch { - top: 0; } - .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu { - -webkit-overflow-scrolling: touch; - max-height: calc(100vh - 3.25rem); - overflow: auto; } - html.has-navbar-fixed-top-touch, - body.has-navbar-fixed-top-touch { - padding-top: 3.25rem; } - html.has-navbar-fixed-bottom-touch, - body.has-navbar-fixed-bottom-touch { - padding-bottom: 3.25rem; } } - -@media screen and (min-width: 1056px) { - .navbar, - .navbar-menu, - .navbar-start, - .navbar-end { - align-items: stretch; - display: flex; } - .navbar { - min-height: 3.25rem; } - .navbar.is-spaced { - padding: 1rem 2rem; } - .navbar.is-spaced .navbar-start, - .navbar.is-spaced .navbar-end { - align-items: center; } - .navbar.is-spaced a.navbar-item, - .navbar.is-spaced .navbar-link { - border-radius: 4px; } - .navbar.is-transparent a.navbar-item:focus, .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active, - .navbar.is-transparent .navbar-link:focus, - .navbar.is-transparent .navbar-link:hover, - .navbar.is-transparent .navbar-link.is-active { - background-color: transparent !important; } - .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link { - background-color: transparent !important; } - .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, .navbar.is-transparent .navbar-dropdown a.navbar-item:hover { - background-color: whitesmoke; - color: #0a0a0a; } - .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active { - background-color: whitesmoke; - color: #2e63b8; } - .navbar-burger { - display: none; } - .navbar-item, - .navbar-link { - align-items: center; - display: flex; } - .navbar-item { - display: flex; } - .navbar-item.has-dropdown { - align-items: stretch; } - .navbar-item.has-dropdown-up .navbar-link::after { - transform: rotate(135deg) translate(0.25em, -0.25em); } - .navbar-item.has-dropdown-up .navbar-dropdown { - border-bottom: 2px solid #dbdbdb; - border-radius: 6px 6px 0 0; - border-top: none; - bottom: 100%; - box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1); - top: auto; } - .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown { - display: block; } - .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed { - opacity: 1; - pointer-events: auto; - transform: translateY(0); } - .navbar-menu { - flex-grow: 1; - flex-shrink: 0; } - .navbar-start { - justify-content: flex-start; - margin-right: auto; } - .navbar-end { - justify-content: flex-end; - margin-left: auto; } - .navbar-dropdown { - background-color: white; - border-bottom-left-radius: 6px; - border-bottom-right-radius: 6px; - border-top: 2px solid #dbdbdb; - box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1); - display: none; - font-size: 0.875rem; - left: 0; - min-width: 100%; - position: absolute; - top: 100%; - z-index: 20; } - .navbar-dropdown .navbar-item { - padding: 0.375rem 1rem; - white-space: nowrap; } - .navbar-dropdown a.navbar-item { - padding-right: 3rem; } - .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover { - background-color: whitesmoke; - color: #0a0a0a; } - .navbar-dropdown a.navbar-item.is-active { - background-color: whitesmoke; - color: #2e63b8; } - .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed { - border-radius: 6px; - border-top: none; - box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - display: block; - opacity: 0; - pointer-events: none; - top: calc(100% + (-4px)); - transform: translateY(-5px); - transition-duration: 86ms; - transition-property: opacity, transform; } - .navbar-dropdown.is-right { - left: auto; - right: 0; } - .navbar-divider { - display: block; } - .navbar > .container .navbar-brand, - .container > .navbar .navbar-brand { - margin-left: -.75rem; } - .navbar > .container .navbar-menu, - .container > .navbar .navbar-menu { - margin-right: -.75rem; } - .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop { - left: 0; - position: fixed; - right: 0; - z-index: 30; } - .navbar.is-fixed-bottom-desktop { - bottom: 0; } - .navbar.is-fixed-bottom-desktop.has-shadow { - box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); } - .navbar.is-fixed-top-desktop { - top: 0; } - html.has-navbar-fixed-top-desktop, - body.has-navbar-fixed-top-desktop { - padding-top: 3.25rem; } - html.has-navbar-fixed-bottom-desktop, - body.has-navbar-fixed-bottom-desktop { - padding-bottom: 3.25rem; } - html.has-spaced-navbar-fixed-top, - body.has-spaced-navbar-fixed-top { - padding-top: 5.25rem; } - html.has-spaced-navbar-fixed-bottom, - body.has-spaced-navbar-fixed-bottom { - padding-bottom: 5.25rem; } - a.navbar-item.is-active, - .navbar-link.is-active { - color: #0a0a0a; } - a.navbar-item.is-active:not(:focus):not(:hover), - .navbar-link.is-active:not(:focus):not(:hover) { - background-color: transparent; } - .navbar-item.has-dropdown:focus .navbar-link, .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link { - background-color: #fafafa; } } - -.hero.is-fullheight-with-navbar { - min-height: calc(100vh - 3.25rem); } - -.pagination { - font-size: 1rem; - margin: -0.25rem; } - .pagination.is-small, #documenter .docs-sidebar form.docs-search > input.pagination { - font-size: 0.75rem; } - .pagination.is-medium { - font-size: 1.25rem; } - .pagination.is-large { - font-size: 1.5rem; } - .pagination.is-rounded .pagination-previous, #documenter .docs-sidebar form.docs-search > input.pagination .pagination-previous, - .pagination.is-rounded .pagination-next, - #documenter .docs-sidebar form.docs-search > input.pagination .pagination-next { - padding-left: 1em; - padding-right: 1em; - border-radius: 290486px; } - .pagination.is-rounded .pagination-link, #documenter .docs-sidebar form.docs-search > input.pagination .pagination-link { - border-radius: 290486px; } - -.pagination, -.pagination-list { - align-items: center; - display: flex; - justify-content: center; - text-align: center; } - -.pagination-previous, -.pagination-next, -.pagination-link, -.pagination-ellipsis { - font-size: 1em; - justify-content: center; - margin: 0.25rem; - padding-left: 0.5em; - padding-right: 0.5em; - text-align: center; } - -.pagination-previous, -.pagination-next, -.pagination-link { - border-color: #dbdbdb; - color: #363636; - min-width: 2.25em; } - .pagination-previous:hover, - .pagination-next:hover, - .pagination-link:hover { - border-color: #b5b5b5; - color: #363636; } - .pagination-previous:focus, - .pagination-next:focus, - .pagination-link:focus { - border-color: #3c5dcd; } - .pagination-previous:active, - .pagination-next:active, - .pagination-link:active { - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); } - .pagination-previous[disabled], - .pagination-next[disabled], - .pagination-link[disabled] { - background-color: #dbdbdb; - border-color: #dbdbdb; - box-shadow: none; - color: #7a7a7a; - opacity: 0.5; } - -.pagination-previous, -.pagination-next { - padding-left: 0.75em; - padding-right: 0.75em; - white-space: nowrap; } - -.pagination-link.is-current { - background-color: #2e63b8; - border-color: #2e63b8; - color: #fff; } - -.pagination-ellipsis { - color: #b5b5b5; - pointer-events: none; } - -.pagination-list { - flex-wrap: wrap; } - -@media screen and (max-width: 768px) { - .pagination { - flex-wrap: wrap; } - .pagination-previous, - .pagination-next { - flex-grow: 1; - flex-shrink: 1; } - .pagination-list li { - flex-grow: 1; - flex-shrink: 1; } } - -@media screen and (min-width: 769px), print { - .pagination-list { - flex-grow: 1; - flex-shrink: 1; - justify-content: flex-start; - order: 1; } - .pagination-previous { - order: 2; } - .pagination-next { - order: 3; } - .pagination { - justify-content: space-between; } - .pagination.is-centered .pagination-previous { - order: 1; } - .pagination.is-centered .pagination-list { - justify-content: center; - order: 2; } - .pagination.is-centered .pagination-next { - order: 3; } - .pagination.is-right .pagination-previous { - order: 1; } - .pagination.is-right .pagination-next { - order: 2; } - .pagination.is-right .pagination-list { - justify-content: flex-end; - order: 3; } } - -.panel { - font-size: 1rem; } - .panel:not(:last-child) { - margin-bottom: 1.5rem; } - -.panel-heading, -.panel-tabs, -.panel-block { - border-bottom: 1px solid #dbdbdb; - border-left: 1px solid #dbdbdb; - border-right: 1px solid #dbdbdb; } - .panel-heading:first-child, - .panel-tabs:first-child, - .panel-block:first-child { - border-top: 1px solid #dbdbdb; } - -.panel-heading { - background-color: whitesmoke; - border-radius: 4px 4px 0 0; - color: #222222; - font-size: 1.25em; - font-weight: 300; - line-height: 1.25; - padding: 0.5em 0.75em; } - -.panel-tabs { - align-items: flex-end; - display: flex; - font-size: 0.875em; - justify-content: center; } - .panel-tabs a { - border-bottom: 1px solid #dbdbdb; - margin-bottom: -1px; - padding: 0.5em; } - .panel-tabs a.is-active { - border-bottom-color: #4a4a4a; - color: #363636; } - -.panel-list a { - color: #222222; } - .panel-list a:hover { - color: #2e63b8; } - -.panel-block { - align-items: center; - color: #222222; - display: flex; - justify-content: flex-start; - padding: 0.5em 0.75em; } - .panel-block input[type="checkbox"] { - margin-right: 0.75em; } - .panel-block > .control { - flex-grow: 1; - flex-shrink: 1; - width: 100%; } - .panel-block.is-wrapped { - flex-wrap: wrap; } - .panel-block.is-active { - border-left-color: #2e63b8; - color: #363636; } - .panel-block.is-active .panel-icon { - color: #2e63b8; } - -a.panel-block, -label.panel-block { - cursor: pointer; } - a.panel-block:hover, - label.panel-block:hover { - background-color: whitesmoke; } - -.panel-icon { - display: inline-block; - font-size: 14px; - height: 1em; - line-height: 1em; - text-align: center; - vertical-align: top; - width: 1em; - color: #7a7a7a; - margin-right: 0.75em; } - .panel-icon .fa { - font-size: inherit; - line-height: inherit; } - -.tabs { - -webkit-overflow-scrolling: touch; - align-items: stretch; - display: flex; - font-size: 1rem; - justify-content: space-between; - overflow: hidden; - overflow-x: auto; - white-space: nowrap; } - .tabs a { - align-items: center; - border-bottom-color: #dbdbdb; - border-bottom-style: solid; - border-bottom-width: 1px; - color: #222222; - display: flex; - justify-content: center; - margin-bottom: -1px; - padding: 0.5em 1em; - vertical-align: top; } - .tabs a:hover { - border-bottom-color: #222222; - color: #222222; } - .tabs li { - display: block; } - .tabs li.is-active a { - border-bottom-color: #2e63b8; - color: #2e63b8; } - .tabs ul { - align-items: center; - border-bottom-color: #dbdbdb; - border-bottom-style: solid; - border-bottom-width: 1px; - display: flex; - flex-grow: 1; - flex-shrink: 0; - justify-content: flex-start; } - .tabs ul.is-left { - padding-right: 0.75em; } - .tabs ul.is-center { - flex: none; - justify-content: center; - padding-left: 0.75em; - padding-right: 0.75em; } - .tabs ul.is-right { - justify-content: flex-end; - padding-left: 0.75em; } - .tabs .icon:first-child { - margin-right: 0.5em; } - .tabs .icon:last-child { - margin-left: 0.5em; } - .tabs.is-centered ul { - justify-content: center; } - .tabs.is-right ul { - justify-content: flex-end; } - .tabs.is-boxed a { - border: 1px solid transparent; - border-radius: 4px 4px 0 0; } - .tabs.is-boxed a:hover { - background-color: whitesmoke; - border-bottom-color: #dbdbdb; } - .tabs.is-boxed li.is-active a { - background-color: white; - border-color: #dbdbdb; - border-bottom-color: transparent !important; } - .tabs.is-fullwidth li { - flex-grow: 1; - flex-shrink: 0; } - .tabs.is-toggle a { - border-color: #dbdbdb; - border-style: solid; - border-width: 1px; - margin-bottom: 0; - position: relative; } - .tabs.is-toggle a:hover { - background-color: whitesmoke; - border-color: #b5b5b5; - z-index: 2; } - .tabs.is-toggle li + li { - margin-left: -1px; } - .tabs.is-toggle li:first-child a { - border-radius: 4px 0 0 4px; } - .tabs.is-toggle li:last-child a { - border-radius: 0 4px 4px 0; } - .tabs.is-toggle li.is-active a { - background-color: #2e63b8; - border-color: #2e63b8; - color: #fff; - z-index: 1; } - .tabs.is-toggle ul { - border-bottom: none; } - .tabs.is-toggle.is-toggle-rounded li:first-child a { - border-bottom-left-radius: 290486px; - border-top-left-radius: 290486px; - padding-left: 1.25em; } - .tabs.is-toggle.is-toggle-rounded li:last-child a { - border-bottom-right-radius: 290486px; - border-top-right-radius: 290486px; - padding-right: 1.25em; } - .tabs.is-small, #documenter .docs-sidebar form.docs-search > input.tabs { - font-size: 0.75rem; } - .tabs.is-medium { - font-size: 1.25rem; } - .tabs.is-large { - font-size: 1.5rem; } - -.column { - display: block; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 1; - padding: 0.75rem; } - .columns.is-mobile > .column.is-narrow { - flex: none; } - .columns.is-mobile > .column.is-full { - flex: none; - width: 100%; } - .columns.is-mobile > .column.is-three-quarters { - flex: none; - width: 75%; } - .columns.is-mobile > .column.is-two-thirds { - flex: none; - width: 66.6666%; } - .columns.is-mobile > .column.is-half { - flex: none; - width: 50%; } - .columns.is-mobile > .column.is-one-third { - flex: none; - width: 33.3333%; } - .columns.is-mobile > .column.is-one-quarter { - flex: none; - width: 25%; } - .columns.is-mobile > .column.is-one-fifth { - flex: none; - width: 20%; } - .columns.is-mobile > .column.is-two-fifths { - flex: none; - width: 40%; } - .columns.is-mobile > .column.is-three-fifths { - flex: none; - width: 60%; } - .columns.is-mobile > .column.is-four-fifths { - flex: none; - width: 80%; } - .columns.is-mobile > .column.is-offset-three-quarters { - margin-left: 75%; } - .columns.is-mobile > .column.is-offset-two-thirds { - margin-left: 66.6666%; } - .columns.is-mobile > .column.is-offset-half { - margin-left: 50%; } - .columns.is-mobile > .column.is-offset-one-third { - margin-left: 33.3333%; } - .columns.is-mobile > .column.is-offset-one-quarter { - margin-left: 25%; } - .columns.is-mobile > .column.is-offset-one-fifth { - margin-left: 20%; } - .columns.is-mobile > .column.is-offset-two-fifths { - margin-left: 40%; } - .columns.is-mobile > .column.is-offset-three-fifths { - margin-left: 60%; } - .columns.is-mobile > .column.is-offset-four-fifths { - margin-left: 80%; } - .columns.is-mobile > .column.is-0 { - flex: none; - width: 0%; } - .columns.is-mobile > .column.is-offset-0 { - margin-left: 0%; } - .columns.is-mobile > .column.is-1 { - flex: none; - width: 8.33333%; } - .columns.is-mobile > .column.is-offset-1 { - margin-left: 8.33333%; } - .columns.is-mobile > .column.is-2 { - flex: none; - width: 16.66667%; } - .columns.is-mobile > .column.is-offset-2 { - margin-left: 16.66667%; } - .columns.is-mobile > .column.is-3 { - flex: none; - width: 25%; } - .columns.is-mobile > .column.is-offset-3 { - margin-left: 25%; } - .columns.is-mobile > .column.is-4 { - flex: none; - width: 33.33333%; } - .columns.is-mobile > .column.is-offset-4 { - margin-left: 33.33333%; } - .columns.is-mobile > .column.is-5 { - flex: none; - width: 41.66667%; } - .columns.is-mobile > .column.is-offset-5 { - margin-left: 41.66667%; } - .columns.is-mobile > .column.is-6 { - flex: none; - width: 50%; } - .columns.is-mobile > .column.is-offset-6 { - margin-left: 50%; } - .columns.is-mobile > .column.is-7 { - flex: none; - width: 58.33333%; } - .columns.is-mobile > .column.is-offset-7 { - margin-left: 58.33333%; } - .columns.is-mobile > .column.is-8 { - flex: none; - width: 66.66667%; } - .columns.is-mobile > .column.is-offset-8 { - margin-left: 66.66667%; } - .columns.is-mobile > .column.is-9 { - flex: none; - width: 75%; } - .columns.is-mobile > .column.is-offset-9 { - margin-left: 75%; } - .columns.is-mobile > .column.is-10 { - flex: none; - width: 83.33333%; } - .columns.is-mobile > .column.is-offset-10 { - margin-left: 83.33333%; } - .columns.is-mobile > .column.is-11 { - flex: none; - width: 91.66667%; } - .columns.is-mobile > .column.is-offset-11 { - margin-left: 91.66667%; } - .columns.is-mobile > .column.is-12 { - flex: none; - width: 100%; } - .columns.is-mobile > .column.is-offset-12 { - margin-left: 100%; } - @media screen and (max-width: 768px) { - .column.is-narrow-mobile { - flex: none; } - .column.is-full-mobile { - flex: none; - width: 100%; } - .column.is-three-quarters-mobile { - flex: none; - width: 75%; } - .column.is-two-thirds-mobile { - flex: none; - width: 66.6666%; } - .column.is-half-mobile { - flex: none; - width: 50%; } - .column.is-one-third-mobile { - flex: none; - width: 33.3333%; } - .column.is-one-quarter-mobile { - flex: none; - width: 25%; } - .column.is-one-fifth-mobile { - flex: none; - width: 20%; } - .column.is-two-fifths-mobile { - flex: none; - width: 40%; } - .column.is-three-fifths-mobile { - flex: none; - width: 60%; } - .column.is-four-fifths-mobile { - flex: none; - width: 80%; } - .column.is-offset-three-quarters-mobile { - margin-left: 75%; } - .column.is-offset-two-thirds-mobile { - margin-left: 66.6666%; } - .column.is-offset-half-mobile { - margin-left: 50%; } - .column.is-offset-one-third-mobile { - margin-left: 33.3333%; } - .column.is-offset-one-quarter-mobile { - margin-left: 25%; } - .column.is-offset-one-fifth-mobile { - margin-left: 20%; } - .column.is-offset-two-fifths-mobile { - margin-left: 40%; } - .column.is-offset-three-fifths-mobile { - margin-left: 60%; } - .column.is-offset-four-fifths-mobile { - margin-left: 80%; } - .column.is-0-mobile { - flex: none; - width: 0%; } - .column.is-offset-0-mobile { - margin-left: 0%; } - .column.is-1-mobile { - flex: none; - width: 8.33333%; } - .column.is-offset-1-mobile { - margin-left: 8.33333%; } - .column.is-2-mobile { - flex: none; - width: 16.66667%; } - .column.is-offset-2-mobile { - margin-left: 16.66667%; } - .column.is-3-mobile { - flex: none; - width: 25%; } - .column.is-offset-3-mobile { - margin-left: 25%; } - .column.is-4-mobile { - flex: none; - width: 33.33333%; } - .column.is-offset-4-mobile { - margin-left: 33.33333%; } - .column.is-5-mobile { - flex: none; - width: 41.66667%; } - .column.is-offset-5-mobile { - margin-left: 41.66667%; } - .column.is-6-mobile { - flex: none; - width: 50%; } - .column.is-offset-6-mobile { - margin-left: 50%; } - .column.is-7-mobile { - flex: none; - width: 58.33333%; } - .column.is-offset-7-mobile { - margin-left: 58.33333%; } - .column.is-8-mobile { - flex: none; - width: 66.66667%; } - .column.is-offset-8-mobile { - margin-left: 66.66667%; } - .column.is-9-mobile { - flex: none; - width: 75%; } - .column.is-offset-9-mobile { - margin-left: 75%; } - .column.is-10-mobile { - flex: none; - width: 83.33333%; } - .column.is-offset-10-mobile { - margin-left: 83.33333%; } - .column.is-11-mobile { - flex: none; - width: 91.66667%; } - .column.is-offset-11-mobile { - margin-left: 91.66667%; } - .column.is-12-mobile { - flex: none; - width: 100%; } - .column.is-offset-12-mobile { - margin-left: 100%; } } - @media screen and (min-width: 769px), print { - .column.is-narrow, .column.is-narrow-tablet { - flex: none; } - .column.is-full, .column.is-full-tablet { - flex: none; - width: 100%; } - .column.is-three-quarters, .column.is-three-quarters-tablet { - flex: none; - width: 75%; } - .column.is-two-thirds, .column.is-two-thirds-tablet { - flex: none; - width: 66.6666%; } - .column.is-half, .column.is-half-tablet { - flex: none; - width: 50%; } - .column.is-one-third, .column.is-one-third-tablet { - flex: none; - width: 33.3333%; } - .column.is-one-quarter, .column.is-one-quarter-tablet { - flex: none; - width: 25%; } - .column.is-one-fifth, .column.is-one-fifth-tablet { - flex: none; - width: 20%; } - .column.is-two-fifths, .column.is-two-fifths-tablet { - flex: none; - width: 40%; } - .column.is-three-fifths, .column.is-three-fifths-tablet { - flex: none; - width: 60%; } - .column.is-four-fifths, .column.is-four-fifths-tablet { - flex: none; - width: 80%; } - .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet { - margin-left: 75%; } - .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet { - margin-left: 66.6666%; } - .column.is-offset-half, .column.is-offset-half-tablet { - margin-left: 50%; } - .column.is-offset-one-third, .column.is-offset-one-third-tablet { - margin-left: 33.3333%; } - .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet { - margin-left: 25%; } - .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet { - margin-left: 20%; } - .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet { - margin-left: 40%; } - .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet { - margin-left: 60%; } - .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet { - margin-left: 80%; } - .column.is-0, .column.is-0-tablet { - flex: none; - width: 0%; } - .column.is-offset-0, .column.is-offset-0-tablet { - margin-left: 0%; } - .column.is-1, .column.is-1-tablet { - flex: none; - width: 8.33333%; } - .column.is-offset-1, .column.is-offset-1-tablet { - margin-left: 8.33333%; } - .column.is-2, .column.is-2-tablet { - flex: none; - width: 16.66667%; } - .column.is-offset-2, .column.is-offset-2-tablet { - margin-left: 16.66667%; } - .column.is-3, .column.is-3-tablet { - flex: none; - width: 25%; } - .column.is-offset-3, .column.is-offset-3-tablet { - margin-left: 25%; } - .column.is-4, .column.is-4-tablet { - flex: none; - width: 33.33333%; } - .column.is-offset-4, .column.is-offset-4-tablet { - margin-left: 33.33333%; } - .column.is-5, .column.is-5-tablet { - flex: none; - width: 41.66667%; } - .column.is-offset-5, .column.is-offset-5-tablet { - margin-left: 41.66667%; } - .column.is-6, .column.is-6-tablet { - flex: none; - width: 50%; } - .column.is-offset-6, .column.is-offset-6-tablet { - margin-left: 50%; } - .column.is-7, .column.is-7-tablet { - flex: none; - width: 58.33333%; } - .column.is-offset-7, .column.is-offset-7-tablet { - margin-left: 58.33333%; } - .column.is-8, .column.is-8-tablet { - flex: none; - width: 66.66667%; } - .column.is-offset-8, .column.is-offset-8-tablet { - margin-left: 66.66667%; } - .column.is-9, .column.is-9-tablet { - flex: none; - width: 75%; } - .column.is-offset-9, .column.is-offset-9-tablet { - margin-left: 75%; } - .column.is-10, .column.is-10-tablet { - flex: none; - width: 83.33333%; } - .column.is-offset-10, .column.is-offset-10-tablet { - margin-left: 83.33333%; } - .column.is-11, .column.is-11-tablet { - flex: none; - width: 91.66667%; } - .column.is-offset-11, .column.is-offset-11-tablet { - margin-left: 91.66667%; } - .column.is-12, .column.is-12-tablet { - flex: none; - width: 100%; } - .column.is-offset-12, .column.is-offset-12-tablet { - margin-left: 100%; } } - @media screen and (max-width: 1055px) { - .column.is-narrow-touch { - flex: none; } - .column.is-full-touch { - flex: none; - width: 100%; } - .column.is-three-quarters-touch { - flex: none; - width: 75%; } - .column.is-two-thirds-touch { - flex: none; - width: 66.6666%; } - .column.is-half-touch { - flex: none; - width: 50%; } - .column.is-one-third-touch { - flex: none; - width: 33.3333%; } - .column.is-one-quarter-touch { - flex: none; - width: 25%; } - .column.is-one-fifth-touch { - flex: none; - width: 20%; } - .column.is-two-fifths-touch { - flex: none; - width: 40%; } - .column.is-three-fifths-touch { - flex: none; - width: 60%; } - .column.is-four-fifths-touch { - flex: none; - width: 80%; } - .column.is-offset-three-quarters-touch { - margin-left: 75%; } - .column.is-offset-two-thirds-touch { - margin-left: 66.6666%; } - .column.is-offset-half-touch { - margin-left: 50%; } - .column.is-offset-one-third-touch { - margin-left: 33.3333%; } - .column.is-offset-one-quarter-touch { - margin-left: 25%; } - .column.is-offset-one-fifth-touch { - margin-left: 20%; } - .column.is-offset-two-fifths-touch { - margin-left: 40%; } - .column.is-offset-three-fifths-touch { - margin-left: 60%; } - .column.is-offset-four-fifths-touch { - margin-left: 80%; } - .column.is-0-touch { - flex: none; - width: 0%; } - .column.is-offset-0-touch { - margin-left: 0%; } - .column.is-1-touch { - flex: none; - width: 8.33333%; } - .column.is-offset-1-touch { - margin-left: 8.33333%; } - .column.is-2-touch { - flex: none; - width: 16.66667%; } - .column.is-offset-2-touch { - margin-left: 16.66667%; } - .column.is-3-touch { - flex: none; - width: 25%; } - .column.is-offset-3-touch { - margin-left: 25%; } - .column.is-4-touch { - flex: none; - width: 33.33333%; } - .column.is-offset-4-touch { - margin-left: 33.33333%; } - .column.is-5-touch { - flex: none; - width: 41.66667%; } - .column.is-offset-5-touch { - margin-left: 41.66667%; } - .column.is-6-touch { - flex: none; - width: 50%; } - .column.is-offset-6-touch { - margin-left: 50%; } - .column.is-7-touch { - flex: none; - width: 58.33333%; } - .column.is-offset-7-touch { - margin-left: 58.33333%; } - .column.is-8-touch { - flex: none; - width: 66.66667%; } - .column.is-offset-8-touch { - margin-left: 66.66667%; } - .column.is-9-touch { - flex: none; - width: 75%; } - .column.is-offset-9-touch { - margin-left: 75%; } - .column.is-10-touch { - flex: none; - width: 83.33333%; } - .column.is-offset-10-touch { - margin-left: 83.33333%; } - .column.is-11-touch { - flex: none; - width: 91.66667%; } - .column.is-offset-11-touch { - margin-left: 91.66667%; } - .column.is-12-touch { - flex: none; - width: 100%; } - .column.is-offset-12-touch { - margin-left: 100%; } } - @media screen and (min-width: 1056px) { - .column.is-narrow-desktop { - flex: none; } - .column.is-full-desktop { - flex: none; - width: 100%; } - .column.is-three-quarters-desktop { - flex: none; - width: 75%; } - .column.is-two-thirds-desktop { - flex: none; - width: 66.6666%; } - .column.is-half-desktop { - flex: none; - width: 50%; } - .column.is-one-third-desktop { - flex: none; - width: 33.3333%; } - .column.is-one-quarter-desktop { - flex: none; - width: 25%; } - .column.is-one-fifth-desktop { - flex: none; - width: 20%; } - .column.is-two-fifths-desktop { - flex: none; - width: 40%; } - .column.is-three-fifths-desktop { - flex: none; - width: 60%; } - .column.is-four-fifths-desktop { - flex: none; - width: 80%; } - .column.is-offset-three-quarters-desktop { - margin-left: 75%; } - .column.is-offset-two-thirds-desktop { - margin-left: 66.6666%; } - .column.is-offset-half-desktop { - margin-left: 50%; } - .column.is-offset-one-third-desktop { - margin-left: 33.3333%; } - .column.is-offset-one-quarter-desktop { - margin-left: 25%; } - .column.is-offset-one-fifth-desktop { - margin-left: 20%; } - .column.is-offset-two-fifths-desktop { - margin-left: 40%; } - .column.is-offset-three-fifths-desktop { - margin-left: 60%; } - .column.is-offset-four-fifths-desktop { - margin-left: 80%; } - .column.is-0-desktop { - flex: none; - width: 0%; } - .column.is-offset-0-desktop { - margin-left: 0%; } - .column.is-1-desktop { - flex: none; - width: 8.33333%; } - .column.is-offset-1-desktop { - margin-left: 8.33333%; } - .column.is-2-desktop { - flex: none; - width: 16.66667%; } - .column.is-offset-2-desktop { - margin-left: 16.66667%; } - .column.is-3-desktop { - flex: none; - width: 25%; } - .column.is-offset-3-desktop { - margin-left: 25%; } - .column.is-4-desktop { - flex: none; - width: 33.33333%; } - .column.is-offset-4-desktop { - margin-left: 33.33333%; } - .column.is-5-desktop { - flex: none; - width: 41.66667%; } - .column.is-offset-5-desktop { - margin-left: 41.66667%; } - .column.is-6-desktop { - flex: none; - width: 50%; } - .column.is-offset-6-desktop { - margin-left: 50%; } - .column.is-7-desktop { - flex: none; - width: 58.33333%; } - .column.is-offset-7-desktop { - margin-left: 58.33333%; } - .column.is-8-desktop { - flex: none; - width: 66.66667%; } - .column.is-offset-8-desktop { - margin-left: 66.66667%; } - .column.is-9-desktop { - flex: none; - width: 75%; } - .column.is-offset-9-desktop { - margin-left: 75%; } - .column.is-10-desktop { - flex: none; - width: 83.33333%; } - .column.is-offset-10-desktop { - margin-left: 83.33333%; } - .column.is-11-desktop { - flex: none; - width: 91.66667%; } - .column.is-offset-11-desktop { - margin-left: 91.66667%; } - .column.is-12-desktop { - flex: none; - width: 100%; } - .column.is-offset-12-desktop { - margin-left: 100%; } } - @media screen and (min-width: 1216px) { - .column.is-narrow-widescreen { - flex: none; } - .column.is-full-widescreen { - flex: none; - width: 100%; } - .column.is-three-quarters-widescreen { - flex: none; - width: 75%; } - .column.is-two-thirds-widescreen { - flex: none; - width: 66.6666%; } - .column.is-half-widescreen { - flex: none; - width: 50%; } - .column.is-one-third-widescreen { - flex: none; - width: 33.3333%; } - .column.is-one-quarter-widescreen { - flex: none; - width: 25%; } - .column.is-one-fifth-widescreen { - flex: none; - width: 20%; } - .column.is-two-fifths-widescreen { - flex: none; - width: 40%; } - .column.is-three-fifths-widescreen { - flex: none; - width: 60%; } - .column.is-four-fifths-widescreen { - flex: none; - width: 80%; } - .column.is-offset-three-quarters-widescreen { - margin-left: 75%; } - .column.is-offset-two-thirds-widescreen { - margin-left: 66.6666%; } - .column.is-offset-half-widescreen { - margin-left: 50%; } - .column.is-offset-one-third-widescreen { - margin-left: 33.3333%; } - .column.is-offset-one-quarter-widescreen { - margin-left: 25%; } - .column.is-offset-one-fifth-widescreen { - margin-left: 20%; } - .column.is-offset-two-fifths-widescreen { - margin-left: 40%; } - .column.is-offset-three-fifths-widescreen { - margin-left: 60%; } - .column.is-offset-four-fifths-widescreen { - margin-left: 80%; } - .column.is-0-widescreen { - flex: none; - width: 0%; } - .column.is-offset-0-widescreen { - margin-left: 0%; } - .column.is-1-widescreen { - flex: none; - width: 8.33333%; } - .column.is-offset-1-widescreen { - margin-left: 8.33333%; } - .column.is-2-widescreen { - flex: none; - width: 16.66667%; } - .column.is-offset-2-widescreen { - margin-left: 16.66667%; } - .column.is-3-widescreen { - flex: none; - width: 25%; } - .column.is-offset-3-widescreen { - margin-left: 25%; } - .column.is-4-widescreen { - flex: none; - width: 33.33333%; } - .column.is-offset-4-widescreen { - margin-left: 33.33333%; } - .column.is-5-widescreen { - flex: none; - width: 41.66667%; } - .column.is-offset-5-widescreen { - margin-left: 41.66667%; } - .column.is-6-widescreen { - flex: none; - width: 50%; } - .column.is-offset-6-widescreen { - margin-left: 50%; } - .column.is-7-widescreen { - flex: none; - width: 58.33333%; } - .column.is-offset-7-widescreen { - margin-left: 58.33333%; } - .column.is-8-widescreen { - flex: none; - width: 66.66667%; } - .column.is-offset-8-widescreen { - margin-left: 66.66667%; } - .column.is-9-widescreen { - flex: none; - width: 75%; } - .column.is-offset-9-widescreen { - margin-left: 75%; } - .column.is-10-widescreen { - flex: none; - width: 83.33333%; } - .column.is-offset-10-widescreen { - margin-left: 83.33333%; } - .column.is-11-widescreen { - flex: none; - width: 91.66667%; } - .column.is-offset-11-widescreen { - margin-left: 91.66667%; } - .column.is-12-widescreen { - flex: none; - width: 100%; } - .column.is-offset-12-widescreen { - margin-left: 100%; } } - @media screen and (min-width: 1408px) { - .column.is-narrow-fullhd { - flex: none; } - .column.is-full-fullhd { - flex: none; - width: 100%; } - .column.is-three-quarters-fullhd { - flex: none; - width: 75%; } - .column.is-two-thirds-fullhd { - flex: none; - width: 66.6666%; } - .column.is-half-fullhd { - flex: none; - width: 50%; } - .column.is-one-third-fullhd { - flex: none; - width: 33.3333%; } - .column.is-one-quarter-fullhd { - flex: none; - width: 25%; } - .column.is-one-fifth-fullhd { - flex: none; - width: 20%; } - .column.is-two-fifths-fullhd { - flex: none; - width: 40%; } - .column.is-three-fifths-fullhd { - flex: none; - width: 60%; } - .column.is-four-fifths-fullhd { - flex: none; - width: 80%; } - .column.is-offset-three-quarters-fullhd { - margin-left: 75%; } - .column.is-offset-two-thirds-fullhd { - margin-left: 66.6666%; } - .column.is-offset-half-fullhd { - margin-left: 50%; } - .column.is-offset-one-third-fullhd { - margin-left: 33.3333%; } - .column.is-offset-one-quarter-fullhd { - margin-left: 25%; } - .column.is-offset-one-fifth-fullhd { - margin-left: 20%; } - .column.is-offset-two-fifths-fullhd { - margin-left: 40%; } - .column.is-offset-three-fifths-fullhd { - margin-left: 60%; } - .column.is-offset-four-fifths-fullhd { - margin-left: 80%; } - .column.is-0-fullhd { - flex: none; - width: 0%; } - .column.is-offset-0-fullhd { - margin-left: 0%; } - .column.is-1-fullhd { - flex: none; - width: 8.33333%; } - .column.is-offset-1-fullhd { - margin-left: 8.33333%; } - .column.is-2-fullhd { - flex: none; - width: 16.66667%; } - .column.is-offset-2-fullhd { - margin-left: 16.66667%; } - .column.is-3-fullhd { - flex: none; - width: 25%; } - .column.is-offset-3-fullhd { - margin-left: 25%; } - .column.is-4-fullhd { - flex: none; - width: 33.33333%; } - .column.is-offset-4-fullhd { - margin-left: 33.33333%; } - .column.is-5-fullhd { - flex: none; - width: 41.66667%; } - .column.is-offset-5-fullhd { - margin-left: 41.66667%; } - .column.is-6-fullhd { - flex: none; - width: 50%; } - .column.is-offset-6-fullhd { - margin-left: 50%; } - .column.is-7-fullhd { - flex: none; - width: 58.33333%; } - .column.is-offset-7-fullhd { - margin-left: 58.33333%; } - .column.is-8-fullhd { - flex: none; - width: 66.66667%; } - .column.is-offset-8-fullhd { - margin-left: 66.66667%; } - .column.is-9-fullhd { - flex: none; - width: 75%; } - .column.is-offset-9-fullhd { - margin-left: 75%; } - .column.is-10-fullhd { - flex: none; - width: 83.33333%; } - .column.is-offset-10-fullhd { - margin-left: 83.33333%; } - .column.is-11-fullhd { - flex: none; - width: 91.66667%; } - .column.is-offset-11-fullhd { - margin-left: 91.66667%; } - .column.is-12-fullhd { - flex: none; - width: 100%; } - .column.is-offset-12-fullhd { - margin-left: 100%; } } - -.columns { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; } - .columns:last-child { - margin-bottom: -0.75rem; } - .columns:not(:last-child) { - margin-bottom: calc(1.5rem - 0.75rem); } - .columns.is-centered { - justify-content: center; } - .columns.is-gapless { - margin-left: 0; - margin-right: 0; - margin-top: 0; } - .columns.is-gapless > .column { - margin: 0; - padding: 0 !important; } - .columns.is-gapless:not(:last-child) { - margin-bottom: 1.5rem; } - .columns.is-gapless:last-child { - margin-bottom: 0; } - .columns.is-mobile { - display: flex; } - .columns.is-multiline { - flex-wrap: wrap; } - .columns.is-vcentered { - align-items: center; } - @media screen and (min-width: 769px), print { - .columns:not(.is-desktop) { - display: flex; } } - @media screen and (min-width: 1056px) { - .columns.is-desktop { - display: flex; } } - -.columns.is-variable { - --columnGap: 0.75rem; - margin-left: calc(-1 * var(--columnGap)); - margin-right: calc(-1 * var(--columnGap)); } - .columns.is-variable .column { - padding-left: var(--columnGap); - padding-right: var(--columnGap); } - .columns.is-variable.is-0 { - --columnGap: 0rem; } - @media screen and (max-width: 768px) { - .columns.is-variable.is-0-mobile { - --columnGap: 0rem; } } - @media screen and (min-width: 769px), print { - .columns.is-variable.is-0-tablet { - --columnGap: 0rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - .columns.is-variable.is-0-tablet-only { - --columnGap: 0rem; } } - @media screen and (max-width: 1055px) { - .columns.is-variable.is-0-touch { - --columnGap: 0rem; } } - @media screen and (min-width: 1056px) { - .columns.is-variable.is-0-desktop { - --columnGap: 0rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - .columns.is-variable.is-0-desktop-only { - --columnGap: 0rem; } } - @media screen and (min-width: 1216px) { - .columns.is-variable.is-0-widescreen { - --columnGap: 0rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-0-widescreen-only { - --columnGap: 0rem; } } - @media screen and (min-width: 1408px) { - .columns.is-variable.is-0-fullhd { - --columnGap: 0rem; } } - .columns.is-variable.is-1 { - --columnGap: 0.25rem; } - @media screen and (max-width: 768px) { - .columns.is-variable.is-1-mobile { - --columnGap: 0.25rem; } } - @media screen and (min-width: 769px), print { - .columns.is-variable.is-1-tablet { - --columnGap: 0.25rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - .columns.is-variable.is-1-tablet-only { - --columnGap: 0.25rem; } } - @media screen and (max-width: 1055px) { - .columns.is-variable.is-1-touch { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1056px) { - .columns.is-variable.is-1-desktop { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - .columns.is-variable.is-1-desktop-only { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1216px) { - .columns.is-variable.is-1-widescreen { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-1-widescreen-only { - --columnGap: 0.25rem; } } - @media screen and (min-width: 1408px) { - .columns.is-variable.is-1-fullhd { - --columnGap: 0.25rem; } } - .columns.is-variable.is-2 { - --columnGap: 0.5rem; } - @media screen and (max-width: 768px) { - .columns.is-variable.is-2-mobile { - --columnGap: 0.5rem; } } - @media screen and (min-width: 769px), print { - .columns.is-variable.is-2-tablet { - --columnGap: 0.5rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - .columns.is-variable.is-2-tablet-only { - --columnGap: 0.5rem; } } - @media screen and (max-width: 1055px) { - .columns.is-variable.is-2-touch { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1056px) { - .columns.is-variable.is-2-desktop { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - .columns.is-variable.is-2-desktop-only { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1216px) { - .columns.is-variable.is-2-widescreen { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-2-widescreen-only { - --columnGap: 0.5rem; } } - @media screen and (min-width: 1408px) { - .columns.is-variable.is-2-fullhd { - --columnGap: 0.5rem; } } - .columns.is-variable.is-3 { - --columnGap: 0.75rem; } - @media screen and (max-width: 768px) { - .columns.is-variable.is-3-mobile { - --columnGap: 0.75rem; } } - @media screen and (min-width: 769px), print { - .columns.is-variable.is-3-tablet { - --columnGap: 0.75rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - .columns.is-variable.is-3-tablet-only { - --columnGap: 0.75rem; } } - @media screen and (max-width: 1055px) { - .columns.is-variable.is-3-touch { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1056px) { - .columns.is-variable.is-3-desktop { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - .columns.is-variable.is-3-desktop-only { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1216px) { - .columns.is-variable.is-3-widescreen { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-3-widescreen-only { - --columnGap: 0.75rem; } } - @media screen and (min-width: 1408px) { - .columns.is-variable.is-3-fullhd { - --columnGap: 0.75rem; } } - .columns.is-variable.is-4 { - --columnGap: 1rem; } - @media screen and (max-width: 768px) { - .columns.is-variable.is-4-mobile { - --columnGap: 1rem; } } - @media screen and (min-width: 769px), print { - .columns.is-variable.is-4-tablet { - --columnGap: 1rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - .columns.is-variable.is-4-tablet-only { - --columnGap: 1rem; } } - @media screen and (max-width: 1055px) { - .columns.is-variable.is-4-touch { - --columnGap: 1rem; } } - @media screen and (min-width: 1056px) { - .columns.is-variable.is-4-desktop { - --columnGap: 1rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - .columns.is-variable.is-4-desktop-only { - --columnGap: 1rem; } } - @media screen and (min-width: 1216px) { - .columns.is-variable.is-4-widescreen { - --columnGap: 1rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-4-widescreen-only { - --columnGap: 1rem; } } - @media screen and (min-width: 1408px) { - .columns.is-variable.is-4-fullhd { - --columnGap: 1rem; } } - .columns.is-variable.is-5 { - --columnGap: 1.25rem; } - @media screen and (max-width: 768px) { - .columns.is-variable.is-5-mobile { - --columnGap: 1.25rem; } } - @media screen and (min-width: 769px), print { - .columns.is-variable.is-5-tablet { - --columnGap: 1.25rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - .columns.is-variable.is-5-tablet-only { - --columnGap: 1.25rem; } } - @media screen and (max-width: 1055px) { - .columns.is-variable.is-5-touch { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1056px) { - .columns.is-variable.is-5-desktop { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - .columns.is-variable.is-5-desktop-only { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1216px) { - .columns.is-variable.is-5-widescreen { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-5-widescreen-only { - --columnGap: 1.25rem; } } - @media screen and (min-width: 1408px) { - .columns.is-variable.is-5-fullhd { - --columnGap: 1.25rem; } } - .columns.is-variable.is-6 { - --columnGap: 1.5rem; } - @media screen and (max-width: 768px) { - .columns.is-variable.is-6-mobile { - --columnGap: 1.5rem; } } - @media screen and (min-width: 769px), print { - .columns.is-variable.is-6-tablet { - --columnGap: 1.5rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - .columns.is-variable.is-6-tablet-only { - --columnGap: 1.5rem; } } - @media screen and (max-width: 1055px) { - .columns.is-variable.is-6-touch { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1056px) { - .columns.is-variable.is-6-desktop { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - .columns.is-variable.is-6-desktop-only { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1216px) { - .columns.is-variable.is-6-widescreen { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-6-widescreen-only { - --columnGap: 1.5rem; } } - @media screen and (min-width: 1408px) { - .columns.is-variable.is-6-fullhd { - --columnGap: 1.5rem; } } - .columns.is-variable.is-7 { - --columnGap: 1.75rem; } - @media screen and (max-width: 768px) { - .columns.is-variable.is-7-mobile { - --columnGap: 1.75rem; } } - @media screen and (min-width: 769px), print { - .columns.is-variable.is-7-tablet { - --columnGap: 1.75rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - .columns.is-variable.is-7-tablet-only { - --columnGap: 1.75rem; } } - @media screen and (max-width: 1055px) { - .columns.is-variable.is-7-touch { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1056px) { - .columns.is-variable.is-7-desktop { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - .columns.is-variable.is-7-desktop-only { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1216px) { - .columns.is-variable.is-7-widescreen { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-7-widescreen-only { - --columnGap: 1.75rem; } } - @media screen and (min-width: 1408px) { - .columns.is-variable.is-7-fullhd { - --columnGap: 1.75rem; } } - .columns.is-variable.is-8 { - --columnGap: 2rem; } - @media screen and (max-width: 768px) { - .columns.is-variable.is-8-mobile { - --columnGap: 2rem; } } - @media screen and (min-width: 769px), print { - .columns.is-variable.is-8-tablet { - --columnGap: 2rem; } } - @media screen and (min-width: 769px) and (max-width: 1055px) { - .columns.is-variable.is-8-tablet-only { - --columnGap: 2rem; } } - @media screen and (max-width: 1055px) { - .columns.is-variable.is-8-touch { - --columnGap: 2rem; } } - @media screen and (min-width: 1056px) { - .columns.is-variable.is-8-desktop { - --columnGap: 2rem; } } - @media screen and (min-width: 1056px) and (max-width: 1215px) { - .columns.is-variable.is-8-desktop-only { - --columnGap: 2rem; } } - @media screen and (min-width: 1216px) { - .columns.is-variable.is-8-widescreen { - --columnGap: 2rem; } } - @media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-8-widescreen-only { - --columnGap: 2rem; } } - @media screen and (min-width: 1408px) { - .columns.is-variable.is-8-fullhd { - --columnGap: 2rem; } } - -.tile { - align-items: stretch; - display: block; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 1; - min-height: min-content; } - .tile.is-ancestor { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; } - .tile.is-ancestor:last-child { - margin-bottom: -0.75rem; } - .tile.is-ancestor:not(:last-child) { - margin-bottom: 0.75rem; } - .tile.is-child { - margin: 0 !important; } - .tile.is-parent { - padding: 0.75rem; } - .tile.is-vertical { - flex-direction: column; } - .tile.is-vertical > .tile.is-child:not(:last-child) { - margin-bottom: 1.5rem !important; } - @media screen and (min-width: 769px), print { - .tile:not(.is-child) { - display: flex; } - .tile.is-1 { - flex: none; - width: 8.33333%; } - .tile.is-2 { - flex: none; - width: 16.66667%; } - .tile.is-3 { - flex: none; - width: 25%; } - .tile.is-4 { - flex: none; - width: 33.33333%; } - .tile.is-5 { - flex: none; - width: 41.66667%; } - .tile.is-6 { - flex: none; - width: 50%; } - .tile.is-7 { - flex: none; - width: 58.33333%; } - .tile.is-8 { - flex: none; - width: 66.66667%; } - .tile.is-9 { - flex: none; - width: 75%; } - .tile.is-10 { - flex: none; - width: 83.33333%; } - .tile.is-11 { - flex: none; - width: 91.66667%; } - .tile.is-12 { - flex: none; - width: 100%; } } - -.hero { - align-items: stretch; - display: flex; - flex-direction: column; - justify-content: space-between; } - .hero .navbar { - background: none; } - .hero .tabs ul { - border-bottom: none; } - .hero.is-white { - background-color: white; - color: #0a0a0a; } - .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-white strong { - color: inherit; } - .hero.is-white .title { - color: #0a0a0a; } - .hero.is-white .subtitle { - color: rgba(10, 10, 10, 0.9); } - .hero.is-white .subtitle a:not(.button), - .hero.is-white .subtitle strong { - color: #0a0a0a; } - @media screen and (max-width: 1055px) { - .hero.is-white .navbar-menu { - background-color: white; } } - .hero.is-white .navbar-item, - .hero.is-white .navbar-link { - color: rgba(10, 10, 10, 0.7); } - .hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active, - .hero.is-white .navbar-link:hover, - .hero.is-white .navbar-link.is-active { - background-color: #f2f2f2; - color: #0a0a0a; } - .hero.is-white .tabs a { - color: #0a0a0a; - opacity: 0.9; } - .hero.is-white .tabs a:hover { - opacity: 1; } - .hero.is-white .tabs li.is-active a { - opacity: 1; } - .hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a { - color: #0a0a0a; } - .hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; } - .hero.is-white.is-bold { - background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); } - @media screen and (max-width: 768px) { - .hero.is-white.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%); } } - .hero.is-black { - background-color: #0a0a0a; - color: white; } - .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-black strong { - color: inherit; } - .hero.is-black .title { - color: white; } - .hero.is-black .subtitle { - color: rgba(255, 255, 255, 0.9); } - .hero.is-black .subtitle a:not(.button), - .hero.is-black .subtitle strong { - color: white; } - @media screen and (max-width: 1055px) { - .hero.is-black .navbar-menu { - background-color: #0a0a0a; } } - .hero.is-black .navbar-item, - .hero.is-black .navbar-link { - color: rgba(255, 255, 255, 0.7); } - .hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active, - .hero.is-black .navbar-link:hover, - .hero.is-black .navbar-link.is-active { - background-color: black; - color: white; } - .hero.is-black .tabs a { - color: white; - opacity: 0.9; } - .hero.is-black .tabs a:hover { - opacity: 1; } - .hero.is-black .tabs li.is-active a { - opacity: 1; } - .hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a { - color: white; } - .hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover { - background-color: white; - border-color: white; - color: #0a0a0a; } - .hero.is-black.is-bold { - background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); } - @media screen and (max-width: 768px) { - .hero.is-black.is-bold .navbar-menu { - background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); } } - .hero.is-light { - background-color: whitesmoke; - color: #363636; } - .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-light strong { - color: inherit; } - .hero.is-light .title { - color: #363636; } - .hero.is-light .subtitle { - color: rgba(54, 54, 54, 0.9); } - .hero.is-light .subtitle a:not(.button), - .hero.is-light .subtitle strong { - color: #363636; } - @media screen and (max-width: 1055px) { - .hero.is-light .navbar-menu { - background-color: whitesmoke; } } - .hero.is-light .navbar-item, - .hero.is-light .navbar-link { - color: rgba(54, 54, 54, 0.7); } - .hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active, - .hero.is-light .navbar-link:hover, - .hero.is-light .navbar-link.is-active { - background-color: #e8e8e8; - color: #363636; } - .hero.is-light .tabs a { - color: #363636; - opacity: 0.9; } - .hero.is-light .tabs a:hover { - opacity: 1; } - .hero.is-light .tabs li.is-active a { - opacity: 1; } - .hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a { - color: #363636; } - .hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.is-active a:hover { - background-color: #363636; - border-color: #363636; - color: whitesmoke; } - .hero.is-light.is-bold { - background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); } - @media screen and (max-width: 768px) { - .hero.is-light.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); } } - .hero.is-dark, .content kbd.hero { - background-color: #363636; - color: whitesmoke; } - .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), .content kbd.hero a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-dark strong, - .content kbd.hero strong { - color: inherit; } - .hero.is-dark .title, .content kbd.hero .title { - color: whitesmoke; } - .hero.is-dark .subtitle, .content kbd.hero .subtitle { - color: rgba(245, 245, 245, 0.9); } - .hero.is-dark .subtitle a:not(.button), .content kbd.hero .subtitle a:not(.button), - .hero.is-dark .subtitle strong, - .content kbd.hero .subtitle strong { - color: whitesmoke; } - @media screen and (max-width: 1055px) { - .hero.is-dark .navbar-menu, .content kbd.hero .navbar-menu { - background-color: #363636; } } - .hero.is-dark .navbar-item, .content kbd.hero .navbar-item, - .hero.is-dark .navbar-link, - .content kbd.hero .navbar-link { - color: rgba(245, 245, 245, 0.7); } - .hero.is-dark a.navbar-item:hover, .content kbd.hero a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active, .content kbd.hero a.navbar-item.is-active, - .hero.is-dark .navbar-link:hover, - .content kbd.hero .navbar-link:hover, - .hero.is-dark .navbar-link.is-active, - .content kbd.hero .navbar-link.is-active { - background-color: #292929; - color: whitesmoke; } - .hero.is-dark .tabs a, .content kbd.hero .tabs a { - color: whitesmoke; - opacity: 0.9; } - .hero.is-dark .tabs a:hover, .content kbd.hero .tabs a:hover { - opacity: 1; } - .hero.is-dark .tabs li.is-active a, .content kbd.hero .tabs li.is-active a { - opacity: 1; } - .hero.is-dark .tabs.is-boxed a, .content kbd.hero .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a, .content kbd.hero .tabs.is-toggle a { - color: whitesmoke; } - .hero.is-dark .tabs.is-boxed a:hover, .content kbd.hero .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover, .content kbd.hero .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-dark .tabs.is-boxed li.is-active a, .content kbd.hero .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .content kbd.hero .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .content kbd.hero .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover, .content kbd.hero .tabs.is-toggle li.is-active a:hover { - background-color: whitesmoke; - border-color: whitesmoke; - color: #363636; } - .hero.is-dark.is-bold, .content kbd.hero.is-bold { - background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); } - @media screen and (max-width: 768px) { - .hero.is-dark.is-bold .navbar-menu, .content kbd.hero.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%); } } - .hero.is-primary, .docstring > section > a.hero.docs-sourcelink { - background-color: #4eb5de; - color: #fff; } - .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), .docstring > section > a.hero.docs-sourcelink a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-primary strong, - .docstring > section > a.hero.docs-sourcelink strong { - color: inherit; } - .hero.is-primary .title, .docstring > section > a.hero.docs-sourcelink .title { - color: #fff; } - .hero.is-primary .subtitle, .docstring > section > a.hero.docs-sourcelink .subtitle { - color: rgba(255, 255, 255, 0.9); } - .hero.is-primary .subtitle a:not(.button), .docstring > section > a.hero.docs-sourcelink .subtitle a:not(.button), - .hero.is-primary .subtitle strong, - .docstring > section > a.hero.docs-sourcelink .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - .hero.is-primary .navbar-menu, .docstring > section > a.hero.docs-sourcelink .navbar-menu { - background-color: #4eb5de; } } - .hero.is-primary .navbar-item, .docstring > section > a.hero.docs-sourcelink .navbar-item, - .hero.is-primary .navbar-link, - .docstring > section > a.hero.docs-sourcelink .navbar-link { - color: rgba(255, 255, 255, 0.7); } - .hero.is-primary a.navbar-item:hover, .docstring > section > a.hero.docs-sourcelink a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active, .docstring > section > a.hero.docs-sourcelink a.navbar-item.is-active, - .hero.is-primary .navbar-link:hover, - .docstring > section > a.hero.docs-sourcelink .navbar-link:hover, - .hero.is-primary .navbar-link.is-active, - .docstring > section > a.hero.docs-sourcelink .navbar-link.is-active { - background-color: #39acda; - color: #fff; } - .hero.is-primary .tabs a, .docstring > section > a.hero.docs-sourcelink .tabs a { - color: #fff; - opacity: 0.9; } - .hero.is-primary .tabs a:hover, .docstring > section > a.hero.docs-sourcelink .tabs a:hover { - opacity: 1; } - .hero.is-primary .tabs li.is-active a, .docstring > section > a.hero.docs-sourcelink .tabs li.is-active a { - opacity: 1; } - .hero.is-primary .tabs.is-boxed a, .docstring > section > a.hero.docs-sourcelink .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a, .docstring > section > a.hero.docs-sourcelink .tabs.is-toggle a { - color: #fff; } - .hero.is-primary .tabs.is-boxed a:hover, .docstring > section > a.hero.docs-sourcelink .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover, .docstring > section > a.hero.docs-sourcelink .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-primary .tabs.is-boxed li.is-active a, .docstring > section > a.hero.docs-sourcelink .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .docstring > section > a.hero.docs-sourcelink .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .docstring > section > a.hero.docs-sourcelink .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover, .docstring > section > a.hero.docs-sourcelink .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #4eb5de; } - .hero.is-primary.is-bold, .docstring > section > a.hero.is-bold.docs-sourcelink { - background-image: linear-gradient(141deg, #1bc7de 0%, #4eb5de 71%, #5fa9e7 100%); } - @media screen and (max-width: 768px) { - .hero.is-primary.is-bold .navbar-menu, .docstring > section > a.hero.is-bold.docs-sourcelink .navbar-menu { - background-image: linear-gradient(141deg, #1bc7de 0%, #4eb5de 71%, #5fa9e7 100%); } } - .hero.is-link { - background-color: #2e63b8; - color: #fff; } - .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-link strong { - color: inherit; } - .hero.is-link .title { - color: #fff; } - .hero.is-link .subtitle { - color: rgba(255, 255, 255, 0.9); } - .hero.is-link .subtitle a:not(.button), - .hero.is-link .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - .hero.is-link .navbar-menu { - background-color: #2e63b8; } } - .hero.is-link .navbar-item, - .hero.is-link .navbar-link { - color: rgba(255, 255, 255, 0.7); } - .hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active, - .hero.is-link .navbar-link:hover, - .hero.is-link .navbar-link.is-active { - background-color: #2958a4; - color: #fff; } - .hero.is-link .tabs a { - color: #fff; - opacity: 0.9; } - .hero.is-link .tabs a:hover { - opacity: 1; } - .hero.is-link .tabs li.is-active a { - opacity: 1; } - .hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a { - color: #fff; } - .hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #2e63b8; } - .hero.is-link.is-bold { - background-image: linear-gradient(141deg, #1b6098 0%, #2e63b8 71%, #2d51d2 100%); } - @media screen and (max-width: 768px) { - .hero.is-link.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #1b6098 0%, #2e63b8 71%, #2d51d2 100%); } } - .hero.is-info { - background-color: #209cee; - color: #fff; } - .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-info strong { - color: inherit; } - .hero.is-info .title { - color: #fff; } - .hero.is-info .subtitle { - color: rgba(255, 255, 255, 0.9); } - .hero.is-info .subtitle a:not(.button), - .hero.is-info .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - .hero.is-info .navbar-menu { - background-color: #209cee; } } - .hero.is-info .navbar-item, - .hero.is-info .navbar-link { - color: rgba(255, 255, 255, 0.7); } - .hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active, - .hero.is-info .navbar-link:hover, - .hero.is-info .navbar-link.is-active { - background-color: #1190e3; - color: #fff; } - .hero.is-info .tabs a { - color: #fff; - opacity: 0.9; } - .hero.is-info .tabs a:hover { - opacity: 1; } - .hero.is-info .tabs li.is-active a { - opacity: 1; } - .hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a { - color: #fff; } - .hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #209cee; } - .hero.is-info.is-bold { - background-image: linear-gradient(141deg, #05a6d6 0%, #209cee 71%, #3287f5 100%); } - @media screen and (max-width: 768px) { - .hero.is-info.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #05a6d6 0%, #209cee 71%, #3287f5 100%); } } - .hero.is-success { - background-color: #22c35b; - color: #fff; } - .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-success strong { - color: inherit; } - .hero.is-success .title { - color: #fff; } - .hero.is-success .subtitle { - color: rgba(255, 255, 255, 0.9); } - .hero.is-success .subtitle a:not(.button), - .hero.is-success .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - .hero.is-success .navbar-menu { - background-color: #22c35b; } } - .hero.is-success .navbar-item, - .hero.is-success .navbar-link { - color: rgba(255, 255, 255, 0.7); } - .hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active, - .hero.is-success .navbar-link:hover, - .hero.is-success .navbar-link.is-active { - background-color: #1ead51; - color: #fff; } - .hero.is-success .tabs a { - color: #fff; - opacity: 0.9; } - .hero.is-success .tabs a:hover { - opacity: 1; } - .hero.is-success .tabs li.is-active a { - opacity: 1; } - .hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a { - color: #fff; } - .hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #22c35b; } - .hero.is-success.is-bold { - background-image: linear-gradient(141deg, #12a02c 0%, #22c35b 71%, #1fdf83 100%); } - @media screen and (max-width: 768px) { - .hero.is-success.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #12a02c 0%, #22c35b 71%, #1fdf83 100%); } } - .hero.is-warning { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); } - .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-warning strong { - color: inherit; } - .hero.is-warning .title { - color: rgba(0, 0, 0, 0.7); } - .hero.is-warning .subtitle { - color: rgba(0, 0, 0, 0.9); } - .hero.is-warning .subtitle a:not(.button), - .hero.is-warning .subtitle strong { - color: rgba(0, 0, 0, 0.7); } - @media screen and (max-width: 1055px) { - .hero.is-warning .navbar-menu { - background-color: #ffdd57; } } - .hero.is-warning .navbar-item, - .hero.is-warning .navbar-link { - color: rgba(0, 0, 0, 0.7); } - .hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active, - .hero.is-warning .navbar-link:hover, - .hero.is-warning .navbar-link.is-active { - background-color: #ffd83e; - color: rgba(0, 0, 0, 0.7); } - .hero.is-warning .tabs a { - color: rgba(0, 0, 0, 0.7); - opacity: 0.9; } - .hero.is-warning .tabs a:hover { - opacity: 1; } - .hero.is-warning .tabs li.is-active a { - opacity: 1; } - .hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a { - color: rgba(0, 0, 0, 0.7); } - .hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover { - background-color: rgba(0, 0, 0, 0.7); - border-color: rgba(0, 0, 0, 0.7); - color: #ffdd57; } - .hero.is-warning.is-bold { - background-image: linear-gradient(141deg, #ffae24 0%, #ffdd57 71%, #fffa71 100%); } - @media screen and (max-width: 768px) { - .hero.is-warning.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #ffae24 0%, #ffdd57 71%, #fffa71 100%); } } - .hero.is-danger { - background-color: #da0b00; - color: #fff; } - .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-danger strong { - color: inherit; } - .hero.is-danger .title { - color: #fff; } - .hero.is-danger .subtitle { - color: rgba(255, 255, 255, 0.9); } - .hero.is-danger .subtitle a:not(.button), - .hero.is-danger .subtitle strong { - color: #fff; } - @media screen and (max-width: 1055px) { - .hero.is-danger .navbar-menu { - background-color: #da0b00; } } - .hero.is-danger .navbar-item, - .hero.is-danger .navbar-link { - color: rgba(255, 255, 255, 0.7); } - .hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active, - .hero.is-danger .navbar-link:hover, - .hero.is-danger .navbar-link.is-active { - background-color: #c10a00; - color: #fff; } - .hero.is-danger .tabs a { - color: #fff; - opacity: 0.9; } - .hero.is-danger .tabs a:hover { - opacity: 1; } - .hero.is-danger .tabs li.is-active a { - opacity: 1; } - .hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a { - color: #fff; } - .hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); } - .hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #da0b00; } - .hero.is-danger.is-bold { - background-image: linear-gradient(141deg, #a70013 0%, #da0b00 71%, #f43500 100%); } - @media screen and (max-width: 768px) { - .hero.is-danger.is-bold .navbar-menu { - background-image: linear-gradient(141deg, #a70013 0%, #da0b00 71%, #f43500 100%); } } - .hero.is-small .hero-body, #documenter .docs-sidebar form.docs-search > input.hero .hero-body { - padding-bottom: 1.5rem; - padding-top: 1.5rem; } - @media screen and (min-width: 769px), print { - .hero.is-medium .hero-body { - padding-bottom: 9rem; - padding-top: 9rem; } } - @media screen and (min-width: 769px), print { - .hero.is-large .hero-body { - padding-bottom: 18rem; - padding-top: 18rem; } } - .hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body { - align-items: center; - display: flex; } - .hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container { - flex-grow: 1; - flex-shrink: 1; } - .hero.is-halfheight { - min-height: 50vh; } - .hero.is-fullheight { - min-height: 100vh; } - -.hero-video { - overflow: hidden; } - .hero-video video { - left: 50%; - min-height: 100%; - min-width: 100%; - position: absolute; - top: 50%; - transform: translate3d(-50%, -50%, 0); } - .hero-video.is-transparent { - opacity: 0.3; } - @media screen and (max-width: 768px) { - .hero-video { - display: none; } } - -.hero-buttons { - margin-top: 1.5rem; } - @media screen and (max-width: 768px) { - .hero-buttons .button { - display: flex; } - .hero-buttons .button:not(:last-child) { - margin-bottom: 0.75rem; } } - @media screen and (min-width: 769px), print { - .hero-buttons { - display: flex; - justify-content: center; } - .hero-buttons .button:not(:last-child) { - margin-right: 1.5rem; } } - -.hero-head, -.hero-foot { - flex-grow: 0; - flex-shrink: 0; } - -.hero-body { - flex-grow: 1; - flex-shrink: 0; - padding: 3rem 1.5rem; } - -.section { - padding: 3rem 1.5rem; } - @media screen and (min-width: 1056px) { - .section.is-medium { - padding: 9rem 1.5rem; } - .section.is-large { - padding: 18rem 1.5rem; } } - -.footer { - background-color: #fafafa; - padding: 3rem 1.5rem 6rem; } - -h1 .docs-heading-anchor, h1 .docs-heading-anchor:hover, h1 .docs-heading-anchor:visited, h2 .docs-heading-anchor, h2 .docs-heading-anchor:hover, h2 .docs-heading-anchor:visited, h3 .docs-heading-anchor, h3 .docs-heading-anchor:hover, h3 .docs-heading-anchor:visited, h4 .docs-heading-anchor, h4 .docs-heading-anchor:hover, h4 .docs-heading-anchor:visited, h5 .docs-heading-anchor, h5 .docs-heading-anchor:hover, h5 .docs-heading-anchor:visited, h6 .docs-heading-anchor, h6 .docs-heading-anchor:hover, h6 .docs-heading-anchor:visited { - color: #222222; } - -h1 .docs-heading-anchor-permalink, h2 .docs-heading-anchor-permalink, h3 .docs-heading-anchor-permalink, h4 .docs-heading-anchor-permalink, h5 .docs-heading-anchor-permalink, h6 .docs-heading-anchor-permalink { - visibility: hidden; - vertical-align: middle; - margin-left: 0.5em; - font-size: 0.7rem; } - h1 .docs-heading-anchor-permalink::before, h2 .docs-heading-anchor-permalink::before, h3 .docs-heading-anchor-permalink::before, h4 .docs-heading-anchor-permalink::before, h5 .docs-heading-anchor-permalink::before, h6 .docs-heading-anchor-permalink::before { - font-family: "Font Awesome 5 Free"; - font-weight: 900; - content: "\f0c1"; } - -h1:hover .docs-heading-anchor-permalink, h2:hover .docs-heading-anchor-permalink, h3:hover .docs-heading-anchor-permalink, h4:hover .docs-heading-anchor-permalink, h5:hover .docs-heading-anchor-permalink, h6:hover .docs-heading-anchor-permalink { - visibility: visible; } - -.docs-dark-only { - display: none !important; } - -.admonition { - background-color: #b5b5b5; - border-style: solid; - border-width: 1px; - border-color: #363636; - border-radius: 4px; - font-size: 1rem; } - .admonition strong { - color: currentColor; } - .admonition.is-small, #documenter .docs-sidebar form.docs-search > input.admonition { - font-size: 0.75rem; } - .admonition.is-medium { - font-size: 1.25rem; } - .admonition.is-large { - font-size: 1.5rem; } - .admonition.is-default { - background-color: #b5b5b5; - border-color: #363636; } - .admonition.is-default > .admonition-header { - background-color: #363636; - color: #fff; } - .admonition.is-default > .admonition-body { - color: #fff; } - .admonition.is-info { - background-color: #def0fc; - border-color: #209cee; } - .admonition.is-info > .admonition-header { - background-color: #209cee; - color: #fff; } - .admonition.is-info > .admonition-body { - color: rgba(0, 0, 0, 0.7); } - .admonition.is-success { - background-color: #bdf4d1; - border-color: #22c35b; } - .admonition.is-success > .admonition-header { - background-color: #22c35b; - color: #fff; } - .admonition.is-success > .admonition-body { - color: rgba(0, 0, 0, 0.7); } - .admonition.is-warning { - background-color: #fff3c5; - border-color: #ffdd57; } - .admonition.is-warning > .admonition-header { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); } - .admonition.is-warning > .admonition-body { - color: rgba(0, 0, 0, 0.7); } - .admonition.is-danger { - background-color: #ffaba7; - border-color: #da0b00; } - .admonition.is-danger > .admonition-header { - background-color: #da0b00; - color: #fff; } - .admonition.is-danger > .admonition-body { - color: rgba(0, 0, 0, 0.7); } - .admonition.is-compat { - background-color: #bdeff5; - border-color: #1db5c9; } - .admonition.is-compat > .admonition-header { - background-color: #1db5c9; - color: #fff; } - .admonition.is-compat > .admonition-body { - color: rgba(0, 0, 0, 0.7); } - -.admonition-header { - color: #fff; - background-color: #363636; - align-items: center; - font-weight: 700; - justify-content: space-between; - line-height: 1.25; - padding: 0.75em; - position: relative; } - .admonition-header:before { - font-family: "Font Awesome 5 Free"; - font-weight: 900; - margin-right: 0.75em; - content: "\f06a"; } - -.admonition-body { - color: #222222; - padding: 1em 1.25em; } - .admonition-body pre { - background-color: whitesmoke; } - .admonition-body code { - background-color: rgba(0, 0, 0, 0.05); } - -.docstring { - margin-bottom: 1em; - background-color: transparent; - border: 1px solid #dbdbdb; - box-shadow: 2px 2px 3px rgba(10, 10, 10, 0.1); - max-width: 100%; } - .docstring > header { - display: flex; - flex-grow: 1; - align-items: stretch; - padding: 0.75rem; - background-color: whitesmoke; - box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1); - box-shadow: none; - border-bottom: 1px solid #dbdbdb; } - .docstring > header code { - background-color: transparent; } - .docstring > header .docstring-binding { - margin-right: 0.3em; } - .docstring > header .docstring-category { - margin-left: 0.3em; } - .docstring > section { - position: relative; - padding: 1rem 1.25rem; - border-bottom: 1px solid #dbdbdb; } - .docstring > section:last-child { - border-bottom: none; } - .docstring > section > a.docs-sourcelink { - transition: opacity 0.3s; - opacity: 0; - position: absolute; - right: 0.625rem; - bottom: 0.5rem; } - .docstring:hover > section > a.docs-sourcelink { - opacity: 0.2; } - .docstring > section:hover a.docs-sourcelink { - opacity: 1; } - -.documenter-example-output { - background-color: white; } - -.outdated-warning-overlay { - position: fixed; - top: 0; - left: 0; - right: 0; - box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); - z-index: 999; - background-color: #ffaba7; - color: rgba(0, 0, 0, 0.7); - border-bottom: 3px solid #da0b00; - padding: 10px 35px; - text-align: center; - font-size: 15px; } - .outdated-warning-overlay .outdated-warning-closer { - position: absolute; - top: calc(50% - 10px); - right: 18px; - cursor: pointer; - width: 12px; } - .outdated-warning-overlay a { - color: #2e63b8; } - .outdated-warning-overlay a:hover { - color: #363636; } - -.content pre { - border: 1px solid #dbdbdb; } - -.content code { - font-weight: inherit; } - -.content a code { - color: #2e63b8; } - -.content h1 code, .content h2 code, .content h3 code, .content h4 code, .content h5 code, .content h6 code { - color: #222222; } - -.content table { - display: block; - width: initial; - max-width: 100%; - overflow-x: auto; } - -.content blockquote > ul:first-child, .content blockquote > ol:first-child, .content .admonition-body > ul:first-child, .content .admonition-body > ol:first-child { - margin-top: 0; } - -pre, code { - font-variant-ligatures: no-contextual; } - -.breadcrumb a.is-disabled { - cursor: default; - pointer-events: none; } - .breadcrumb a.is-disabled, .breadcrumb a.is-disabled:hover { - color: #222222; } - -.hljs { - background: initial !important; - padding: initial !important; } - -.katex .katex-mathml { - top: 0; - right: 0; } - -.katex-display, mjx-container, .MathJax_Display { - margin: 0.5em 0 !important; } - -html { - -moz-osx-font-smoothing: auto; - -webkit-font-smoothing: auto; } - -/* This file contain the overall layout. - * - * The main container is
    that is identified by id #documenter. - */ -#documenter .docs-main > article { - overflow-wrap: break-word; } - #documenter .docs-main > article .math-container { - overflow-x: auto; - overflow-y: hidden; } - -@media screen and (min-width: 1056px) { - #documenter .docs-main { - max-width: 52rem; - margin-left: 20rem; - padding-right: 1rem; } } - -@media screen and (max-width: 1055px) { - #documenter .docs-main { - width: 100%; } - #documenter .docs-main > article { - max-width: 52rem; - margin-left: auto; - margin-right: auto; - margin-bottom: 1rem; - padding: 0 1rem; } - #documenter .docs-main > header, #documenter .docs-main > nav { - max-width: 100%; - width: 100%; - margin: 0; } } - -#documenter .docs-main header.docs-navbar { - background-color: white; - border-bottom: 1px solid #dbdbdb; - z-index: 2; - min-height: 4rem; - margin-bottom: 1rem; - display: flex; } - #documenter .docs-main header.docs-navbar .breadcrumb { - flex-grow: 1; } - #documenter .docs-main header.docs-navbar .docs-right { - display: flex; - white-space: nowrap; } - #documenter .docs-main header.docs-navbar .docs-right .docs-icon, #documenter .docs-main header.docs-navbar .docs-right .docs-label, #documenter .docs-main header.docs-navbar .docs-right .docs-sidebar-button { - display: inline-block; } - #documenter .docs-main header.docs-navbar .docs-right .docs-label { - padding: 0; - margin-left: 0.3em; } - #documenter .docs-main header.docs-navbar .docs-right .docs-settings-button { - margin: auto 0 auto 1rem; } - #documenter .docs-main header.docs-navbar .docs-right .docs-sidebar-button { - font-size: 1.5rem; - margin: auto 0 auto 1rem; } - #documenter .docs-main header.docs-navbar > * { - margin: auto 0; } - @media screen and (max-width: 1055px) { - #documenter .docs-main header.docs-navbar { - position: sticky; - top: 0; - padding: 0 1rem; - /* For Headroom.js */ - transition-property: top, box-shadow; - -webkit-transition-property: top, box-shadow; - /* Safari */ - transition-duration: 0.3s; - -webkit-transition-duration: 0.3s; - /* Safari */ } - #documenter .docs-main header.docs-navbar.headroom--not-top { - box-shadow: 0.2rem 0rem 0.4rem #bbb; - transition-duration: 0.7s; - -webkit-transition-duration: 0.7s; - /* Safari */ } - #documenter .docs-main header.docs-navbar.headroom--unpinned.headroom--not-top.headroom--not-bottom { - top: -4.5rem; - transition-duration: 0.7s; - -webkit-transition-duration: 0.7s; - /* Safari */ } } - -#documenter .docs-main section.footnotes { - border-top: 1px solid #dbdbdb; } - #documenter .docs-main section.footnotes li .tag:first-child, #documenter .docs-main section.footnotes li .docstring > section > a.docs-sourcelink:first-child, #documenter .docs-main section.footnotes li .content kbd:first-child, .content #documenter .docs-main section.footnotes li kbd:first-child { - margin-right: 1em; - margin-bottom: 0.4em; } - -#documenter .docs-main .docs-footer { - display: flex; - flex-wrap: wrap; - margin-left: 0; - margin-right: 0; - border-top: 1px solid #dbdbdb; - padding-top: 1rem; - padding-bottom: 1rem; } - @media screen and (max-width: 1055px) { - #documenter .docs-main .docs-footer { - padding-left: 1rem; - padding-right: 1rem; } } - #documenter .docs-main .docs-footer .docs-footer-nextpage, #documenter .docs-main .docs-footer .docs-footer-prevpage { - flex-grow: 1; } - #documenter .docs-main .docs-footer .docs-footer-nextpage { - text-align: right; } - #documenter .docs-main .docs-footer .flexbox-break { - flex-basis: 100%; - height: 0; } - #documenter .docs-main .docs-footer .footer-message { - font-size: 0.8em; - margin: 0.5em auto 0 auto; - text-align: center; } - -#documenter .docs-sidebar { - display: flex; - flex-direction: column; - color: #0a0a0a; - background-color: whitesmoke; - border-right: 1px solid #dbdbdb; - padding: 0; - flex: 0 0 18rem; - z-index: 5; - font-size: 1rem; - position: fixed; - left: -18rem; - width: 18rem; - height: 100%; - transition: left 0.3s; - /* Setting up a nicer theme style for the scrollbar */ } - #documenter .docs-sidebar.visible { - left: 0; - box-shadow: 0.4rem 0rem 0.8rem #bbb; } - @media screen and (min-width: 1056px) { - #documenter .docs-sidebar.visible { - box-shadow: none; } } - @media screen and (min-width: 1056px) { - #documenter .docs-sidebar { - left: 0; - top: 0; } } - #documenter .docs-sidebar .docs-logo { - margin-top: 1rem; - padding: 0 1rem; } - #documenter .docs-sidebar .docs-logo > img { - max-height: 6rem; - margin: auto; } - #documenter .docs-sidebar .docs-package-name { - flex-shrink: 0; - font-size: 1.5rem; - font-weight: 700; - text-align: center; - white-space: nowrap; - overflow: hidden; - padding: 0.5rem 0; } - #documenter .docs-sidebar .docs-package-name .docs-autofit { - max-width: 16.2rem; } - #documenter .docs-sidebar .docs-package-name a, #documenter .docs-sidebar .docs-package-name a:hover { - color: #0a0a0a; } - #documenter .docs-sidebar .docs-version-selector { - border-top: 1px solid #dbdbdb; - display: none; - padding: 0.5rem; } - #documenter .docs-sidebar .docs-version-selector.visible { - display: flex; } - #documenter .docs-sidebar ul.docs-menu { - flex-grow: 1; - user-select: none; - border-top: 1px solid #dbdbdb; - padding-bottom: 1.5rem; - /* Managing collapsible submenus */ } - #documenter .docs-sidebar ul.docs-menu > li > .tocitem { - font-weight: bold; } - #documenter .docs-sidebar ul.docs-menu > li li { - font-size: 0.95rem; - margin-left: 1em; - border-left: 1px solid #dbdbdb; } - #documenter .docs-sidebar ul.docs-menu input.collapse-toggle { - display: none; } - #documenter .docs-sidebar ul.docs-menu ul.collapsed { - display: none; } - #documenter .docs-sidebar ul.docs-menu input:checked ~ ul.collapsed { - display: block; } - #documenter .docs-sidebar ul.docs-menu label.tocitem { - display: flex; } - #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-label { - flex-grow: 2; } - #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron { - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - line-height: 1; - font-size: 0.75rem; - margin-left: 1rem; - margin-top: auto; - margin-bottom: auto; } - #documenter .docs-sidebar ul.docs-menu label.tocitem .docs-chevron::before { - font-family: "Font Awesome 5 Free"; - font-weight: 900; - content: "\f054"; } - #documenter .docs-sidebar ul.docs-menu input:checked ~ label.tocitem .docs-chevron::before { - content: "\f078"; } - #documenter .docs-sidebar ul.docs-menu .tocitem { - display: block; - padding: 0.5rem 0.5rem; } - #documenter .docs-sidebar ul.docs-menu .tocitem, #documenter .docs-sidebar ul.docs-menu .tocitem:hover { - color: #0a0a0a; - background: whitesmoke; } - #documenter .docs-sidebar ul.docs-menu a.tocitem:hover, #documenter .docs-sidebar ul.docs-menu label.tocitem:hover { - color: #0a0a0a; - background-color: #ebebeb; } - #documenter .docs-sidebar ul.docs-menu li.is-active { - border-top: 1px solid #dbdbdb; - border-bottom: 1px solid #dbdbdb; - background-color: white; } - #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem, #documenter .docs-sidebar ul.docs-menu li.is-active .tocitem:hover { - background-color: white; - color: #0a0a0a; } - #documenter .docs-sidebar ul.docs-menu li.is-active ul.internal .tocitem:hover { - background-color: #ebebeb; - color: #0a0a0a; } - #documenter .docs-sidebar ul.docs-menu > li.is-active:first-child { - border-top: none; } - #documenter .docs-sidebar ul.docs-menu ul.internal { - margin: 0 0.5rem 0.5rem; - border-top: 1px solid #dbdbdb; } - #documenter .docs-sidebar ul.docs-menu ul.internal li { - font-size: 0.85rem; - border-left: none; - margin-left: 0; - margin-top: 0.5rem; } - #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem { - width: 100%; - padding: 0; } - #documenter .docs-sidebar ul.docs-menu ul.internal .tocitem::before { - content: "⚬"; - margin-right: 0.4em; } - #documenter .docs-sidebar form.docs-search { - margin: auto; - margin-top: 0.5rem; - margin-bottom: 0.5rem; } - #documenter .docs-sidebar form.docs-search > input { - width: 14.4rem; } - @media screen and (min-width: 1056px) { - #documenter .docs-sidebar ul.docs-menu { - overflow-y: auto; - -webkit-overflow-scroll: touch; } - #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar { - width: .3rem; - background: none; } - #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb { - border-radius: 5px 0px 0px 5px; - background: #e0e0e0; } - #documenter .docs-sidebar ul.docs-menu::-webkit-scrollbar-thumb:hover { - background: #cccccc; } } - @media screen and (max-width: 1055px) { - #documenter .docs-sidebar { - overflow-y: auto; - -webkit-overflow-scroll: touch; } - #documenter .docs-sidebar::-webkit-scrollbar { - width: .3rem; - background: none; } - #documenter .docs-sidebar::-webkit-scrollbar-thumb { - border-radius: 5px 0px 0px 5px; - background: #e0e0e0; } - #documenter .docs-sidebar::-webkit-scrollbar-thumb:hover { - background: #cccccc; } } - -#documenter .docs-main #documenter-search-info { - margin-bottom: 1rem; } - -#documenter .docs-main #documenter-search-results { - list-style-type: circle; - list-style-position: outside; } - #documenter .docs-main #documenter-search-results li { - margin-left: 2rem; } - #documenter .docs-main #documenter-search-results .docs-highlight { - background-color: yellow; } - -.ansi span.sgr1 { - font-weight: bolder; } - -.ansi span.sgr2 { - font-weight: lighter; } - -.ansi span.sgr3 { - font-style: italic; } - -.ansi span.sgr4 { - text-decoration: underline; } - -.ansi span.sgr7 { - color: white; - background-color: #222222; } - -.ansi span.sgr8 { - color: transparent; } - .ansi span.sgr8 span { - color: transparent; } - -.ansi span.sgr9 { - text-decoration: line-through; } - -.ansi span.sgr30 { - color: #242424; } - -.ansi span.sgr31 { - color: #a7201f; } - -.ansi span.sgr32 { - color: #066f00; } - -.ansi span.sgr33 { - color: #856b00; } - -.ansi span.sgr34 { - color: #2149b0; } - -.ansi span.sgr35 { - color: #7d4498; } - -.ansi span.sgr36 { - color: #007989; } - -.ansi span.sgr37 { - color: #8f8f8f; } - -.ansi span.sgr40 { - background-color: #242424; } - -.ansi span.sgr41 { - background-color: #a7201f; } - -.ansi span.sgr42 { - background-color: #066f00; } - -.ansi span.sgr43 { - background-color: #856b00; } - -.ansi span.sgr44 { - background-color: #2149b0; } - -.ansi span.sgr45 { - background-color: #7d4498; } - -.ansi span.sgr46 { - background-color: #007989; } - -.ansi span.sgr47 { - background-color: #8f8f8f; } - -.ansi span.sgr90 { - color: #707070; } - -.ansi span.sgr91 { - color: #cb3c33; } - -.ansi span.sgr92 { - color: #0e8300; } - -.ansi span.sgr93 { - color: #a98800; } - -.ansi span.sgr94 { - color: #3c5dcd; } - -.ansi span.sgr95 { - color: #9256af; } - -.ansi span.sgr96 { - color: #008fa3; } - -.ansi span.sgr97 { - color: whitesmoke; } - -.ansi span.sgr100 { - background-color: #707070; } - -.ansi span.sgr101 { - background-color: #cb3c33; } - -.ansi span.sgr102 { - background-color: #0e8300; } - -.ansi span.sgr103 { - background-color: #a98800; } - -.ansi span.sgr104 { - background-color: #3c5dcd; } - -.ansi span.sgr105 { - background-color: #9256af; } - -.ansi span.sgr106 { - background-color: #008fa3; } - -.ansi span.sgr107 { - background-color: whitesmoke; } - -code.language-julia-repl > span.hljs-meta { - color: #066f00; - font-weight: bolder; } - -/*! - Theme: Default - Description: Original highlight.js style - Author: (c) Ivan Sagalaev - Maintainer: @highlightjs/core-team - Website: https://highlightjs.org/ - License: see project LICENSE - Touched: 2021 -*/ -/* -This is left on purpose making default.css the single file that can be lifted -as-is from the repository directly without the need for a build step - -Typically this "required" baseline CSS is added by `makestuff.js` during build. -*/ -pre code.hljs { - display: block; - overflow-x: auto; - padding: 1em; } - -code.hljs { - padding: 3px 5px; } - -/* end baseline CSS */ -.hljs { - background: #F0F0F0; - color: #444; } - -/* Base color: saturation 0; */ -.hljs-subst { - /* default */ } - -/* purposely ignored */ -.hljs-comment { - color: #888888; } - -.hljs-tag, -.hljs-punctuation { - color: #444a; } - -.hljs-tag .hljs-name, -.hljs-tag .hljs-attr { - color: #444; } - -.hljs-keyword, -.hljs-attribute, -.hljs-selector-tag, -.hljs-meta .hljs-keyword, -.hljs-doctag, -.hljs-name { - font-weight: bold; } - -/* User color: hue: 0 */ -.hljs-type, -.hljs-string, -.hljs-number, -.hljs-selector-id, -.hljs-selector-class, -.hljs-quote, -.hljs-template-tag, -.hljs-deletion { - color: #880000; } - -.hljs-title, -.hljs-section { - color: #880000; - font-weight: bold; } - -.hljs-regexp, -.hljs-symbol, -.hljs-variable, -.hljs-template-variable, -.hljs-link, -.hljs-selector-attr, -.hljs-operator, -.hljs-selector-pseudo { - color: #BC6060; } - -/* Language color: hue: 90; */ -.hljs-literal { - color: #78A960; } - -.hljs-built_in, -.hljs-bullet, -.hljs-code, -.hljs-addition { - color: #397300; } - -/* Meta color: hue: 200 */ -.hljs-meta { - color: #1f7199; } - -.hljs-meta .hljs-string { - color: #4d99bf; } - -/* Misc effects */ -.hljs-emphasis { - font-style: italic; } - -.hljs-strong { - font-weight: bold; } diff --git a/v0.1.7/assets/themeswap.js b/v0.1.7/assets/themeswap.js deleted file mode 100644 index c58e993..0000000 --- a/v0.1.7/assets/themeswap.js +++ /dev/null @@ -1,66 +0,0 @@ -// Small function to quickly swap out themes. Gets put into the tag.. -function set_theme_from_local_storage() { - // Intialize the theme to null, which means default - var theme = null; - // If the browser supports the localstorage and is not disabled then try to get the - // documenter theme - if(window.localStorage != null) { - // Get the user-picked theme from localStorage. May be `null`, which means the default - // theme. - theme = window.localStorage.getItem("documenter-theme"); - } - // Check if the browser supports user color preference - var darkPreference = false; - // Check if the users preference is for dark color scheme - if(window.matchMedia('(prefers-color-scheme: dark)').matches === true) { - darkPreference = true; - } - // Initialize a few variables for the loop: - // - // - active: will contain the index of the theme that should be active. Note that there - // is no guarantee that localStorage contains sane values. If `active` stays `null` - // we either could not find the theme or it is the default (primary) theme anyway. - // Either way, we then need to stick to the primary theme. - // - // - disabled: style sheets that should be disabled (i.e. all the theme style sheets - // that are not the currently active theme) - var active = null; var disabled = []; var darkTheme = null; - for (var i = 0; i < document.styleSheets.length; i++) { - var ss = document.styleSheets[i]; - // The tag of each style sheet is expected to have a data-theme-name attribute - // which must contain the name of the theme. The names in localStorage much match this. - var themename = ss.ownerNode.getAttribute("data-theme-name"); - // attribute not set => non-theme stylesheet => ignore - if(themename === null) continue; - // To distinguish the default (primary) theme, it needs to have the data-theme-primary - // attribute set. - var isprimary = (ss.ownerNode.getAttribute("data-theme-primary") !== null); - // Check if the theme is primary dark theme - var isDarkTheme = (ss.ownerNode.getAttribute("data-theme-primary-dark") !== null); - // If ss is for dark theme then set the value of darkTheme to the name of the theme - if(isDarkTheme) darkTheme = themename; - // If we find a matching theme (and it's not the default), we'll set active to non-null - if(themename === theme) active = i; - // Store the style sheets of inactive themes so that we could disable them - if(themename !== theme) disabled.push(ss); - } - if(active !== null) { - // If we did find an active theme, we'll (1) add the theme--$(theme) class to - document.getElementsByTagName('html')[0].className = "theme--" + theme; - // and (2) disable all the other theme stylesheets - disabled.forEach(function(ss){ - ss.disabled = true; - }); - } - else if(darkTheme !== null && darkPreference === true) { - // If we did find an active theme, we'll (1) add the theme--$(theme) class to - document.getElementsByTagName('html')[0].className = "theme--" + darkTheme; - // and (2) disable all the other theme stylesheets - disabled.forEach(function(ss){ - if (ss.ownerNode.getAttribute("data-theme-name") !== darkTheme) { - ss.disabled = true; - } - }); - } -} -set_theme_from_local_storage(); diff --git a/v0.1.7/assets/warner.js b/v0.1.7/assets/warner.js deleted file mode 100644 index e818482..0000000 --- a/v0.1.7/assets/warner.js +++ /dev/null @@ -1,49 +0,0 @@ -function maybeAddWarning () { - // DOCUMENTER_NEWEST is defined in versions.js, DOCUMENTER_CURRENT_VERSION and DOCUMENTER_STABLE - // in siteinfo.js. - // If either of these are undefined something went horribly wrong, so we abort. - if ( - window.DOCUMENTER_NEWEST === undefined || - window.DOCUMENTER_CURRENT_VERSION === undefined || - window.DOCUMENTER_STABLE === undefined - ) { - return - }; - - // Current version is not a version number, so we can't tell if it's the newest version. Abort. - if (!/v(\d+\.)*\d+/.test(window.DOCUMENTER_CURRENT_VERSION)) { - return - }; - - // Current version is newest version, so no need to add a warning. - if (window.DOCUMENTER_NEWEST === window.DOCUMENTER_CURRENT_VERSION) { - return - }; - - // Add a noindex meta tag (unless one exists) so that search engines don't index this version of the docs. - if (document.body.querySelector('meta[name="robots"]') === null) { - const meta = document.createElement('meta'); - meta.name = 'robots'; - meta.content = 'noindex'; - - document.getElementsByTagName('head')[0].appendChild(meta); - }; - - const div = document.createElement('div'); - div.classList.add('outdated-warning-overlay'); - const closer = document.createElement('button'); - closer.classList.add('outdated-warning-closer', 'delete'); - closer.addEventListener('click', function () { - document.body.removeChild(div); - }); - const href = window.documenterBaseURL + '/../' + window.DOCUMENTER_STABLE; - div.innerHTML = 'This documentation is not for the latest version.
    Go to the latest documentation.'; - div.appendChild(closer); - document.body.appendChild(div); -}; - -if (document.readyState === 'loading') { - document.addEventListener('DOMContentLoaded', maybeAddWarning); -} else { - maybeAddWarning(); -}; diff --git a/v0.1.7/details/index.html b/v0.1.7/details/index.html deleted file mode 100644 index 12aa58e..0000000 --- a/v0.1.7/details/index.html +++ /dev/null @@ -1,2 +0,0 @@ - -Details · MetidaNCA.jl

    Details

    Step 1

    Filter all values before dose time and NaN or missing values. If TAU set, calculate start and end timepoints for AUCtau.

    Step 2

    Cmax, Tmax calculation.

    Step 3

    Elimination parameters calculation.

    Step 4

    Shift all time values by dose time.

    Step 5

    Calculate dose concentration (Cdose).

    Step 6

    Calculate areas.

    Step 7

    Calculate steady-state parameters.

    diff --git a/v0.1.7/examples/index.html b/v0.1.7/examples/index.html deleted file mode 100644 index 0f7b808..0000000 --- a/v0.1.7/examples/index.html +++ /dev/null @@ -1,88 +0,0 @@ - -Examples · MetidaNCA.jl

    Examples

    Import

    using MetidaNCA, CSV, DataFrames;
    -
    -pkdata2 = CSV.File(joinpath(dirname(pathof(MetidaNCA)), "..", "test", "csv",  "pkdata2.csv")) |> DataFrame
    -
    -ds = MetidaNCA.pkimport(pkdata2, :Time, :Concentration, [:Subject, :Formulation]; dosetime = MetidaNCA.DoseTime(dose = 100, time = 0))
    -
    -sort!(ds, :Subject)
    DataSet: Pharmacokinetic subject
    -Length: 10
    -Subject 1: Dict{Symbol,Any}(:Subject => 1,:Formulation => "T")
    -Subject 2: Dict{Symbol,Any}(:Subject => 2,:Formulation => "R")
    -Subject 3: Dict{Symbol,Any}(:Subject => 3,:Formulation => "R")
    -Subject 4: Dict{Symbol,Any}(:Subject => 4,:Formulation => "R")
    -Subject 5: Dict{Symbol,Any}(:Subject => 5,:Formulation => "T")
    -Subject 6: Dict{Symbol,Any}(:Subject => 6,:Formulation => "T")
    -Subject 7: Dict{Symbol,Any}(:Subject => 7,:Formulation => "R")
    -Subject 8: Dict{Symbol,Any}(:Subject => 8,:Formulation => "R")
    -Subject 9: Dict{Symbol,Any}(:Subject => 9,:Formulation => "T")
    -Subject 10: Dict{Symbol,Any}(:Subject => 10,:Formulation => "R")
    -

    NCA

    dsnca = MetidaNCA.nca!(ds, adm = :ev, calcm = :lint)
    -
    -dsnca[:, :AUClast]
    10-element Array{Float64,1}:
    -  9585.42175
    - 10112.175500000001
    -  5396.549749999999
    -  9317.83575
    -  9561.26
    -  6966.598000000001
    -  7029.5735
    -  7110.674499999999
    -  8315.080249999999
    -  5620.8945

    Plotting

    using Plots
    -
    -p = MetidaNCA.pkplot(ds; typesort = :Subject, pagesort = nothing, sort = Dict(:Formulation => "R"))
    -
    -png(p, "plot1.png")
    -
    -p = MetidaNCA.pkplot(ds; typesort = :Formulation, pagesort = nothing, legend = true)
    -
    -png(p, "plot2.png")
    -
    -p = MetidaNCA.pkplot(ds; elim = true, ls = true)
    -
    -png(p[1], "plot3.png")
    -
    -p = MetidaNCA.pkplot(ds; typesort = :Subject, pagesort = :Formulation)
    -
    -png(p[1], "plot4.png")

    Plot 1

    Plot 2

    Plot 3

    Plot 4

    Set dose time

    dt = MetidaNCA.DoseTime(dose = 200, time = 0)
    -
    -MetidaNCA.setdosetime!(ds, dt, Dict(:Formulation => "R"))
    -
    -dsnca = MetidaNCA.nca!(ds)
    -
    -dsnca[:, :Dose]
    10-element Array{Float64,1}:
    - 100.0
    - 200.0
    - 200.0
    - 200.0
    - 100.0
    - 100.0
    - 200.0
    - 200.0
    - 100.0
    - 200.0

    Set range for elimination

    kr =  MetidaNCA.ElimRange(kelstart = 4, kelend = 12, kelexcl = Int[5,6])
    -
    -MetidaNCA.setkelrange!(ds, kr, [1,2,3])
    -
    -dsnca = MetidaNCA.nca!(ds)
    -
    -p = MetidaNCA.pkplot(ds[1]; elim = true)
    -
    -png(p, "plot5.png")
    -
    -getkeldata(ds[1])

    Plot 5

    Without import

    dsnca = MetidaNCA.nca(pkdata2, :Time, :Concentration, [:Subject, :Formulation]; dosetime = MetidaNCA.DoseTime(dose = 100, time = 0))
    -
    -sort!(dsnca, :Subject)
    -
    -dsnca[:, :AUClast]
    10-element Array{Float64,1}:
    -  9585.42175
    - 10112.175500000001
    -  5396.549749999999
    -  9317.83575
    -  9561.26
    -  6966.598000000001
    -  7029.5735
    -  7110.674499999999
    -  8315.080249999999
    -  5620.8945
    diff --git a/v0.1.7/index.html b/v0.1.7/index.html deleted file mode 100644 index 6b10fb5..0000000 --- a/v0.1.7/index.html +++ /dev/null @@ -1,2 +0,0 @@ - -Home · MetidaNCA.jl

    MetidaNCA

    Non-compartment pharmacokinetic analysis (NCA).

    *This program comes with absolutely no warranty. No liability is accepted for any loss and risk to public health resulting from use of this software.

    NCA

    Validation

    Validation report: validation_report.pdf Appendix 2: Appendix2.1.pdf, Appendix2.2.pdf

    Contents

    Reference

    • Makoid C, Vuchetich J, Banakar V (1996-1999), Basic Pharmacokinetics;
    • Gabrielsson and Weiner (1997), Pharmacokinetic and Pharmacodynamic Data Analysis: Concepts and Applications;
    • Gibaldi and Perrier (1982), Pharmacokinetics;
    • Wagner (1975), Fundamentals of Clinical Pharmacokinetics.
    diff --git a/v0.1.7/parameters/index.html b/v0.1.7/parameters/index.html deleted file mode 100644 index e30b5b4..0000000 --- a/v0.1.7/parameters/index.html +++ /dev/null @@ -1,2 +0,0 @@ - -Parameters · MetidaNCA.jl

    Parameters

    Basic parameters

    Cmax: Maximum concentration

    Maximum concentration from dose time to dose time + tau (if tau > 0). Firs observation used.

    Tmax: Time at maximum concentration

    Time at maximum concentration from dose time to dose time + tau (if tau > 0). Firs observation used.

    Cdose

    Concentration at dose time.

    AUC / AUMC

    Area under Curve / Area under the Moment Curve.

    \[AUC = \sum_{n=1}^N AUC_{n}\]

    \[AUMC = \sum_{n=1}^N AUMC_{n}\]

    Where AUCn/AUMCn- partial AUC/AUMC.

    Linear trapezoidal rule

    \[AUC\mid_{t_1}^{t_2} = \delta t \times \frac{C_1 + C_2}{2}\]

    \[AUMC\mid_{t_1}^{t_2} = \delta t \times \frac{t_1 \times C_1 + t_2 \times C_2}{2}\]

    Logarithmic trapezoidal rule

    \[AUC\mid_{t_1}^{t_2} = \delta t \times \frac{ C_2 - C_1}{ln(C_2/C_1)}\]

    \[AUMC\mid_{t_1}^{t_2} = \delta t \times \frac{t_2 \times C_2 - t_1 \times C_1}{ln(C_2/C_1)} - \delta t^2 \times \frac{ C_2 - C_1}{ln(C_2/C_1)^2}\]

    Interpolation

    Linear interpolation rule

    \[C_x = C_1 + \frac{(t_x-t_1)\times(C_2 - C_1)}{t_2 - t_1}\]

    Logarithmic interpolation rule

    \[C_x = exp\left(ln(C_1) + \frac{(t_x-t_1)\times(ln(C_2) - ln(C_1))}{t_2 - t_1}\right)\]

    AUClast / AUMClast

    Area from dose time to last observed concentration (>0).

    AUCall

    All values used to calculate AUC.

    𝝺z - elimination constant

    Linear regression used for logarithmic transformed concentration data.

    Half-Life; T1/2

    \[HL = ln(2) / \lambda_z\]

    If Kel calculated

    AUCinf

    \[AUC_\infty = AUC_{last} + \frac{C_{last}}{\lambda_z}\]

    AUMCinf

    \[AUMC_\infty = AUMC_{last} + \frac{t_{last}\times C_{last}}{\lambda_z} + \frac{C_{last}}{\lambda_z^2}\]

    AUCpct

    \[AUCpct = (AUC_\infty - AUC_{last}) / AUC_\infty * 100 \%\]

    AUCinf_pred: AUC to infinity from predicted concentration

    \[AUC_{\infty pred} = AUC_{last} + \frac{C_{last pred}}{\lambda_z}\]

    result[:AUCinfpred] = result[:AUClast] + result[:Clastpred] / result[:Kel]

    If Dose used

    Clearance

    Cllast

    \[CL_{last} = Dose / AUC_{last}\]

    Clinf

    \[CL_\infty = Dose / AUC_\infty\]

    Steady-state parameters (If Tau used)

    AUCtau / AUMCtau

    Area from dose time to dose time + tau.

    Ctau

    Concentration at τ time.

    Cavg

    \[C_{avg} = AUC_\tau / \tau\]

    Fluc: Fluctuation

    \[Fluc = ( C_{max} - C_{\tau min} ) / C_{avg} * 100 \%\]

    Fluctau: Fluctuation Tau

    \[Fluc = ( C_{max} - C_{\tau} ) / C_{avg} * 100 \%\]

    Accind: Accumulation index

    \[Accind = \frac{1}{1 - exp(-\lambda_z \tau)}\]

    MRTtauinf

    \[MRT_{\tau\inf} = (AUMC_\tau + \tau * (AUC_\infty - AUC_\tau)) / AUC_\tau\]

    diff --git a/v0.1.7/pdf/Appendix2.1.pdf b/v0.1.7/pdf/Appendix2.1.pdf deleted file mode 100644 index 88a8de35e08d63d96998075dc9afc2f334b72e57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 251929 zcmd42WmsKLmi8Uo-6goYySuyl!TsPaAy|L_!QI^*f(LhZ2n2TsPO$I*>7MSMf6u%# zAKvSl^MQSK?NwE))?IbjzqNOfD~U+t-d=OxniI|9h#?}b1e0+>*o(^V= zq5v0wEzp8d31DI7OvLhXS%py!U~fU?f+>T;-cncW~KrJx)8B)zM04a zoNT1+&4Dk?ynZz^C3-P46A)ljbaioXb&SjDv}~E-K&^cSUI~mc`5+x%&06~TpV~98QtC88BBn- zKqm&Elf{e8t0PpRPG$fXpc4;~loHYFM;>7BY7Q`Qadk3t;*k~?eJcZ+n%VOFtz|JY zXO};IDLDbnt!&MRxVgAq2PYt)PsAv1<^nK%iOowP_n$%pSTlRmx7fW#>0g5Q7Cc5# zpsT$L5i=X3td*&=E)nZ%H6rHMh`${EcE@A2y%x^6dvHUS%`D4QJ$AsmN3CkZ7 z);}h!e@s~4O!SEa1peXE>y^Lw^rEWMOF;i7tBRR3(ACMr%=twX381~p>w%f*tu00g z7NS4GO0W|BZM=*xVKGrPbJ1mdk&02x%)^CI+U{kRi2ON-{y9j$y73Y%Q!9W7&_nmd z3nn6VZgvJ%79uV-W(IDSmsq~Y`!*ej*j`8fw;A=vHD@BGe;&oF!QV$AVP)%L=ENvr z3ve+LGc$RSj#19c-onL_h?R+%>$TR)yf6dUA;5a1_vz{aSGX|!7$={<4R|yHdeaz| zQb4BbGfqf`&?8${h24;;qGGL$WC?Wbd7rLFM29iWBBo1@jCIrs=nTg1#xrsi#xd1@ ze^H>h*ovmKP)|@0FumR0HPsvU7sPpHpHNuKkM@kw@YH^MWcB>Lna)Qj=<9S5j?zE$ zYvTY-0`w^gtuo2UF9-tT;Jp$j$!tqf&_6=v%BxoW3Nnm@kmgZO4psvc zCTfjAqsy09#%z6n6#BKjyYFkDm(a(yAY$_PsaH*qMV>|r{r-vqMJ=R)8jMw!u>e-u zD!Dk-HEHr_Zk2E;|2_=oFteQot1iJxA+qjnsD40z92OOq;&c?+OO&qt{+XzEkfwVa zdk7JH@ID%2&aG~)-{r!HJU-WPd)lbRD@I3jnt+&hPM$xY8Gk@>D9j!*tRvmQGDU&z zoQ^1Ao?wHH>4VN^ar$^0?#IY#ZZWOz{p%U#8DCKf)0iKzp?$g8GrnSftI!6#`w9-1 zp2^h z@0s)+@s4uLLc0q}pxO+(;&d)Z4<3gpZGsZP$(dV2>Z%!>ihvd`?XYoT+OAWHdSHB^ zZ__9yVSt;nCY|Df+mMfa5G8R!X#-UVjxDyjig$_rj;AsMtIAH@D6;$EFQiq<{fX*T zYLt8@TMrGT0Ls<;!n)~FS>+6#$|#6sUC|X;)&&q+DII4M%l>}d2(OebxF^{3IU5YX<<`s};&h||<}@tTBmaahe0ut5xjxtI`%b)f0) zEgynT**(rcX=dP0_sG91%8$dtWG{5*f1<)V{Vw_e(9>qDob=^~#oZQ^LrvmAsFQFZ zX2jB}uh&E0Z@v;h!&!on!A(~y$%1G(8gbUKo`ybw?|vT-mMOgxlUD%31`V`TtuDR( z?6FpDgNmiEmhO64TeY225ToDdURro`pw zIVnW>Fob@U=dA2f<|u>$mgzo@qv9=#I+t@S9NqMvg==Hf`bs4?Y}m*(0QEzbQc=4o z&KiQjBe;8Z&v7>Fi|QCR0&g`6(M`oixA`h{DF#X$bBt{-V@Hd;QC7B~#rcQ;h#Z^B zhh+FJZ_RAKhGW%bUaxDhVnmsy00q)2XmV;Y!N~&OBsqUvVV2+5$15d^D=foKG-!T7 zENon-gp*v6VE$))m7@!A4FGzoNAD9$@YCIFx|767bh!7A-k03UBGi&Rf4|bDn4u%|N#`&mV z6l%nRJG#2TVt;H6eH_wBTwNm`_X!mDq-bee3a(Meieo>~wZdlg(%Y3`wAI6+1g{GI zjO8E_tfHY@D+qTe5~nc{=6x2|8D_1z68?N)|bw-wkn5f$sNg3YOjjXkP3x~cYeO8+{ogksh zh6U#cRBG?_$mXj*%feU=I8bvCgdv6X?vxsmErx4Vdl){sOUw`P6CK;W`$E|AEip~5 zK=zql2bE{a(&j5;IwZW3CTU-tSJFkX?Vx6^$cjfp@EWUq0hZ9h@fBb#6PvNJRRf_j;fiCoWK461%JA#?4<7s zmB{g4wa~y;48RG@rB`+l8?8eA)3Z2#bhj_U7><=VN{$b~3Ri{e(kjYxBvtPMj*jR= zbxyOd8QN4gqNptHK`Ff`>pT{LTnmHp({$e{$(hm=xH?eU)^Q}ETP2Ks<7>PPjsE+` z4S!N6{ep;l-v|D?WQF!0X5eSxV;O^`+ru5lL8{K%GsOb207DYg%dl=S!$Ml$W=<4puJoMPoLj*sxVl0Xnm zqsEqqO0bMSMkC3F9#M(f;^$PGIn7q_@v=6lqHTE{Lb)_Eb@Q~ftq&-9j*F>?m*k)v z?Ark!NacG%!5@JEJ;(y*j+EWVpX8IZx?3IETG|yXE=x4ldeS}Jf3^)AnG#v`>W~4n z`pl6WtXsD{I=Sm^uJw#~m_20Sv%0|pp4rQd9PCHP5qsD;6axL+@xA<8ADs!OT-^`- zgZEUFoOc;7d{xO|Y~y)VSIckd$69|(f{*%rSgmn z+0b9y7vieB+X`kc(uE9V%SKcVuXv_lCCufnP~%h83!mJKaN5M&Ub~$HypLsS36!VD z{>c}%CSY|}(Xxfsq2_SYO%52qv-`<_xUbAQ7x`en;1f;`bv5{Yvb)C*a+3HX^|JUOR<^mglDH%Kh0m^zHg}EoP6OY1JKHhWn3?hguN%6)rf4{B&J8r!a%HN^jjagseg;CYj z*yR;q)n2&st@M=;Ux0>D1mJA;W+5yhDkd&Yt7c_q=1j`Mq+sU$@>d0D2e4-pw}0UY zD|-t@O)Gn0duOZvIDf790){3|Rt_&PNyPC6ED}~uΜs04E|=mKQkw$9GLDQx{8T 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 CQDw>i diff --git a/v0.1.7/pdf/Appendix2.2.pdf b/v0.1.7/pdf/Appendix2.2.pdf deleted file mode 100644 index afc35da04484b8ad02e2c245906feb906efca2a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 267230 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

    d4jbIQxm4BBv&>Ri8#(a zx{q~vUPH8$rJgRb3QM1aN(sp~TjER;pCjTE5`7=?`4VT=oY|7|*WTK4EyGbxuf#bm z*Ya~tEB`9P`P|GB=~$Pucy>b$$NG=`H;Mm;$l)n3YDU{Dsg`>Fi=}f9X{xGsG5i}i zuW`+Ix3Daz1)o{oUqL@yV2O@Zwl>%MGsMp-=n2_C_d!l|>cM}c7rCi{&VQgUXI)G8 z{hH&8Pr5z*hD z@A(_zc$^Vj=ib|-O*#H&zJ4qVPRO|?acRB1;Zv8me|_p>i>mEI z{b)H9WGU7-!>NSaI(wxxS*PIz>m`R*Mb_ZbdPj>r+$r{Or|7LkZ!N7^MQosoXXo9so`bP?ks0X=vnT^tEk2R+gsjg#EMYC2!(TZqeH0fDxmX8}X??|({v!I1B<)ct za|7Q*?rQ~q7KuKhsuz4J{*$C9{y?k(+@dxY{IAGb(t>$xUEi<;_V;yRTat4fmKr#w z_ZKO;lbU&yC4^Fo~Y-KVA~C)-RJsjoW(Ew$k3mWJW)>V z{kZm`vyJU7VE&mar5fq$#4I6lr0+S=pOZGN485(hPIx0Iwi*Cy&sv7FizV9+JOWXUlaQLmlEp3EV z*e36h96pOn7YoUfcI+v3^=q+wube$!_*s|Umm+8H%%O2gdgUtVtvluHuZca&NEaSu z^oim#QQB^!@c*5n|6TOEq?Q(n949hGEJ51W`;4^L?b2SUqTeBUH7UsqNoBGC~byODiZq{C!@jPabDgrtsU33+8aDfS(SDOIO^^hCt~!|#BU>z z(g8nU@ik(f2GnuUz}+`?(E@1gg7tP>zcI%x*qYpZH|(>4UO+!!ATR{}!?7O)jC0fQ zeu6+#lijchay?w8;@~od%Q+303Csa7GN?tsQs|upn!69{E24TNER5BzACI;hu-|f? z^hJ*&X-I7ccDrHwi-mKV!)N)O6-R5L@eKT0p82PhZvL;H^?_GaA7_9(`{%M*ZVq>F zpFn@psFFF=eAAq6{y%ez`GL93{K(v4ek}1}L)6EOk9?@Er@5zv=QYm+&ljF!o-aMe zeVM)vdK0~=-b`<AurYiUa%OSAJE)=SRdl*uyZdM%scKp z@roWt(vTO7=bh|^O)D18X=a|~R~*+{7M)3n*z5{x7swN$N8tJQk70eq;`dup@VrglPG zt+vB&H?(DHrP`tLp)FMF5dI#tIcmO}V!B$a)~HR;CaI}vxrB~WGu0w+wNfM07^GeX zZLrE!OVlK2{nS7;84Rve4>eScR|}xcQ(0=H>I-eA>ZOKY4B?#HtNyABw5h6-%28dR zO;(LnH;h0^<*AmcqiO>!1v$5soc(HoYJqXZi_j@ZKTA8T=4vOkGw{KYnyVI|w0u2l zNNKyZ{VHBN25qZ$L@UsalSiAUEmU)~<=QILjnYpv}>iYV&cvN-C)Os_M9|+S*WU1bnh^4Sm%Bc^7n~8VjEc zT-UJhm9zgfJ~EVeOz`&dP2*m|>tJ=1=cHK4@tXLcS0wA6!CYp~V9EKQtPaXUuMl6CJsNtGe%!Zkj*3Yo*M z^wpCxuaVsPa(up1qMsnxiFY37@2kYRCq>`JHN!fc_H30p566*Ev=NVxRbxg}zDuFh zzYVM~$z%2odN3mJ=(ZYV7^J|Il!ejlxH_S}QvX(`Fvi{M$@FyaboAWEV;n}f+kCfU zgv-$H)id=DdPn^}jCA+wUGxX^2YIy9voX&7E^$HP?-Lg$E=qhWaWO``uM^KC79=_t z^&U2|j7N-Y<57%#Ys|IgI*fap0-FQx2R;aF4Sb04Z%1HfU{_#wU{7FgV1M91;9%fW zjE7Y*0^VV@vF^0mTJ5a6t@hSER)%%2m5Fgtqle0=%w;KU7Uqd25CWhVh}LY1?wYX^a#cPGXG+oIx?i4j9dC~x~!NL7Wbsp@L{yMiVdk=kI)>ZrP??ikzpVDuV< z5st^e@sSb99fiW1I~HM|uQsWz7-jcFw^_KhqT@mANKo1_pv3HdA+A4*<zhNE-87wp2JtfY)hx(#)xbzaTbZ5C3j1H2mN!sqm*_oONmclTJ||1 zdYR;-lua(}FR~(6dNc_g=Ve~ZLHFpR89@rAt z7WgQzJ@9ehpMiaWPl8Wcd=Dw~ttn#TR>l=#wLn-c&{Tkbm4{UU=A=YeCD0PrpTWPy zUgd_bbN39)$Z2!TaRl2aggNdwnn05=TbPEK?i`v=i!d`;fstt%t)~sN1#{lrw4Wlg zrtnN@tvkCoYd$0XGCw*03e}y5e8`q4_q-2==NLQ+(?RhezOxJ2M&dsz{;Nec<1#pl zA>VO2NoY`FhEpvRnJKb|NNLYAi=@Q{^E}j(h4oy}JJbty_Kxt5z_>ld`vxiRo8C9c z8{aNIi+u6f@i|mIzIXiNR4cw;{9vjRKP-MEHHse{KapC*PmZ5ScgKGbf1J7`)=z9q z-4Z`b{G59D*ZSAfV@A-ZLXYDdO{or6(nRg4C*}fu=p|}KuVL$k+Wsj$gckS}J&bmo zM~|Q-7gIL9gL;1qwf-UXrag3ko~2K*+IXH$l0z?QN^3x`f?xA!F*x-@`Y&ylwx9mx z9pHT$EHT&nTX5G(?_V^JcZ2r>Ex~)p`?;3nJ?Zmk$-X+i8?@{73HnOy27R^u7cEO) ztFP6v^?dz(?NR-sI9+=pE+MY6_Ga95acSDzxLR?ewRs7n6UHlF!fOdrl#%eWgc+)G z!Y>jQs%i;uCA_C@O86jQhq^amSHekkf5O+5Lh7l+gv12(a-x|SP~#G<#L8-X;_k#x zRi6JD|1Z=u{|Q4=?;2H&s_Fxyx=~wgHR>Dn)yGDGaGAF8*?ffYgHT8WMi#rHvq6!wOhDo?fP@Pc2Q_{CMmnKi*5kcqjoRs z`^EU54+DWAC5Sg17zK=z<8Zkc6Wp?KStcV4Yg2n>k+k7>bAb6cUgY{MEdy3a-i3(d zyBc|}2R1~nnd`Oi{9AzSg7ER~^CBF+g7<27>>EQ?cdLih$LenlvWB{E_Q)GN@Sg?$ z?$%sufwkCLX05c=Sozi_Ypb=x+G8EGj#$U7Q~XYhUC9pGDTp};@$>BJl6H_?+iGvu zv-a2x?Phi>=xwboc81-_>SK4cv+NwZuRXvXY<0JXA^-01Uto{4$J)8}Bzvko!=7!= znQTv2_Iz%Borgw_ zCo|O9&Ixr3Wry0?M?=}j=V+*xeHyYK(hijOC`N_Gh2N0~&9t|{e;-2UAkX=sMRrPP zX=p`gb!dHPLugC*4TsR-&@rn`SaQ9EPKM5KjU}t(csnK8Ob%InlB*`ygshvKZqFzp znXO?ew@>b9?<*p^i0q!+Ba{Z&M`VxW{>g*HXK3<>P`l(Y$s_DlMdbM8 zJdsl%+b2(#+zMqEk+YKLCND@{oV+Y~rPW-Wo8;qs zjqVklN-jw8hB8wsr36z_QmTixz`v%oAo-xw#+j7br~%Pa>ZLTa#)o}Unx(X|R=TpS zt7kxVO6h9#DI&8{a*D~mDFZ@jVH*p#X3F4{VRoyOktt(C6H;x9YvFS90%k?{@DUv(0_Leb{}>eZqZu zOo{tk_JI3>`x3JsW|Qu#H2UsdR_g|9aeyq%BM|ISJvL^0usV;E`sMM`2$I)$!epPG zgl8O+e0laU&-m=q!@lF0L{{pV$~EAbPUGk)rCxYudMc?$p1IT`&%EK@dFoj2j*G& zKk306B|Uiaps|fiONYJr1bYhsPo~iyQ|O(ReTiv+;5^cRdn|mU5ZVyjC#ZEAi!pY< z6$DeXaozNmc+1!rm3u3kZQd$xwaezM^)B!(_AYlH@HTKOayiKhysHW39>ML3;hCpU zr1GvMoAIvmZt!k)p7L(=_~6~+-S0i*Z6N)7k8(SI7c+uPNI5dU;$;mzhTu zBf>y7=0Qw09z*!J`)&;L_YDwFzd$_ws^8{!`n~?JKQU&Tf83Zh|9Jl-|5X2Uf2n__ zztTUKVW#`%`DYrXb^b+TPWhMlSNK=?8~x4x_1;?lCg*bhR)4F17o%)Pt$mF0p#O-! z!+(-S)_=x--ha`()8Fmy@n84f^bZE4fF7_1TmgR|>T(A1T;V`|pfE7muLh=h7Y9lL zW!{EBMW8BB9jFZ~2rLdP4>SZ;duv&(wSjek4erBS^1$Z6w!n@+TVPLMf8bEyXy7=j zdy2&_7RLf-1D)9u16_Q!3S0?X3-ks014BV2Xz{s&4*yAiyU!AI2ZO#K!NGWNY_Nc7 zMh#B%JA*~R;^2&6d2m*64xeH9To$Ye&JQl+xxX^FWK3JIKDg4KAgO|Df=$7e;KtyV z;P&9o;O^kw;DO-b;IZI|;OXGG;Dz9&;MHJn@J4VTB!tx9v5+m~40%IgK1YWVp>d({ zp-G{sV@~l^1fQ=%)7>XRrGA0@-8C4R>Ff$shS=;(s|8;#w;$#yE?+O3#TtB9L-VrN zgzDTIT^B=(Ld(dDLn}h7LXDy3(E8xc(5BGVP%H5ydmx^nUD*r$Q$y{ceW8QC!^07k z&rP8tn1umzo98hq)IoO6Y`!36^J(!U-R46lha*6GWDcF7XdF6^XpATwx=64QY4Z?i zmkoP;dXx@zhk8QSLpMW%VJSWCh4rvK> zSRd~5C%pT^{qDno5?ZHG&iD^Slt6XF5^*>WMck1f^NWf|JUtIOB4Z;3k%^I_NO5Ea z@^V_su^cg(=aE^FIgy&cy2$)7ZIOkMC6W5b%E+2XQ=}!bF;o}X5W!}Zn7131;Zj3gw)#G`xUdp5EhvCqo z=%(n_Xe-NiA#bNqi0+FXKC9$$tMXV}T9jlEkh%JsSk2S*Ce(YKOO6Hmc{yMW$rsb z&knI6g5yfuLTjP8gVsxIo?RSw$Aj4?;&ECR#mCY*Dqawu$lxM^y{F>E44%R2o`{!| z^~Pt#=VV`q*Q8sr=X`v=b8~!QdkQA=S%`TmEd>*;OX4X-Ay^A&dp<1=giC=@SF#{mf+YGiZeNt6lZ8P5_i*TBxf$* zy@2QC)a5Lql}XMrS2L}6bMU;Avnr=Cr#ZVQXMN5lSF>j;;H?A`ea;G^&si0_LeFbC ztvS0~TPa@Uw3FrM>?1ff1o&Wj9K&4S%jf#xRgGsV!SO8w=N!rD$T^u^!{k5Xve7eO z&Ut#;im%DJIJ}0Tr^1|Wdj858KgOQZ<7~^ho^#W6#DE7AQbK1@j@ArrS~Dc$0SHcfC3OJ8OKarm(OiXrd_0=b)G5xQ`8UwRHq9jq~t4UNOsuIk_2wTX3!4T;T(ZHXO;w#1&q{=}ig(Zun@sl-`lVWKn9 zmAI0)mgr0LCx(1ijc4SNTqV~+n$LBRJh|@NU~W8jtnq})pKb9}JL-vbUh*k5w;*@o z$Y)hPgY)%6Zc%P=?u^{>+*$sP+&Q^5x$}8kby5uv;OophTb?t|oBl*;j1GTa!D{7&^AdUE zJc+#Vd6V*{=1tEljh@V#nOB)Nm+T>Lo*)igrQZ;SrqH{82JaKZ!7h3`dg}wZk8=9$ z^413?{`;>37FfBUL55eFfR z(n3~xlebG426H@qXQ0+^U4uM3jk@%nHj}qVZLwOwOFBwbln#OqeiPu_6uhS;JcDTu zU_bpzAiqMtX-NI_Hdv}Bj8YCvJutn%+ytig*8BKKNcT=*u}}6}3qAAf6-stak&fmWE%kdVo1fH1agi3<1+cG>Qs7Ixsgt69vr;=)az5 zBq#7!2`@S6O*`um@h>I*k`pp`IVJSz1tuSuJi-VoP)kRxM%2>LM;mcAtpH~ot;`}= zZbaS+N!ro7L$LNgfb&XVPNQ@^Brij|UFdHaH0%cl3H%3mufc!N&;X5Z5n+_cXuXIe z6uUsP8#G5j(@*>5mF21(W4eT_PJ58$orE{FaXjE@1j}x~g9MA`Xosvk1>e@3Gd+QR z5j=!F>^D&QG%z=)l7v2q`E98%s&%G{u%N=qEt{5 zwD${N1_-1LxdnE+54O~Te!T|GRH5&$VXRNW9t6|Vti=Z~Uj5WleH)UW0=^me z8{qjCVZ>jfmKXb89w+|FW$3n;dpGw@v?77B2Yl+m^D#)S@&2N;l3NAfA8|@pbs6Q# zCCFa}o&O0uZJ@kCzwt`jFe0^-vp&)|Hj(yBuTjq84_VPfHJ9N(Y3d|;=2vjq;hI`m?KE?%V>S2iG1NQ zI18qCVbA0dm1v~~n)D*?fpyiOkNJr0OX(MNsRKT%Bj9KZ@A+r0F-bD*>^w0ov=pNS#IRBm>p~KY`e_hkOv0^C=ny^^qV1|I{MgAdV&`?+AW2A~0qbSCR^wy!wU^LTZ z`ueH^HuE}poNU2p{?a58jL|HIZ*Hb(6 zMY$NHx?(TrgBX|VRc_+r$09^PGyS{vaz_rZ5Ia$5q; zRd~&-z${d0XXcBhg#_~mfRSB_c+!FVD6Fd)ajyeBrxQ=fgXqyM(^rfh)a{n{fCE-C z#D{q?S(iwZN)F;oJ2+%Ps&@F@4}f_am>&T1CNRaoya~)~%mQsPec{@R(%JYLk3VawN8cg{f)<}HS0U8xFGG+>y z`_6~3?E&!rkb5O`@_VI__Mpln)$bu&EByU`p|lm460G;)6nVrw@Q&H&;~v7Z$V2ny z6X0Blwq|2x)kZQ4*D-2;20Xxh+$be&>;UFZkZr5{UkQe6?}OWVaC;SA--emX0nB~C zY(SO`nFOt5JJV8PT48<4S{C#gPw zB>zFNOYER_<(JVep5Wx^1k2MYzOfM;fCZ9-mr-{mdc;>3`It>6Q7+{}h6HS&6mlk@ zhsosQY}{#QSts}$0G}n`bAYcfu_yVLrV|ufXxx=wA_}R%9EESHR9Ah-D1D54O8Jn% z--4ao2YFs0eah{y_E%szttO4pTv6^P7&FvUrZbF>M7>j<0?qx@it+;Z+z;!D1JeLZ z9GvZl>I)G6vCgqZdqMO3!F<+7c{O6)AwepGia#b;#?f7YN~lhPsZ-v~;t zL0Jlzbo&bNREMzYF2(w71tNJJ)?+rT&FZkybK@z}4OrrT_3;64`xTx$ z+Og)e6AfE)QtM9CJqxK$8*9Z@_#JUuWIPk?pnhTBegJ)0iEp*b2+w9x{uDs9mLV@Q z^gvqrJ)X|`Fhf0wzStn)X5KErrk{f65PfOQo}Kx#Dub2JaTpf0jn5!FwnH|26VG7u z0&u=cU*T7fJnCoBmmuc5&(ZEwX`VuUU9ZrWfAbI%@)1|_xldtr^cLmvtH76F)zLw# zZV_uC>6=*RlwqCoP4w<{U?v0eIz|xhC`=n@mXy8l4iBD!zYXv3@KL7kR;B)1JIR)4 z*D70o5~i2-E3#F(3-eI{-r*3wo+#OfRHMHvm*Vi;A7j>o$BD1veMKAIDm<+GNT9PH zY6wQ@CB%?75f#f+k{NGElrreniD)k(3Kb$E&F3(*R0El9*!}ni*y<4SbI99~ccAqz zBQ`EWls*sqcM#_Fj;@YfMh+aN#Y zQ?ZS|N#inrLy$O#WdyUx`2;Mm6%m*?bl^GV^XQ|_VLtlkkquucRtU8$S7^tk{q?s&L z3VsI9WcRtkJfTilBrFqFr0tCzxigmUi(N!JTZgXF*XFlAAS>o?K&7SXUs(Q*HbF3+ zij1d<%RJYdz|%_V9V(T-0sIcaC_&&~Ggi2Bkk=;XA1Q&AltAZbu$+}je1`uQU_Qk8 z8o%MSOvRWX>!3N>1HDC{UFM?p13?npBX*`fB`g*u3QL4%g(BfO;dx;?cBVco>|xg< z!cW;XQ+S76pBH-ARiXZx>F*0#j+QIT(mtVmLYS@HuiY?2w&93YvYA4X_K@` z!d$ILD-s^lrfO4#YVC7csqnb=m{u)3q19+L`0iR@daO;`W85QL7j6oJY)Pk!cF`sJ zg^OZT%oFqJ>t1o1SR$5*6=IcGE!K()#KrXWm$+J7E3Okah?~W2;tsJ*+#~L%ugk>a z;wka0*eQ02SHx>#pV-gp3||e#wZXXdr>;)p8j|>zW^R^(Qd}A<6-X1AofYHTvRU-a znYdq?FLoN=m-*=HXE}m*AdT2n{0f~MVEViw(K9TbWPQkg1N;Qcxh~|J=u2D^hdm~? z##4Vmu&IW2rYli}`HN|+@(6>cD4SU;-#5)nJ};YIBA7izmg4;|qcMHW^f{JqF;&rA z51ySeMTYN4|HATY`B9cXh8R9krl;wZCKJn#$@A#xRi@JymdW&8(tne8VBPgk4F0O= zn~djDnXklV;HjDFHX&aq)0f}>B-3dPFUZ?i9*|pT29!4=GSIhLKa#&sGRWU$`3d<& zmVbf1epRl5Ln~>|^cBFnsh0RvJi{g+b3$Ig^2cR*U$jf6b2$Ejyq9ve+NZa39Wu=z zpG00Q)6+z~{6qADTKPWlR5E2cHzia4IlLk)NTN+-{v&Am%X*9cZR-SUq4fdlHRd6o z`2V|io2_AQVUP9`*rWYr^@#claU*tTZ^rKIR_x9`gWcKhVR!ar^EWLnX*%{?pU0l- zcd_UCx7c(29`;=Sf%aU>e%f;_kEK1=@_n@DS{_e(uH^}|=UOflG(oUkW2sLNZT;*% zBnTObAZA!ta>x&)PLO2@Fr6gJcoB@hjgw?kWptu!vdo}EeFjr`s;oR?Rtlzib24gh z%53_bcoUpFeU?)CNwmqbWJ;cDo1|k2{FCLxvx)uPly)j^@^4C1ey=GhPr6+9nhYI5 zh9oXsj%0aKe!{gFveKQ>M%LH#lwLnQk!;jYx^H1)K>BIn`cCPl$+*)PrTtMv zR_gb5I^j2cOk2|KNm=%09KfAU{B0T~L-J1TQ2WVyQubtDh~J5f)3?=Y z8PzV%UCp?f(VKB2CFk~0eYumY$^NAA9-*&+w7*F{k|}xLIO=c1CP&z!(T^k!rxn}m z&Jp8Ibjn@&e5Sll|{CaK>&M*f)9ihY&6F+E=Mv#RY|NoOg!$TsN2$#(m`bo)!4SAE8QJ{2E~cz{!@$$!)1 z3$@o{zmB>$?Sm;hXYyrAnK~uHv6;t}>CcP;&dbctEXL0I8XH#XUs^=L3bF-(fG{etSuu>XEqGCkt$!Exi)iM=7!tG;%>INag=X=T)Y}x zZs;g;Go6E-*_M=>bep*+bAP(7QZhL19EYHfLzzb@rRKHdyqPRNK71Z_W>@AFoPM1) zpW^iE^!YYzo~5&}N6&9`E;hy@nGAYI(1AI_G1gJwnCK{S6gy_1ox3DQxnmY3#IhuA zj-w_OD~-9-G2gM!vBXiI9@88v9k2yQ6P;##=XsfE9UC26sK3-l$9Big6wlp`z3KWg zPPIPaIPEy+xZt=%r&Bv_I0mwWEH%rP<;?PCg|iZL=5*Gi5pze<_tNjlxnxuvzT5pa z`*MuBC-D^bH{NbfcbkiDo0C}Gtf_{*-ia=4J_TKxFT-BR@7Q=J@3c1I{{`S<`u7pB z7WXa2S|fQ+`i(Nmk4Ddb$@K{PJ8SyLduna7Yg9=uk`qoI-5Va zb|#rGW_71@(UWyO8QH1fZyR#f%A7k`CV}MGdTR2_XRS1 z3iO|Xv=2hs2T>OqQ>u7RiBf$KxeGKd&};_HX4L%_@ZSRcn`q@t&`6+>Kyx2x?nA#c z^h*Q%d!T<0G)j2LKJda=tM#O^AH&+tgTuHEwk<~G>S`hLC!E+gSE(1+BXu7$zK&us;8|Yu;wKK;9ml~9q@K&`xDUi zCqVx_(0>m!1E3iIe+&3q0G9wR0sYrN|25FR5Bm23e*^G0Krzn9{~OU z@LvG`1u%S5hHomRs9OsB65y9$1Yy-GtXc(66+G3q0l$s9usVfXT|4TwL;eYne*)+q z0sSMOe*yF_0B!)>02n^5z{llx!RKA>%QTKMAJaEL^9JxQLZ2_9?k(VN0sbT4KcZd8 zpmG@s02hGfv!MAb_-q27O`wT^CI*^v(3Au20NerDo`h^q0{_H{yNTb3%hKQTT@NO<|JI z&aNrKuh>;2{8~68d`dXWu7|{5iYJ6=%4y|op_ooGU^VG|@n)fvrES6vp-tE$>=zCR zM}_0UDORIX=n}37*MvTn`h_7;5iO!abhGlKVo;2WW5oh-qF5vri!;P>ah5notP$sn z3&ka3y|_|bBQ}XGIBje@om3|76%Q~xU0cL0j3c`kKf2goVm&2-@wX_rXiugbG0|J! zI^{CUkC>YA`|N(agI&n-v8KoH?)UMucfYj9<^>ac6L0qO2&4XjU{j5$mVQ@Ke#toh z+~i>Se<0rj&ig_0jOi)7>3y2ThcDpG^JegQpH8`!AHrMKxV)6*<@iO?BtOscui1T{{z5EPlp254~uj5TGozV4|@xFHr-uKd3vvU;s z1?}tf-dKK}-mjXrV7JD1=#+Q)UHPZU_q~Q~(620H8%%FPoY_X6Fjg2RDDCxr<@ zq3|HHjQ=7`W}`lXjd+<*F3c1@FML6mCCnD8gfBANS}xQJtAy3~_26yM4(ljqyvi93 zS>AjG&0(oVSSTz3re0Xdt~ElF(1NrPzlrP=cC)|svV1qIQ^T&NR&|%!&Pw(%+(9N!hkBC1XVmiy zcTw$Dd(`XdO@5{UXL9-uAG@|(YXBGHVyzmNwp!h%t!21%#EbE0*EVR?OrAyH+Q_c0#6sxq&>P1$oS=*+rXR>eAc4%#^|2L637@r<(kG7xbql3{N(vC8& zgN%cpB|8%7i_$(O+YxOt663BN*G{P?S)WNyl&Ce9w6mJ7brRoHE5tFGNCuX)E_UC< zxKi56TG`54WOwa~c8%R#YOB_#^=m`AqAt=cTBq(n`;b9*qjx9uV5)7F^te7&J+DoqjWMj|;#H-`NBLVXFd#YVkey^gd}U&A!KN^jCz)E<4KzD3`z?^M_8yY;>L z0a!M(Q~j`hj9Fu$x=%l$pVrT5`T7Ouuu;FHUnNcIz4{G(KwrpOWMgO+%&OUDcACBB zusLBKXC7~!WS(lCZZ0*?G*_DEn&+A8k|Rki=yCHRO6Fze6`G6Jpfd9+bE9EDT%$?t z@e#KVkEvl-h8D=S%*|%<&SmCJ=B?Uht;*a=9P}ddF4Q31oKzdl?do;&KJ!5{^I3C; zdeeN;e1=`;wRPr;?CNG3Sz_*CT&`<&^G#-7es&+UNEY2TMk){T8^80ET=4Isl?K0>9Sn0T(k6PXD$7fA**7wFkd5UTc%#OI`m?z z+ZwdSSxjIaXdP=UuuilVS&OX&X2CimsV{4}b(VFGwFbR!)+Fd1-eaAg^djp*>k@0d zbtUx5#zbwkuCX>*TdW(cTadO}cUpHd-)U!2E157h`W)+C>jCRw>#^G`xLM0b!uaUr zl&mMLr^$A#=d9d@k}!(})=So_)?Vuk>wrxl`E9DrhJGY1oW)0*)8-|ww1xFq%qFXl zE^@oGC2Zqt<870yEm{eSqt$AUZK`cLMO#~`ZKkc#HrF=KR%cseBa2#LTfw6CN!u!0 zqpg|wM29BX)-!9*XR#R3n8hO9w#l~D*2*}PX!*8Xmesa)+dkVthTms9V(YM-WY{yd z^R|n&Zd;Fex@EKNy6vWIFhk1F)xivVhKtQ6(Tu!|e2RaFxn#SpjKU0VuT1WYX*^o8 znd1nHr6n098MIqu1W968(P_dQX6){Vm%>T2fP4$)_`&^ zC?{a2&n)b$nFKu65MmGDJhY{PTPg6*^WAVL{g8iegnSuFzl0tYqt-lNuq#LT9q3O2 zgFQG>?eG^c%B7(O>I?Eg%B5|{Ph<776wd^c!LtDJo9J6ZaRtvg5zhhUA5hwf)_)7k-#|hg&pjugf&asR zzk*tL^C7+oo=<|?B>o-_@E?Hx0w`bP(t=MRdTL2qqyGr_Y{1W=RtaR7fVO^$(kVuZ z)C*qgIpmKa|7X-{1ZO*FjsS!AE2abB_7lRZ`Pi$h~q=6?FJR(=ZjcPLl(&~7vd=O!}xC9pKE)f1?Df@;y}%kqBsMJMv5C@n$h zQOH?`)_-Q~OHJ(+m7m7W%>{g)FE}3q{2nN|Rlow3p<6dG7F4nbG zOE-+sArI~3R*KdkgY-G*VH5B{X)?>di;=?k${KR$Sv~^#JpK(IX!sbt4$O9xzF=4; z$@5v1?gr&!(A9b5tB_9zWjkml^6w##KMVS?fY&3x$|E-VatbyNixMwGwohU1unBHK zV$&7N1<`7;lK1}S+SjBAf~`vsZC9|rNwoFJ4;cSbnJ0q#SsF56mNFEUEW>3Pj^VNt zU7rE>r`2<((NVo1OYu>6#egY|HBu5TNGnSwLzWa>+-NI4%rn(y-$;2t7yK*I*imV; zEFYB|!!o4HnUcdXEO)w&QultNuW2d0{s>-U4f?Ts3@}#x!@5Y<5z5nbrli&BGwSpW zk5N)*BkmJNj_HVdQkEj)UVH}`lJ`EN{k~Chr1P0^hkB#h%_wJS7E5!|~`5&Q&(f$88nbQ0#e zemA|}<9)QA?{&QHcwcyr_jDZ_diuEgN46XM82OX&a3xD?40z43ZKQ0NXq(b#S`0mH zw2h3{TUgp|OT~NZMh>F&q4MM0}z938U`mG&`q0oHG)& zcY&o#27HyJUT%vSH&`05U9+><$F3TG7Z~*&w$vPSPd<6hHXNtZ+DMk$Z7ex&*Y(|O z^J8sobiBG#Tw?X?UY5dXax&f86C-tXn+&7-#&Gs=Jf-H!q@5(o$FnraNK;vwZW}S5 z+Dp^wrq4|z<4oIa^P9cW7>i^|@|kPg=do1B(jwb!b5nYqvdscd^vY(ms|BvUG%{4wg=`bcUt#EL~)& zd(_+!zsvovm^1D<)(zdop8m=?=_BPB?Zatz@;i+8sQdp_tTkfEi2G>&8GTRAe;;@M znEw2q%KMRX<~@vS(znum7=G0=((Y5XdYz@4EDhSOWlAjRM!S8(?SQw1^UAaj`y|G^ zVAS8~Yhy#6OqUJwM5f<1?DvF^a{o)OpP82?-)P>9Z)ScPF6m!s@hKULQZboiE*vh; zoID)gGpD8L&5${>WR#s4ddw^vImVcy`i9%dtYE2%!}N9u|0m=U&Nlhq?0pSOU znVEYxce9&Kj4{L*V#J6TBgTjbND(7q#E3Csj2JNljEE6wKtyU0kqV_sBOs!sKIBcdF+Q=d(hQpJ?gXlbN0wKhde6(drl7?sBGKXYdG?%mBMY)Ha~KX-p~=Ih)u=giER zd+xpSQEDuuUB8ynOrdAxcQpykLJ5rz2+oj@zaXLLD`Av^k5dXkgRbI3C3F!qGbwi@ zrEjM2-IV^ngim4P&y@00%Ke;DE+Yz;P?&gdB~W-Jg?~VpZ&C`Ul=Fyw6s5mUDT|1= zGNMdj^J2oUqVNI2xtvn+>8i&FmPi;)GP=h}XpuxwDTG-;DNU5}G^Kox;KOt+@nGyA zcp;TyP&!zPLqLf2~A5Cx+rQbv89})aMrA(&q>jXa|_ys{~FC&-2 z(@8F>RTp8p-l1GoW7S0eB1*rG(iak(Ly%fi{FTDLB@TZ`;ll(!rK{An11aSy!dXEn zXHiNX!CIno2f+md3EzB+;Iou+6G6f>C$w zdTU`wOkB)qFf^u5Odq)Xn3p#afGt2L&sVL~ZUwqk=+>aC0(lY*u#M^+) zdYvxu8XT@s<4M<~abqfFv zmd-L*78}flvmBPo#^Qe*8;|i4{Eug4m{v~z3O1X~WeeD143B4(>U=2J2m4U|eacrM ztTPGKsZpC*Ez&DPSI6q<O+!W!hKRnGWo8!FE* zZ+lLL4__ViJ)*gh;BuPxa1(`}Cb)p$-@ra4Nv_UDoE!=_Q}`W%XA`8eo}%28yOL5K zqwo$26CKxVuuo*7Gmb#k640&``s5`rKcH|Wg*QRq)TTtzXgNRURW=nh%tzI5E~N>j6lz=3Dbow-#8BqHZm=egtWrOwWbT&-1aT8TxzQ^u7rL zViIE#;k=lnm?X&PHM-}^7o_OC+Qp+wLYL}D>&T^}%ZLCk3*BIJ!*x6-BtJI-8p@qd z^N@o7>tKT&ekCYVX6Pi@| z4&ZDym{1Jqko&DWhK_^DGwD?EY@UtbLHrhQ@kM+QWcpHkW8ea8nK*2joa4^viQ+gI z?0j|scI(gB7a-VIJQkv3{^L6X&H`>&U}A?p-aLNmzIETaU$YBOE;7aB~Yh@I(m>aHQ9_E3oSqzJTTo%h>;Tm=dI|atDQ`xC-Ejx{! z26?Ox>jT%Z)7j}TmYu=Qfa_Ub))(^Gne0rsft|(9f&z9nI~#6f=dg2N96Oht3pcUz z*m+QhcKBkr8LjXYP{dZUm2eBqaUYLX`6{@TJFoFH_wZfz2lfZ3U~jRvUm+Rvjg<4OU3v2BxbIHieV8IKQXp_<^A(Of#El=*j)t_& zndi9>8cvKW31dws7^4W|`A+z_Dwq%7M}(08>V)ZJ!WkV_nqZu(!*UyplN*-bV4Q2h za-6F15(sBZ7@j#^uP78Vk2f_8e}=AKg{k_%-C_6( zhgTkkzi@c>gyAn7-n4f7`PUN-LR&=cKquc2#q$5*FY=f82L4N4>v4O2<*D)f+ViUC zHP0r`Z#hfo6)ql_^{6_AbtKSaEFs|7UE>Oa5$Nk zk5A4^_;UUXmbR9!!@7EfZ{l0{Hol$jTQ09^|l;&OhTFc^;L7k`l5QG`bl!uPjJ0NS|2taetva%cKvF3?E2b_ zm^(!+#;Zjg(yhnP0=`K!$d*J-s_4r1Lx*d>~Y+dFd?9iYCXi^w+T+A zbXw~G?*-{K_)l;@OsfhGtCfs2Ul_F)VcT>Gzh15}V=?^&${kIZYBj@$1fvNjouGR2 zNUH?eXf?*yrG)>WV}#jHDRRF~|C$Nfqe0CaS1SY5ehtWTtbcYkoo=s37(K(6=5&i~ z1k)%*&bbzZ9Zzz|n!guE8WA)K$?+#zj#K<;_bu)T?n&;c?z`RP?t9$R+~4*5+w-}m zk$_ibKn78n-YqIwN2DUxjr1I?rJd69-$_QQXAHigi(|1Yy$bto6|MAc|KHd_y8KrK z;VH}-a^b0UL~AqsHwMx4F3$eNNRg%)1 z{9frZN_z^>74;hRRNB{|=cy-S3#8$H9J=wnNI#AC*6w-wDd56qA^9&vSKJFF^hVFA z@711D->W^RzL$GWDE*%9IrY8XbLzv~|GP{1t+4n1o}wCh|L-ZfvIfTMk$r|uGnzkV z+mC(Ge%uNDc>~`KS-c5t$;(_bT{GcwvM5KAMR^5TlsRNk%2nL4uKV1#x{KYnxo>xu zxF@^I+;_R}byv7&xMvX$&YG&!H8rCf5*;g!{jIQ6x5CN5v$RLD(IQFI9Cv2pMM_gy zA5(1Wqa&)_(bC8`@!Ka;ZTsZ-@gj98Eku`;u60c#3VT2!x>l~gUl;X2zwWxk15oCE z?P|?`kMEic6YP6wcV*~m`To0MiG4Rb)*KwEF6)nTT}EDhZ`Ebw9LTz?wD004!#J(clh(WS1JU80`@L!TwOGhY8JVh+@^Vktc<7Tdk=*z%AHQFvuK z>S8+WXPJ6jxR5A84v0m zy?>6L(;EH>$ZuvNP+KctJBIu4pCGmI4tf)j;vGoyPWKd|JDn)sr)f*>Bly1NY4Nl` z9@!SxK_9sj5IN9(sB>xG(7r&&9r@1d%#dquFlHGK8uQUDGM3pK1z^g8C_Q{ zIWxAIgUt$^H@l;}-smCbT&#<^=3Hu*p6V0fdO-*6-f2sByKT({=3*1fN;An^fqARU zHCUHxj78=Ov&yVCHyZQJ8mz%t7?*jQ&03^6%dCP<3W^g ziR9C4#rkYT-d4G|%R<@aOBtkmGKLaqX9+|ryqwKt@mA=9dBTa_g#JLV3lIX_s#Td97wf|^S$E%RJ`Kb&dbiMuve zMBsgLy8AwTj~@x@YdFAtU8ck(B~51*@t12;I+|zyqc457o-sV;IF+B|s72W-t3vX} zcDr`MQO)lGsl(BY2md;R`|KRV^ZZ5U=aMw}-72*`)iGL{f*z*Zku(jxB27atNz(xS zRU+eUd1l!oKzHAo`CDIpYm&3Exc#+h))Brob^l6P`%z z6IvcSAvluXiDgYMIw81G?Ui`KwO7&!)Lv?ZRj$pA8m*7MzDr3zDtlPE?r^1QeKKju z(i4a;|NXjqqmutV)N|AtbW5tWa$_{T*+*#$`rAOB<^ku0?-_FNkrEno7DbQ$VE zGC~H+Paw`*v`#05{<2+GoIt#B>K$@aW!f@);Hc;wi*IpqC0Ht14sy2rxFBxPLf|X0 z4o^I;<*GVq*KNj7D$EP1WNA&v#D6OCR)Y9%)0>ec-(Y#=xFjuCxf8-bJ+JD4PTv7_)xM2n zoXmhM7=gHQ{r?dCo~&aoRQ>lBH?oIMMa-2L4$SZBh?}GTqTU0MeRKrg2L{vI z#kH6+0xHlhKiTAvZ)+s=B6?d>5MqHHO_`C-BJ7QlBbzy=o)-sdYixj?yBBJA_OA53 z%R^-KAito<@1;xVUC20n?tFLN4fJ-MrP&{(Ywg_J(2V-(i%Q-^e)mmK9Te;(pr}9*W`EH zmGmxT0xS)C*FEt@4F9`9#XJ9&^JBufdOs<@u0I26&!goh3GbZd1<2WOg7*LLe>*-F ztAoDPvSZJA;BC6lI!d)UJ@)f6BInaN%R<`J$9e`rS86oC=kb^;(Um$4%y?J~$79ArS8CP&CBG7m z=e&ik)b0QW&&O}}LF60<&moZa^W*hZy(_is@a?4C)x5O;b1ce#hOcFYkD=bZWZbdse!$FhW#v2t{Q(<>_}oJ;3d zF2=Mqtcq2$jp$ae8qAX?R#qYATspC`3a^%DRyJU66UOTB+B(+E_Olk&iuo%z=N9+* z9nnL_6Iiu$biKrLx{i2Tz>`DyA{vq>KRn7D2O4{37t?A^ndS0)vRBJbB$8Nn_ zx!Q?&HQ1{s)gI?+t*2huNxOQp35P$!@RyV_5A1cEY7Ho-x!G!+s9OE0_8r&jK{9j++TI;D+Nvf5gVhzD!f+Hj};s_3;lpS>KcJQyZ^zWkJ zUzsx0~Tw)Qu`~kzsixn2K_1>59iB# zxp(&(sG%LbYlD10p6-K(X%%kU0fMxyRn3K0ZKzwD`kmU>-r1+rs^GRYfnK0aw!nIn zCzp(&d$6pjC$LTA_|*r)s@9+Iw-VN12fM0cZOR?(r;}sa^}#3KsS&y9FbmspKDk9W z&M(I&H|ZWkw;I!y!&(flBewz5Cev&g2uRwN7O0c2slT^T&;6QKFSpT}p07zi+GySN z*QC2`UJ8?Dd`-2~whqFb5cPfgp3~VL^$fDWd1lo2JH?k2Uq7m=-T-yV2!~Ph)w|QZ z?mNtrvQO^Nu`p>~7(%D0jIy0NQ)LXoF&G=A!zwQyW4evhX$oy49IfNEdt+eb)nHKT zI_8p;j~_uYj@mv`ug{S)F&J73{_8tF8{p|K-~0XLgy-^!2)PWs`XRddNGBC^e)Y0$ zUA??pS3lXUtDlPa>ICXVS&plZd>xj6?cKiYc~th2qvTv&{o`(3UD*Y>GaPcy>$FD) zt^ar&Yz6k#F_loIF zUumzFBj*H90HIfW_GU@RRA&Z#BT%acd#5bfOVxduR_pVh@@Glc-5_mVA2~)^p?ZL_ zx1*8A$z)G5^D=+@@G2eW5J&o!jVV_g9zt}#h$$pI^H2%)4d+Q@UWjV_>g!SMQx7%3 zs&y4mw{O6N!oc-q~;Znc)YuMCNB9H>{TBe1q z10!7O!8zel|GgoylD=FXmd}iEsV%F+rGDPNZL$7Z9}UyqHDT*7{{-y?$2UdR%v<5= zp!KS5^*1l{19_HBM^<3h>^~3U#o?F`a5Bz99M^t6+r##;gX|Co?&4k^&y#p6Pv;pr zC5sQ{!_m*-xjJPmrn&eyOc{>x@w|lX<7F62X9sx(FPGGKIZ`O&6?`_Ii9>FzJ|hsc@?kb8+i><+RSU|Uxy{6qrZaJ^9F?Dcq7qsLMm57Rjz`HzPh#@ zj6_nR(xhcycPW#!DYQlI#jnS zkb8-_LRi8l5<~*8#VguNL?!y~Eo#p!eR5kRh3V;1y$4e7SM-T@e*-L6iF!ioWy=_wae<4@$bh;+Wr8f`yjS<;bY9B7O zJD7TVbQ0@jj-$^4VMU^s8As5|dc0cpsYdMgvM<*XJtw4cHB{v)sOYO}+rfzSvRTWx zzatrKy=>NUWpt>Qp|W(YmrA-8(#u-Bq7^l=7WL91y=-vkWi9EY)XHR$%p1b$Ws_4c z)tfE#UedWgp3)Vi2U>Si0=--HQ2lQAV4%Ni{hr{^Y|>QqhE!>%Q!n+Ij0GL&rPB2Z z(i`=zZr_phQt6X=v#j*Vpz|fw4tRPO!C4M{t?A}#E{zg_wYM=4%9?R^x@tMKoV*tNPBNG6{gL+Ag}6}gk&ow|bWcV(T>>xgDo zcsp9YLaz-i^9Xbut#ru0&n7;{AEI~cYJbnIboW1GKZ)l!_Gawr8fk!a`zNfmX($RZ?IUv!Gcy z<|CJYIjt<&UoZL&K-QSH-YNt3mcDOTj*)(+!+x3-xc}(gPu0Gsw9Bd5*;L)H^p3E! zN2%J8RM&MDoqX=!qp)LLlr@`9&P%$d{z?y(%e1Z7{sGQWqOGB$p?gXs7}#-Ur66~7ZS~dq2np- zFBZvoD$lN$?UzmAY;yK@73bO6x))B+9I6uKdayAx7c7Fg3mtM3i!_Ul+Iby4FU^)H zjlS4`qyN1gs6D<<-ys}h41M+O{um?gma>o4QU7YR`-|+2Er_8;gw0C-S+e|7ACx0Y zi|jkpe;m|U8q~4=HZ4g9sRU?XdDWQL0#!&W6J0hNf)tuDG=hy%R9J#-zYYq>uk1^0 z|2du<^%s6+L6XI(En0`YtH13li`H>!xU%;2*M72k)t=6}-iMLZI0ph&CRwf~*`~^N z?B!Oe)$JnnTGnSBwoMDVR;(qhz1S}JN4$E(YlQt_TP4{+tA^-EDmD#jl?FLZAgwgk zA6q6t)5iAEtzwT8dOvKcSv9jl?~U!O_YscvcsEe{x+P|XwyV-qkw|r|=2Va^uWWoh zTjS+Go2lKbO*((xNbdEPs3xmX)^U}iZ|_(7VQYt~_d1PPuUZD%CRjfLv>GrbwXG#U zgIc1V^g~jUEs>4kAyPZ=PN`bLz6Yxs(KY3Dw8X29_81jtE!BT@8*HcEz0#puYBtPB z3Qs3^AW*-mzpMSj^-Px%f>RxBMl)vAKIi7-Ks(X*c?N|v_ICWmuWRik<=xRG7iibb zWKF62uD?AutM-IO)f!~&$QEfvjljPg_pm+sV}7z837ynh{In2bv%g;iXizU|#FQ$e zm5DAJT{5~M_PDp1jj`L62WnYA&3YZ0R2~@pw1xG2KudU$oGqoty==#5rk<`Hd)%wt z-h*a2EpTXXv7=pIc8q)50(u!@i>a^8owaW`Tg>^lZ82?8I^G}lSXr624H#tiX`R{E z%Vq5gXsN1g{jIqav|0 z_GvYZr2%TS4q7#Ow5)Z|P+BVWv;ixvgyUAOe&Ko3@9 z6{a5|{H>HLPgE$7rzq%=wIHAaNNp=oYxi`(pE&BLgA@DjoLL4Gi)Kr$crYhcOe}@8 zNe@(%!}dEX?zkKFPr0MCg2k0joH-50%M>t1Ur~?-L$1raB@GI196KrvX5LhQa4Epy z!{7lEqTw_+2QEYn7z)?GZKwtJP@WfDn4gH6lLeQc7G8;V`vjN-({yeWx;}6&Tm*yR zG8hHd!tMB!a<9&{AO@1~j*|_S!f?0>>$(K)kh3Nz*9|^69nOP`@yX#k*ml>!L@0yr z(u_UD7vP;y&cn}u5ik~RM5}!YR5$zjE>Ua$Lc+X>zw@x|U;~=?ndEWEhEUe-n&{sW4M>Cg45% zx5C|UpUyRKOga3mv*7+o*)t~bI)Xb1?jqPs@ZhA0R|+dnc8fX$1Qd%p{mia0tN>_uMi0E^`#YF$D7o77{E*G8JYi!6^i% z5u8bI&b_jfc?1^`tR%RS;OglTRuQZwxRGED!Oazu%4eFj1nUUa6Ko*ZSb^f1O$3_> z?kCtnuvJ1ApK;Hm=`M?4Ji!!#{Rw8xn2~jnYZ$?i1Va1{|OAvlHLbb|6L zpIo(b2BdT$#Be0&7#jGuQ0JqMBFtbErN|Jca39pZ3vo=k2*;L-an!m5$Dd1a92tsZ z)MYrf25%L6e|rhtmnhbPD@*0y&P^=S1N9 zziM>^JL|{tp3@n;fLf$4-apRlLP*Yw>lkvp+njeq{}!~?w&2rM6C7j)KJBElL2Mp- zhHYe9*bdgj4swGh@N_jg2rlA9KankRM1d$36=J?vD%OY%;&o9kc8dcB zH{y+cMz)b-6d3c&D)SX{tJz@gF~4+Kt|Zq0*AQ2(tH?FQH9Klr)ZC~gR=0e_Feo724kv%-^YvA@Qc*c%Q=H`01|%$5T=r zajcJ&k-_!TcS&%5-xosiYlHJs6DdC$NBDlIzu7pp=AivlfVNVpk|4EA`Df}{Ix|!I zyOf`nto=6SpEX7K{q*(yb}Rqv?V)v)uIoEJk9czCp@pFqq;+uox0}_Md8A*;f@|TeilAqO$xDh5kBm{rfQN$gs-!49v;s)M367^bq zDb;-KZ_)mj%0FNAmA-h-%|&~<2rd07Xz9;}d9Vm7VI{1_Cz$o{3O-?Oh3)thxeNB- z6XTaypvB@?5=+zc4r+S3oJ`&7nJ*~+0o0NaagUTPQHDGX!@-Hn4ZiP$t z2iN+gdqd)12FHh_gv3WX;z)mJOK|?MQ6ceh!SQPfL*i}0@oT4t#8(85q1Qf3@g%gr zM&L8tSbSERfKPGL@Ofx1JPJ!-1w0FDp&DL>O;8JO!%k>~4`H9;_S$mo*D61+Q2Tq7 zf1R$y>vSuQP1OE8?eA6o^qAjmjT4Nc)c||0XTnO`7|gbRR3!QWd_c z{F}A3H!s(|uAL%X%SBp>TeJ?{qIGC|iuPw}U+dtldD^cFmbN&g4;EKY+!J&c&BN#M zVweoN?BYu0-&Umj3A*Md=$5)&>(%YLXOt{b{=|OT*D{vs9#XpBp+{)HPnz$rB``2) zY4F`)(kchf62CS$K6y;AOq1UZiN6~X57Co5CWplL1k*2z59X&VC3qYt>mRIF?c)7H z;;F&ql_iJ7vqH)r5)ywQIDTiAW1WuLr}iqMln2+b{}(k(zArIm%JWu@ImR40lhRlQ z+{&>Ez_5y}A~?;OV?79o)m5tOIa?=RD8(aFHj= zlLdo3pLjljOT2G*x4>X;t+y72#Kgs%218@|#Pq>uH)&6sv>V3~*vhz^OC7Z?YCZCm z!uqicmd%E-95#j(u<@*vO=Z*BY_xV4u}Zd*JuE^^TTrhnDZpTE3lHzP}*$x~K*%?Wl*=-dT$ZWivRq0oD@w^_SxPR;E#{pyaYnlX6*!N-nF9lFLd`t!JICO8mg^#tD_hHTv6gF)mg^EN*I+Hzr6ku7E!R*j*Dx*DWxDl-Yx%xItv5o; zce$2tq?YdrB_A+)_nim>K-xco4dluEY`jB^MvHzt-pi+p=I8^6uJu2KGmUR-raV&AK2wK+2#JzF84#b+>h*X_t@orY?r&wF85z{x%=&M zKl7I>tsd`h=#DL|v=p?qGHK4$aQX_7hfiF^_{230gZl>HZ6uyOWi|yQlMB%fTLQJ`ga6TtG2V!m|%$p^Sq>nha$XrQZ+=v#+3F9-^)K$II)Lg+v4aAqcA*cW51@Ap##Xy zQQy!;)4GqZPR^? zJb$VK~k8OFC*Q!8LGohu1UDe}g(} zXOKhkj_{r9@|bV7V`aPl%G{1iiZi>2?@~QceC+Bgq#g^`nXWX~S-{!r&?uV8PRtYo z(J~w?=8FYr3oa6i(H^W6%h4u$2Cc$1XcxYKmSMG6kJjMJXb)~ei?CK~6K{)pu~WP& z8pUq$A=26__Mv@vz#I_UYJSJO+`PiP(!9#N+PucR*1X=l(Y)Eb)x6!DWZr4sZQg6n zFz+|NXFg;;Y(8TCz+7nl(EO44xcOuA33HkGr1_NjwD}YBr{;f|&zV0ne{Q~L{=)pF z`G01O`Kr0u++uDu>&)$Dy}85ui}{|p%WN|Dn0w9r=0WpIv(*JI!)3X=t~gh`E5ViI zN_M5X&UT&SI@fic>wMP*t_xikxh{5H;u`9@%yqfz3fGmc+guY}cerMFHh4CAUiNaY z%Nyo_-ehm8x1YDacYrs;o9WH+4)PB14)>1qj`HSu^St@qao!?tvA4uK**nEM z)m!d+$oGhEq3=h&$9+%umieCaJ?;Cc?>XOp`+ny8AK%Y?FZzDr`=#%9zCZZ>=zGWa z7vJAvpO3AIT^GAPc4O=-v9HE%j@=TwHFjHUU7Qsc6BiqIYFwYV)8k6wCda45r^Tno z4~Wl*9~hqR=4dn59Al0(3(P`uyg9)vHOtKZ&)s>zM^U{0e`a@Q?=H8y7ZO0k03jeC_2>}= z=}kbINRtvE5K0Ik6!{`TK)!%T6GA9Lq=X)NuhM%b^j-{AdXw^h=5q%GMQq@g-#>ZX z=ec{|?e6T%v(t8GrlklMk)osMBD#t0B3kqky+t37gVR*V#*#TXGM zCWy&mx|k*Ai3OB?OT|jDMr;sU#164b?4k5KERKuQ;wN!Y{48#WJK`7dSXXtM?$lj+ z3f*6SOMhEWrw8eo^(=ZeJ-eP$&#k-le0l*rSTCX%(~IjR_4;}vy{R7Qob8w~cg0M&n&0tMQ(Z!^mUgHwqgc7#|s>jB>`u#wSJ%<1?e4(a>mOG&jPG zR#rDF+Ujlfv-(?utRdD=E7lrq#aZL530Ax{*_v+6vgTRqt#|h z&2-ImEp#n)t#qw%ZE$UJZSl4F8orjVpKog4G`j8RQsz#)L3=28mCTBCsR9Y5w*ltQCn=Ix|LdAd#U|(gj!%{s10^W zy(HdKZ;JOs4)q&RSyU6BiaO$R(O5JSVWN#_Cpw5P#Ft{cm?Wl&nPM)*{9=(qtPrck zda+q-SND=l6oO=Vn#`$tWnXZVpKP38Fh^YMu-t=gj+qV zudTk;Kx?=)${GuuX3ezbS_`dB);4RGwa+?e9d*UKrn(Ybb6g8tOI#~lt6l4TeSA~+ zrt%H(4fRX!7vz`4FQ=c|uYjNITOA3%_jr9@^7Ut){zo4E#J^wW)33&3Gmw8u?}TT* z&?jH+jZZwWzt;!QS+-e)NjTq?GI#wO8PEzNp z3)Q9SO2ph2b%(k~-LD>2kE^HEpD5lglE>X3kIPOTS4mVAHAQVvUo;X;MGMhdM2INS zS#%ZSM7)?P62u&exkVzoST24P>%=CpP2EFwpExLvij(53I4>@XYvPu;Cm!lt7rH|? z)t^KqJr()cJ9;aWaNa2hVd-+0S-$H-u0GIAMtje^GeMp2`L zQO2lXR5q#^pBizmTIv2QcKbbcBA-u27jm&Y%^Ut#jOQUBL`j&j2{ z!s}RC=Ht5Ny6&klyKcB{>KW7vu6q=xKC-UtsXtR}ol-B*8H6!;Ki#61MQv&sL{f{O z3+qO0g5InjwFic<7&elAVUcH^5DzKG;*@6z%C#K252bu4rQ{OkL+z1gEsO57ZGYO* zC)rGDaV#G5rY&Ngne5~p9{KF0?CYOJuQ~LRJ>m=KC4VD(ie)eG3iTFKsHQ}%0IDtB zBkiO9LOMY2Lv4wodS}v)^e&_&^sc0(tVK+rn!pm$@6_Aa_Aa))k8K}d+rHTL3vBxz zZ2Kj)U5ss)%5C*-_~lp7?$934XlPGpFX-1&jqA`GQe8>V^HRONuJSp4u6|3YqccC} zRwk&^*+#X}`-^Rb`9kTgpL><4Lywrr)ROsQqemgc;srq{g$gnZ0#z*#;?2Vbh+5 z(t8}|HhOo1YPU!IDm^`7r6)(U8heiDv2;Y)C#|v3Y!DmAV!ZWjs(X7{xT+tuD(z}H z^<(A``9%R{iC}8;`s!u$k6B8+ie7`gqu0_uV;S{2dOeoOIoUajWpUnjK4y8$TGXB_ zX#HrdV@0iF)-hJnwavAgm2w?){lqHxa$nAB`=<3x%j)> zo`#wM6B9io9|0+~ar7{rF#sfvQyce8>t>c~gkhqW4{? zBq~HDS!pVlJnt%^eDcJ8r5D8hs|bfbo|->EsehGT^DrKC6`r7f_UQtX&kzN_A?YAX z8L5Mzx{ zr>sor?b}%;)#dVjZ*SD|eNmpL@jNR+WyV}@zyE8w zhJ-`bvt0LFw_LYfcU*T}_g%lxuN|_MrH4_CuPW8~YEsP&cec%Jhy~eG+mz+80<3ga zdMkq!Xl1m5tV~vB>s>30mDS2-y=P^&a#%U7Tvl!?kL9-VTKTN}RspM^RmduA1zYc1 zMXV3353QnBG3z6%xK+X`X_c}{TV<@WRynJ@Rl%x=KH{889SUY2r4Qxc3M+Iq`++e%~pVm>e*nU5`IaZ9x{OIW&Pv+S0`^0AzjVVRa?`C2I~KP#>E zj_d>DIe0FLsB8QVy}zfpSD9^&;)a!@&t>kpr04q;8mE1FTc(VTLuL2NLUoHMA-FcYQd z2DXuHq8xt<|uMUR6Rv`%}?w+yGUigU3QQC!X9#kYh34c?%+;t zau-j*{dp?>7Jr++!_)B$JR{G<-{o2Pd%Pcy;jw%qAI-<`I6jU~;PHGipUS861U`$; z;q&+czL+oN%lS(FBVWVU@eO=?9efwx!xQ-deuy9C$N5Qq+GaD$dj0#K`tZxH z508J>RsKu<-B;-g|E|b_$d{!jOP_t}<>cKD;oHiuyj%KqGSBv04VIh@O5?eCemSd? z;?Hy?m6C&6Q2mwuO!nte>*jCz`DpU%@5$T8c>R4G`SwKe>v(wfRPyX;OjpHX>Ght;LBr#}0fg;5#Nit0&isElq)Wkfq_eYU3-WCuCEhIM9NP+Rgp zRF;29?a{BORoR2}rFP^G)LvZ7_OX-fG&@W6n+xm`yTk5N?dK7D%vCP9jr(weTU6}% z@svC@Ps7vl0G^%)@*tj>XW`j+cK!_?&PVW3{Chr@|G>xdiF^{D!l&^Wd?ugG=kob{ zAz#9m@fCa(U(MI@^?W1W%(wFGd?(+{_wxPxAV18H@e}+MKV!3-o~Nm%AYb=G`4+&Q z-OH#dOA9I~15jEhY$^RS>r<-%ey>}>$-bB6L*?f`U!N;Kn~lsc&*#Ut@wuhh{^?Ui zXfra|Z=zX^=-ZE<;}xhD?@OgrAmv1|4qwFVNMWqNDw&;NKQX_6t!&EqZz`~rxQDok z^b?a>*eJDidEf52P)&I*6guWlOBPD24roA>OsMawee=%zgc;!}%oldJ-#Xa22&g{U^<9Kb~iv zZTU>6?5RutTuMugefE20VzN-C#Zw{jj(BS-d0+MQ_41>8!knF{SYIj4Z^Hb0p^c>X zp%mUmuQOJk3+IzH2~$2j;;ZmU*@nG|{kOoiqmYNbde4me&C%R{A=dwRs~4s1ldWXl zFwUDZzUs2>Ri=QvTIEVEO_^LB_0?akzfJ?`$({doPyY9g{zpC`<6n;I3P|QhWBx`d zw>Vin;mO*Va=bz2-}vW0-Md_!^mXptvnFpWeDGDL#y<<)lN!$Js)N0X@P$(NWZ0y~ zwSGBzhCXx@hp;6wRH9>?SPbmd#D#W#SI!b>W{tjLx;DYfQFsYOpp zt$I>w*^>^FZ2%=k8BRK!Qbo3iM#wmj?IL9qrLUq5lWT429VmSjds#;vrcf%^#T=#e zNb5Q3lh${9PWri{0citAL(+zhMx>1>r4&bFYMaaXrkap8aZo+L(bUn5w3#E6G}O_Y zw7HyzRL%-T8s?yyz3eX_ZRKc9+S<{Ew2dR2G~Cgaw5^D`mB+AuS zeN?E0fQtP=< zRRbth$0+eig0etap{!T7D~ZZ6<(zUwxve}>b=6W+tLfD&YHqcVT1+jgR#9uI4b)II zT0uS7Oy2}3$zv5dTqOws2$VJX;-w{+9RP0OQaU*MHZ1;6cWWmSy4sQ5)DMC2p1hi zH_=-R5HUjL55CFc9eIU?ydo#^ih@Xqsz`}y$TzAZJ!&95Y9bG5k31v_Y10*H^Ci-z z8>P)v_7zh#H=V@sb&wvp_5ZL7AM>`scC zBV-S0C$w{9&uAAk@$?u6RWDfv)Iwrs}$G=ze5<_0)O**|d6~o`q~?J-be=Z9TVq`ipF^UQ91d zwxnKOuR^wxUR|$Eww7LB42T z7_y`Far$Jk@%nUq4%u1y0(}|TCHg9TJ=wMTW_>5w?fPE*5ZMFzG5rkLQ+kqqh3qB$ zx_+1JZT*2wj_6`G-6lt4`Ph7IawJtsTUwhO{gmF8*(OIXWwYhB$&p9-Y{51;YUo2- zNn3fcWo?yg)yY=1)w0zmTi4de7D~3Mt)(r3Y`87T)`e_mTQ^%TveC9awgF`O+lJU; z$;Q}5+s2WNv&Gw{lbvdth0%)hY)dfCaD{CxMhI@SZO7=o-L?Z5mv_W=3S;Wd*)Cx; z+*R9cjAXlSXL1ahU9GqdvZt}9m!q}pLH2BNyp=ttJ)ayaWiMp^&|Z>k zak}Ozk*#R2YOh7MroFDc5!nXzruLR(TiCB zKAP-Edz?L<>;(H%`z*2v_IdUtWEa_2*r|lIueNWrZzsFezT19)Y@+>${S?^~_H*`2 zWG~pS+HaG+X}|AaWFI*+hYwR7c8BFiN!HJi#*vO3rDytXYKt_+Mb6d$ugJ70FVJ713?CY z3|^kjWsEL8gFA0ht0a6=W*NRFG*P(?F(yOb3|`G96?F z$PADfAPFD|APFEdL1u!?1epag3uG3^Y>?R?vq9#7%mJALG8ben$Xt+lAoD=xfy@V) z4>BKQ0muT71t1GS7J@7USp>2OWD&?>ki{U2L6(3l0a*gF6l5vLQjldJ%RrWaEC*Q* zvK(YJ$ZC+)AZtL@fUE&o3$hkuEyy~Mbs+0N)`P4ESr4)SWCO?skc}W4K{kSH0@(zz z31l&*qzyDXqyDVQZ-d=Fo|2Ueyk-bqIFS#N#wTRF+MfC)Ftw0GGi&8Nb`SB=}hp|ZW zQ78#xk=mnB2F4b-^IQ*&ytksEY{CqKx5qub%OamKs_R{)SoRXtWUuOOx}r>{c<~%z z5Z2BLz`dO0$FM6SWRD1XJ~(7h}MA^&T>VPTW2`Y0@?_a1ajJXPt*xn!Q@WY6DMOul6cMr~D=oASFfFWvU< zoa2j**OFzYSaj2W)2IIZdXFeaatMkc`5)@NZ~3~9nHJY?&~sk$HjSJ zzZa_4dz9Tz%Zw+fQPcZ0*Xuc(*L|EP=To23QFupt)bie2e?4dP`j52x&*claL(1@+ zTYWrj(ei0-^(vn(`R(!kC|n)><#2WIK5Y_2`fQZur}!nt9Z}6$>H_Au7n;0gHPv(P z3%x|&qGxCr_Ldu0Uuk+5>MiSPu@|o+&6&gdobuDBlu_$``P0U-2Io@7DdW9s;LTSS zDvOjI%1-Y(c*m)B={YOeE|4?!RPl!5?;p>mOjTx54Suz-+Wz318JHJs-k zouLfb4)1x^^`2+>e{i0^KEr4G|KFeI#8;Z06W`eM-2IxN|FdQN#`({tZz zPS1UB$a&6s&F4Am4LQ$4ulYO=y&>lr|4OgV_&4_Y-1C~#)3g7SsPmQe)~!Bce`kD_ zMOzGg$`V%31?#@+;;wef% zi!(Jv3HeXo$ufJN)8(?9vOgvHsuG!*%W7`5u)?gCRx7Ku)y4|9+FB7-J1f#^Z$()h z*ze7(OIxxcSoKxTqEtKCoy%wQSHE!fU#qj#9NGdJ25kv#1#Jy&0}Y3^g+@TzK_j8< zp;6Ed|0GPlx^fSCANmXQ0rVmC5%jTCatNs$sz809PN*SO?+yJgOFn;`oPSKSmN8A8 zpq{~;WY4}Eiyp4j)=Fkmk1t}q_O~bBzu>6(Sbb{+OZhuT?IFXSZ2z8LzUcUW;+Ni# z^uYPQI81{Pv#XfDI*-2bY%6EwOHjvCOrJ~k>E`oW(l)|c<#M@vT`63Co-4)bXmzr_ zaQU<3a|``;_5>YuZO>c+x@T{mQ6^5g8k=WECC_y!Yr{|aLFJKs@FZIdo?eS#&yN6+ zcaZS}0h8;%7{BYyFI|UQ8R0x2M_oW0K$}2YLR&#wL)$>Zq3xv79u8o{gAA=_7RvI} zDyxYZ>qGGzL1#QW&<}Gayu7ubDBn8e9sHrt5mG5s`w^=B2-SXsYCl4?AEDZhQ0+&k z_9ImL5vu(N)&8er9)2^Ph0o!O_zJ$3Z{|CBB0s`UVU?Mi{61Zzx?(7PN*X1-l3B^F zxUtquNu|6}MX9OORT?RwN^2!j>8x~9dMW*=HXWmkru=rYl7Ka4Rw?V1t(4;)P>v~Q zlncsL<+kzwE6rGHN;Rz-sAf@fs`=DlwU}C3t*BO2YpM0s5VeIGu12X{u)>UIcH=R0 z?N3!_sSDI)SXE}bx>r3!{(Mfoq+VC=s*f~H^U-{@)LMWRq-E1`YXv-`46wco#uaES zwFu8h0P^ z=tO8dbP{wjbP9ATbQ*LzbOtm5IukkzIvY9%Iu|+*Iv=_Kx)8bux){0yx)iz$x*WP1 zx(2!yx(>P?x&gWox(T`&x(&J=x&yisx(m7+x(B)!x(}KN-48tgJqSGnJq$epJqkSr zJq|qqJqbMpJq>ok&e5QqzglbgqD| zgs%EkPNUEjuwRb&f?kAPf?kGRf&L7=N-ArH9IL_0b=&2iP_C-)Xw9`2S{Oca=J}KB z+$v35hd1}WPu<@0z8JlNN<_8^&ly-899^hSA;u99a+OxJ)AT(o9^eQI*-5HbZOiP(( z(S>wNhEBaS=+?XgdG2icd}{^e?YQVPHQmwLYIn3cHBMEyqWI^hATC|dDRaAuftZDr zKDo`Oq2+?Y)d|5=Kh<=9<)iyk@uiKK)=5MRstZAFJ z;Z5_VcLzw~Sd+-M?c0V%1(s?X8PPVfaa0&>kwHur|$d)re}` zCL*wEsS@t=Z<%=ux!-pe&Re)(aDl>g>0@xRkM16GUQ5Ufw~zeZ>93afq*UIl?sq+( z(ubD{i)hg-GO%=wGJ$1kR4L*vT_!kJzS5-%=E`5H#QS;Qb!YONP{0dMs7ABMj$uuj zxubbd@(AXFsnOiUi2EqfoU=tY&KADD`dabB%YrXQeE(7CdnbRs_xSX>NqbUty>_eG z7dN9vrdIl&MyIOV#Dw$KTCxEUJE=vubFz%1xqjpIn=+XP#9>LyHW`esEtz z(bz8QPB)*}Fy*6hKm8}m!%R1)HhKKPg7qcG_9%Bb-L+l8J_pZ4Ol)?1Rp{QfHNUEs z@95#OgYLIpRIs(*oK6kixtwQq|Fmy?o3V4ciQ{XYj18FfzB|8EsZ;M_mr6m+&x&mY=qC{ z;=gqKWp0jHYYNVFxogTFWY8+RKXzA$D;HO$cc~UpQ4vM*6E)k+ctS3 zT7^lPCnB0;1b z*Spcn?ik-?$~=GR@>b)QJxWn`ebI3v`g|0#>?^<8j|bElYJN4Qq3_CEp#w)I_BeO! zQ&u*2t8z!Xyze}GvchWLBg1;G&M@*q^VOrvMTYQdp=~O~<<8z}_`@Cg;bJ~n*Zq)i zF4KnvV@pJ~DmCgq#ZuSZziZ5((=+M#+iS@yvbnQ(F8U0~zi-+sutr$(aN4WP z#{%=Y^X5fnR@fb!H*Y>S{TJ|LX3svlqh3q+yx*(8^Zg&@Mt%A%%Dl!laAfx{Qa#Ah z=s{$kocC{zAKoXX?85O|8uraoB!BMogFD~vIweCipWkIm+GXnIvKQBlxbusa?)uk0 zkAuR0xZb?zx~yr=X3KC(8(N~trPE7N^}p;tvf#1ch?;FbxHO}T!(HLW6$9NPj4d5E z-Dy88b*Ek5EFHSR{&nEx^pgu-Yq$DD6#KZ}?jwUQCU$=G?fn^z`V?KhI733n@RjR& z%^sAHI5Wqdn!gl0w5{EcbLk&nYS(JZSN4ukCw!}w-+PU1EMIB7t>D=@=EJU|H=e6| z`s-VXBV8E=#GmQ)){lvs$EM>O9+scvKP3O~jOFv)U7dLxo3oJmF^<+2i%IxN8!CcACpI)hIvg~S0Vo0wYjo!cTxcTb(yEiVKws4Jq zth>7WI)z4g(S&mDGI>q6(^Ir)l|QLkJ#PVbKKW7j=g61e?arGoN0VT8fslgD8s{qT zen^2_1@h$&&J~=$P`+GEgA3*jZJaM(!2+R8p34Huhc`W2RqTnL`c~n>LG#;8-rPYM z_WN1j3v;Np5$%x+lDm)}lNXZ%OaE;sC6~K!E_X1pz{bh4z)#&&SxJ@!mifa2Jjn%L za)>CmAp`Eu`D0CSvtM1#YP3SF{nQx_f3~{n#!R1#tJZn{<+~5JE#J55+P!ybU9Pb) zten`lcFUzx4@T4*)-XkIwpF5x|A~=b^jQ`LeR#6nd5tWb3ALn znb357i{*a&nOgbB@Sbt`F3y{qr)sUw_1UTVZ%o%@VSD3rVwWtg>@j5~Qwzk*SCR|uv=B=$EReH>?nYP@3*okdc zg=bxVH*1ECmjkCbXJ6ay969t<%kRT_{!nOto4`k3?|Zyv(eOf!M@3Wq7@Km+s@_|F zj{bkeoo7^2%NECz&=UltN$q9G_nKoF5CB?^MlK?S9W zfYPLkpaRlFkahu;sxRQZ$o2Z(yYItW_d`}PGizqfne6@l?LD(j(ok?xK!fFh&gH=H z?)Bab71klfsOi`&H-Shu#k@rK#3=(-E$pP#!%*uTk4X=;gS_tqYJ0#BST`&y2L=vbgo#H(MLn1$YjAq)!Q3Z9PSoSinfO=#dZX^Y)B)mP^S0Zn< zOiIJMr$n^i!iC|6Cyl8mNhCJU#K!|(5i1rz#>Rz#RSNFN5d+t@+9key!>zNz<$n zu0S&uBfwHYH>E+-~K3&sq>tu~jd0>C&djWAp@&MXB#UTSoh;RG! z{Fl+?j(l^{l9CebFC3sFr}~`HUWhv1lF|9>}6JRP=(nQ%Niw@B}t`6>ki+!-+X4h0lIZANWEs?o-2J zkZ~0a#oVYODBN_FY(7CV>tLnAoD$8WGETvUT<<^}_eUs+V_+?_K1$y%Lm5V&LhY|E zy{bC&(IEO_v#hwy?fQ>3Au#peeiIDu0?<|+=xk*PJ_Kc?>3z+Z^6BU!7xM~9sp<90 z;T~2eb<&O^=~*VFD{b_aQUE4Z^PD-$;aERF(W=x zy{gk8(Lad9=?RJH2-u#UHCwzhlA6(W#Je_B*q8j^fT zOYTI7exqr&v>McBCk$>#WvakWGNW4=Zf^s4iXZ?_=I{p!XySW!Q9$x@8W0-!f01G& z0DN~y(ZA!6KQaOY5gYPIKvv;9G!E|;5x`FIAJ16ukiW76vcnDtksU;zD_GjV&~dGWkDFF!Qr%~EFrRm&qj)Re6f+5Ygi8bjD8TdB>yy(ytGB(C72PR z-WPQM>lASz(N4glBolRW#?7X8G~J{eD$!UnbXUAMh^pjOl0};x8`+GD{|BV85WUoN z0i{t_g=VGoU=y6gufT1k-E-xL6@htG>+w5zr$R3$*}yy5jDGD7ZX0oP9{SEXMjnl;I_| zWrCE&WW1tev9x(}rSex~Uj>O$S$Ro<{Ds~OoWv&svunJvf{hAZP8Urc-=r;K<-gRv z`j{j<_KWROw{d+;VnodoUSC057LkV?!Xom5DGJ9AcbzXwDCXeLyX!J%&wXZ01eIYM zIWB13$E&Ms-1Oj-iU7${Pmrb5Oa2KTYuXc90TpYYv6?~%-uBHCrixnj{*$`X3Iy62 zepC%hmFD?llMRiSpm&&Qfzf)c)aJ#f9H-ud#m?!YfV_gMqjQ#7C0oO#F5?Z!p~3S5 z^SaY0(L4r`J9#0lxc65a0&UBsF1a0 z8dAPDzId$#@|a67Sliu5Q#O>o^tv?i&`74iYEo&9R<=h<@4JD>m_2sR6WKZQ3;g|n z=P&aT*1Zml5K?L`D98ll2XX*ufYkoX)xSV_f5wB6JOV+)Ydm5kGZ>rAdyeSgkCFjS ze}~)74ys|ceztBn>VMkwA^I)RYl+Ufmz3B7(zZzCF6M0ZVa^yZ0u1(HPW|s;?mvw0 z3xsCvTs#kHXfhC*2!vkSTO>FM5E=%k{4pH_%q;!i(kv%$$8*FxbN95zU>$wV!QFg4 z0oA<$Ab<=Pl7|zd2XY3vg6u&aAX|{n?xwOk$Pt7kmUjMqzXrdY3i z_x6hW8^?M++1zAn=S%S+(OO0)2dNXz_p<47tQ=L3HtsInMo%bHz(v#FE3xPHKi~{V zR2ZLeYSmN<4B}s52)PsQ8y36TE(FmMdwPYgI_EAKb^5&9h8z4wwwQ_-+8pJ`P37)& zIwff`Z1qXpikA4umST6U?4p-o@l=WMeE0AQO-ZUqa*95U5^R|=YJj^D$uhpwEZJ$9 zc^{3G} zi74Y$81!9WPb&03jm2H$@Ma1*mghgED&~B<(c0J{yphxKaB}$Q>y@=-WFUs>;<&p(qRnOLxhls3xMZL8-nx|)6vVfobA!8JQ=1?6DRZqJU8$Qq{?RXx zZEjXB70aUgZJ>hR&F_85##Z!47;e^Gv1ALFC)K+;I_l@?culD%!_2_29(Rh55O@&D z8?>kfEmPUd@5r%kAVj90I%{U2bL@$FYr4NB6sLpU#%49tdU~E|H9p61Ajs$i0#8~B z;7JQ1U@#DRvXQfdVAt0HxQN}gcJC;o^6Wt@pi@7`?z6wequ8z9t<+Ia(HKP#TFF}t3N?6>#}iN zH~;mVki=y#fo0fM!cZ;&1`$Zj@L~9=(bbUY=tllE&L0zKxN)eCeR5`WIn$j&9 zvXJ(aNeNpLVAsw`eZLLw!ui?s$=DH@jcQEorW@e@~wwc<@%*@P8ZEiC&Gcz+YGuvf;zTeE<`DS)!VmIE4 z{qv?WGE36Yk(7#xqe@jthtlbwp$CwnlKB(jg=7iwzI2BDWQtl77OWlEou+R5ECE^h z*mwD8B$QeQUWyM&3L^vO^tJH(2Ajeyo%ad@SI$E2l(5Gk(Ok2{kgH+ElNU1xJ-A*; z0cY1QRhs+OlXO{XA0*8Uc}=tUN&UfUXk{>Z8+1;xSZ4Ju0}bZ9b(1)V8VQ6)BoHGD z;tdczjOYr1TywfzX{P-?gmj~WUw={e!@}37>qoCQ4u*eN!c{{op{WadG$I6NV0&aF z45Reh3K8b30Uns)Pp+41sXwZqzvia)W9>c?nJ$*YmnC~t*N@l7&qlS`dlFJ}E)&`- zC03jC9rmGzc(YlaypdQ;{ctwUZ+>?rGePlplr{_sdDy`=m1joB>l8PsQPeG6VU8r< zcPm9yt>uVfV6odtO@cYs+A<%Q*nAcBnbU+th_eZZ_UQwnuYH9oaw6 z2rFJ&wb08A>>W4F@>yCijU{zepP>3T@7sXFJMtNDno?bxMk+i%=)UabZ~ob&V)L-V zFCEC*g6JDy47sV)obuWoJ@}2IPzQyl)0Ks)xkxtw1@sQB+*Szz3uR<&=-_B?q-XUH z&_>@J7K)L9ot1!r;2$s#551C`tr5M9k)xiWo}(VUqLaSkUj#K7X?kfRYZFIP0!9`# zWn8=0C(xZ4{ky2~mV zxLX)-8WQpI@wjriewFfksUdK+vb1*Ka^)q`Gqlk+;`)OBBGVHQ{DZ~Of|rPyj**s~ zfsu$0ipSp2m`g!K>|ZB+VZ219j*hlm^z<$+E_5!;bT;-T^o*RGob(J#^h`{&UmUa! zZq|-^uC&$;#D7Z=F>)}lH?ws#v#}=lOQN2>jguoU5fQ=P##q_@54qM3bpJ4n&cMcs z-c`?*o{^4${x3oFf6e?SN&jlyKT-ZO*$QSRrj8E(wFdit@ccv3m!tk=2A7PUy@in> zpOU?k5fAf9CoZjES9t;IH$aNB)A@nV1OJ z7#aT^{omtkZ0!GT^gl{qVPW|i|F`R3w)~sUzqtQJ?_adPPX>a&xR^OO|1tJA^)Fk# zU@d}w7Y_f@{&zV1I}#Fng~`9}MS)(-%+k@wo?gsS&(TQ4$iT+X=$8U$a1%O5UPx!OHaOJI+eN0^MJI6a8hEU;q?$2v{@7!)b0Fgto-^Dfu_EV`0eWG1 z@f@6=o&|H^w~FExs^?_r_t)VhwINw}yvS2P4muR6P*{qHBr4J(igc zXExxYeU-azH=TfqAA=UC9QkZne;&o%OZz>=2XdqPhX!0lAhLGMX%Btq98w?;1xWFN zA7=fwmnR5hoCu(K8j5J)Bl&~yG>3>%jQ~peego7wB|-Dxi^?u454hdm$?ogSUtRZ_I_Hr$zq4O1Phl&0P@Gx z4|G(>O!T9N0i!cLDTBr%OcU4WQMRT_yPMci4FcBnVX+jG!@g)drzsPqL!Ltm`b9QN z{*4^^2{T)x7czZ`8TD&8ubBzku9WS~z5j>WyK$zexh5VB^OX1qm;S2?7p#9TmP z^HbzxztvsxII}2`obw7F^fhGKsUC>XxTRK}M$&}c zP<+*jERRpHe2U0J1*uO&U$VT;(8OqN%IX*3+nDobO}qJ9(?X=Z@D;P1k9L1dJoks>JG4%`ElC$zWcBhl|n|L@>KZ6 zjSGhP)BM`fRW_YJqNph>e#C>?)S#iZobf%L%?NkOL6s2%U-u)LhSF5 zl_>4$zXT>e5qrH*q%Rj#8bV9FH-Ma@W=uy-`j}c7?q>wJ(=i|-#uem7Pj;+W+*!H)8pqSa zS(SJ9bq&d(YDj=STIwea?b|Pqour3^2>XC}8UN|UfOye+Yozhuti`Z6((GoQBe3Y&iYKIKTn2&OIBCU$HSb5&wKwH*CqpAQU#gzvs@47SYCe(i zN3!o3Esn-6ej0!KZ+tIZIixTpq{0314GT28;DKyfA($v6&2m3viOGWM7~Y=M3XKM~ zMJ2N*ZS{NjkMn^+@l&Z4bX&)OGUFqEZVoCcz(}VS|N7N=zVlBM?!lIkoFK=va5*EQ zJ#MVVx@^^I?jglrdh;-J!0rxZj*tg+OGz;Kse6fqj4pSwWae+~ z4F>byN?*Z<^~0gtiahMGVf)k%uqqZ-7CRRV_!I5uLC7Wl4@#^F7bSpqJ>r@9t_#K`Q^HqH1p|!**ctvEvc2Ebp^X0)#&= z+@a(zN+G$g>e>d)$YkP44E(dqdcVfvVt%Pd#Q5ghn6mm^ypM1rq;NG@?S99zx%PC*fqr&OU zl{`}R)R{exh5gbC{kdG*(6wR~QP*-yy}A&;=9u(!QWB^XkVBLcU`{zU5HD{cpGG{n z*Lj+zHmB z%d(zEg=^jSbKRu&DpFP+J#-NXF(c4KE>NS&$fExp4tr!cla>C<-o93d@TbqtDOm3q zRbS>V7|_)&4IcV0x5F957APr4!n5$x6v)D%A(i3~wUlx$F)Z|)aMmCLb*P7v2jo~I_(_>3?}5Xn>2VOy$>rt_=p|pc9=#9d7c}>6c{9&;b5NfUy`8u zz(Jeq%-fD#HBVd4_lNG@>Yu(+N0q!ESMNsm=O@5*9^{V~UZ>Z09%O}NP=yvQncQzg zmv2=eYaG0tRVz?0dsdU_Z_rha7fgWvK&ANKOvB$daC;n73%5XoOZmoca z%ch=^9nBY(u1P9qBP-HC$3&md)vRV&lHW{HZJM0R&|{nCT(jj~_F^c_`DQab)cK^ZBZOuF&=T|F~ z3tpsJQEV)O?)*V|-sbmA=XlMR0xFCyN0k;6?UILR`q`Vza8R1lP}%fLJjcQnIsTU_ z?8QsV_52ux;1kCg(FNkH`AD$CyZYJIw3~ACG9_HmsoJUwTcttLuNFph7d+hRs;KC> zy#>h1QIV8Yo5n_TMash)NP}@+WI|q3^%5@CNh<>>Fxq^&<*8dEwtT(+X9jo-UpzhbLkq- zIA893S_T9zyWzOt0ZZzzuD&Do;&kg?O$+lj2X?({N@#v#pG!IZ zM8N=+`_?(Iqv~H3=+K&A8o;CUeT0>0XQOw)DWxg0TZ zgT4K{k^hk5bYVp0Sl7eKka_(N5XM$zS^F)40n5>Op4ak+gMC1AtMewlKlLf{ z262$`!w~jciiF$|6A&S#5FhTdPtevoI|Lto?k6@#J8n~>iFH+N-f5!q%0yYMwFXUg2e}n&m z{=Yc?lKZ#RzvcZ4SnE4F9j~`OjwkEB)UmygB}| z;qM^(PYG|1zmoL-Rl=Kzg@cp*e`LH_nK&6Z{(Z)K-2>7yQMB=@q^h&3$ua(t#*owl zn9(qZ1VnEZ1cE?Qq@RF5GcryK(FhUJo-hz1RJXT~pzn`yyDv-trV1(o0xF`s35F2{ zW)fpA`ghd$)7P(ZSBMCQtG26m@2e+m{7Kb^1^d%^PGyr5xc*QI5co`_@Cfjy?3cv> z{7^nuw2GPz_j{VkH^Wnu+yXt37m|xmF_QsFCynZ#97qPR88wYe^y+D$j`_WN>qX*<|6L z2zxpnrYwt0z@{ajSC1iN;}rNwZdddoB_Uy#uC=>8Ge*YndOQ{}AMH>qYFI3hCPuDu zCBFg7_k7XbSf+cd?(2ag2I5ceZo_W5J-pZ2Y%p(cK1OdY~30<7+j77%Q4E&9{lcX^>K4 zJn3nP3iD59C3T2_8=z|MwUd4(jy51jLolefh%T|bTbS=XhkCa_Vb&)gOO1LY$E73j z;3@uwFesZqUP<}NA3bKMK;sud>6HAOTOla#OhGCUaHw`?%V3kI)SMh$=A;fheyI>q0-aGpyHBX^qH8oip^2V4lpIQKn>_-gZb zZ$BfR4)|6l9=|0O) zEbS=4WHoL?;>8p})~<&!M)~%|o)<06IA9`KwV0DUHsX6!bOv`&h9(PvOR4))StRyX z8IU>diE}@&>VxKgIM|NIJHe5j^G^$qEM5^_f?d(3y|Q3V=Z z;jrz(BRIJL+d{$%5jzqDBhIPYM1i3RDc2F3>Z9mjh>ted;Fq&83cJczgtFg|Qp{oMrpF0F~5&f|_cWC73R_z~g%` ztzjybf$*{z+LYvg)OgSf1DZeQ#k&CcvOZdmte+&$8Pph|35tFLVL6Ip!ZN~3s1cBC z?N!YoWkavVBVPKb_gG~$;~!R}hp~F$3C(ep-dRg9`lng&cxF~r`N5(@w7t|HXyfgw zQN?~oq&&O$ry|b%&m)GFfCc1b zLcPElLoGgR5MRVXxjAbcT3&oViexV@P4`7&*}^o|vQMu3y$y$t@C+5@xyTk+H)8vO zZxg2@{U}yd!NWP|XDyx0qsWv?Vj$X&5}^yjgjF3PF|aa~7J6Kkx3&bn0{`&pHl%ib zsIxdqZOp&<(G0Rhyx5BSceJ9h1*(cQ z<0GG6?NS;kvkieC45yc?#7K4P_xBVdThL$QjTltok&+q-vj(S$|4>~BlBw9w*ai`* zU18Sa-b7g|t^W!7s$Uv(y?T`n@@}2sb7y5&KgJrEbBaYF<=;?xS7sIS&iW&HofdLL zkr5>+*|%oD9E@nH8BJkIGD;}GZi}KJ=GRNHkOIL;C+>k-zxDmzeaG0V*LW6_4Y+m% z_Usz$!4HmY*A3=@D6vhQzTv}qRk%xhi>tI7w%GT5Ll~W54>co^w;C1|;|A#6|CTS( zTD&6_e3Kj7mfw1SJXDx3r>oj3avARwJaYEDT2SYk$4hRk%`x_rhcAk6-=1%wEZqM8VLf@g~LJUm(gXm%XO?|pXI7K9O?)5C2P*+783R&Ij)PQ{%%=1F3Fc~>_%jilW}_wVi=^HWx51`Ybw$VYQf3rbkhU5sS^{s7I-N4LQhjjENjbmQFcQKE zC*$q+>C0~#w{#=Ny)hrfqcL?}Mq|ULID-IUD*j+Wu7%S{>$?p#dT)0F8qgKl_F#5# z2krC*)g1P;_+{mtDpAFzh+-&P1t=vF&ol8=v@j;RX2!|*k7l8ZLZkkZ80xoWCbqaZ zWvN7qG1pR3cVaGjv@MX(;sFrG9^^enkIh>e<(go49tR$WG>bHgz=G%92G?cqtdFdZ z3G42`Lz4kDMzkk-_?sTm#pIygfWfjB>~!|g7X7;Ab)weF$M&$rqmGidc2KeN7+zIL|n3kbq3-;YH^g}r@bVA?GR>Sp? z^&@1m;E(AH+Ow_l;p2Sb zOxTS#;H%<8pYo^_&nC`)FM&63>m?bWdV(DXquIc@ynbX=Gi2(8)iTy1m$yI{)MLEs zC7JZ(jg(sxWoc7;fv^5@HSYB=>4rPnML}*4h$OLWewx}YcPZ@gZJP%W?ZYuKkN38< zbARs~zu{W8Hlx(9S*q><7xm5YweUh}clu0+$Mbu-@0DHNX#37-n)CtIp+S9Rn%MDk zGsk${u0mx#zOt85*J9*va%D=MZ(bEm@+t!7l@KA=80DH`X9A4k~Q)@Yx`=qxDOw%ysw)+ zvw`^Wv&7hN4;Wg*5z6Y^S0Z>1rIgauWx z9Za}jBI1MFDM0MJz;>CT^^a;!xii!ZZ8CMI*1nN~^b|_f6YJOb_I@*DVHSAc?RT^@ zb%RjSXCM-DBZjm<%)81l^0i&BoEXOY+CVlUup(SgWet_(3Y0!`nj59@5BKF6%0AkZ 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 TPrWNb_c$0B|D`;&Fv?N(MdO_iEHH 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 diff --git a/v0.1.7/plot3.png b/v0.1.7/plot3.png deleted file mode 100644 index a6602cd148ae9d1c21d6f8522bd54ee79d7b3f68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16745 zcmd_SbyQYu_b!Skh=hccAcBt)(v7qrA`Q|F(p}Q20s>MZC9QOKr;12}beD7^-R$|i z-}l>ljQ#Ds$N6iYGsfW^uL0{>>t6RgvV<%KFieYI}CN!oKMq|u-v%!w#FZ$K7%8|xA z-mOXawxNXD7g?q1k-a|QPrY7SyK?QkANW{4QJh>Lq_Rt7dE_t4p3z z>60!E7ih^>_+P(yTcV@bxRZE7Sw~~W=jx(Rr!Idr?&C*1A|j{1f1U>)HV5F^PS^9Y zu=Ju2sl0uxlo@r9`MJ*Xq_ly-pPr`F<(k4g^47k%LU@?S+gVN3RzyY)G5vOVo}H06SZnsDWD)Ql_4s9yXg@TUQ+ zkChZ#z78#|FMD8ha&l6$!os*D+j(!_-o@!bo#U!Ot(LkvDLFYqWILbZivD!LuVLI?Y!M83Iy$=Jg-H1usNdgSzp3kU z;k5T0_DsIcx7_pM>}Y$Y$%n|Mc)b36x6^Vs-+ZFdx-*99nW!kiojWPk`~_N7Lhk!! zL&K_(UVmFi4w=6S3}nft2zk}6ZpCq!^0{o?BP4X(7-i#EMH@nar&T+ye$p(sed|_< zga`uj)-ATFM(54=@A_u2Lv8^-e*EzByJ2g){pJnI-XVu+k9NIl#H-I&=gYz@4f~&R z1o`>T=9&X8FE2CMKI#?;JFN|ZAvp5s_@d*8K6^$%LBZ6~*4fGLyfF$#L`@)RXJ=Ps zGZi8}zd2FGMTUdl^6M9-zbL}N&W@F(+9KN1-by5`@1C&t`Qhe-*kHP3m#rmS8!~En9qZWnPA8CV7tx^t#NU~kq4TboILq~ z$97u4X)Q{#V5>hP*!*WqbaZrLqBbl74lHiOZhg2QH8oYWK-0b`w+1X$r_qy_i%W$H z&u%fO#Q-5CA>q0+dksG$D@(7|F=+kXy?YyTbN1WQ4d>_QV1PGo-YmTM?t7C~F0rkv zD_ai2ev zA}mIWU!6>OdU`H6)I6Vu?F=&e;dhI%vnPQkJP;NKhtTCS13s5Fuv&cy8$px0*ctoU zMLvmdsQA^hy&i9G?-$|sxvXc*IK596V~P1Qjo8Ov1Entwcq|69J9MKQhVs!bAG`Y*-SpkP}Eq{1dF0gy)WnfW^=lMA3y1deJbpCrjw4gwp`+quLG-a!&cUi9IvIWxXIzhi$g8M=~99% zW5?_#b{?KsV~rB^jqUB;QY*0INE%s2-JNgWzP(=VDPf!_GwuCk+lniE{;kw%rqL^C z1#ZRIx#n0a8A%iOBK|4WXVzEmRPz?^^U>3P2qb3G5Vs-qciAKUUuEE1L@o z3SD$|~C0BuGeN zeQ)A&TMlo)HgTAAjh357W@RnIXPMk}8$D}Gdy}!7#l*!Ax27ig`q=pR+#wP`bZl^3 zB{(YKhgd@`9dmqk=Cjw$qf_TRwCecx?_c5b9p9#=E3iQ>*!A-Aa(IM;AxWH!s;bJ} zyLX4Xe&;A<^>Bng2E#w%ZFK$n$Mi|MBgD?)V%7>xLAYtvjCX?Z7`TSd!H`;m`$4Ve zi33E78XLZ(tx%rnmFWf#SJ.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 diff --git a/v0.1.7/plot4.png b/v0.1.7/plot4.png deleted file mode 100644 index 19c652581b890e17868c46b3a0e7da01b92d85c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40996 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 z zXh%u;eX&(P^>MSGdyUH}yH_JLzaa>-!nR4)zuv53<*UdAoxBx`LT$hshkoIYxd_)S0;Qn3f*B{ zzfDSZ&0&v|pSz54vNx>G)M}2&_!%{qCk#q$k$nT4LUAPq{gj6L*1aOv<_3m>uYN;Fa_q|&*C(fSLfT`h*LAWOsQY64*tmqbcRLl<^;4^m>b6g6HzK)~MK9yvLA zwNp*vPABC91WY&r6AlSwjunJvI1XUyZM}DQfJn+ws^FP={!CS!;N{ugYFA9q>c8FY z|9Syp>SA5XK9&kzN&&!Tusp%NMWIxYTp@<4=xV-4d~C6!wP&9`� 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 diff --git a/v0.1.7/plot5.png b/v0.1.7/plot5.png deleted file mode 100644 index 18ff25bdb9736d6a31050aa4d6207880d2e803c2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20459 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 diff --git a/v0.1.7/search/index.html b/v0.1.7/search/index.html deleted file mode 100644 index ed6c41e..0000000 --- a/v0.1.7/search/index.html +++ /dev/null @@ -1,2 +0,0 @@ - -Search · MetidaNCA.jl

    Loading search...

      diff --git a/v0.1.7/search_index.js b/v0.1.7/search_index.js deleted file mode 100644 index 36df9ca..0000000 --- a/v0.1.7/search_index.js +++ /dev/null @@ -1,3 +0,0 @@ -var documenterSearchIndex = {"docs": -[{"location":"api/#API","page":"API","title":"API","text":"","category":"section"},{"location":"api/#pkimport","page":"API","title":"pkimport","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.pkimport","category":"page"},{"location":"api/#MetidaNCA.pkimport","page":"API","title":"MetidaNCA.pkimport","text":"pkimport(data, time, conc, sort; kelauto = true, elimrange = ElimRange(), dosetime = DoseTime())\n\nImport PK data from table data.\n\ntime - time column;\nconc - concentration column;\nsort - subject sorting columns.\n\nkeywords:\n\nkelauto - if true auto range settings, if false used kelstart/kelend from elimrange;\nelimrange - set elimination range settings;\ndosetime - set dose and dose time, by default dosetime = 0, dose is NaN.\n\n\n\n\n\npkimport(data, time, conc; kelauto = true, elimrange = ElimRange(), dosetime = DoseTime())\n\nImport PK data from tabular data data, time - time column, conc - concentration column.\n\n\n\n\n\npkimport(time, conc; kelauto = true, elimrange = ElimRange(), dosetime = DoseTime())\n\nImport PK data from time vector time and concentration vector conc.\n\n\n\n\n\n","category":"function"},{"location":"api/#nca!","page":"API","title":"nca!","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.nca!","category":"page"},{"location":"api/#MetidaNCA.nca!","page":"API","title":"MetidaNCA.nca!","text":"nca!(data::PKSubject{T,O}; adm = :ev, calcm = :lint, intpm = nothing, limitrule = nothing, verbose = 0, warn = true, io::IO = stdout, modify! = nothing) where T where O\n\nadm - administration:\n:ev - extra vascular;\n:iv - intravascular bolus;\ncalcm - AUC/AUMC calculation method:\n:lint - linear trapezoidal;\n:logt - log-trapezoidal after Tmax;\n:luld - linar up log down;\n:luldt - linear up log down after Tmax;\nintpm - interpolation method:\n:lint - linear trapezoidal;\n:logt - log-trapezoidal after Tmax;\n:luld - linar up log down;\n:luldt - linear up log down after Tmax;\nlimitrule use limitrule for data;\nverbose - print to io;\nwarn - show warnings;\nio - output stream;\nmodify! - function to modify output paramaters, call modify!(data, result) if difined.\n\n\n\n\n\nnca!(data::DataSet{T1}; adm = :ev, calcm = :lint, intpm = nothing, verbose = 0, warn = true, io::IO = stdout) where T1 <: PKSubject{T,O} where T where O\n\nNon-compartmental (NCA) analysis of pharmacokinetic (PK) data.\n\n\n\n\n\n","category":"function"},{"location":"api/#DoseTime","page":"API","title":"DoseTime","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.DoseTime","category":"page"},{"location":"api/#MetidaNCA.DoseTime","page":"API","title":"MetidaNCA.DoseTime","text":"DoseTime(dose::D, time::T, tau::TAU) where D <: Number where T <: Number where TAU <: Number\n\nDose settings.\n\ndose - dose;\ntime - dose time;\ntau - tau (τ);\n\nDose time set 0 by default.\n\n\n\n\n\n","category":"type"},{"location":"api/#setdosetime!","page":"API","title":"setdosetime!","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.setdosetime!","category":"page"},{"location":"api/#MetidaNCA.setdosetime!","page":"API","title":"MetidaNCA.setdosetime!","text":"setdosetime!(data::T, dosetime::DoseTime) where T <: PKSubject\n\nSet dose time dosetime for subject data.\n\n\n\n\n\nsetdosetime!(data::DataSet{T}, dosetime::DoseTime, ind::Int) where T <: PKSubject\n\nind - index in DataSet.\n\n\n\n\n\nsetdosetime!(data::DataSet{T}, dosetime::DoseTime, inds::Union{Vector{Int}, UnitRange{Int}, Tuple{Vararg{Int}}}) where T <: PKSubject\n\ninds - indexes in DataSet.\n\n\n\n\n\nsetdosetime!(data::DataSet{T}, dosetime::DoseTime) where T <: PKSubject\n\nFor all subjects in DataSet.\n\n\n\n\n\nsetdosetime!(data::DataSet{T}, dosetime::DoseTime, sort::Dict) where T <: PKSubject\n\nSet dose time dosetime for subjects if sort ⊆ subject's id.\n\n\n\n\n\n","category":"function"},{"location":"api/#setkelauto!","page":"API","title":"setkelauto!","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.setkelauto!","category":"page"},{"location":"api/#MetidaNCA.setkelauto!","page":"API","title":"MetidaNCA.setkelauto!","text":"setkelauto!(data::T, kelauto::Bool) where T <: PKSubject\n\nSet range for elimination parameters calculation for subject.\n\ndata - PK subject;\nkelauto - value.\n\n\n\n\n\nsetkelauto!(data::DataSet{T}, kelauto::Bool, ind::Int) where T <: PKSubject\n\n\n\n\n\nsetkelauto!(data::DataSet{T}, kelauto::Bool, inds::Union{Vector{Int}, UnitRange{Int}, Tuple{Vararg{Int}}}) where T <: PKSubject\n\n\n\n\n\nsetkelauto!(data::DataSet{T}, kelauto::Bool) where T <: PKSubject\n\n\n\n\n\nsetkelauto!(data::DataSet{T}, kelauto::Bool, sort::Dict) where T <: PKSubject\n\n\n\n\n\n","category":"function"},{"location":"api/#ElimRange","page":"API","title":"ElimRange","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.ElimRange","category":"page"},{"location":"api/#MetidaNCA.ElimRange","page":"API","title":"MetidaNCA.ElimRange","text":"ElimRange(kelstart::Int, kelend::Int, kelexcl::Vector{Int})::ElimRange\n\nElimination settings for PK subject.\n\nkelstart - start point;\nkelend - end point;\nkelexcl - excluded points.\n\n\n\n\n\n","category":"type"},{"location":"api/#setkelrange!","page":"API","title":"setkelrange!","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.setkelrange!","category":"page"},{"location":"api/#MetidaNCA.setkelrange!","page":"API","title":"MetidaNCA.setkelrange!","text":"setkelrange!(data::T, range::ElimRange{:point}; kelauto = false) where T <: PKSubject\n\nSet range for subject data. Set kelauto if possible.\n\n\n\n\n\nsetdosetime!(data::DataSet{T}, dosetime::DoseTime, ind::Int) where T <: PKSubject\n\n\n\n\n\nsetkelrange!(data::DataSet{T}, range::ElimRange{:point}, inds::Union{Vector{Int}, UnitRange{Int}, Tuple{Vararg{Int}}}; kelauto = false)\n\n\n\n\n\nsetkelrange!(data::DataSet{T}, range::ElimRange{:point}; kelauto = false) where T <: PKSubject\n\n\n\n\n\nsetkelrange!(data::DataSet{T}, range::ElimRange{:point}, sort::Dict; kelauto = false) where T <: PKSubject\n\n\n\n\n\n","category":"function"},{"location":"api/#getdosetime","page":"API","title":"getdosetime","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.getdosetime","category":"page"},{"location":"api/#MetidaNCA.getdosetime","page":"API","title":"MetidaNCA.getdosetime","text":"getdosetime(data::T) where T <: PKSubject\n\nReturn dosetime.\n\n\n\n\n\n","category":"function"},{"location":"api/#getkelauto","page":"API","title":"getkelauto","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.getkelauto","category":"page"},{"location":"api/#MetidaNCA.getkelauto","page":"API","title":"MetidaNCA.getkelauto","text":"getkelauto!(data::T) where T <: PKSubject\n\n\n\n\n\n","category":"function"},{"location":"api/#getkelrange","page":"API","title":"getkelrange","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.getkelrange","category":"page"},{"location":"api/#MetidaNCA.getkelrange","page":"API","title":"MetidaNCA.getkelrange","text":"getkelrange(data::T) where T <: PKSubject\n\n\n\n\n\n","category":"function"},{"location":"api/#LimitRule","page":"API","title":"LimitRule","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.LimitRule","category":"page"},{"location":"api/#MetidaNCA.LimitRule","page":"API","title":"MetidaNCA.LimitRule","text":"LimitRule(lloq::T, btmax, atmax, nan, rm::Bool) where T <: Real\n\nLimitRule(;lloq = NaN, btmax = NaN, atmax = NaN, nan = NaN, rm::Bool = false)\n\nlloq - LLOQ - low limit of quantification;\nbtmax - value for points before Tmax;\natmat - values for points after Tmax;\nnan - values for replacing NaN;\nrm - if true, removee all NaN points.\n\nRule for PK subject.\n\nSTEP 1 (NaN step): replace all NaN and missing values with nan keyword value (if nan not NaN);\nSTEP 2 (LLOQ step): replace values below lloq with btmax value if this value befor Tmax or with atmax if this value after Tmax (if lloq not NaN);\nSTEP 3 (remove NaN): rm == true, then remove all NaN and missing values.\n\n\n\n\n\n","category":"type"},{"location":"api/#applylimitrule!","page":"API","title":"applylimitrule!","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.applylimitrule!","category":"page"},{"location":"api/#MetidaNCA.applylimitrule!","page":"API","title":"MetidaNCA.applylimitrule!","text":"applylimitrule!(data::PKSubject, rule::LimitRule)\n\nApply rule to PK subject .\n\nSTEP 1 (NaN step): replace all NaN and missing values with nan keyword value (if nan not NaN);\nSTEP 2 (LLOQ step): replace values below lloq with btmax value if this value befor Tmax or with atmax if this value after Tmax (if lloq not NaN);\nSTEP 3 (remove NaN): rm == true, then remove all NaN and missing values.\n\n\n\n\n\napplylimitrule!(f::Function, data::DataSet{T}, rule::LimitRule) where T <: PKSubject\n\n\n\n\n\napplylimitrule!(data::DataSet{T}, rule::LimitRule, ind::Int) where T <: PKSubject\n\n\n\n\n\napplylimitrule!(data::DataSet{T}, rule::LimitRule, inds::Union{Vector{Int}, UnitRange{Int}, Tuple{Vararg{Int}}}) where T <: PKSubject\n\n\n\n\n\napplylimitrule!(data::DataSet{T}, rule::LimitRule) where T <: PKSubject\n\n\n\n\n\napplylimitrule!(data::DataSet{T}, rule::LimitRule, sort::Dict) where T <: PKSubject\n\n\n\n\n\napplylimitrule!(time, obs, rule::LimitRule)\n\n\n\n\n\n","category":"function"},{"location":"api/#pkplot","page":"API","title":"pkplot","text":"","category":"section"},{"location":"api/","page":"API","title":"API","text":"MetidaNCA.pkplot","category":"page"},{"location":"api/#MetidaNCA.pkplot","page":"API","title":"MetidaNCA.pkplot","text":"pkplot(subj; ls = false, elim = false, xticksn = :auto, yticksn = :auto, kwargs...)\n\nPlot for subject\n\nls - concentration in log scale;\nelim - draw elimination curve;\nxticksn - number of ticks on x axis;\nyticksn - number of ticks on y axis/\n\n\n\n\n\npkplot(data::DataSet{T};\ntypesort::Union{Nothing, Symbol, AbstractVector{Symbol}} = nothing,\npagesort::Union{Nothing, Symbol, AbstractVector{Symbol}} = nothing,\nsort::Union{Nothing, Dict{Symbol}} = nothing,\nkwargs...) where T <: AbstractSubject\n\nPK plot for subject set.\n\n* `typesort` - sort on page by this id key;\n* `pagesort` - different pages by this id key;\n* `sort` - use only subjects if sort ⊆ subject id.\n\n\n\n\n\n","category":"function"},{"location":"details/#Details","page":"Details","title":"Details","text":"","category":"section"},{"location":"details/#Step-1","page":"Details","title":"Step 1","text":"","category":"section"},{"location":"details/","page":"Details","title":"Details","text":"Filter all values before dose time and NaN or missing values. If TAU set, calculate start and end timepoints for AUCtau.","category":"page"},{"location":"details/#Step-2","page":"Details","title":"Step 2","text":"","category":"section"},{"location":"details/","page":"Details","title":"Details","text":"Cmax, Tmax calculation.","category":"page"},{"location":"details/#Step-3","page":"Details","title":"Step 3","text":"","category":"section"},{"location":"details/","page":"Details","title":"Details","text":"Elimination parameters calculation.","category":"page"},{"location":"details/#Step-4","page":"Details","title":"Step 4","text":"","category":"section"},{"location":"details/","page":"Details","title":"Details","text":"Shift all time values by dose time.","category":"page"},{"location":"details/#Step-5","page":"Details","title":"Step 5","text":"","category":"section"},{"location":"details/","page":"Details","title":"Details","text":"Calculate dose concentration (Cdose).","category":"page"},{"location":"details/#Step-6","page":"Details","title":"Step 6","text":"","category":"section"},{"location":"details/","page":"Details","title":"Details","text":"Calculate areas.","category":"page"},{"location":"details/#Step-7","page":"Details","title":"Step 7","text":"","category":"section"},{"location":"details/","page":"Details","title":"Details","text":"Calculate steady-state parameters.","category":"page"},{"location":"examples/#Examples","page":"Examples","title":"Examples","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"ENV[\"GKSwstype\"] = \"nul\"","category":"page"},{"location":"examples/#Import","page":"Examples","title":"Import","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"using MetidaNCA, CSV, DataFrames;\n\npkdata2 = CSV.File(joinpath(dirname(pathof(MetidaNCA)), \"..\", \"test\", \"csv\", \"pkdata2.csv\")) |> DataFrame\n\nds = MetidaNCA.pkimport(pkdata2, :Time, :Concentration, [:Subject, :Formulation]; dosetime = MetidaNCA.DoseTime(dose = 100, time = 0))\n\nsort!(ds, :Subject)","category":"page"},{"location":"examples/#NCA","page":"Examples","title":"NCA","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"dsnca = MetidaNCA.nca!(ds, adm = :ev, calcm = :lint)\n\ndsnca[:, :AUClast]","category":"page"},{"location":"examples/#Plotting","page":"Examples","title":"Plotting","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"using Plots\n\np = MetidaNCA.pkplot(ds; typesort = :Subject, pagesort = nothing, sort = Dict(:Formulation => \"R\"))\n\npng(p, \"plot1.png\")\n\np = MetidaNCA.pkplot(ds; typesort = :Formulation, pagesort = nothing, legend = true)\n\npng(p, \"plot2.png\")\n\np = MetidaNCA.pkplot(ds; elim = true, ls = true)\n\npng(p[1], \"plot3.png\")\n\np = MetidaNCA.pkplot(ds; typesort = :Subject, pagesort = :Formulation)\n\npng(p[1], \"plot4.png\")","category":"page"},{"location":"examples/#Plot-1","page":"Examples","title":"Plot 1","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"(Image: )","category":"page"},{"location":"examples/#Plot-2","page":"Examples","title":"Plot 2","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"(Image: )","category":"page"},{"location":"examples/#Plot-3","page":"Examples","title":"Plot 3","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"(Image: )","category":"page"},{"location":"examples/#Plot-4","page":"Examples","title":"Plot 4","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"(Image: )","category":"page"},{"location":"examples/#Set-dose-time","page":"Examples","title":"Set dose time","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"dt = MetidaNCA.DoseTime(dose = 200, time = 0)\n\nMetidaNCA.setdosetime!(ds, dt, Dict(:Formulation => \"R\"))\n\ndsnca = MetidaNCA.nca!(ds)\n\ndsnca[:, :Dose]","category":"page"},{"location":"examples/#Set-range-for-elimination","page":"Examples","title":"Set range for elimination","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"kr = MetidaNCA.ElimRange(kelstart = 4, kelend = 12, kelexcl = Int[5,6])\n\nMetidaNCA.setkelrange!(ds, kr, [1,2,3])\n\ndsnca = MetidaNCA.nca!(ds)\n\np = MetidaNCA.pkplot(ds[1]; elim = true)\n\npng(p, \"plot5.png\")\n\ngetkeldata(ds[1])","category":"page"},{"location":"examples/#Plot-5","page":"Examples","title":"Plot 5","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"(Image: )","category":"page"},{"location":"examples/#Without-import","page":"Examples","title":"Without import","text":"","category":"section"},{"location":"examples/","page":"Examples","title":"Examples","text":"\ndsnca = MetidaNCA.nca(pkdata2, :Time, :Concentration, [:Subject, :Formulation]; dosetime = MetidaNCA.DoseTime(dose = 100, time = 0))\n\nsort!(dsnca, :Subject)\n\ndsnca[:, :AUClast]","category":"page"},{"location":"#MetidaNCA","page":"Home","title":"MetidaNCA","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"CurrentModule = MetidaNCA","category":"page"},{"location":"","page":"Home","title":"Home","text":"Non-compartment pharmacokinetic analysis (NCA).","category":"page"},{"location":"","page":"Home","title":"Home","text":"*This program comes with absolutely no warranty. No liability is accepted for any loss and risk to public health resulting from use of this software.","category":"page"},{"location":"#NCA","page":"Home","title":"NCA","text":"","category":"section"},{"location":"#Validation","page":"Home","title":"Validation","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"Validation report: validation_report.pdf Appendix 2: Appendix2.1.pdf, Appendix2.2.pdf","category":"page"},{"location":"#Contents","page":"Home","title":"Contents","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"Pages = [\n \"index.md\",\n \"examples.md\",\n \"parameters.md\",\n \"api.md\",\n ]\nDepth = 3","category":"page"},{"location":"#Reference","page":"Home","title":"Reference","text":"","category":"section"},{"location":"","page":"Home","title":"Home","text":"Makoid C, Vuchetich J, Banakar V (1996-1999), Basic Pharmacokinetics;\nGabrielsson and Weiner (1997), Pharmacokinetic and Pharmacodynamic Data Analysis: Concepts and Applications;\nGibaldi and Perrier (1982), Pharmacokinetics;\nWagner (1975), Fundamentals of Clinical Pharmacokinetics.","category":"page"},{"location":"parameters/#Parameters","page":"Parameters","title":"Parameters","text":"","category":"section"},{"location":"parameters/#Basic-parameters","page":"Parameters","title":"Basic parameters","text":"","category":"section"},{"location":"parameters/#Cmax:-Maximum-concentration","page":"Parameters","title":"Cmax: Maximum concentration","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Maximum concentration from dose time to dose time + tau (if tau > 0). Firs observation used.","category":"page"},{"location":"parameters/#Tmax:-Time-at-maximum-concentration","page":"Parameters","title":"Tmax: Time at maximum concentration","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Time at maximum concentration from dose time to dose time + tau (if tau > 0). Firs observation used.","category":"page"},{"location":"parameters/#Cdose","page":"Parameters","title":"Cdose","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Concentration at dose time.","category":"page"},{"location":"parameters/#AUC-/-AUMC","page":"Parameters","title":"AUC / AUMC","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Area under Curve / Area under the Moment Curve.","category":"page"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUC = sum_n=1^N AUC_n","category":"page"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUMC = sum_n=1^N AUMC_n","category":"page"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Where AUCn/AUMCn- partial AUC/AUMC.","category":"page"},{"location":"parameters/#Linear-trapezoidal-rule","page":"Parameters","title":"Linear trapezoidal rule","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUCmid_t_1^t_2 = delta t times fracC_1 + C_22","category":"page"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUMCmid_t_1^t_2 = delta t times fract_1 times C_1 + t_2 times C_22","category":"page"},{"location":"parameters/#Logarithmic-trapezoidal-rule","page":"Parameters","title":"Logarithmic trapezoidal rule","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUCmid_t_1^t_2 = delta t times frac C_2 - C_1ln(C_2C_1)","category":"page"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUMCmid_t_1^t_2 = delta t times fract_2 times C_2 - t_1 times C_1ln(C_2C_1) - delta t^2 times frac C_2 - C_1ln(C_2C_1)^2","category":"page"},{"location":"parameters/#Interpolation","page":"Parameters","title":"Interpolation","text":"","category":"section"},{"location":"parameters/#Linear-interpolation-rule","page":"Parameters","title":"Linear interpolation rule","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"C_x = C_1 + frac(t_x-t_1)times(C_2 - C_1)t_2 - t_1","category":"page"},{"location":"parameters/#Logarithmic-interpolation-rule","page":"Parameters","title":"Logarithmic interpolation rule","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"C_x = expleft(ln(C_1) + frac(t_x-t_1)times(ln(C_2) - ln(C_1))t_2 - t_1right)","category":"page"},{"location":"parameters/#AUClast-/-AUMClast","page":"Parameters","title":"AUClast / AUMClast","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Area from dose time to last observed concentration (>0).","category":"page"},{"location":"parameters/#AUCall","page":"Parameters","title":"AUCall","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"All values used to calculate AUC.","category":"page"},{"location":"parameters/#𝝺z-elimination-constant","page":"Parameters","title":"𝝺z - elimination constant","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Linear regression used for logarithmic transformed concentration data.","category":"page"},{"location":"parameters/#Half-Life;-T1/2","page":"Parameters","title":"Half-Life; T1/2","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"HL = ln(2) lambda_z","category":"page"},{"location":"parameters/#If-Kel-calculated","page":"Parameters","title":"If Kel calculated","text":"","category":"section"},{"location":"parameters/#AUCinf","page":"Parameters","title":"AUCinf","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUC_infty = AUC_last + fracC_lastlambda_z","category":"page"},{"location":"parameters/#AUMCinf","page":"Parameters","title":"AUMCinf","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUMC_infty = AUMC_last + fract_lasttimes C_lastlambda_z + fracC_lastlambda_z^2","category":"page"},{"location":"parameters/#AUCpct","page":"Parameters","title":"AUCpct","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUCpct = (AUC_infty - AUC_last) AUC_infty * 100 ","category":"page"},{"location":"parameters/#AUCinf_pred:-AUC-to-infinity-from-predicted-concentration","page":"Parameters","title":"AUCinf_pred: AUC to infinity from predicted concentration","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"AUC_infty pred = AUC_last + fracC_last predlambda_z","category":"page"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"result[:AUCinfpred] = result[:AUClast] + result[:Clastpred] / result[:Kel]","category":"page"},{"location":"parameters/#If-Dose-used","page":"Parameters","title":"If Dose used","text":"","category":"section"},{"location":"parameters/#Clearance","page":"Parameters","title":"Clearance","text":"","category":"section"},{"location":"parameters/#Cllast","page":"Parameters","title":"Cllast","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"CL_last = Dose AUC_last","category":"page"},{"location":"parameters/#Clinf","page":"Parameters","title":"Clinf","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"CL_infty = Dose AUC_infty","category":"page"},{"location":"parameters/#Steady-state-parameters-(If-Tau-used)","page":"Parameters","title":"Steady-state parameters (If Tau used)","text":"","category":"section"},{"location":"parameters/#AUCtau-/-AUMCtau","page":"Parameters","title":"AUCtau / AUMCtau","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Area from dose time to dose time + tau.","category":"page"},{"location":"parameters/#Ctau","page":"Parameters","title":"Ctau","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Concentration at τ time.","category":"page"},{"location":"parameters/#Cavg","page":"Parameters","title":"Cavg","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"C_avg = AUC_tau tau","category":"page"},{"location":"parameters/#Fluc:-Fluctuation","page":"Parameters","title":"Fluc: Fluctuation","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Fluc = ( C_max - C_tau min ) C_avg * 100 ","category":"page"},{"location":"parameters/#Fluctau:-Fluctuation-Tau","page":"Parameters","title":"Fluctau: Fluctuation Tau","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Fluc = ( C_max - C_tau ) C_avg * 100 ","category":"page"},{"location":"parameters/#Accind:-Accumulation-index","page":"Parameters","title":"Accind: Accumulation index","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"Accind = frac11 - exp(-lambda_z tau)","category":"page"},{"location":"parameters/#MRTtauinf","page":"Parameters","title":"MRTtauinf","text":"","category":"section"},{"location":"parameters/","page":"Parameters","title":"Parameters","text":"MRT_tauinf = (AUMC_tau + tau * (AUC_infty - AUC_tau)) AUC_tau","category":"page"}] -} diff --git a/v0.1.7/siteinfo.js b/v0.1.7/siteinfo.js deleted file mode 100644 index 6adc786..0000000 --- a/v0.1.7/siteinfo.js +++ /dev/null @@ -1 +0,0 @@ -var DOCUMENTER_CURRENT_VERSION = "v0.1.7"; diff --git a/v0.1.7/validation_report.aux b/v0.1.7/validation_report.aux deleted file mode 100644 index 0d11124..0000000 --- a/v0.1.7/validation_report.aux +++ /dev/null @@ -1,42 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} -\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined -\global\let\oldcontentsline\contentsline -\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} -\global\let\oldnewlabel\newlabel -\gdef\newlabel#1#2{\newlabelxx{#1}#2} -\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} -\AtEndDocument{\ifx\hyper@anchor\@undefined -\let\contentsline\oldcontentsline -\let\newlabel\oldnewlabel -\fi} -\fi} -\global\let\hyper@last\relax -\gdef\HyperFirstAtBeginDocument#1{#1} -\providecommand*\HyPL@Entry[1]{} -\HyPL@Entry{0<>} -\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction and package description}{1}{section.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Validation purpose}{1}{subsection.1.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}Requirements}{1}{subsection.1.2}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {1.3}Developer software life cycle}{1}{subsection.1.3}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.3.1}Versions}{2}{subsubsection.1.3.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {1.4}Build support}{2}{subsection.1.4}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {1.4.1}Tier 1}{2}{subsubsection.1.4.1}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2}Installation}{2}{section.2}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}System information}{2}{subsection.2.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Installation method}{2}{subsection.2.2}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Version check}{2}{subsection.2.3}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {3}Operation qualification}{3}{section.3}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Coverage}{3}{subsection.3.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Data}{3}{subsection.3.2}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {3.3}Testing results}{3}{subsection.3.3}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {4}Performance qualification}{4}{section.4}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Parameter's names description}{4}{subsection.4.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Results}{4}{subsection.4.2}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.1}Linear-trapezoidal rule; Extravascular}{4}{subsubsection.4.2.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.2}Linear-Up Log-Down; Extravascular; Dosetime 0.25; Tau 9}{9}{subsubsection.4.2.2}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {5}Glossary}{14}{section.5}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {6}Reference}{14}{section.6}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {7}Appendix 1}{15}{section.7}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {8}Appendix 2}{18}{section.8}\protected@file@percent } diff --git a/v0.1.7/validation_report.log b/v0.1.7/validation_report.log deleted file mode 100644 index 3b1a7da..0000000 --- a/v0.1.7/validation_report.log +++ /dev/null @@ -1,7581 +0,0 @@ -This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/Debian) (preloaded format=xelatex 2021.8.11) 11 AUG 2021 22:38 -entering extended mode - \write18 enabled. - %&-line parsing enabled. -**validation_report.tex -(./validation_report.tex -LaTeX2e <2020-02-02> patch level 2 -L3 programming layer <2020-02-14> -(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls -Document Class: article 2019/12/20 v1.4l Standard LaTeX document class -(/usr/share/texlive/texmf-dist/tex/latex/base/size12.clo -File: size12.clo 2019/12/20 v1.4l Standard LaTeX file (size option) -) -\c@part=\count163 -\c@section=\count164 -\c@subsection=\count165 -\c@subsubsection=\count166 -\c@paragraph=\count167 -\c@subparagraph=\count168 -\c@figure=\count169 -\c@table=\count170 -\abovecaptionskip=\skip47 -\belowcaptionskip=\skip48 -\bibindent=\dimen134 -) -(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty -Package: geometry 2020/01/02 v5.9 Page Geometry - -(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2014/10/28 v1.15 key=value parser (DPC) -\KV@toks@=\toks14 -) -(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty -Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. - -(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty -Package: iftex 2019/11/07 v1.0c TeX engine tests -)) -\Gm@cnth=\count171 -\Gm@cntv=\count172 -\c@Gm@tempcnt=\count173 -\Gm@bindingoffset=\dimen135 -\Gm@wd@mp=\dimen136 -\Gm@odd@mp=\dimen137 -\Gm@even@mp=\dimen138 -\Gm@layoutwidth=\dimen139 -\Gm@layoutheight=\dimen140 -\Gm@layouthoffset=\dimen141 -\Gm@layoutvoffset=\dimen142 -\Gm@dimlist=\toks15 -) -(/usr/share/texmf/tex/latex/lm/lmodern.sty -Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts -LaTeX Font Info: Overwriting symbol font `operators' in version `normal' -(Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22. -LaTeX Font Info: Overwriting symbol font `letters' in version `normal' -(Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23. -LaTeX Font Info: Overwriting symbol font `symbols' in version `normal' -(Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24. -LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' -(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25. -LaTeX Font Info: Overwriting symbol font `operators' in version `bold' -(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26. -LaTeX Font Info: Overwriting symbol font `letters' in version `bold' -(Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27. -LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' -(Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28. -LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' -(Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29. -LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' -(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31. -LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' -(Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32. -LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' -(Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33. -LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' -(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34. -LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold' -(Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35. -LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' -(Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36. -LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' -(Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37. -LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' -(Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38. -) -(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty -Package: amssymb 2013/01/14 v3.01 AMS font symbols - -(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty -Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support -\@emptytoks=\toks16 -\symAMSa=\mathgroup4 -\symAMSb=\mathgroup5 -LaTeX Font Info: Redeclaring math symbol \hbar on input line 98. -LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' -(Font) U/euf/m/n --> U/euf/b/n on input line 106. -)) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty -Package: amsmath 2020/01/20 v2.17e AMS math features -\@mathmargin=\skip49 - -For additional information on amsmath, use the `?' option. -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty -Package: amstext 2000/06/29 v2.01 AMS text - -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty -File: amsgen.sty 1999/11/30 v2.0 generic functions -\@emptytoks=\toks17 -\ex@=\dimen143 -)) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty -Package: amsbsy 1999/11/29 v1.2d Bold Symbols -\pmbraise@=\dimen144 -) -(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty -Package: amsopn 2016/03/08 v2.02 operator names -) -\inf@bad=\count174 -LaTeX Info: Redefining \frac on input line 227. -\uproot@=\count175 -\leftroot@=\count176 -LaTeX Info: Redefining \overline on input line 389. -\classnum@=\count177 -\DOTSCASE@=\count178 -LaTeX Info: Redefining \ldots on input line 486. -LaTeX Info: Redefining \dots on input line 489. -LaTeX Info: Redefining \cdots on input line 610. -\Mathstrutbox@=\box45 -\strutbox@=\box46 -\big@size=\dimen145 -LaTeX Font Info: Redeclaring font encoding OML on input line 733. -LaTeX Font Info: Redeclaring font encoding OMS on input line 734. -\macc@depth=\count179 -\c@MaxMatrixCols=\count180 -\dotsspace@=\muskip16 -\c@parentequation=\count181 -\dspbrk@lvl=\count182 -\tag@help=\toks18 -\row@=\count183 -\column@=\count184 -\maxfields@=\count185 -\andhelp@=\toks19 -\eqnshift@=\dimen146 -\alignsep@=\dimen147 -\tagshift@=\dimen148 -\tagwidth@=\dimen149 -\totwidth@=\dimen150 -\lineht@=\dimen151 -\@envbody=\toks20 -\multlinegap=\skip50 -\multlinetaggap=\skip51 -\mathdisplay@stack=\toks21 -LaTeX Info: Redefining \[ on input line 2859. -LaTeX Info: Redefining \] on input line 2860. -) -(/usr/share/texlive/texmf-dist/tex/latex/tools/bm.sty -Package: bm 2019/07/24 v1.2d Bold Symbol Support (DPC/FMi) -\symboldoperators=\mathgroup6 -\symboldletters=\mathgroup7 -\symboldsymbols=\mathgroup8 -LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 141. -LaTeX Info: Redefining \bm on input line 209. -) -(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2016/01/03 v1.10 sin cos tan (DPC) -) -(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: xetex.def on input line 105. - -(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/xetex.def -File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex -)) -\Gin@req@height=\dimen152 -\Gin@req@width=\dimen153 -) -(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.sty -Package: microtype 2019/11/18 v2.7d Micro-typographical refinements (RS) -\MT@toks=\toks22 -\MT@count=\count186 -LaTeX Info: Redefining \textls on input line 790. -\MT@outer@kern=\dimen154 -LaTeX Info: Redefining \textmicrotypecontext on input line 1354. -\MT@listname@count=\count187 - -(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype-xetex.def -File: microtype-xetex.def 2019/11/18 v2.7d Definitions specific to xetex (RS) -LaTeX Info: Redefining \lsstyle on input line 258. -) -Package microtype Info: Loading configuration file microtype.cfg. - -(/usr/share/texlive/texmf-dist/tex/latex/microtype/microtype.cfg -File: microtype.cfg 2019/11/18 v2.7d microtype main configuration file (RS) -)) -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty -Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX - -(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty -Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty -Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO -) - -(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty -Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) -) -Package pdftexcmds Info: \pdf@primitive is available. -Package pdftexcmds Info: \pdf@ifprimitive is available. -Package pdftexcmds Info: \pdfdraftmode not found. -) -(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty -Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty -Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty -Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty -Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty -Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty -Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) -) -(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty -Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO) -) -\@linkdim=\dimen155 -\Hy@linkcounter=\count188 -\Hy@pagecounter=\count189 - -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def -File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty -Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty -Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) -) -\Hy@SavedSpaceFactor=\count190 -Package hyperref Info: Hyper figures OFF on input line 4547. -Package hyperref Info: Link nesting OFF on input line 4552. -Package hyperref Info: Hyper index ON on input line 4555. -Package hyperref Info: Plain pages OFF on input line 4562. -Package hyperref Info: Backreferencing OFF on input line 4567. -Package hyperref Info: Implicit mode ON; LaTeX internals redefined. -Package hyperref Info: Bookmarks ON on input line 4800. -\c@Hy@tempcnt=\count191 - -(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty -\Urlmuskip=\muskip17 -Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. -) -LaTeX Info: Redefining \url on input line 5159. -\XeTeXLinkMargin=\dimen156 - -(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty -Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) - -(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty -Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO -) -)) -\Fld@menulength=\count192 -\Field@Width=\dimen157 -\Fld@charsize=\dimen158 -Package hyperref Info: Hyper figures OFF on input line 6430. -Package hyperref Info: Link nesting OFF on input line 6435. -Package hyperref Info: Hyper index ON on input line 6438. -Package hyperref Info: backreferencing OFF on input line 6445. -Package hyperref Info: Link coloring OFF on input line 6450. -Package hyperref Info: Link coloring with OCG OFF on input line 6455. -Package hyperref Info: PDF/A mode OFF on input line 6460. -LaTeX Info: Redefining \ref on input line 6500. -LaTeX Info: Redefining \pageref on input line 6504. - -(/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty -Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO) -) -\Hy@abspage=\count193 -\c@Item=\count194 -\c@Hfootnote=\count195 -) -Package hyperref Info: Driver (autodetected): hxetex. - -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hxetex.def -File: hxetex.def 2020/01/14 v7.00d Hyperref driver for XeTeX - -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def -File: puenc.def 2020/01/14 v7.00d Hyperref: PDF Unicode definition (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/stringenc/stringenc.sty -Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO -) -) -\pdfm@box=\box47 -\c@Hy@AnnotLevel=\count196 -\HyField@AnnotCount=\count197 -\Fld@listcount=\count198 -\c@bookmark@seq@number=\count199 - -(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty -Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) - -(/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty -Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO) -Package atveryend Info: \enddocument detected (standard20110627). -) -(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty -Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) -) -Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 -86. -) -\Hy@SectionHShift=\skip52 -) -(/usr/share/texlive/texmf-dist/tex/generic/stringenc/se-ascii-print.def -File: se-ascii-print.def 2019/11/29 v1.12 stringenc: Printable ASCII characters - -) -Package hyperref Info: Option `colorlinks' set `true' on input line 20. - -(/usr/share/texlive/texmf-dist/tex/latex/upquote/upquote.sty -Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba -tim - -(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty -Package: textcomp 2020/02/02 v2.0n Standard LaTeX package -)) -(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty -\lst@mode=\count266 -\lst@gtempboxa=\box48 -\lst@token=\toks23 -\lst@length=\count267 -\lst@currlwidth=\dimen159 -\lst@column=\count268 -\lst@pos=\count269 -\lst@lostspace=\dimen160 -\lst@width=\dimen161 -\lst@newlines=\count270 -\lst@lineno=\count271 -\lst@maxwidth=\dimen162 - -(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty -File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz) -\c@lstnumber=\count272 -\lst@skipnumbers=\count273 -\lst@framebox=\box49 -) -(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg -File: listings.cfg 2019/09/10 1.8c listings configuration -)) -Package: listings 2019/09/10 1.8c (Carsten Heinz) - -(/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) - -(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: xetex.def on input line 225. -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. -Package xcolor Info: Model `RGB' extended on input line 1364. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. -) -(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-xdvipdfmx.def -File: l3backend-xdvipdfmx.def 2020-02-03 L3 backend support: xdvipdfmx -\g__graphics_track_int=\count274 -\l__pdf_internal_box=\box50 -\g__pdf_backend_object_int=\count275 -\g__pdf_backend_annotation_int=\count276 -) -(./validation_report.aux) -\openout1 = `validation_report.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 123. -LaTeX Font Info: ... okay on input line 123. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 123. -LaTeX Font Info: ... okay on input line 123. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 123. -LaTeX Font Info: ... okay on input line 123. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 123. -LaTeX Font Info: ... okay on input line 123. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 123. -LaTeX Font Info: Trying to load font information for TS1+cmr on input line 1 -23. - -(/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd -File: ts1cmr.fd 2019/12/16 v2.5j Standard LaTeX font definitions -) -LaTeX Font Info: ... okay on input line 123. -LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 123. -LaTeX Font Info: ... okay on input line 123. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 123. -LaTeX Font Info: ... okay on input line 123. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 123. -LaTeX Font Info: ... okay on input line 123. -LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 123. -LaTeX Font Info: ... okay on input line 123. -LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 123. -LaTeX Font Info: ... okay on input line 123. - -*geometry* driver: auto-detecting -*geometry* detected driver: xetex -*geometry* verbose mode - [ preamble ] result: -* driver: xetex -* paper: a4paper -* layout: -* layoutoffset:(h,v)=(0.0pt,0.0pt) -* hratio: 1:1 -* vratio: 1:1 -* modes: -* h-part:(L,W,R)=(64.0187pt, 469.47046pt, 64.0187pt) -* v-part:(T,H,B)=(64.01874pt, 717.00935pt, 64.01875pt) -* \paperwidth=597.50787pt -* \paperheight=845.04684pt -* \textwidth=469.47046pt -* \textheight=717.00935pt -* \oddsidemargin=-8.25128pt -* \evensidemargin=-8.25128pt -* \topmargin=-45.25125pt -* \headheight=12.0pt -* \headsep=25.0pt -* \topskip=12.0pt -* \footskip=30.0pt -* \marginparwidth=35.0pt -* \marginparsep=10.0pt -* \columnsep=10.0pt -* \skip\footins=10.8pt plus 4.0pt minus 2.0pt -* \hoffset=0.0pt -* \voffset=0.0pt -* \mag=1000 -* \@twocolumnfalse -* \@twosidefalse -* \@mparswitchfalse -* \@reversemarginfalse -* (1in=72.27pt=25.4mm, 1cm=28.453pt) - -LaTeX Info: Redefining \microtypecontext on input line 123. -Package microtype Info: Character protrusion enabled (level 2). -Package microtype Info: Using default protrusion set `alltext'. -Package microtype Info: No adjustment of tracking. -Package microtype Info: No adjustment of spacing. -Package microtype Info: No adjustment of kerning. -(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-LatinModernRoman.cfg -File: mt-LatinModernRoman.cfg 2013/03/13 v1.0 microtype config. file: Latin Mod -ern Roman (RS) -) -\AtBeginShipoutBox=\box51 -Package hyperref Info: Link coloring ON on input line 123. - -(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty -Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section - -(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty -Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) -) -(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty -Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) -) -\c@section@level=\count277 -) -LaTeX Info: Redefining \ref on input line 123. -LaTeX Info: Redefining \pageref on input line 123. -LaTeX Info: Redefining \nameref on input line 123. - -(./validation_report.out) (./validation_report.out) -\@outlinefile=\write3 -\openout3 = `validation_report.out'. - -\c@lstlisting=\count278 -LaTeX Font Info: Trying to load font information for OT1+lmr on input line 1 -26. - -(/usr/share/texmf/tex/latex/lm/ot1lmr.fd -File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern -) -Package microtype Info: Loading generic protrusion settings for font family -(microtype) `lmr' (encoding: OT1). -(microtype) For optimal results, create family-specific settings. -(microtype) See the microtype manual for details. -LaTeX Font Info: Trying to load font information for OML+lmm on input line 1 -26. - -(/usr/share/texmf/tex/latex/lm/omllmm.fd -File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern -) -LaTeX Font Info: Trying to load font information for OMS+lmsy on input line -126. - -(/usr/share/texmf/tex/latex/lm/omslmsy.fd -File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern -) -LaTeX Font Info: Trying to load font information for OMX+lmex on input line -126. - -(/usr/share/texmf/tex/latex/lm/omxlmex.fd -File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern -) -LaTeX Font Info: External font `lmex10' loaded for size -(Font) <14.4> on input line 126. -LaTeX Font Info: External font `lmex10' loaded for size -(Font) <10> on input line 126. -LaTeX Font Info: External font `lmex10' loaded for size -(Font) <7> on input line 126. -LaTeX Font Info: Trying to load font information for U+msa on input line 126 -. - -(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd -File: umsa.fd 2013/01/14 v3.01 AMS symbols A -) -(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-msa.cfg -File: mt-msa.cfg 2006/02/04 v1.1 microtype config. file: AMS symbols (a) (RS) -) -LaTeX Font Info: Trying to load font information for U+msb on input line 126 -. - -(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd -File: umsb.fd 2013/01/14 v3.01 AMS symbols B -) -(/usr/share/texlive/texmf-dist/tex/latex/microtype/mt-msb.cfg -File: mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS) -) [1 - -] -LaTeX Font Info: External font `lmex10' loaded for size -(Font) <12> on input line 181. -LaTeX Font Info: External font `lmex10' loaded for size -(Font) <8> on input line 181. -LaTeX Font Info: External font `lmex10' loaded for size -(Font) <6> on input line 181. -Package microtype Info: Loading generic protrusion settings for font family -(microtype) `lmtt' (encoding: TU). -(microtype) For optimal results, create family-specific settings. -(microtype) See the microtype manual for details. -LaTeX Font Info: Font shape `TU/lmtt/bx/n' in size <10> not available -(Font) Font shape `TU/lmtt/b/n' tried instead on input line 210. - [2] [3] -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! - -[4] -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! - [5] -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! - [6] -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! - [7] -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! - [8] -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! - [9] -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! - [10] -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! - [11] -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! - [12] -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! - [13] -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! -Missing character: There is no ┌ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┬ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┐ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no ├ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┼ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┤ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no │ in font [lmmono10-regular]:! -Missing character: There is no └ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┴ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ─ in font [lmmono10-regular]:! -Missing character: There is no ┘ in font [lmmono10-regular]:! - [14] [15] [16] -Package atveryend Info: Empty hook `BeforeClearDocument' on input line 1111. - [17] [18] -Package atveryend Info: Empty hook `AfterLastShipout' on input line 1111. - -(./validation_report.aux) -Package atveryend Info: Empty hook `AtVeryEndDocument' on input line 1111. -Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 1111. - -Package rerunfilecheck Info: File `validation_report.out' has not changed. -(rerunfilecheck) Checksum: 623AA1A6B369047E58066C1E3C748810;1625. -Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 1111. - ) -Here is how much of TeX's memory you used: - 13117 strings out of 481772 - 193515 string characters out of 5936451 - 976088 words of memory out of 5000000 - 29900 multiletter control sequences out of 15000+600000 - 578705 words of font info for 85 fonts, out of 8000000 for 9000 - 14 hyphenation exceptions out of 8191 - 34i,6n,45p,435b,1716s stack positions out of 5000i,500n,10000p,200000b,80000s - -Output written on validation_report.pdf (18 pages). diff --git a/v0.1.7/validation_report.out b/v0.1.7/validation_report.out deleted file mode 100644 index e5830d5..0000000 --- a/v0.1.7/validation_report.out +++ /dev/null @@ -1,24 +0,0 @@ -\BOOKMARK [1][-]{section.1}{Introduction\040and\040package\040description}{}% 1 -\BOOKMARK [2][-]{subsection.1.1}{Validation\040purpose}{section.1}% 2 -\BOOKMARK [2][-]{subsection.1.2}{Requirements}{section.1}% 3 -\BOOKMARK [2][-]{subsection.1.3}{Developer\040software\040life\040cycle}{section.1}% 4 -\BOOKMARK [3][-]{subsubsection.1.3.1}{Versions}{subsection.1.3}% 5 -\BOOKMARK [2][-]{subsection.1.4}{Build\040support}{section.1}% 6 -\BOOKMARK [3][-]{subsubsection.1.4.1}{Tier\0401}{subsection.1.4}% 7 -\BOOKMARK [1][-]{section.2}{Installation}{}% 8 -\BOOKMARK [2][-]{subsection.2.1}{System\040information}{section.2}% 9 -\BOOKMARK [2][-]{subsection.2.2}{Installation\040method}{section.2}% 10 -\BOOKMARK [2][-]{subsection.2.3}{Version\040check}{section.2}% 11 -\BOOKMARK [1][-]{section.3}{Operation\040qualification}{}% 12 -\BOOKMARK [2][-]{subsection.3.1}{Coverage}{section.3}% 13 -\BOOKMARK [2][-]{subsection.3.2}{Data}{section.3}% 14 -\BOOKMARK [2][-]{subsection.3.3}{Testing\040results}{section.3}% 15 -\BOOKMARK [1][-]{section.4}{Performance\040qualification}{}% 16 -\BOOKMARK [2][-]{subsection.4.1}{Parameter's\040names\040description}{section.4}% 17 -\BOOKMARK [2][-]{subsection.4.2}{Results}{section.4}% 18 -\BOOKMARK [3][-]{subsubsection.4.2.1}{Linear-trapezoidal\040rule;\040Extravascular}{subsection.4.2}% 19 -\BOOKMARK [3][-]{subsubsection.4.2.2}{Linear-Up\040Log-Down;\040Extravascular;\040Dosetime\0400.25;\040Tau\0409}{subsection.4.2}% 20 -\BOOKMARK [1][-]{section.5}{Glossary}{}% 21 -\BOOKMARK [1][-]{section.6}{Reference}{}% 22 -\BOOKMARK [1][-]{section.7}{Appendix\0401}{}% 23 -\BOOKMARK [1][-]{section.8}{Appendix\0402}{}% 24 diff --git a/v0.1.7/validation_report.pdf b/v0.1.7/validation_report.pdf deleted file mode 100644 index 86e69b67b27e5da817150bc91ea9fe17cf4dc506..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 55981 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 diff --git a/v0.1.7/validation_report.tex b/v0.1.7/validation_report.tex deleted file mode 100644 index ab621d3..0000000 --- a/v0.1.7/validation_report.tex +++ /dev/null @@ -1,1111 +0,0 @@ -\documentclass[12pt,a4paper]{article} - -\usepackage[a4paper,text={16.5cm,25.2cm},centering]{geometry} -\usepackage{lmodern} -\usepackage{amssymb,amsmath} -\usepackage{bm} -\usepackage{graphicx} -\usepackage{microtype} -\usepackage{hyperref} -\setlength{\parindent}{0pt} -\setlength{\parskip}{1.2ex} - -\hypersetup - { pdfauthor = { Vladimir Arnautov }, - pdftitle={ MetidaNCA validation report }, - colorlinks=TRUE, - linkcolor=black, - citecolor=blue, - urlcolor=blue - } - -\title{ MetidaNCA validation report } - -\author{ Vladimir Arnautov } - -\date{ 2021-08-11 } - -\usepackage{upquote} -\usepackage{listings} -\usepackage{xcolor} -\lstset{ - basicstyle=\ttfamily\footnotesize, - upquote=true, - breaklines=true, - breakindent=0pt, - keepspaces=true, - showspaces=false, - columns=fullflexible, - showtabs=false, - showstringspaces=false, - escapeinside={(*@}{@*)}, - extendedchars=true, -} -\newcommand{\HLJLt}[1]{#1} -\newcommand{\HLJLw}[1]{#1} -\newcommand{\HLJLe}[1]{#1} -\newcommand{\HLJLeB}[1]{#1} -\newcommand{\HLJLo}[1]{#1} -\newcommand{\HLJLk}[1]{\textcolor[RGB]{148,91,176}{\textbf{#1}}} -\newcommand{\HLJLkc}[1]{\textcolor[RGB]{59,151,46}{\textit{#1}}} -\newcommand{\HLJLkd}[1]{\textcolor[RGB]{214,102,97}{\textit{#1}}} -\newcommand{\HLJLkn}[1]{\textcolor[RGB]{148,91,176}{\textbf{#1}}} -\newcommand{\HLJLkp}[1]{\textcolor[RGB]{148,91,176}{\textbf{#1}}} -\newcommand{\HLJLkr}[1]{\textcolor[RGB]{148,91,176}{\textbf{#1}}} -\newcommand{\HLJLkt}[1]{\textcolor[RGB]{148,91,176}{\textbf{#1}}} -\newcommand{\HLJLn}[1]{#1} -\newcommand{\HLJLna}[1]{#1} -\newcommand{\HLJLnb}[1]{#1} -\newcommand{\HLJLnbp}[1]{#1} -\newcommand{\HLJLnc}[1]{#1} -\newcommand{\HLJLncB}[1]{#1} -\newcommand{\HLJLnd}[1]{\textcolor[RGB]{214,102,97}{#1}} -\newcommand{\HLJLne}[1]{#1} -\newcommand{\HLJLneB}[1]{#1} -\newcommand{\HLJLnf}[1]{\textcolor[RGB]{66,102,213}{#1}} -\newcommand{\HLJLnfm}[1]{\textcolor[RGB]{66,102,213}{#1}} -\newcommand{\HLJLnp}[1]{#1} -\newcommand{\HLJLnl}[1]{#1} -\newcommand{\HLJLnn}[1]{#1} -\newcommand{\HLJLno}[1]{#1} -\newcommand{\HLJLnt}[1]{#1} -\newcommand{\HLJLnv}[1]{#1} -\newcommand{\HLJLnvc}[1]{#1} -\newcommand{\HLJLnvg}[1]{#1} -\newcommand{\HLJLnvi}[1]{#1} -\newcommand{\HLJLnvm}[1]{#1} -\newcommand{\HLJLl}[1]{#1} -\newcommand{\HLJLld}[1]{\textcolor[RGB]{148,91,176}{\textit{#1}}} -\newcommand{\HLJLs}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLsa}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLsb}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLsc}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLsd}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLsdB}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLsdC}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLse}[1]{\textcolor[RGB]{59,151,46}{#1}} -\newcommand{\HLJLsh}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLsi}[1]{#1} -\newcommand{\HLJLso}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLsr}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLss}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLssB}[1]{\textcolor[RGB]{201,61,57}{#1}} -\newcommand{\HLJLnB}[1]{\textcolor[RGB]{59,151,46}{#1}} -\newcommand{\HLJLnbB}[1]{\textcolor[RGB]{59,151,46}{#1}} -\newcommand{\HLJLnfB}[1]{\textcolor[RGB]{59,151,46}{#1}} -\newcommand{\HLJLnh}[1]{\textcolor[RGB]{59,151,46}{#1}} -\newcommand{\HLJLni}[1]{\textcolor[RGB]{59,151,46}{#1}} -\newcommand{\HLJLnil}[1]{\textcolor[RGB]{59,151,46}{#1}} -\newcommand{\HLJLnoB}[1]{\textcolor[RGB]{59,151,46}{#1}} -\newcommand{\HLJLoB}[1]{\textcolor[RGB]{102,102,102}{\textbf{#1}}} -\newcommand{\HLJLow}[1]{\textcolor[RGB]{102,102,102}{\textbf{#1}}} -\newcommand{\HLJLp}[1]{#1} -\newcommand{\HLJLc}[1]{\textcolor[RGB]{153,153,119}{\textit{#1}}} -\newcommand{\HLJLch}[1]{\textcolor[RGB]{153,153,119}{\textit{#1}}} -\newcommand{\HLJLcm}[1]{\textcolor[RGB]{153,153,119}{\textit{#1}}} -\newcommand{\HLJLcp}[1]{\textcolor[RGB]{153,153,119}{\textit{#1}}} -\newcommand{\HLJLcpB}[1]{\textcolor[RGB]{153,153,119}{\textit{#1}}} -\newcommand{\HLJLcs}[1]{\textcolor[RGB]{153,153,119}{\textit{#1}}} -\newcommand{\HLJLcsB}[1]{\textcolor[RGB]{153,153,119}{\textit{#1}}} -\newcommand{\HLJLg}[1]{#1} -\newcommand{\HLJLgd}[1]{#1} -\newcommand{\HLJLge}[1]{#1} -\newcommand{\HLJLgeB}[1]{#1} -\newcommand{\HLJLgh}[1]{#1} -\newcommand{\HLJLgi}[1]{#1} -\newcommand{\HLJLgo}[1]{#1} -\newcommand{\HLJLgp}[1]{#1} -\newcommand{\HLJLgs}[1]{#1} -\newcommand{\HLJLgsB}[1]{#1} -\newcommand{\HLJLgt}[1]{#1} - - -\begin{document} - -\maketitle - - -\section{Introduction and package description} -Non-compartment anlysis software. - -See documentation: \href{https://pharmcat.github.io/MetidaNCA.jl/dev/}{https://pharmcat.github.io/MetidaNCA.jl/dev/} - -\subsection{Validation purpose} -The main validation purpose is confirmation by examination and provision of objective evidence that software specifications conform to user needs and intended uses, and that the particular requirements implemented through software can be consistently fulfilled. - -\subsection{Requirements} -\begin{itemize} -\item Julia 1.5.* (or higher) installed - - -\item Julia packages from dependence list installed (see \href{https://github.com/PharmCat/MetidaNCA.jl/blob/main/Project.toml}{Project.toml}) - -\end{itemize} -\subsection{Developer software life cycle} -\begin{itemize} -\item Development stage - - -\item Testing procedures development - - -\item Performing testing procedures on local machine - - -\item Push to master branch - - -\item Performing testing procedures with GitHub Actions - - -\item Make pull request to the official registry of general Julia packages (if nessesary) - - -\item Make release (if previous completed) - -\end{itemize} -\subsubsection{Versions} -\begin{itemize} -\item X.Y.Z - patch release (no breaking changes) - - -\item X.Y.\# - minor release (may include breaking changes) - - -\item X.\#.\# - major release (breaking changes, changes in public API) - - -\item 0.\#.\# - no stable public API - - -\item \ensuremath{\geq}1.\#.\# - stable public API - -\end{itemize} -\subsection{Build support} -\subsubsection{Tier 1} -\begin{itemize} -\item julia-version: 1.5, 1.6 - - -\item julia-arch: x64 - - -\item os: ubuntu-18.04, macos-10.15, windows-2019 - -\end{itemize} -\section{Installation} -\subsection{System information} -\begin{itemize} -\item Julia version: v"1.4.2" - - -\item Current machine: "x86\_64-pc-linux-gnu" - -\end{itemize} -\subsection{Installation method} -MetidaNCA.jl can be installed by executing the following command in REPL. - - -\begin{lstlisting} -(*@\HLJLk{import}@*) (*@\HLJLn{Pkg}@*)(*@\HLJLp{;}@*) (*@\HLJLn{Pkg}@*)(*@\HLJLoB{.}@*)(*@\HLJLnf{add}@*)(*@\HLJLp{(}@*)(*@\HLJLs{"{}MetidaNCA"{}}@*)(*@\HLJLp{)}@*) -\end{lstlisting} - -\subsection{Version check} -The installation process is checking within each testing job via GitHub Actions. Also GitHub Action \href{https://github.com/JuliaRegistries/General/blob/master/.github/workflows/automerge.yml}{chek} performed before merging into JuliaRegistries/General repository (see \href{https://github.com/JuliaRegistries/General#automatic-merging-of-pull-requests}{Automatic merging of pull requests}). - - - -Current package version: - - -"0.1.7" - - -\section{Operation qualification} -This part of validation based on testing procedures entails running software products under known conditions with defined inputs and documented outcomes that can be compared to their predefined expectations. All documented public API included in testing procedures and part of critical internal methods. - -\subsection{Coverage} -Code coverage report available on \href{https://app.codecov.io/gh/PharmCat/MetidaNCA.jl}{Codecov.io}. Test procedures include all public API methods check. - -\begin{itemize} -\item Coverage goal: \ensuremath{\geq} 90.0\% - -\end{itemize} -\subsection{Data} -Validation data available in the repository and included in the package. See Appendix 1. - -\subsection{Testing results} - -\begin{lstlisting} -(*@\HLJLn{Pkg}@*)(*@\HLJLoB{.}@*)(*@\HLJLnf{test}@*)(*@\HLJLp{(}@*)(*@\HLJLs{"{}MetidaNCA"{}}@*)(*@\HLJLp{)}@*) -\end{lstlisting} - -\begin{lstlisting} -Test Summary: | Pass Total - Simple test | 8 8 -Test Summary: | Pass Total - (*@{{\#}}@*)1 Linear trapezoidal, Dose 100, Dosetime 0, no tau | 18 18 -Test Summary: | Pass Total - (*@{{\#}}@*)2 Linear up Log down, Dose 100, Dosetime 0.25, tau 9 | 17 17 -Test Summary: | Pass Total - Linear up Log down, Dose 120, Dosetime 0, tau 12 | 17 17 -Test Summary: | Pass Total - Log trapezoidal ATM, Dose 120, Dosetime 0, tau 12 | 5 5 -Test Summary: | Pass Total - Linear up Log down ATM, Dose 120, Dosetime 0, tau 12 | 4 4 -Test Summary: | Pass Total - Linear trapezoidal, Dose 100, Dosetime 2.0, tau 10 | 15 15 -Test Summary: | Pass Total - Linear trapezoidal, Dose 100, Dosetime 0.0, tau 100 | 15 15 -Test Summary: | Pass Total - Linear trapezoidal, Dose 120, Dosetime 0.0, tau 12 | 4 4 -Test Summary: | Pass Total - Linear up Log down, Dose 100, Dosetime 0.25, tau 9 IV | 1 1 -Test Summary: | Pass Total - Linear trapezoidal, Dose 100, Dosetime 0, no tau AUCall | 1 1 -Test Summary: | Pass Total - set-get*! tests | 6 6 -Test Summary: | Pass Total - applylimitrule! | 11 11 -Test Summary: | - kel | No tests -Test Summary: | - Output | No tests -\end{lstlisting} - - -\section{Performance qualification} -Purpose of this testing procedures to demonstrate performance for some critical tasks. Results from MetidaNCA compared with Phoenix WinNonlin 8.0 results, see Appendix 2. - -\subsection{Parameter's names description} - -\begin{lstlisting} -.------------.-------------------------------------. -| Name | Description | -| String | String | -:------------+-------------------------------------: -| Cmax | Maximum concentration | -| Tmax | Time at Cmax | -| Cdose | Concentration at dose time | -| Clast | Last non-zero concentration | -| AUClast | AUC to Clast | -| AUMClast | AUMC to Clast | -| AUCall | AUC with all values | -| Rsq | r square | -| ARsq | Adjusted r square | -| Kel | Terminal elimination constant | -| HL | Half live or T1/2 | -| LZint | Intercept | -| Clast(*@{{\_}}@*)pred | Predicted Clast | -| AUCinf | AUC extrapolated to infinity | -| AUCpct | Percentage AUClast from AUCinf | -| MRTlast | Mean Residence Time (last) | -| MRTinf | Mean Residence Time (inf) | -| Clinf | Clearence | -| Vzinf | Volume of distribution | -| AUCtau | AUC in Tau range | -| AUMCtau | AUMC in Tau range | -| MRTtauinf | MRT based on Tau | -| Cltau | Clearence in Tau range | -| Vztau | Volume of distribution in Tau range | -(*@{{\textquotesingle}}@*)------------(*@{{\textquotesingle}}@*)-------------------------------------(*@{{\textquotesingle}}@*) -\end{lstlisting} - - -\subsection{Results} -\subsubsection{Linear-trapezoidal rule; Extravascular} - -\begin{lstlisting} -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Cmax - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 190.869 │ 190.869 │ 0.0 │ -│ 2.0 │ 261.177 │ 261.177 │ 0.0 │ -│ 3.0 │ 105.345 │ 105.345 │ 0.0 │ -│ 4.0 │ 208.542 │ 208.542 │ 0.0 │ -│ 5.0 │ 169.334 │ 169.334 │ 0.0 │ -│ 6.0 │ 154.648 │ 154.648 │ 0.0 │ -│ 7.0 │ 153.254 │ 153.254 │ 0.0 │ -│ 8.0 │ 138.327 │ 138.327 │ 0.0 │ -│ 9.0 │ 167.347 │ 167.347 │ 0.0 │ -│ 10.0 │ 125.482 │ 125.482 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Tmax - -┌─────────┬───────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼───────┼───────────┼────────────┤ -│ 1.0 │ 1.0 │ 1.0 │ 0.0 │ -│ 2.0 │ 1.0 │ 1.0 │ 0.0 │ -│ 3.0 │ 1.5 │ 1.5 │ 0.0 │ -│ 4.0 │ 1.0 │ 1.0 │ 0.0 │ -│ 5.0 │ 4.0 │ 4.0 │ 0.0 │ -│ 6.0 │ 2.5 │ 2.5 │ 0.0 │ -│ 7.0 │ 2.5 │ 2.5 │ 0.0 │ -│ 8.0 │ 4.0 │ 4.0 │ 0.0 │ -│ 9.0 │ 3.0 │ 3.0 │ 0.0 │ -│ 10.0 │ 2.0 │ 2.0 │ 0.0 │ -└─────────┴───────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Cdose - -┌─────────┬───────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼───────┼───────────┼────────────┤ -│ 1.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 2.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 3.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 4.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 5.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 6.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 7.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 8.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 9.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 10.0 │ 0.0 │ 0.0 │ 0.0 │ -└─────────┴───────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Clast - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 112.846 │ 112.846 │ 0.0 │ -│ 2.0 │ 85.241 │ 85.241 │ 0.0 │ -│ 3.0 │ 67.901 │ 67.901 │ 0.0 │ -│ 4.0 │ 97.625 │ 97.625 │ 0.0 │ -│ 5.0 │ 110.778 │ 110.778 │ 0.0 │ -│ 6.0 │ 69.501 │ 69.501 │ 0.0 │ -│ 7.0 │ 58.051 │ 58.051 │ 0.0 │ -│ 8.0 │ 74.437 │ 74.437 │ 0.0 │ -│ 9.0 │ 93.44 │ 93.44 │ 0.0 │ -│ 10.0 │ 42.191 │ 42.191 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUClast - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 9585.42 │ 9585.42 │ 0.0 │ -│ 2.0 │ 10112.2 │ 10112.2 │ 0.0 │ -│ 3.0 │ 5396.55 │ 5396.55 │ 0.0 │ -│ 4.0 │ 9317.84 │ 9317.84 │ 0.0 │ -│ 5.0 │ 9561.26 │ 9561.26 │ 0.0 │ -│ 6.0 │ 6966.6 │ 6966.6 │ 0.0 │ -│ 7.0 │ 7029.57 │ 7029.57 │ 0.0 │ -│ 8.0 │ 7110.67 │ 7110.67 │ 0.0 │ -│ 9.0 │ 8315.08 │ 8315.08 │ 0.0 │ -│ 10.0 │ 5620.89 │ 5620.89 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUMClast - -┌─────────┬──────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼──────────┼───────────┼────────────┤ -│ 1.0 │ 333582.0 │ 333582.0 │ 0.0 │ -│ 2.0 │ 298701.0 │ 298701.0 │ 0.0 │ -│ 3.0 │ 186032.0 │ 186032.0 │ 0.0 │ -│ 4.0 │ 313956.0 │ 313956.0 │ 0.0 │ -│ 5.0 │ 315182.0 │ 315182.0 │ 0.0 │ -│ 6.0 │ 226977.0 │ 226977.0 │ 0.0 │ -│ 7.0 │ 219798.0 │ 219798.0 │ 0.0 │ -│ 8.0 │ 240526.0 │ 240526.0 │ 0.0 │ -│ 9.0 │ 277614.0 │ 277614.0 │ 0.0 │ -│ 10.0 │ 154893.0 │ 154893.0 │ 0.0 │ -└─────────┴──────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUCall - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 9585.42 │ 9585.42 │ 0.0 │ -│ 2.0 │ 10112.2 │ 10112.2 │ 0.0 │ -│ 3.0 │ 5396.55 │ 5396.55 │ 0.0 │ -│ 4.0 │ 9317.84 │ 9317.84 │ 0.0 │ -│ 5.0 │ 9561.26 │ 9561.26 │ 0.0 │ -│ 6.0 │ 6966.6 │ 6966.6 │ 0.0 │ -│ 7.0 │ 7029.57 │ 7029.57 │ 0.0 │ -│ 8.0 │ 7110.67 │ 7110.67 │ 0.0 │ -│ 9.0 │ 8315.08 │ 8315.08 │ 0.0 │ -│ 10.0 │ 5620.89 │ 5620.89 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Rsq - -┌─────────┬──────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼──────────┼───────────┼────────────┤ -│ 1.0 │ 0.786077 │ 0.786077 │ 0.0 │ -│ 2.0 │ 0.992764 │ 0.992764 │ 0.0 │ -│ 3.0 │ 0.813589 │ 0.813589 │ 0.0 │ -│ 4.0 │ 0.918859 │ 0.918859 │ 0.0 │ -│ 5.0 │ 0.85336 │ 0.85336 │ 0.0 │ -│ 6.0 │ 0.950119 │ 0.950119 │ 0.0 │ -│ 7.0 │ 0.970312 │ 0.970312 │ 0.0 │ -│ 8.0 │ 0.947969 │ 0.947969 │ 0.0 │ -│ 9.0 │ 0.947538 │ 0.947538 │ 0.0 │ -│ 10.0 │ 0.880923 │ 0.880923 │ 0.0 │ -└─────────┴──────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) ARsq - -┌─────────┬──────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼──────────┼───────────┼────────────┤ -│ 1.0 │ 0.714769 │ 0.714769 │ 0.0 │ -│ 2.0 │ 0.990351 │ 0.990351 │ 0.0 │ -│ 3.0 │ 0.776307 │ 0.776307 │ 0.0 │ -│ 4.0 │ 0.837717 │ 0.837717 │ 0.0 │ -│ 5.0 │ 0.82892 │ 0.82892 │ 0.0 │ -│ 6.0 │ 0.925179 │ 0.925179 │ 0.0 │ -│ 7.0 │ 0.960416 │ 0.960416 │ 0.0 │ -│ 8.0 │ 0.921954 │ 0.921954 │ 0.0 │ -│ 9.0 │ 0.921307 │ 0.921307 │ 0.0 │ -│ 10.0 │ 0.863912 │ 0.863912 │ 0.0 │ -└─────────┴──────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Kel - -┌─────────┬────────────┬────────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼────────────┼────────────┼────────────┤ -│ 1.0 │ 0.00338474 │ 0.00338474 │ 0.0 │ -│ 2.0 │ 0.0141063 │ 0.0141063 │ 0.0 │ -│ 3.0 │ 0.00329143 │ 0.00329143 │ 0.0 │ -│ 4.0 │ 0.00769534 │ 0.00769534 │ 0.0 │ -│ 5.0 │ 0.00681333 │ 0.00681333 │ 0.0 │ -│ 6.0 │ 0.00769228 │ 0.00769228 │ 0.0 │ -│ 7.0 │ 0.012459 │ 0.012459 │ 0.0 │ -│ 8.0 │ 0.00893008 │ 0.00893008 │ 0.0 │ -│ 9.0 │ 0.00564586 │ 0.00564586 │ 0.0 │ -│ 10.0 │ 0.0171897 │ 0.0171897 │ 0.0 │ -└─────────┴────────────┴────────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) HL - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 204.786 │ 204.786 │ 0.0 │ -│ 2.0 │ 49.1374 │ 49.1374 │ 0.0 │ -│ 3.0 │ 210.591 │ 210.591 │ 0.0 │ -│ 4.0 │ 90.0736 │ 90.0736 │ 0.0 │ -│ 5.0 │ 101.734 │ 101.734 │ 0.0 │ -│ 6.0 │ 90.1095 │ 90.1094 │ 0.0001 │ -│ 7.0 │ 55.6345 │ 55.6345 │ 0.0 │ -│ 8.0 │ 77.6194 │ 77.6194 │ 0.0 │ -│ 9.0 │ 122.771 │ 122.771 │ 0.0 │ -│ 10.0 │ 40.3233 │ 40.3233 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Clast(*@{{\_}}@*)pred - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 117.306 │ 117.306 │ 0.0 │ -│ 2.0 │ 82.5367 │ 82.5367 │ 0.0 │ -│ 3.0 │ 66.9311 │ 66.9311 │ 0.0 │ -│ 4.0 │ 100.768 │ 100.768 │ 0.0 │ -│ 5.0 │ 105.298 │ 105.298 │ 0.0 │ -│ 6.0 │ 71.9399 │ 71.9399 │ 0.0 │ -│ 7.0 │ 61.1727 │ 61.1727 │ 0.0 │ -│ 8.0 │ 75.6043 │ 75.6043 │ 0.0 │ -│ 9.0 │ 93.7618 │ 93.7618 │ 0.0 │ -│ 10.0 │ 38.8109 │ 38.8109 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUCinf - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 42925.0 │ 42925.0 │ 0.0 │ -│ 2.0 │ 16154.9 │ 16154.9 │ 0.0 │ -│ 3.0 │ 26026.2 │ 26026.2 │ 0.0 │ -│ 4.0 │ 22004.1 │ 22004.1 │ 0.0 │ -│ 5.0 │ 25820.3 │ 25820.3 │ 0.0 │ -│ 6.0 │ 16001.8 │ 16001.8 │ 0.0 │ -│ 7.0 │ 11689.0 │ 11689.0 │ 0.0 │ -│ 8.0 │ 15446.2 │ 15446.2 │ 0.0 │ -│ 9.0 │ 24865.2 │ 24865.2 │ 0.0 │ -│ 10.0 │ 8075.32 │ 8075.32 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUCpct - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 77.6694 │ 77.6694 │ 0.0 │ -│ 2.0 │ 37.405 │ 37.405 │ 0.0 │ -│ 3.0 │ 79.2649 │ 79.2649 │ 0.0 │ -│ 4.0 │ 57.6541 │ 57.6541 │ 0.0 │ -│ 5.0 │ 62.97 │ 62.97 │ 0.0 │ -│ 6.0 │ 56.4636 │ 56.4636 │ 0.0 │ -│ 7.0 │ 39.8614 │ 39.8614 │ 0.0 │ -│ 8.0 │ 53.9649 │ 53.9649 │ 0.0 │ -│ 9.0 │ 66.5594 │ 66.5594 │ 0.0 │ -│ 10.0 │ 30.3942 │ 30.3942 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) MRTlast - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 34.801 │ 34.801 │ 0.0 │ -│ 2.0 │ 29.5388 │ 29.5388 │ 0.0 │ -│ 3.0 │ 34.4724 │ 34.4724 │ 0.0 │ -│ 4.0 │ 33.6941 │ 33.6941 │ 0.0 │ -│ 5.0 │ 32.9644 │ 32.9644 │ 0.0 │ -│ 6.0 │ 32.5808 │ 32.5808 │ 0.0 │ -│ 7.0 │ 31.2676 │ 31.2676 │ 0.0 │ -│ 8.0 │ 33.8261 │ 33.8261 │ 0.0 │ -│ 9.0 │ 33.3868 │ 33.3868 │ 0.0 │ -│ 10.0 │ 27.5567 │ 27.5567 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) MRTinf - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 293.162 │ 293.162 │ 0.0 │ -│ 2.0 │ 71.9379 │ 71.9379 │ 0.0 │ -│ 3.0 │ 305.041 │ 305.041 │ 0.0 │ -│ 4.0 │ 130.7 │ 130.7 │ 0.0 │ -│ 5.0 │ 149.967 │ 149.967 │ 0.0 │ -│ 6.0 │ 128.241 │ 128.241 │ 0.0 │ -│ 7.0 │ 79.4983 │ 79.4983 │ 0.0 │ -│ 8.0 │ 114.857 │ 114.857 │ 0.0 │ -│ 9.0 │ 176.978 │ 176.978 │ 0.0 │ -│ 10.0 │ 58.7464 │ 58.7464 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Clinf - -┌─────────┬────────────┬────────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼────────────┼────────────┼────────────┤ -│ 1.0 │ 0.00232964 │ 0.00232964 │ 0.0 │ -│ 2.0 │ 0.00619006 │ 0.00619006 │ 0.0 │ -│ 3.0 │ 0.00384228 │ 0.00384228 │ 0.0 │ -│ 4.0 │ 0.00454461 │ 0.00454461 │ 0.0 │ -│ 5.0 │ 0.00387293 │ 0.00387293 │ 0.0 │ -│ 6.0 │ 0.00624931 │ 0.00624931 │ 0.0 │ -│ 7.0 │ 0.00855509 │ 0.00855509 │ 0.0 │ -│ 8.0 │ 0.00647408 │ 0.00647408 │ 0.0 │ -│ 9.0 │ 0.00402168 │ 0.00402168 │ 0.0 │ -│ 10.0 │ 0.0123834 │ 0.0123834 │ 0.0 │ -└─────────┴────────────┴────────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Vzinf - -┌─────────┬──────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼──────────┼───────────┼────────────┤ -│ 1.0 │ 0.688278 │ 0.688278 │ 0.0 │ -│ 2.0 │ 0.438815 │ 0.438815 │ 0.0 │ -│ 3.0 │ 1.16736 │ 1.16736 │ 0.0 │ -│ 4.0 │ 0.590566 │ 0.590566 │ 0.0 │ -│ 5.0 │ 0.568434 │ 0.568434 │ 0.0 │ -│ 6.0 │ 0.812414 │ 0.812414 │ 0.0 │ -│ 7.0 │ 0.686662 │ 0.686662 │ 0.0 │ -│ 8.0 │ 0.724974 │ 0.724974 │ 0.0 │ -│ 9.0 │ 0.712323 │ 0.712323 │ 0.0 │ -│ 10.0 │ 0.720395 │ 0.720395 │ 0.0 │ -└─────────┴──────────┴───────────┴────────────┘ -\end{lstlisting} - - -\subsubsection{Linear-Up Log-Down; Extravascular; Dosetime 0.25; Tau 9} - -\begin{lstlisting} -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Cmax - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 190.869 │ 190.869 │ 0.0 │ -│ 2.0 │ 261.177 │ 261.177 │ 0.0 │ -│ 3.0 │ 105.345 │ 105.345 │ 0.0 │ -│ 4.0 │ 208.542 │ 208.542 │ 0.0 │ -│ 5.0 │ 169.334 │ 169.334 │ 0.0 │ -│ 6.0 │ 154.648 │ 154.648 │ 0.0 │ -│ 7.0 │ 153.254 │ 153.254 │ 0.0 │ -│ 8.0 │ 138.327 │ 138.327 │ 0.0 │ -│ 9.0 │ 167.347 │ 167.347 │ 0.0 │ -│ 10.0 │ 125.482 │ 125.482 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Tmax - -┌─────────┬───────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼───────┼───────────┼────────────┤ -│ 1.0 │ 1.0 │ 1.0 │ 0.0 │ -│ 2.0 │ 1.0 │ 1.0 │ 0.0 │ -│ 3.0 │ 1.5 │ 1.5 │ 0.0 │ -│ 4.0 │ 1.0 │ 1.0 │ 0.0 │ -│ 5.0 │ 4.0 │ 4.0 │ 0.0 │ -│ 6.0 │ 2.5 │ 2.5 │ 0.0 │ -│ 7.0 │ 2.5 │ 2.5 │ 0.0 │ -│ 8.0 │ 4.0 │ 4.0 │ 0.0 │ -│ 9.0 │ 3.0 │ 3.0 │ 0.0 │ -│ 10.0 │ 2.0 │ 2.0 │ 0.0 │ -└─────────┴───────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Cdose - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 121.239 │ 121.239 │ 0.0 │ -│ 2.0 │ 62.222 │ 62.222 │ 0.0 │ -│ 3.0 │ 49.849 │ 49.849 │ 0.0 │ -│ 4.0 │ 52.421 │ 52.421 │ 0.0 │ -│ 5.0 │ 0.0 │ 0.0 │ 0.0 │ -│ 6.0 │ 57.882 │ 57.882 │ 0.0 │ -│ 7.0 │ 19.95 │ 19.95 │ 0.0 │ -│ 8.0 │ 22.724 │ 22.724 │ 0.0 │ -│ 9.0 │ 105.438 │ 105.438 │ 0.0 │ -│ 10.0 │ 13.634 │ 13.634 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Clast - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 112.846 │ 112.846 │ 0.0 │ -│ 2.0 │ 85.241 │ 85.241 │ 0.0 │ -│ 3.0 │ 67.901 │ 67.901 │ 0.0 │ -│ 4.0 │ 97.625 │ 97.625 │ 0.0 │ -│ 5.0 │ 110.778 │ 110.778 │ 0.0 │ -│ 6.0 │ 69.501 │ 69.501 │ 0.0 │ -│ 7.0 │ 58.051 │ 58.051 │ 0.0 │ -│ 8.0 │ 74.437 │ 74.437 │ 0.0 │ -│ 9.0 │ 93.44 │ 93.44 │ 0.0 │ -│ 10.0 │ 42.191 │ 42.191 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUClast - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 9566.6 │ 9566.6 │ 0.0 │ -│ 2.0 │ 10054.3 │ 10054.3 │ 0.0 │ -│ 3.0 │ 5392.46 │ 5392.46 │ 0.0 │ -│ 4.0 │ 9297.1 │ 9297.1 │ 0.0 │ -│ 5.0 │ 9519.18 │ 9519.18 │ 0.0 │ -│ 6.0 │ 6948.99 │ 6948.99 │ 0.0 │ -│ 7.0 │ 6988.77 │ 6988.77 │ 0.0 │ -│ 8.0 │ 7058.82 │ 7058.82 │ 0.0 │ -│ 9.0 │ 8302.37 │ 8302.37 │ 0.0 │ -│ 10.0 │ 5486.84 │ 5486.84 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUCtau - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 1268.28 │ 1268.28 │ 0.0 │ -│ 2.0 │ 1831.82 │ 1831.82 │ 0.0 │ -│ 3.0 │ 754.649 │ 754.649 │ 0.0 │ -│ 4.0 │ 1336.48 │ 1336.48 │ 0.0 │ -│ 5.0 │ 1310.9 │ 1310.9 │ 0.0 │ -│ 6.0 │ 1114.24 │ 1114.24 │ 0.0 │ -│ 7.0 │ 1079.37 │ 1079.37 │ 0.0 │ -│ 8.0 │ 766.62 │ 766.62 │ 0.0 │ -│ 9.0 │ 1219.63 │ 1219.63 │ 0.0 │ -│ 10.0 │ 970.306 │ 970.306 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUMCtau - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 5477.2 │ 5477.2 │ 0.0 │ -│ 2.0 │ 8367.57 │ 8367.57 │ 0.0 │ -│ 3.0 │ 3455.35 │ 3455.35 │ 0.0 │ -│ 4.0 │ 6014.65 │ 6014.65 │ 0.0 │ -│ 5.0 │ 6609.79 │ 6609.79 │ 0.0 │ -│ 6.0 │ 5064.72 │ 5064.72 │ 0.0 │ -│ 7.0 │ 4976.96 │ 4976.96 │ 0.0 │ -│ 8.0 │ 2863.01 │ 2863.01 │ 0.0 │ -│ 9.0 │ 5386.88 │ 5386.88 │ 0.0 │ -│ 10.0 │ 4713.48 │ 4713.48 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUCall - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 9566.6 │ 9566.6 │ 0.0 │ -│ 2.0 │ 10054.3 │ 10054.3 │ 0.0 │ -│ 3.0 │ 5392.46 │ 5392.46 │ 0.0 │ -│ 4.0 │ 9297.1 │ 9297.1 │ 0.0 │ -│ 5.0 │ 9519.18 │ 9519.18 │ 0.0 │ -│ 6.0 │ 6948.99 │ 6948.99 │ 0.0 │ -│ 7.0 │ 6988.77 │ 6988.77 │ 0.0 │ -│ 8.0 │ 7058.82 │ 7058.82 │ 0.0 │ -│ 9.0 │ 8302.37 │ 8302.37 │ 0.0 │ -│ 10.0 │ 5486.84 │ 5486.84 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Rsq - -┌─────────┬──────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼──────────┼───────────┼────────────┤ -│ 1.0 │ 0.786077 │ 0.786077 │ 0.0 │ -│ 2.0 │ 0.992764 │ 0.992764 │ 0.0 │ -│ 3.0 │ 0.813589 │ 0.813589 │ 0.0 │ -│ 4.0 │ 0.918859 │ 0.918859 │ 0.0 │ -│ 5.0 │ 0.85336 │ 0.85336 │ 0.0 │ -│ 6.0 │ 0.950119 │ 0.950119 │ 0.0 │ -│ 7.0 │ 0.970312 │ 0.970312 │ 0.0 │ -│ 8.0 │ 0.947969 │ 0.947969 │ 0.0 │ -│ 9.0 │ 0.947538 │ 0.947538 │ 0.0 │ -│ 10.0 │ 0.880923 │ 0.880923 │ 0.0 │ -└─────────┴──────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) ARsq - -┌─────────┬──────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼──────────┼───────────┼────────────┤ -│ 1.0 │ 0.714769 │ 0.714769 │ 0.0 │ -│ 2.0 │ 0.990351 │ 0.990351 │ 0.0 │ -│ 3.0 │ 0.776307 │ 0.776307 │ 0.0 │ -│ 4.0 │ 0.837717 │ 0.837717 │ 0.0 │ -│ 5.0 │ 0.82892 │ 0.82892 │ 0.0 │ -│ 6.0 │ 0.925179 │ 0.925179 │ 0.0 │ -│ 7.0 │ 0.960416 │ 0.960416 │ 0.0 │ -│ 8.0 │ 0.921954 │ 0.921954 │ 0.0 │ -│ 9.0 │ 0.921307 │ 0.921307 │ 0.0 │ -│ 10.0 │ 0.863912 │ 0.863912 │ 0.0 │ -└─────────┴──────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Kel - -┌─────────┬────────────┬────────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼────────────┼────────────┼────────────┤ -│ 1.0 │ 0.00338474 │ 0.00338474 │ 0.0 │ -│ 2.0 │ 0.0141063 │ 0.0141063 │ 0.0 │ -│ 3.0 │ 0.00329143 │ 0.00329143 │ 0.0 │ -│ 4.0 │ 0.00769534 │ 0.00769534 │ 0.0 │ -│ 5.0 │ 0.00681333 │ 0.00681333 │ 0.0 │ -│ 6.0 │ 0.00769228 │ 0.00769228 │ 0.0 │ -│ 7.0 │ 0.012459 │ 0.012459 │ 0.0 │ -│ 8.0 │ 0.00893008 │ 0.00893008 │ 0.0 │ -│ 9.0 │ 0.00564586 │ 0.00564586 │ 0.0 │ -│ 10.0 │ 0.0171897 │ 0.0171897 │ 0.0 │ -└─────────┴────────────┴────────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) HL - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 204.786 │ 204.786 │ 0.0 │ -│ 2.0 │ 49.1374 │ 49.1374 │ 0.0 │ -│ 3.0 │ 210.591 │ 210.591 │ 0.0 │ -│ 4.0 │ 90.0736 │ 90.0736 │ 0.0 │ -│ 5.0 │ 101.734 │ 101.734 │ 0.0 │ -│ 6.0 │ 90.1095 │ 90.1095 │ 0.0 │ -│ 7.0 │ 55.6345 │ 55.6345 │ 0.0 │ -│ 8.0 │ 77.6194 │ 77.6194 │ 0.0 │ -│ 9.0 │ 122.771 │ 122.771 │ 0.0 │ -│ 10.0 │ 40.3233 │ 40.3233 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Clast(*@{{\_}}@*)pred - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 117.306 │ 117.306 │ 0.0 │ -│ 2.0 │ 82.5367 │ 82.5367 │ 0.0 │ -│ 3.0 │ 66.9311 │ 66.9311 │ 0.0 │ -│ 4.0 │ 100.768 │ 100.768 │ 0.0 │ -│ 5.0 │ 105.298 │ 105.298 │ 0.0 │ -│ 6.0 │ 71.9399 │ 71.9399 │ 0.0 │ -│ 7.0 │ 61.1727 │ 61.1727 │ 0.0 │ -│ 8.0 │ 75.6043 │ 75.6043 │ 0.0 │ -│ 9.0 │ 93.7618 │ 93.7618 │ 0.0 │ -│ 10.0 │ 38.8109 │ 38.8109 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUCinf - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 42906.2 │ 42906.2 │ 0.0 │ -│ 2.0 │ 16097.0 │ 16097.0 │ 0.0 │ -│ 3.0 │ 26022.1 │ 26022.1 │ 0.0 │ -│ 4.0 │ 21983.3 │ 21983.3 │ 0.0 │ -│ 5.0 │ 25778.2 │ 25778.2 │ 0.0 │ -│ 6.0 │ 15984.1 │ 15984.1 │ 0.0 │ -│ 7.0 │ 11648.2 │ 11648.2 │ 0.0 │ -│ 8.0 │ 15394.4 │ 15394.4 │ 0.0 │ -│ 9.0 │ 24852.5 │ 24852.5 │ 0.0 │ -│ 10.0 │ 7941.27 │ 7941.27 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) AUCpct - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 77.7035 │ 77.7035 │ 0.0 │ -│ 2.0 │ 37.5395 │ 37.5395 │ 0.0 │ -│ 3.0 │ 79.2774 │ 79.2774 │ 0.0 │ -│ 4.0 │ 57.7084 │ 57.7084 │ 0.0 │ -│ 5.0 │ 63.0727 │ 63.0727 │ 0.0 │ -│ 6.0 │ 56.5258 │ 56.5258 │ 0.0 │ -│ 7.0 │ 40.001 │ 40.001 │ 0.0 │ -│ 8.0 │ 54.1467 │ 54.1467 │ 0.0 │ -│ 9.0 │ 66.5935 │ 66.5935 │ 0.0 │ -│ 10.0 │ 30.9073 │ 30.9073 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) MRTtauinf - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 299.792 │ 299.792 │ 0.0 │ -│ 2.0 │ 74.655 │ 74.655 │ 0.0 │ -│ 3.0 │ 305.92 │ 305.92 │ 0.0 │ -│ 4.0 │ 143.538 │ 143.538 │ 0.0 │ -│ 5.0 │ 173.022 │ 173.022 │ 0.0 │ -│ 6.0 │ 124.653 │ 124.653 │ 0.0 │ -│ 7.0 │ 92.7359 │ 92.7359 │ 0.0 │ -│ 8.0 │ 175.462 │ 175.462 │ 0.0 │ -│ 9.0 │ 178.811 │ 178.811 │ 0.0 │ -│ 10.0 │ 69.5163 │ 69.5163 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Cltau - -┌─────────┬───────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼───────────┼───────────┼────────────┤ -│ 1.0 │ 0.0788472 │ 0.0788472 │ 0.0 │ -│ 2.0 │ 0.0545905 │ 0.0545905 │ 0.0 │ -│ 3.0 │ 0.132512 │ 0.132512 │ 0.0 │ -│ 4.0 │ 0.0748234 │ 0.0748234 │ 0.0 │ -│ 5.0 │ 0.0762832 │ 0.0762832 │ 0.0 │ -│ 6.0 │ 0.0897472 │ 0.0897472 │ 0.0 │ -│ 7.0 │ 0.0926469 │ 0.0926469 │ 0.0 │ -│ 8.0 │ 0.130443 │ 0.130443 │ 0.0 │ -│ 9.0 │ 0.081992 │ 0.081992 │ 0.0 │ -│ 10.0 │ 0.10306 │ 0.10306 │ 0.0 │ -└─────────┴───────────┴───────────┴────────────┘ -(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*)(*@{{\#}}@*) Vztau - -┌─────────┬─────────┬───────────┬────────────┐ -│ Subject │ Value │ Reference │ Difference │ -├─────────┼─────────┼───────────┼────────────┤ -│ 1.0 │ 23.2949 │ 23.2949 │ 0.0 │ -│ 2.0 │ 3.86993 │ 3.86993 │ 0.0 │ -│ 3.0 │ 40.2597 │ 40.2597 │ 0.0 │ -│ 4.0 │ 9.7232 │ 9.7232 │ 0.0 │ -│ 5.0 │ 11.1962 │ 11.1962 │ 0.0 │ -│ 6.0 │ 11.6672 │ 11.6672 │ 0.0 │ -│ 7.0 │ 7.43617 │ 7.43617 │ 0.0 │ -│ 8.0 │ 14.6071 │ 14.6071 │ 0.0 │ -│ 9.0 │ 14.5225 │ 14.5225 │ 0.0 │ -│ 10.0 │ 5.99545 │ 5.99545 │ 0.0 │ -└─────────┴─────────┴───────────┴────────────┘ -\end{lstlisting} - - -\section{Glossary} -\begin{itemize} -\item Installation qualification (IQ) - Establishing confidence that process equipment and ancillary systems are compliant with appropriate codes and approved design intentions, and that manufacturer's recommendations are suitably considered. - - -\item Operational qualification (OQ) Establishing confidence that process equipment and sub-systems are capable of consistently operating within established limits and tolerances. - - -\item Product performance qualification (PQ) - Establishing confidence through appropriate testing that the finished product produced by a specified process meets all release requirements for functionality and safety. - - -\item Repository - GitHub repository: https://github.com/PharmCat/MetidaNCA.jl - - -\item Master branch - main branch on GitHub (\href{https://github.com/PharmCat/MetidaNCA.jl/tree/main}{link}). - - -\item Current machine - pc that used for validation report generating. - -\end{itemize} -\section{Reference} -\begin{itemize} -\item \href{https://www.fda.gov/media/73141/download}{General Principles of Software Validation; Final Guidance for Industry and FDA Staff} - - -\item \href{https://www.fda.gov/files/drugs/published/Process-Validation--General-Principles-and-Practices.pdf}{Guidance for Industry Process Validation: General Principles and Practices} - - -\item \href{https://www.fda.gov/inspections-compliance-enforcement-and-criminal-investigations/inspection-guides/glossary-computer-system-software-development-terminology-895}{Glossary of Computer System Software Development Terminology} - -\end{itemize} -\section{Appendix 1} - -\begin{lstlisting} -.---------.-------------.---------.---------------. -| Subject | Formulation | Time | Concentration | -| Int64 | String | Float64 | Float64 | -:---------+-------------+---------+---------------: -| 1 | T | 0.0 | 0.0 | -| 1 | T | 0.5 | 178.949 | -| 1 | T | 1.0 | 190.869 | -| 1 | T | 1.5 | 164.927 | -| 1 | T | 2.0 | 139.962 | -| 1 | T | 2.5 | 129.59 | -| 1 | T | 3.0 | 131.369 | -| 1 | T | 4.0 | 150.854 | -| 1 | T | 5.0 | 121.239 | -| 1 | T | 6.0 | 139.229 | -| 1 | T | 8.0 | 128.52 | -| 1 | T | 10.0 | 143.243 | -| 1 | T | 12.0 | 144.964 | -| 1 | T | 24.0 | 133.16 | -| 1 | T | 48.0 | 137.271 | -| 1 | T | 72.0 | 112.846 | -| 2 | R | 0.0 | 0.0 | -| 2 | R | 0.5 | 62.222 | -| 2 | R | 1.0 | 261.177 | -| 2 | R | 1.5 | 234.063 | -| 2 | R | 2.0 | 234.091 | -| 2 | R | 2.5 | 222.881 | -| 2 | R | 3.0 | 213.896 | -| 2 | R | 4.0 | 196.026 | -| 2 | R | 5.0 | 199.634 | -| 2 | R | 6.0 | 196.037 | -| 2 | R | 8.0 | 213.352 | -| 2 | R | 10.0 | 200.088 | -| 2 | R | 12.0 | 196.035 | -| 2 | R | 24.0 | 160.338 | -| 2 | R | 48.0 | 110.28 | -| 2 | R | 72.0 | 85.241 | -| 3 | R | 0.0 | 0.0 | -| 3 | R | 0.5 | 49.849 | -| 3 | R | 1.0 | 77.367 | -| 3 | R | 1.5 | 105.345 | -| 3 | R | 2.0 | 100.943 | -| 3 | R | 2.5 | 72.746 | -| 3 | R | 3.0 | 69.985 | -| 3 | R | 4.0 | 93.565 | -| 3 | R | 5.0 | 91.981 | -| 3 | R | 6.0 | 82.71 | -| 3 | R | 8.0 | 84.205 | -| 3 | R | 10.0 | 85.342 | -| 3 | R | 12.0 | 76.027 | -| 3 | R | 24.0 | 81.259 | -| 3 | R | 48.0 | 70.107 | -| 3 | R | 72.0 | 67.901 | -| 4 | R | 0.0 | 0.0 | -| 4 | R | 0.5 | 52.421 | -| 4 | R | 1.0 | 208.542 | -| 4 | R | 1.5 | 188.923 | -| 4 | R | 2.0 | 165.177 | -| 4 | R | 2.5 | 146.996 | -| 4 | R | 3.0 | 152.701 | -| 4 | R | 4.0 | 154.345 | -| 4 | R | 5.0 | 128.398 | -| 4 | R | 6.0 | 149.807 | -| 4 | R | 8.0 | 151.066 | -| 4 | R | 10.0 | 136.819 | -| 4 | R | 12.0 | 132.257 | -| 4 | R | 24.0 | 141.247 | -| 4 | R | 48.0 | 129.138 | -| 4 | R | 72.0 | 97.625 | -| 5 | T | 0.0 | 0.0 | -| 5 | T | 0.5 | 0.0 | -| 5 | T | 1.0 | 9.545 | -| 5 | T | 1.5 | 153.964 | -| 5 | T | 2.0 | 152.34 | -| 5 | T | 2.5 | 151.452 | -| 5 | T | 3.0 | 161.312 | -| 5 | T | 4.0 | 169.334 | -| 5 | T | 5.0 | 162.907 | -| 5 | T | 6.0 | 166.651 | -| 5 | T | 8.0 | 168.668 | -| 5 | T | 10.0 | 155.103 | -| 5 | T | 12.0 | 154.066 | -| 5 | T | 24.0 | 162.974 | -| 5 | T | 48.0 | 109.814 | -| 5 | T | 72.0 | 110.778 | -| 6 | T | 0.0 | 0.0 | -| 6 | T | 0.5 | 57.882 | -| 6 | T | 1.0 | 100.498 | -| 6 | T | 1.5 | 138.651 | -| 6 | T | 2.0 | 147.287 | -| 6 | T | 2.5 | 154.648 | -| 6 | T | 3.0 | 122.316 | -| 6 | T | 4.0 | 132.857 | -| 6 | T | 5.0 | 126.067 | -| 6 | T | 6.0 | 140.466 | -| 6 | T | 8.0 | 115.542 | -| 6 | T | 10.0 | 102.16 | -| 6 | T | 12.0 | 113.751 | -| 6 | T | 24.0 | 101.049 | -| 6 | T | 48.0 | 92.55 | -| 6 | T | 72.0 | 69.501 | -| 7 | R | 0.0 | 0.0 | -| 7 | R | 0.5 | 19.95 | -| 7 | R | 1.0 | 128.405 | -| 7 | R | 1.5 | 136.807 | -| 7 | R | 2.0 | 113.109 | -| 7 | R | 2.5 | 153.254 | -| 7 | R | 3.0 | 123.606 | -| 7 | R | 4.0 | 142.655 | -| 7 | R | 5.0 | 112.347 | -| 7 | R | 6.0 | 139.919 | -| 7 | R | 8.0 | 105.513 | -| 7 | R | 10.0 | 134.408 | -| 7 | R | 12.0 | 123.37 | -| 7 | R | 24.0 | 110.511 | -| 7 | R | 48.0 | 90.291 | -| 7 | R | 72.0 | 58.051 | -| 8 | R | 0.0 | 0.0 | -| 8 | R | 0.5 | 136.91 | -| 8 | R | 1.0 | 126.646 | -| 8 | R | 1.5 | 118.5 | -| 8 | R | 2.0 | 134.926 | -| 8 | R | 2.5 | 113.213 | -| 8 | R | 3.0 | 130.896 | -| 8 | R | 4.0 | 138.327 | -| 8 | R | 5.0 | 22.724 | -| 8 | R | 6.0 | 53.774 | -| 8 | R | 8.0 | 55.107 | -| 8 | R | 10.0 | 102.871 | -| 8 | R | 12.0 | 134.133 | -| 8 | R | 24.0 | 108.021 | -| 8 | R | 48.0 | 98.466 | -| 8 | R | 72.0 | 74.437 | -| 9 | T | 0.0 | 0.0 | -| 9 | T | 0.5 | 113.362 | -| 9 | T | 1.0 | 128.273 | -| 9 | T | 1.5 | 125.395 | -| 9 | T | 2.0 | 146.933 | -| 9 | T | 2.5 | 140.559 | -| 9 | T | 3.0 | 167.347 | -| 9 | T | 4.0 | 157.504 | -| 9 | T | 5.0 | 141.35 | -| 9 | T | 6.0 | 140.282 | -| 9 | T | 8.0 | 105.438 | -| 9 | T | 10.0 | 164.843 | -| 9 | T | 12.0 | 135.58 | -| 9 | T | 24.0 | 117.125 | -| 9 | T | 48.0 | 109.745 | -| 9 | T | 72.0 | 93.44 | -| 10 | R | 0.0 | 0.0 | -| 10 | R | 0.5 | 13.634 | -| 10 | R | 1.0 | 62.561 | -| 10 | R | 1.5 | 112.655 | -| 10 | R | 2.0 | 125.482 | -| 10 | R | 2.5 | 116.255 | -| 10 | R | 3.0 | 112.674 | -| 10 | R | 4.0 | 116.986 | -| 10 | R | 5.0 | 119.81 | -| 10 | R | 6.0 | 107.557 | -| 10 | R | 8.0 | 120.479 | -| 10 | R | 10.0 | 124.171 | -| 10 | R | 12.0 | 106.476 | -| 10 | R | 24.0 | 116.508 | -| 10 | R | 48.0 | 45.204 | -| 10 | R | 72.0 | 42.191 | -(*@{{\textquotesingle}}@*)---------(*@{{\textquotesingle}}@*)-------------(*@{{\textquotesingle}}@*)---------(*@{{\textquotesingle}}@*)---------------(*@{{\textquotesingle}}@*) -\end{lstlisting} - - -\section{Appendix 2} -See Appendix2.1.pdf, Appendix2.2.pdf. - - - -\end{document}