# Check date consistency (if dates are properly formatted)
date_vars <- histopathology %>%
select(contains("Date")) %>%
names()
if(length(date_vars) > 0) {
cat("Date variables found:", paste(date_vars, collapse = ", "), "\n")
# Basic date analysis
tryCatch({
reportcat(
data = histopathology,
vars = date_vars[1:min(2, length(date_vars))]
)
}, error = function(e) {
cat("Error with date variables reportcat:", conditionMessage(e), "\n")
cat("Date variables:", paste(date_vars, collapse = ", "), "\n")
})
}
#> Date variables found: LastFollowUpDate, SurgeryDate
#> <div id="dfieexombw" style="padding-left:0px;padding-right:0px;padding-top:10px;padding-bottom:10px;overflow-x:auto;overflow-y:auto;width:auto;height:auto;">
#> <style>@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
#> #dfieexombw table {
#> font-family: Lato, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
#> -webkit-font-smoothing: antialiased;
#> -moz-osx-font-smoothing: grayscale;
#> }
#>
#> #dfieexombw thead, #dfieexombw tbody, #dfieexombw tfoot, #dfieexombw tr, #dfieexombw td, #dfieexombw th {
#> border-style: none;
#> }
#>
#> #dfieexombw p {
#> margin: 0;
#> padding: 0;
#> }
#>
#> #dfieexombw .gt_table {
#> display: table;
#> border-collapse: collapse;
#> line-height: normal;
#> margin-left: auto;
#> margin-right: auto;
#> color: #333333;
#> font-size: 16px;
#> font-weight: normal;
#> font-style: normal;
#> background-color: #FFFFFF;
#> width: auto;
#> border-top-style: solid;
#> border-top-width: 3px;
#> border-top-color: #FFFFFF;
#> border-right-style: none;
#> border-right-width: 2px;
#> border-right-color: #D3D3D3;
#> border-bottom-style: solid;
#> border-bottom-width: 2px;
#> border-bottom-color: #A8A8A8;
#> border-left-style: none;
#> border-left-width: 2px;
#> border-left-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_caption {
#> padding-top: 4px;
#> padding-bottom: 4px;
#> }
#>
#> #dfieexombw .gt_title {
#> color: #333333;
#> font-size: 24px;
#> font-weight: initial;
#> padding-top: 4px;
#> padding-bottom: 4px;
#> padding-left: 5px;
#> padding-right: 5px;
#> border-bottom-color: #FFFFFF;
#> border-bottom-width: 0;
#> }
#>
#> #dfieexombw .gt_subtitle {
#> color: #333333;
#> font-size: 85%;
#> font-weight: initial;
#> padding-top: 3px;
#> padding-bottom: 5px;
#> padding-left: 5px;
#> padding-right: 5px;
#> border-top-color: #FFFFFF;
#> border-top-width: 0;
#> }
#>
#> #dfieexombw .gt_heading {
#> background-color: #FFFFFF;
#> text-align: left;
#> border-bottom-color: #FFFFFF;
#> border-left-style: none;
#> border-left-width: 1px;
#> border-left-color: #D3D3D3;
#> border-right-style: none;
#> border-right-width: 1px;
#> border-right-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_bottom_border {
#> border-bottom-style: solid;
#> border-bottom-width: 0px;
#> border-bottom-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_col_headings {
#> border-top-style: solid;
#> border-top-width: 0px;
#> border-top-color: #D3D3D3;
#> border-bottom-style: solid;
#> border-bottom-width: 2px;
#> border-bottom-color: #D3D3D3;
#> border-left-style: none;
#> border-left-width: 1px;
#> border-left-color: #D3D3D3;
#> border-right-style: none;
#> border-right-width: 1px;
#> border-right-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_col_heading {
#> color: #333333;
#> background-color: #FFFFFF;
#> font-size: 80%;
#> font-weight: bolder;
#> text-transform: uppercase;
#> border-left-style: none;
#> border-left-width: 1px;
#> border-left-color: #D3D3D3;
#> border-right-style: none;
#> border-right-width: 1px;
#> border-right-color: #D3D3D3;
#> vertical-align: bottom;
#> padding-top: 5px;
#> padding-bottom: 6px;
#> padding-left: 5px;
#> padding-right: 5px;
#> overflow-x: hidden;
#> }
#>
#> #dfieexombw .gt_column_spanner_outer {
#> color: #333333;
#> background-color: #FFFFFF;
#> font-size: 80%;
#> font-weight: bolder;
#> text-transform: uppercase;
#> padding-top: 0;
#> padding-bottom: 0;
#> padding-left: 4px;
#> padding-right: 4px;
#> }
#>
#> #dfieexombw .gt_column_spanner_outer:first-child {
#> padding-left: 0;
#> }
#>
#> #dfieexombw .gt_column_spanner_outer:last-child {
#> padding-right: 0;
#> }
#>
#> #dfieexombw .gt_column_spanner {
#> border-bottom-style: solid;
#> border-bottom-width: 2px;
#> border-bottom-color: #D3D3D3;
#> vertical-align: bottom;
#> padding-top: 5px;
#> padding-bottom: 5px;
#> overflow-x: hidden;
#> display: inline-block;
#> width: 100%;
#> }
#>
#> #dfieexombw .gt_spanner_row {
#> border-bottom-style: hidden;
#> }
#>
#> #dfieexombw .gt_group_heading {
#> padding-top: 8px;
#> padding-bottom: 8px;
#> padding-left: 5px;
#> padding-right: 5px;
#> color: #333333;
#> background-color: #FFFFFF;
#> font-size: 80%;
#> font-weight: bolder;
#> text-transform: uppercase;
#> border-top-style: solid;
#> border-top-width: 2px;
#> border-top-color: #D3D3D3;
#> border-bottom-style: solid;
#> border-bottom-width: 2px;
#> border-bottom-color: #D3D3D3;
#> border-left-style: none;
#> border-left-width: 1px;
#> border-left-color: #D3D3D3;
#> border-right-style: none;
#> border-right-width: 1px;
#> border-right-color: #D3D3D3;
#> vertical-align: middle;
#> text-align: left;
#> }
#>
#> #dfieexombw .gt_empty_group_heading {
#> padding: 0.5px;
#> color: #333333;
#> background-color: #FFFFFF;
#> font-size: 80%;
#> font-weight: bolder;
#> border-top-style: solid;
#> border-top-width: 2px;
#> border-top-color: #D3D3D3;
#> border-bottom-style: solid;
#> border-bottom-width: 2px;
#> border-bottom-color: #D3D3D3;
#> vertical-align: middle;
#> }
#>
#> #dfieexombw .gt_from_md > :first-child {
#> margin-top: 0;
#> }
#>
#> #dfieexombw .gt_from_md > :last-child {
#> margin-bottom: 0;
#> }
#>
#> #dfieexombw .gt_row {
#> padding-top: 7px;
#> padding-bottom: 7px;
#> padding-left: 5px;
#> padding-right: 5px;
#> margin: 10px;
#> border-top-style: solid;
#> border-top-width: 1px;
#> border-top-color: #F6F7F7;
#> border-left-style: none;
#> border-left-width: 1px;
#> border-left-color: #D3D3D3;
#> border-right-style: none;
#> border-right-width: 1px;
#> border-right-color: #D3D3D3;
#> vertical-align: middle;
#> overflow-x: hidden;
#> }
#>
#> #dfieexombw .gt_stub {
#> color: #333333;
#> background-color: #FFFFFF;
#> font-size: 80%;
#> font-weight: bolder;
#> text-transform: uppercase;
#> border-right-style: solid;
#> border-right-width: 2px;
#> border-right-color: #D3D3D3;
#> padding-left: 5px;
#> padding-right: 5px;
#> }
#>
#> #dfieexombw .gt_stub_row_group {
#> color: #333333;
#> background-color: #FFFFFF;
#> font-size: 100%;
#> font-weight: initial;
#> text-transform: inherit;
#> border-right-style: solid;
#> border-right-width: 2px;
#> border-right-color: #D3D3D3;
#> padding-left: 5px;
#> padding-right: 5px;
#> vertical-align: top;
#> }
#>
#> #dfieexombw .gt_row_group_first td {
#> border-top-width: 2px;
#> }
#>
#> #dfieexombw .gt_row_group_first th {
#> border-top-width: 2px;
#> }
#>
#> #dfieexombw .gt_summary_row {
#> color: #333333;
#> background-color: #FFFFFF;
#> text-transform: inherit;
#> padding-top: 8px;
#> padding-bottom: 8px;
#> padding-left: 5px;
#> padding-right: 5px;
#> }
#>
#> #dfieexombw .gt_first_summary_row {
#> border-top-style: solid;
#> border-top-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_first_summary_row.thick {
#> border-top-width: 2px;
#> }
#>
#> #dfieexombw .gt_last_summary_row {
#> padding-top: 8px;
#> padding-bottom: 8px;
#> padding-left: 5px;
#> padding-right: 5px;
#> border-bottom-style: solid;
#> border-bottom-width: 2px;
#> border-bottom-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_grand_summary_row {
#> color: #333333;
#> background-color: #FFFFFF;
#> text-transform: inherit;
#> padding-top: 8px;
#> padding-bottom: 8px;
#> padding-left: 5px;
#> padding-right: 5px;
#> }
#>
#> #dfieexombw .gt_first_grand_summary_row {
#> padding-top: 8px;
#> padding-bottom: 8px;
#> padding-left: 5px;
#> padding-right: 5px;
#> border-top-style: double;
#> border-top-width: 6px;
#> border-top-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_last_grand_summary_row_top {
#> padding-top: 8px;
#> padding-bottom: 8px;
#> padding-left: 5px;
#> padding-right: 5px;
#> border-bottom-style: double;
#> border-bottom-width: 6px;
#> border-bottom-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_striped {
#> background-color: #FAFAFA;
#> }
#>
#> #dfieexombw .gt_table_body {
#> border-top-style: solid;
#> border-top-width: 2px;
#> border-top-color: #D3D3D3;
#> border-bottom-style: solid;
#> border-bottom-width: 2px;
#> border-bottom-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_footnotes {
#> color: #333333;
#> background-color: #FFFFFF;
#> border-bottom-style: none;
#> border-bottom-width: 2px;
#> border-bottom-color: #D3D3D3;
#> border-left-style: none;
#> border-left-width: 2px;
#> border-left-color: #D3D3D3;
#> border-right-style: none;
#> border-right-width: 2px;
#> border-right-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_footnote {
#> margin: 0px;
#> font-size: 90%;
#> padding-top: 4px;
#> padding-bottom: 4px;
#> padding-left: 5px;
#> padding-right: 5px;
#> }
#>
#> #dfieexombw .gt_sourcenotes {
#> color: #333333;
#> background-color: #FFFFFF;
#> border-bottom-style: none;
#> border-bottom-width: 2px;
#> border-bottom-color: #D3D3D3;
#> border-left-style: none;
#> border-left-width: 2px;
#> border-left-color: #D3D3D3;
#> border-right-style: none;
#> border-right-width: 2px;
#> border-right-color: #D3D3D3;
#> }
#>
#> #dfieexombw .gt_sourcenote {
#> font-size: 12px;
#> padding-top: 4px;
#> padding-bottom: 4px;
#> padding-left: 5px;
#> padding-right: 5px;
#> }
#>
#> #dfieexombw .gt_left {
#> text-align: left;
#> }
#>
#> #dfieexombw .gt_center {
#> text-align: center;
#> }
#>
#> #dfieexombw .gt_right {
#> text-align: right;
#> font-variant-numeric: tabular-nums;
#> }
#>
#> #dfieexombw .gt_font_normal {
#> font-weight: normal;
#> }
#>
#> #dfieexombw .gt_font_bold {
#> font-weight: bold;
#> }
#>
#> #dfieexombw .gt_font_italic {
#> font-style: italic;
#> }
#>
#> #dfieexombw .gt_super {
#> font-size: 65%;
#> }
#>
#> #dfieexombw .gt_footnote_marks {
#> font-size: 75%;
#> vertical-align: 0.4em;
#> position: initial;
#> }
#>
#> #dfieexombw .gt_asterisk {
#> font-size: 100%;
#> vertical-align: 0;
#> }
#>
#> #dfieexombw .gt_indent_1 {
#> text-indent: 5px;
#> }
#>
#> #dfieexombw .gt_indent_2 {
#> text-indent: 10px;
#> }
#>
#> #dfieexombw .gt_indent_3 {
#> text-indent: 15px;
#> }
#>
#> #dfieexombw .gt_indent_4 {
#> text-indent: 20px;
#> }
#>
#> #dfieexombw .gt_indent_5 {
#> text-indent: 25px;
#> }
#>
#> #dfieexombw .katex-display {
#> display: inline-flex !important;
#> margin-bottom: 0.75em !important;
#> }
#>
#> #dfieexombw div.Reactable > div.rt-table > div.rt-thead > div.rt-tr.rt-tr-group-header > div.rt-th-group:after {
#> height: 0px !important;
#> }
#> </style>
#> <table class="gt_table" data-quarto-disable-processing="false" data-quarto-bootstrap="false">
#> <thead>
#> <tr class="gt_heading">
#> <td colspan="4" class="gt_heading gt_title gt_font_normal" style>.</td>
#> </tr>
#> <tr class="gt_heading">
#> <td colspan="4" class="gt_heading gt_subtitle gt_font_normal gt_bottom_border" style>250 rows x 2 cols</td>
#> </tr>
#> <tr class="gt_col_headings">
#> <th class="gt_col_heading gt_columns_bottom_border gt_left" rowspan="1" colspan="1" scope="col" id="type"></th>
#> <th class="gt_col_heading gt_columns_bottom_border gt_left" rowspan="1" colspan="1" scope="col" id="name">Column</th>
#> <th class="gt_col_heading gt_columns_bottom_border gt_center" rowspan="1" colspan="1" scope="col" id="value">Plot Overview</th>
#> <th class="gt_col_heading gt_columns_bottom_border gt_right" rowspan="1" colspan="1" scope="col" id="n_missing">Missing</th>
#> </tr>
#> </thead>
#> <tbody class="gt_table_body">
#> <tr><td headers="type" class="gt_row gt_left"><svg aria-hidden="true" role="img" viewBox="0 0 512 512" style="height:20px;width:20px;vertical-align:-0.125em;margin-left:auto;margin-right:auto;font-size:inherit;fill:#4e79a7;overflow:visible;position:relative;"><path d="M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z"/></svg></td>
#> <td headers="name" class="gt_row gt_left" style="font-weight: bold;"><div style='max-width: 150px;'>
#> <details style='font-weight: normal !important;'>
#> <summary style='font-weight: bold !important;'>LastFollowUpDate</summary>
#> 2019.06.22 00:00:00, 2019.03.22 00:00:00, 2018.12.22 00:00:00, 2019.07.22 00:00:00, 2019.08.22 00:00:00, 2019.02.22 00:00:00, 2019.05.22 00:00:00, 2019.11.22 00:00:00, 2019.01.22 00:00:00, 2019.04.22 00:00:00, 2019.10.22 00:00:00 and 2019.09.22 00:00:00
#> </details></div></td>
#> <td headers="value" class="gt_row gt_center"><?xml version='1.0' encoding='UTF-8' ?><svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='141.73pt' height='34.02pt' viewBox='0 0 141.73 34.02'><g class='svglite'><defs> <style type='text/css'><![CDATA[ .svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle { fill: none; stroke: #000000; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 10.00; } .svglite text { white-space: pre; } .svglite g.glyphgroup path { fill: inherit; stroke: none; } ]]></style></defs><rect width='100%' height='100%' style='stroke: none; fill: none;'/><defs> <clipPath id='cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg=='> <rect x='0.00' y='0.00' width='141.73' height='34.02' /> </clipPath></defs><g clip-path='url(#cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg==)'></g><defs> <clipPath id='cpMS4wMHwxNDAuNzR8Mi45OXwyMy42MQ=='> <rect x='1.00' y='2.99' width='139.74' height='20.62' /> </clipPath></defs><g clip-path='url(#cpMS4wMHwxNDAuNzR8Mi45OXwyMy42MQ==)'><rect x='132.88' y='3.93' width='7.86' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #DDEAF7;' /><rect x='123.34' y='3.93' width='9.54' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CFE0F2;' /><rect x='112.68' y='3.93' width='10.66' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C2D6EC;' /><rect x='102.01' y='3.93' width='10.66' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B4CCE7;' /><rect x='90.79' y='3.93' width='11.22' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A6C2E2;' /><rect x='79.56' y='3.93' width='11.22' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #98B9DD;' /><rect x='67.78' y='3.93' width='11.79' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #89AFD7;' /><rect x='54.87' y='3.93' width='12.91' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #7AA6D2;' /><rect x='41.96' y='3.93' width='12.91' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6B9CCD;' /><rect x='29.06' y='3.93' width='12.91' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5A93C8;' /><rect x='15.59' y='3.93' width='13.47' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #488AC2;' /><rect x='1.00' y='3.93' width='14.59' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3181BD;' /></g><g clip-path='url(#cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg==)'><text x='1.00' y='30.18' style='font-size: 8.00px; font-family: "Arial";' textLength='48.06px' lengthAdjust='spacingAndGlyphs'>12 categories</text></g></g></svg></td>
#> <td headers="n_missing" class="gt_row gt_right">0.4%</td></tr>
#> <tr><td headers="type" class="gt_row gt_left gt_striped"><svg aria-hidden="true" role="img" viewBox="0 0 512 512" style="height:20px;width:20px;vertical-align:-0.125em;margin-left:auto;margin-right:auto;font-size:inherit;fill:#4e79a7;overflow:visible;position:relative;"><path d="M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z"/></svg></td>
#> <td headers="name" class="gt_row gt_left gt_striped" style="font-weight: bold;"><div style='max-width: 150px;'>
#> <details style='font-weight: normal !important;'>
#> <summary style='font-weight: bold !important;'>SurgeryDate</summary>
#> 2018.10.19 00:00:00, 2018.12.12 00:00:00, 2017.05.24 00:00:00, 2018.03.23 00:00:00, 2018.06.02 00:00:00, 2018.06.10 00:00:00, 2018.06.21 00:00:00, 2018.07.04 00:00:00, 2018.07.27 00:00:00, 2018.08.08 00:00:00, 2018.08.21 00:00:00, 2018.08.24 00:00:00, 2018.10.01 00:00:00, 2018.10.20 00:00:00, 2018.11.11 00:00:00, 2018.11.16 00:00:00, 2018.11.19 00:00:00, 2018.11.26 00:00:00, 2018.12.04 00:00:00, 2018.12.22 00:00:00, 2018.12.31 00:00:00, 2019.01.17 00:00:00, 2019.02.27 00:00:00, 2019.03.01 00:00:00, 2019.05.02 00:00:00, 2014.03.15 00:00:00, 2014.07.21 00:00:00, 2014.08.10 00:00:00, 2014.09.22 00:00:00, 2014.10.08 00:00:00, 2014.10.10 00:00:00, 2014.12.05 00:00:00, 2014.12.15 00:00:00, 2015.01.02 00:00:00, 2015.01.31 00:00:00, 2015.05.07 00:00:00, 2015.05.11 00:00:00, 2015.05.16 00:00:00, 2015.06.27 00:00:00, 2015.06.29 00:00:00, 2015.09.20 00:00:00, 2015.09.30 00:00:00, 2016.01.26 00:00:00, 2016.02.22 00:00:00, 2016.02.23 00:00:00, 2016.02.28 00:00:00, 2016.03.06 00:00:00, 2016.04.01 00:00:00, 2016.04.05 00:00:00, 2016.04.19 00:00:00, 2016.04.21 00:00:00, 2016.06.07 00:00:00, 2016.06.08 00:00:00, 2016.07.14 00:00:00, 2016.08.11 00:00:00, 2016.08.27 00:00:00, 2016.09.05 00:00:00, 2016.10.15 00:00:00, 2016.10.16 00:00:00, 2016.10.22 00:00:00, 2016.10.30 00:00:00, 2016.11.02 00:00:00, 2016.11.05 00:00:00, 2016.11.07 00:00:00, 2016.11.17 00:00:00, 2016.11.18 00:00:00, 2016.11.26 00:00:00, 2016.11.28 00:00:00, 2016.12.12 00:00:00, 2016.12.21 00:00:00, 2016.12.22 00:00:00, 2016.12.26 00:00:00, 2017.01.07 00:00:00, 2017.01.11 00:00:00, 2017.01.29 00:00:00, 2017.01.30 00:00:00, 2017.01.31 00:00:00, 2017.02.25 00:00:00, 2017.04.11 00:00:00, 2017.04.14 00:00:00, 2017.04.24 00:00:00, 2017.05.12 00:00:00, 2017.05.16 00:00:00, 2017.05.28 00:00:00, 2017.05.31 00:00:00, 2017.06.09 00:00:00, 2017.06.16 00:00:00, 2017.06.29 00:00:00, 2017.06.30 00:00:00, 2017.07.07 00:00:00, 2017.07.11 00:00:00, 2017.07.27 00:00:00, 2017.08.11 00:00:00, 2017.08.13 00:00:00, 2017.08.19 00:00:00, 2017.09.07 00:00:00, 2017.09.27 00:00:00, 2017.10.02 00:00:00, 2017.10.07 00:00:00, 2017.10.08 00:00:00, 2017.10.15 00:00:00, 2017.10.20 00:00:00, 2017.10.28 00:00:00, 2017.11.11 00:00:00, 2017.11.23 00:00:00, 2017.11.27 00:00:00, 2017.12.04 00:00:00, 2017.12.19 00:00:00, 2017.12.20 00:00:00, 2017.12.28 00:00:00, 2018.01.11 00:00:00, 2018.01.21 00:00:00, 2018.01.22 00:00:00, 2018.01.25 00:00:00, 2018.02.03 00:00:00, 2018.02.09 00:00:00, 2018.02.10 00:00:00, 2018.02.24 00:00:00, 2018.03.04 00:00:00, 2018.03.13 00:00:00, 2018.03.14 00:00:00, 2018.03.18 00:00:00, 2018.03.21 00:00:00, 2018.03.24 00:00:00, 2018.03.25 00:00:00, 2018.03.27 00:00:00, 2018.03.28 00:00:00, 2018.03.31 00:00:00, 2018.04.09 00:00:00, 2018.04.18 00:00:00, 2018.04.20 00:00:00, 2018.04.29 00:00:00, 2018.05.07 00:00:00, 2018.05.08 00:00:00, 2018.05.12 00:00:00, 2018.05.13 00:00:00, 2018.05.19 00:00:00, 2018.05.24 00:00:00, 2018.05.26 00:00:00, 2018.05.30 00:00:00, 2018.06.01 00:00:00, 2018.06.03 00:00:00, 2018.06.04 00:00:00, 2018.06.05 00:00:00, 2018.06.18 00:00:00, 2018.06.29 00:00:00, 2018.07.01 00:00:00, 2018.07.02 00:00:00, 2018.07.11 00:00:00, 2018.07.13 00:00:00, 2018.07.18 00:00:00, 2018.07.20 00:00:00, 2018.07.26 00:00:00, 2018.08.02 00:00:00, 2018.08.04 00:00:00, 2018.08.07 00:00:00, 2018.08.10 00:00:00, 2018.08.11 00:00:00, 2018.08.12 00:00:00, 2018.08.13 00:00:00, 2018.08.17 00:00:00, 2018.08.19 00:00:00, 2018.08.23 00:00:00, 2018.08.27 00:00:00, 2018.08.30 00:00:00, 2018.09.02 00:00:00, 2018.09.04 00:00:00, 2018.09.08 00:00:00, 2018.09.11 00:00:00, 2018.09.14 00:00:00, 2018.09.16 00:00:00, 2018.10.02 00:00:00, 2018.10.03 00:00:00, 2018.10.04 00:00:00, 2018.10.09 00:00:00, 2018.10.13 00:00:00, 2018.10.14 00:00:00, 2018.10.17 00:00:00, 2018.10.18 00:00:00, 2018.10.23 00:00:00, 2018.10.24 00:00:00, 2018.10.25 00:00:00, 2018.11.09 00:00:00, 2018.11.15 00:00:00, 2018.11.17 00:00:00, 2018.11.22 00:00:00, 2018.11.27 00:00:00, 2018.11.30 00:00:00, 2018.12.16 00:00:00, 2018.12.29 00:00:00, 2019.01.11 00:00:00, 2019.01.12 00:00:00, 2019.01.13 00:00:00, 2019.01.18 00:00:00, 2019.01.22 00:00:00, 2019.01.24 00:00:00, 2019.02.04 00:00:00, 2019.02.05 00:00:00, 2019.02.08 00:00:00, 2019.02.09 00:00:00, 2019.02.15 00:00:00, 2019.02.16 00:00:00, 2019.02.19 00:00:00, 2019.03.04 00:00:00, 2019.03.12 00:00:00, 2019.03.18 00:00:00, 2019.03.22 00:00:00, 2019.03.26 00:00:00, 2019.03.31 00:00:00, 2019.04.07 00:00:00, 2019.04.19 00:00:00, 2019.05.15 00:00:00, 2019.05.17 00:00:00, 2019.05.18 00:00:00, 2019.05.23 00:00:00, 2019.05.24 00:00:00, 2019.05.25 00:00:00, 2019.06.24 00:00:00, 2019.07.08 00:00:00, 2019.08.05 00:00:00, 2019.08.16 00:00:00 and 2019.08.22 00:00:00
#> </details></div></td>
#> <td headers="value" class="gt_row gt_center gt_striped"><?xml version='1.0' encoding='UTF-8' ?><svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='141.73pt' height='34.02pt' viewBox='0 0 141.73 34.02'><g class='svglite'><defs> <style type='text/css'><![CDATA[ .svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle { fill: none; stroke: #000000; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 10.00; } .svglite text { white-space: pre; } .svglite g.glyphgroup path { fill: inherit; stroke: none; } ]]></style></defs><rect width='100%' height='100%' style='stroke: none; fill: none;'/><defs> <clipPath id='cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg=='> <rect x='0.00' y='0.00' width='141.73' height='34.02' /> </clipPath></defs><g clip-path='url(#cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg==)'></g><defs> <clipPath id='cpMS4wMHwxNDAuNzR8Mi45OXwyMy42MQ=='> <rect x='1.00' y='2.99' width='139.74' height='20.62' /> </clipPath></defs><g clip-path='url(#cpMS4wMHwxNDAuNzR8Mi45OXwyMy42MQ==)'><rect x='140.17' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #DDEAF7;' /><rect x='139.61' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #DCE9F7;' /><rect x='139.05' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #DCE9F6;' /><rect x='138.49' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #DBE8F6;' /><rect x='137.93' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #DAE8F6;' /><rect x='137.37' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #DAE7F6;' /><rect x='136.81' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D9E7F5;' /><rect x='136.25' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D8E6F5;' /><rect x='135.69' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D8E6F5;' /><rect x='135.12' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D7E5F5;' /><rect x='134.56' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D6E5F4;' /><rect x='134.00' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D6E4F4;' /><rect x='133.44' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D5E4F4;' /><rect x='132.88' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D4E3F4;' /><rect x='132.32' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D3E3F3;' /><rect x='131.76' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D3E2F3;' /><rect x='131.20' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D2E2F3;' /><rect x='130.63' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D1E1F3;' /><rect x='130.07' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D1E1F2;' /><rect x='129.51' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #D0E0F2;' /><rect x='128.95' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CFE0F2;' /><rect x='128.39' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CFDFF2;' /><rect x='127.83' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CEDFF1;' /><rect x='127.27' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CDDEF1;' /><rect x='126.71' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CDDEF1;' /><rect x='126.14' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CCDEF0;' /><rect x='125.58' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CBDDF0;' /><rect x='125.02' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CBDDF0;' /><rect x='124.46' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #CADCF0;' /><rect x='123.90' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C9DCEF;' /><rect x='123.34' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C9DBEF;' /><rect x='122.78' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C8DBEF;' /><rect x='122.22' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C7DAEF;' /><rect x='121.66' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C7DAEE;' /><rect x='121.09' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C6D9EE;' /><rect x='120.53' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C5D9EE;' /><rect x='119.97' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C5D8EE;' /><rect x='119.41' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C4D8ED;' /><rect x='118.85' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C3D7ED;' /><rect x='118.29' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C2D7ED;' /><rect x='117.73' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C2D6ED;' /><rect x='117.17' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C1D6EC;' /><rect x='116.60' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C0D5EC;' /><rect x='116.04' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #C0D5EC;' /><rect x='115.48' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #BFD4EB;' /><rect x='114.92' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #BED4EB;' /><rect x='114.36' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #BED3EB;' /><rect x='113.80' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #BDD3EB;' /><rect x='113.24' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #BCD2EA;' /><rect x='112.68' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #BCD2EA;' /><rect x='112.11' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #BBD1EA;' /><rect x='111.55' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #BAD1EA;' /><rect x='110.99' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #BAD0E9;' /><rect x='110.43' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B9D0E9;' /><rect x='109.87' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B8CFE9;' /><rect x='109.31' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B7CFE9;' /><rect x='108.75' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B7CEE8;' /><rect x='108.19' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B6CEE8;' /><rect x='107.62' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B5CDE8;' /><rect x='107.06' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B5CDE8;' /><rect x='106.50' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B4CCE7;' /><rect x='105.94' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B3CCE7;' /><rect x='105.38' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B3CBE7;' /><rect x='104.82' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B2CBE7;' /><rect x='104.26' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B1CAE6;' /><rect x='103.70' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B1CAE6;' /><rect x='103.14' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #B0C9E6;' /><rect x='102.57' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #AFC9E5;' /><rect x='102.01' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #AFC8E5;' /><rect x='101.45' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #AEC8E5;' /><rect x='100.89' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #ADC7E5;' /><rect x='100.33' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #ACC7E4;' /><rect x='99.77' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #ACC6E4;' /><rect x='99.21' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #ABC6E4;' /><rect x='98.65' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #AAC5E4;' /><rect x='98.08' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #AAC5E3;' /><rect x='97.52' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A9C4E3;' /><rect x='96.96' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A8C4E3;' /><rect x='96.40' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A8C3E3;' /><rect x='95.84' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A7C3E2;' /><rect x='95.28' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A6C3E2;' /><rect x='94.72' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A5C2E2;' /><rect x='94.16' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A5C2E2;' /><rect x='93.59' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A4C1E1;' /><rect x='93.03' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A3C1E1;' /><rect x='92.47' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A3C0E1;' /><rect x='91.91' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A2C0E0;' /><rect x='91.35' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A1BFE0;' /><rect x='90.79' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A1BFE0;' /><rect x='90.23' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #A0BEE0;' /><rect x='89.67' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #9FBEDF;' /><rect x='89.11' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #9EBDDF;' /><rect x='88.54' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #9EBDDF;' /><rect x='87.98' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #9DBCDF;' /><rect x='87.42' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #9CBCDE;' /><rect x='86.86' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #9CBBDE;' /><rect x='86.30' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #9BBBDE;' /><rect x='85.74' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #9ABADE;' /><rect x='85.18' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #9ABADD;' /><rect x='84.62' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #99B9DD;' /><rect x='84.05' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #98B9DD;' /><rect x='83.49' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #97B8DD;' /><rect x='82.93' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #97B8DC;' /><rect x='82.37' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #96B7DC;' /><rect x='81.81' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #95B7DC;' /><rect x='81.25' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #95B6DB;' /><rect x='80.69' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #94B6DB;' /><rect x='80.13' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #93B6DB;' /><rect x='79.56' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #92B5DB;' /><rect x='79.00' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #92B5DA;' /><rect x='78.44' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #91B4DA;' /><rect x='77.88' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #90B4DA;' /><rect x='77.32' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #90B3DA;' /><rect x='76.76' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #8FB3D9;' /><rect x='76.20' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #8EB2D9;' /><rect x='75.64' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #8DB2D9;' /><rect x='75.08' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #8DB1D9;' /><rect x='74.51' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #8CB1D8;' /><rect x='73.95' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #8BB0D8;' /><rect x='73.39' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #8AB0D8;' /><rect x='72.83' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #8AAFD8;' /><rect x='72.27' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #89AFD7;' /><rect x='71.71' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #88AED7;' /><rect x='71.15' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #88AED7;' /><rect x='70.59' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #87ADD6;' /><rect x='70.02' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #86ADD6;' /><rect x='69.46' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #85ADD6;' /><rect x='68.90' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #85ACD6;' /><rect x='68.34' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #84ACD5;' /><rect x='67.78' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #83ABD5;' /><rect x='67.22' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #82ABD5;' /><rect x='66.66' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #82AAD5;' /><rect x='66.10' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #81AAD4;' /><rect x='65.53' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #80A9D4;' /><rect x='64.97' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #7FA9D4;' /><rect x='64.41' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #7FA8D4;' /><rect x='63.85' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #7EA8D3;' /><rect x='63.29' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #7DA7D3;' /><rect x='62.73' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #7CA7D3;' /><rect x='62.17' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #7CA6D3;' /><rect x='61.61' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #7BA6D2;' /><rect x='61.05' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #7AA5D2;' /><rect x='60.48' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #79A5D2;' /><rect x='59.92' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #79A5D2;' /><rect x='59.36' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #78A4D1;' /><rect x='58.80' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #77A4D1;' /><rect x='58.24' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #76A3D1;' /><rect x='57.68' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #76A3D0;' /><rect x='57.12' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #75A2D0;' /><rect x='56.56' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #74A2D0;' /><rect x='55.99' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #73A1D0;' /><rect x='55.43' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #73A1CF;' /><rect x='54.87' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #72A0CF;' /><rect x='54.31' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #71A0CF;' /><rect x='53.75' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #709FCF;' /><rect x='53.19' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6F9FCE;' /><rect x='52.63' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6F9ECE;' /><rect x='52.07' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6E9ECE;' /><rect x='51.50' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6D9ECE;' /><rect x='50.94' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6C9DCD;' /><rect x='50.38' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6B9DCD;' /><rect x='49.82' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6B9CCD;' /><rect x='49.26' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6A9CCD;' /><rect x='48.70' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #699BCC;' /><rect x='48.14' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #689BCC;' /><rect x='47.58' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #679ACC;' /><rect x='47.01' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #679ACB;' /><rect x='46.45' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6699CB;' /><rect x='45.89' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6599CB;' /><rect x='45.33' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6498CB;' /><rect x='44.77' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6398CA;' /><rect x='44.21' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6398CA;' /><rect x='43.65' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6297CA;' /><rect x='43.09' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6197CA;' /><rect x='42.53' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #6096C9;' /><rect x='41.96' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5F96C9;' /><rect x='41.40' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5E95C9;' /><rect x='40.84' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5E95C9;' /><rect x='40.28' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5D94C8;' /><rect x='39.72' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5C94C8;' /><rect x='39.16' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5B93C8;' /><rect x='38.60' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5A93C8;' /><rect x='38.04' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5993C7;' /><rect x='37.47' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5892C7;' /><rect x='36.91' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5792C7;' /><rect x='36.35' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5791C6;' /><rect x='35.79' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5691C6;' /><rect x='35.23' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5590C6;' /><rect x='34.67' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #5490C6;' /><rect x='34.11' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #538FC5;' /><rect x='33.55' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #528FC5;' /><rect x='32.98' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #518EC5;' /><rect x='32.42' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #508EC5;' /><rect x='31.86' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4F8EC4;' /><rect x='31.30' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4E8DC4;' /><rect x='30.74' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4D8DC4;' /><rect x='30.18' y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4C8CC4;' /><rect x='29.06' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4C8CC3;' /><rect x='27.93' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4B8BC3;' /><rect x='26.81' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4A8BC3;' /><rect x='25.69' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #498AC3;' /><rect x='24.57' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #488AC2;' /><rect x='23.44' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4789C2;' /><rect x='22.32' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4689C2;' /><rect x='21.20' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4589C1;' /><rect x='20.08' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4488C1;' /><rect x='18.95' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4388C1;' /><rect x='17.83' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4187C1;' /><rect x='16.71' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #4087C0;' /><rect x='15.59' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3F86C0;' /><rect x='14.47' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3E86C0;' /><rect x='13.34' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3D85C0;' /><rect x='12.22' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3C85BF;' /><rect x='11.10' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3B85BF;' /><rect x='9.98' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3A84BF;' /><rect x='8.85' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3984BF;' /><rect x='7.73' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3783BE;' /><rect x='6.61' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3683BE;' /><rect x='5.49' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3582BE;' /><rect x='4.36' y='3.93' width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3482BE;' /><rect x='2.68' y='3.93' width='1.68' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3281BD;' /><rect x='1.00' y='3.93' width='1.68' height='18.75' style='stroke-width: 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill: #3181BD;' /></g><g clip-path='url(#cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg==)'><text x='1.00' y='30.18' style='font-size: 8.00px; font-family: "Arial";' textLength='52.52px' lengthAdjust='spacingAndGlyphs'>222 categories</text></g></g></svg></td>
#> <td headers="n_missing" class="gt_row gt_right gt_striped">0.4%</td></tr>
#> </tbody>
#>
#>
#> </table>
#> </div>
#>
#> SUMMARY OF CATEGORICAL VARIABLES
#>
#> character(0)
#>
#> LastFollowUpDate has 250 observations and 12 levels.
#> 2018.12.22 00:00:00: n = 23, 9.24% of valid cases.
#> 2019.01.22 00:00:00: n = 19, 7.63% of valid cases.
#> 2019.02.22 00:00:00: n = 21, 8.43% of valid cases.
#> 2019.03.22 00:00:00: n = 24, 9.64% of valid cases.
#> 2019.04.22 00:00:00: n = 19, 7.63% of valid cases.
#> 2019.05.22 00:00:00: n = 20, 8.03% of valid cases.
#> 2019.06.22 00:00:00: n = 26, 10.44% of valid cases.
#> 2019.07.22 00:00:00: n = 23, 9.24% of valid cases.
#> 2019.08.22 00:00:00: n = 23, 9.24% of valid cases.
#> 2019.09.22 00:00:00: n = 14, 5.62% of valid cases.
#> 2019.10.22 00:00:00: n = 17, 6.83% of valid cases.
#> 2019.11.22 00:00:00: n = 20, 8.03% of valid cases.
#> Missing values: 1.
#>
#> SurgeryDate has 250 observations and 222 levels.
#> (Other): n = 124, 49.8% of valid cases.
#> 2014.03.15 00:00:00: n = 1, 0.4% of valid cases.
#> 2014.07.21 00:00:00: n = 1, 0.4% of valid cases.
#> 2014.08.10 00:00:00: n = 1, 0.4% of valid cases.
#> 2014.09.22 00:00:00: n = 1, 0.4% of valid cases.
#> 2014.10.08 00:00:00: n = 1, 0.4% of valid cases.
#> 2014.10.10 00:00:00: n = 1, 0.4% of valid cases.
#> 2014.12.05 00:00:00: n = 1, 0.4% of valid cases.
#> 2014.12.15 00:00:00: n = 1, 0.4% of valid cases.
#> 2015.01.02 00:00:00: n = 1, 0.4% of valid cases.
#> 2015.01.31 00:00:00: n = 1, 0.4% of valid cases.
#> 2015.05.07 00:00:00: n = 1, 0.4% of valid cases.
#> 2015.05.11 00:00:00: n = 1, 0.4% of valid cases.
#> 2015.05.16 00:00:00: n = 1, 0.4% of valid cases.
#> 2015.06.27 00:00:00: n = 1, 0.4% of valid cases.
#> 2015.06.29 00:00:00: n = 1, 0.4% of valid cases.
#> 2015.09.20 00:00:00: n = 1, 0.4% of valid cases.
#> 2015.09.30 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.01.26 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.02.22 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.02.23 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.02.28 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.03.06 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.04.01 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.04.05 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.04.19 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.04.21 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.06.07 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.06.08 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.07.14 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.08.11 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.08.27 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.09.05 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.10.15 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.10.16 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.10.22 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.10.30 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.11.02 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.11.05 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.11.07 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.11.17 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.11.18 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.11.26 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.11.28 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.12.12 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.12.21 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.12.22 00:00:00: n = 1, 0.4% of valid cases.
#> 2016.12.26 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.01.07 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.01.11 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.01.29 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.01.30 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.01.31 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.02.25 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.04.11 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.04.14 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.04.24 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.05.12 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.05.16 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.05.24 00:00:00: n = 2, 0.8% of valid cases.
#> 2017.05.28 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.05.31 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.06.09 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.06.16 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.06.29 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.06.30 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.07.07 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.07.11 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.07.27 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.08.11 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.08.13 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.08.19 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.09.07 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.09.27 00:00:00: n = 1, 0.4% of valid cases.
#> 2017.10.02 00:00:00: n = 1, 0.4% of valid cases.
#> 2018.03.23 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.06.02 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.06.10 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.06.21 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.07.04 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.07.27 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.08.08 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.08.21 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.08.24 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.10.01 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.10.19 00:00:00: n = 3, 1.2% of valid cases.
#> 2018.10.20 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.11.11 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.11.16 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.11.19 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.11.26 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.12.04 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.12.12 00:00:00: n = 3, 1.2% of valid cases.
#> 2018.12.22 00:00:00: n = 2, 0.8% of valid cases.
#> 2018.12.31 00:00:00: n = 2, 0.8% of valid cases.
#> 2019.01.17 00:00:00: n = 2, 0.8% of valid cases.
#> 2019.02.27 00:00:00: n = 2, 0.8% of valid cases.
#> 2019.03.01 00:00:00: n = 2, 0.8% of valid cases.
#> 2019.05.02 00:00:00: n = 2, 0.8% of valid cases.
#> Missing values: 1.
#>
#> <table class="gt_table" data-quarto-disable-processing="false"
#> data-quarto-bootstrap="false">
#>
#> <tr class="gt_heading">
#> <td colspan="4" class="gt_heading gt_title gt_font_normal" style>.
#>
#> <tr class="gt_heading">
#> <td colspan="4" class="gt_heading gt_subtitle gt_font_normal
#> gt_bottom_border" style>250 rows x 2 cols
#>
#> <tr class="gt_col_headings">
#> <th class="gt_col_heading gt_columns_bottom_border gt_left"
#> rowspan="1" colspan="1" scope="col" id="type">
#> <th class="gt_col_heading gt_columns_bottom_border gt_left"
#> rowspan="1" colspan="1" scope="col" id="name">Column
#> <th class="gt_col_heading gt_columns_bottom_border gt_center"
#> rowspan="1" colspan="1" scope="col" id="value">Plot Overview
#> <th class="gt_col_heading gt_columns_bottom_border gt_right"
#> rowspan="1" colspan="1" scope="col" id="n_missing">Missing
#>
#>
#> <tbody class="gt_table_body">
#> <td headers="type" class="gt_row gt_left"><svg aria-hidden="true"
#> role="img" viewBox="0 0 512 512"
#> style="height:20px;width:20px;vertical-align:-0.125em;margin-left:auto;margin-right:auto;font-size:inherit;fill:#4e79a7;overflow:visible;position:relative;"><path
#> d="M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0
#> 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32
#> 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0
#> 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3
#> 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32
#> 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7
#> 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3
#> 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24
#> 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z"/>
#> <td headers="name" class="gt_row gt_left" style="font-weight:
#> bold;"><div style='max-width: 150px;'>
#> <details style='font-weight: normal !important;'>
#> <summary style='font-weight: bold !important;'>LastFollowUpDate
#> 2019.06.22 00:00:00, 2019.03.22 00:00:00, 2018.12.22 00:00:00,
#> 2019.07.22 00:00:00, 2019.08.22 00:00:00, 2019.02.22 00:00:00,
#> 2019.05.22 00:00:00, 2019.11.22 00:00:00, 2019.01.22 00:00:00,
#> 2019.04.22 00:00:00, 2019.10.22 00:00:00 and 2019.09.22 00:00:00
#>
#> <td headers="value" class="gt_row gt_center"><?xml version='1.0'
#> encoding='UTF-8' ?><svg xmlns='http://www.w3.org/2000/svg'
#> xmlns:xlink='http://www.w3.org/1999/xlink' width='141.73pt'
#> height='34.02pt' viewBox='0 0 141.73 34.02'><g class='svglite'> <style
#> type='text/css'><![CDATA[ .svglite line, .svglite polyline, .svglite
#> polygon, .svglite path, .svglite rect, .svglite circle { fill: none;
#> stroke: #000000; stroke-linecap: round; stroke-linejoin: round;
#> stroke-miterlimit: 10.00; } .svglite text { white-space: pre; }
#> .svglite g.glyphgroup path { fill: inherit; stroke: none; } ]]><rect
#> width='100%' height='100%' style='stroke: none; fill: none;'/>
#> <clipPath id='cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg=='> <rect x='0.00'
#> y='0.00' width='141.73' height='34.02' /> <g
#> clip-path='url(#cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg==)'> <clipPath
#> id='cpMS4wMHwxNDAuNzR8Mi45OXwyMy42MQ=='> <rect x='1.00' y='2.99'
#> width='139.74' height='20.62' /> <g
#> clip-path='url(#cpMS4wMHwxNDAuNzR8Mi45OXwyMy42MQ==)'><rect x='132.88'
#> y='3.93' width='7.86' height='18.75' style='stroke-width: 1.07;
#> stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill:
#> #DDEAF7;' /><rect x='123.34' y='3.93' width='9.54' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #CFE0F2;' /><rect x='112.68' y='3.93'
#> width='10.66' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #C2D6EC;' /><rect
#> x='102.01' y='3.93' width='10.66' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #B4CCE7;' /><rect x='90.79' y='3.93' width='11.22'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #A6C2E2;' /><rect
#> x='79.56' y='3.93' width='11.22' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #98B9DD;' /><rect x='67.78' y='3.93' width='11.79'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #89AFD7;' /><rect
#> x='54.87' y='3.93' width='12.91' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #7AA6D2;' /><rect x='41.96' y='3.93' width='12.91'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #6B9CCD;' /><rect
#> x='29.06' y='3.93' width='12.91' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #5A93C8;' /><rect x='15.59' y='3.93' width='13.47'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #488AC2;' /><rect
#> x='1.00' y='3.93' width='14.59' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #3181BD;' /><g
#> clip-path='url(#cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg==)'><text x='1.00'
#> y='30.18' style='font-size: 8.00px; font-family: "Arial";'
#> textLength='48.06px' lengthAdjust='spacingAndGlyphs'>12 categories
#> <td headers="n_missing" class="gt_row gt_right">0.4%
#> <td headers="type" class="gt_row gt_left gt_striped"><svg
#> aria-hidden="true" role="img" viewBox="0 0 512 512"
#> style="height:20px;width:20px;vertical-align:-0.125em;margin-left:auto;margin-right:auto;font-size:inherit;fill:#4e79a7;overflow:visible;position:relative;"><path
#> d="M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0
#> 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32
#> 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0
#> 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3
#> 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32
#> 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7
#> 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3
#> 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24
#> 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z"/>
#> <td headers="name" class="gt_row gt_left gt_striped"
#> style="font-weight: bold;"><div style='max-width: 150px;'>
#> <details style='font-weight: normal !important;'>
#> <summary style='font-weight: bold !important;'>SurgeryDate
#> 2018.10.19 00:00:00, 2018.12.12 00:00:00, 2017.05.24 00:00:00,
#> 2018.03.23 00:00:00, 2018.06.02 00:00:00, 2018.06.10 00:00:00,
#> 2018.06.21 00:00:00, 2018.07.04 00:00:00, 2018.07.27 00:00:00,
#> 2018.08.08 00:00:00, 2018.08.21 00:00:00, 2018.08.24 00:00:00,
#> 2018.10.01 00:00:00, 2018.10.20 00:00:00, 2018.11.11 00:00:00,
#> 2018.11.16 00:00:00, 2018.11.19 00:00:00, 2018.11.26 00:00:00,
#> 2018.12.04 00:00:00, 2018.12.22 00:00:00, 2018.12.31 00:00:00,
#> 2019.01.17 00:00:00, 2019.02.27 00:00:00, 2019.03.01 00:00:00,
#> 2019.05.02 00:00:00, 2014.03.15 00:00:00, 2014.07.21 00:00:00,
#> 2014.08.10 00:00:00, 2014.09.22 00:00:00, 2014.10.08 00:00:00,
#> 2014.10.10 00:00:00, 2014.12.05 00:00:00, 2014.12.15 00:00:00,
#> 2015.01.02 00:00:00, 2015.01.31 00:00:00, 2015.05.07 00:00:00,
#> 2015.05.11 00:00:00, 2015.05.16 00:00:00, 2015.06.27 00:00:00,
#> 2015.06.29 00:00:00, 2015.09.20 00:00:00, 2015.09.30 00:00:00,
#> 2016.01.26 00:00:00, 2016.02.22 00:00:00, 2016.02.23 00:00:00,
#> 2016.02.28 00:00:00, 2016.03.06 00:00:00, 2016.04.01 00:00:00,
#> 2016.04.05 00:00:00, 2016.04.19 00:00:00, 2016.04.21 00:00:00,
#> 2016.06.07 00:00:00, 2016.06.08 00:00:00, 2016.07.14 00:00:00,
#> 2016.08.11 00:00:00, 2016.08.27 00:00:00, 2016.09.05 00:00:00,
#> 2016.10.15 00:00:00, 2016.10.16 00:00:00, 2016.10.22 00:00:00,
#> 2016.10.30 00:00:00, 2016.11.02 00:00:00, 2016.11.05 00:00:00,
#> 2016.11.07 00:00:00, 2016.11.17 00:00:00, 2016.11.18 00:00:00,
#> 2016.11.26 00:00:00, 2016.11.28 00:00:00, 2016.12.12 00:00:00,
#> 2016.12.21 00:00:00, 2016.12.22 00:00:00, 2016.12.26 00:00:00,
#> 2017.01.07 00:00:00, 2017.01.11 00:00:00, 2017.01.29 00:00:00,
#> 2017.01.30 00:00:00, 2017.01.31 00:00:00, 2017.02.25 00:00:00,
#> 2017.04.11 00:00:00, 2017.04.14 00:00:00, 2017.04.24 00:00:00,
#> 2017.05.12 00:00:00, 2017.05.16 00:00:00, 2017.05.28 00:00:00,
#> 2017.05.31 00:00:00, 2017.06.09 00:00:00, 2017.06.16 00:00:00,
#> 2017.06.29 00:00:00, 2017.06.30 00:00:00, 2017.07.07 00:00:00,
#> 2017.07.11 00:00:00, 2017.07.27 00:00:00, 2017.08.11 00:00:00,
#> 2017.08.13 00:00:00, 2017.08.19 00:00:00, 2017.09.07 00:00:00,
#> 2017.09.27 00:00:00, 2017.10.02 00:00:00, 2017.10.07 00:00:00,
#> 2017.10.08 00:00:00, 2017.10.15 00:00:00, 2017.10.20 00:00:00,
#> 2017.10.28 00:00:00, 2017.11.11 00:00:00, 2017.11.23 00:00:00,
#> 2017.11.27 00:00:00, 2017.12.04 00:00:00, 2017.12.19 00:00:00,
#> 2017.12.20 00:00:00, 2017.12.28 00:00:00, 2018.01.11 00:00:00,
#> 2018.01.21 00:00:00, 2018.01.22 00:00:00, 2018.01.25 00:00:00,
#> 2018.02.03 00:00:00, 2018.02.09 00:00:00, 2018.02.10 00:00:00,
#> 2018.02.24 00:00:00, 2018.03.04 00:00:00, 2018.03.13 00:00:00,
#> 2018.03.14 00:00:00, 2018.03.18 00:00:00, 2018.03.21 00:00:00,
#> 2018.03.24 00:00:00, 2018.03.25 00:00:00, 2018.03.27 00:00:00,
#> 2018.03.28 00:00:00, 2018.03.31 00:00:00, 2018.04.09 00:00:00,
#> 2018.04.18 00:00:00, 2018.04.20 00:00:00, 2018.04.29 00:00:00,
#> 2018.05.07 00:00:00, 2018.05.08 00:00:00, 2018.05.12 00:00:00,
#> 2018.05.13 00:00:00, 2018.05.19 00:00:00, 2018.05.24 00:00:00,
#> 2018.05.26 00:00:00, 2018.05.30 00:00:00, 2018.06.01 00:00:00,
#> 2018.06.03 00:00:00, 2018.06.04 00:00:00, 2018.06.05 00:00:00,
#> 2018.06.18 00:00:00, 2018.06.29 00:00:00, 2018.07.01 00:00:00,
#> 2018.07.02 00:00:00, 2018.07.11 00:00:00, 2018.07.13 00:00:00,
#> 2018.07.18 00:00:00, 2018.07.20 00:00:00, 2018.07.26 00:00:00,
#> 2018.08.02 00:00:00, 2018.08.04 00:00:00, 2018.08.07 00:00:00,
#> 2018.08.10 00:00:00, 2018.08.11 00:00:00, 2018.08.12 00:00:00,
#> 2018.08.13 00:00:00, 2018.08.17 00:00:00, 2018.08.19 00:00:00,
#> 2018.08.23 00:00:00, 2018.08.27 00:00:00, 2018.08.30 00:00:00,
#> 2018.09.02 00:00:00, 2018.09.04 00:00:00, 2018.09.08 00:00:00,
#> 2018.09.11 00:00:00, 2018.09.14 00:00:00, 2018.09.16 00:00:00,
#> 2018.10.02 00:00:00, 2018.10.03 00:00:00, 2018.10.04 00:00:00,
#> 2018.10.09 00:00:00, 2018.10.13 00:00:00, 2018.10.14 00:00:00,
#> 2018.10.17 00:00:00, 2018.10.18 00:00:00, 2018.10.23 00:00:00,
#> 2018.10.24 00:00:00, 2018.10.25 00:00:00, 2018.11.09 00:00:00,
#> 2018.11.15 00:00:00, 2018.11.17 00:00:00, 2018.11.22 00:00:00,
#> 2018.11.27 00:00:00, 2018.11.30 00:00:00, 2018.12.16 00:00:00,
#> 2018.12.29 00:00:00, 2019.01.11 00:00:00, 2019.01.12 00:00:00,
#> 2019.01.13 00:00:00, 2019.01.18 00:00:00, 2019.01.22 00:00:00,
#> 2019.01.24 00:00:00, 2019.02.04 00:00:00, 2019.02.05 00:00:00,
#> 2019.02.08 00:00:00, 2019.02.09 00:00:00, 2019.02.15 00:00:00,
#> 2019.02.16 00:00:00, 2019.02.19 00:00:00, 2019.03.04 00:00:00,
#> 2019.03.12 00:00:00, 2019.03.18 00:00:00, 2019.03.22 00:00:00,
#> 2019.03.26 00:00:00, 2019.03.31 00:00:00, 2019.04.07 00:00:00,
#> 2019.04.19 00:00:00, 2019.05.15 00:00:00, 2019.05.17 00:00:00,
#> 2019.05.18 00:00:00, 2019.05.23 00:00:00, 2019.05.24 00:00:00,
#> 2019.05.25 00:00:00, 2019.06.24 00:00:00, 2019.07.08 00:00:00,
#> 2019.08.05 00:00:00, 2019.08.16 00:00:00 and 2019.08.22 00:00:00
#>
#> <td headers="value" class="gt_row gt_center gt_striped"><?xml
#> version='1.0' encoding='UTF-8' ?><svg
#> xmlns='http://www.w3.org/2000/svg'
#> xmlns:xlink='http://www.w3.org/1999/xlink' width='141.73pt'
#> height='34.02pt' viewBox='0 0 141.73 34.02'><g class='svglite'> <style
#> type='text/css'><![CDATA[ .svglite line, .svglite polyline, .svglite
#> polygon, .svglite path, .svglite rect, .svglite circle { fill: none;
#> stroke: #000000; stroke-linecap: round; stroke-linejoin: round;
#> stroke-miterlimit: 10.00; } .svglite text { white-space: pre; }
#> .svglite g.glyphgroup path { fill: inherit; stroke: none; } ]]><rect
#> width='100%' height='100%' style='stroke: none; fill: none;'/>
#> <clipPath id='cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg=='> <rect x='0.00'
#> y='0.00' width='141.73' height='34.02' /> <g
#> clip-path='url(#cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg==)'> <clipPath
#> id='cpMS4wMHwxNDAuNzR8Mi45OXwyMy42MQ=='> <rect x='1.00' y='2.99'
#> width='139.74' height='20.62' /> <g
#> clip-path='url(#cpMS4wMHwxNDAuNzR8Mi45OXwyMy42MQ==)'><rect x='140.17'
#> y='3.93' width='0.56' height='18.75' style='stroke-width: 1.07;
#> stroke: none; stroke-linecap: butt; stroke-linejoin: miter; fill:
#> #DDEAF7;' /><rect x='139.61' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #DCE9F7;' /><rect x='139.05' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #DCE9F6;' /><rect
#> x='138.49' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #DBE8F6;' /><rect x='137.93' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #DAE8F6;' /><rect
#> x='137.37' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #DAE7F6;' /><rect x='136.81' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #D9E7F5;' /><rect
#> x='136.25' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #D8E6F5;' /><rect x='135.69' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #D8E6F5;' /><rect
#> x='135.12' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #D7E5F5;' /><rect x='134.56' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #D6E5F4;' /><rect
#> x='134.00' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #D6E4F4;' /><rect x='133.44' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #D5E4F4;' /><rect
#> x='132.88' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #D4E3F4;' /><rect x='132.32' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #D3E3F3;' /><rect
#> x='131.76' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #D3E2F3;' /><rect x='131.20' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #D2E2F3;' /><rect
#> x='130.63' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #D1E1F3;' /><rect x='130.07' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #D1E1F2;' /><rect
#> x='129.51' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #D0E0F2;' /><rect x='128.95' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #CFE0F2;' /><rect
#> x='128.39' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #CFDFF2;' /><rect x='127.83' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #CEDFF1;' /><rect
#> x='127.27' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #CDDEF1;' /><rect x='126.71' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #CDDEF1;' /><rect
#> x='126.14' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #CCDEF0;' /><rect x='125.58' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #CBDDF0;' /><rect
#> x='125.02' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #CBDDF0;' /><rect x='124.46' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #CADCF0;' /><rect
#> x='123.90' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #C9DCEF;' /><rect x='123.34' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #C9DBEF;' /><rect
#> x='122.78' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #C8DBEF;' /><rect x='122.22' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #C7DAEF;' /><rect
#> x='121.66' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #C7DAEE;' /><rect x='121.09' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #C6D9EE;' /><rect
#> x='120.53' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #C5D9EE;' /><rect x='119.97' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #C5D8EE;' /><rect
#> x='119.41' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #C4D8ED;' /><rect x='118.85' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #C3D7ED;' /><rect
#> x='118.29' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #C2D7ED;' /><rect x='117.73' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #C2D6ED;' /><rect
#> x='117.17' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #C1D6EC;' /><rect x='116.60' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #C0D5EC;' /><rect
#> x='116.04' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #C0D5EC;' /><rect x='115.48' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #BFD4EB;' /><rect
#> x='114.92' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #BED4EB;' /><rect x='114.36' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #BED3EB;' /><rect
#> x='113.80' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #BDD3EB;' /><rect x='113.24' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #BCD2EA;' /><rect
#> x='112.68' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #BCD2EA;' /><rect x='112.11' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #BBD1EA;' /><rect
#> x='111.55' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #BAD1EA;' /><rect x='110.99' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #BAD0E9;' /><rect
#> x='110.43' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #B9D0E9;' /><rect x='109.87' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #B8CFE9;' /><rect
#> x='109.31' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #B7CFE9;' /><rect x='108.75' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #B7CEE8;' /><rect
#> x='108.19' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #B6CEE8;' /><rect x='107.62' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #B5CDE8;' /><rect
#> x='107.06' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #B5CDE8;' /><rect x='106.50' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #B4CCE7;' /><rect
#> x='105.94' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #B3CCE7;' /><rect x='105.38' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #B3CBE7;' /><rect
#> x='104.82' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #B2CBE7;' /><rect x='104.26' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #B1CAE6;' /><rect
#> x='103.70' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #B1CAE6;' /><rect x='103.14' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #B0C9E6;' /><rect
#> x='102.57' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #AFC9E5;' /><rect x='102.01' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #AFC8E5;' /><rect
#> x='101.45' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #AEC8E5;' /><rect x='100.89' y='3.93' width='0.56'
#> height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #ADC7E5;' /><rect
#> x='100.33' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #ACC7E4;' /><rect x='99.77' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #ACC6E4;' /><rect x='99.21' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #ABC6E4;' /><rect
#> x='98.65' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #AAC5E4;' /><rect x='98.08' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #AAC5E3;' /><rect x='97.52' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #A9C4E3;' /><rect
#> x='96.96' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #A8C4E3;' /><rect x='96.40' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #A8C3E3;' /><rect x='95.84' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #A7C3E2;' /><rect
#> x='95.28' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #A6C3E2;' /><rect x='94.72' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #A5C2E2;' /><rect x='94.16' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #A5C2E2;' /><rect
#> x='93.59' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #A4C1E1;' /><rect x='93.03' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #A3C1E1;' /><rect x='92.47' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #A3C0E1;' /><rect
#> x='91.91' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #A2C0E0;' /><rect x='91.35' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #A1BFE0;' /><rect x='90.79' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #A1BFE0;' /><rect
#> x='90.23' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #A0BEE0;' /><rect x='89.67' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #9FBEDF;' /><rect x='89.11' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #9EBDDF;' /><rect
#> x='88.54' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #9EBDDF;' /><rect x='87.98' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #9DBCDF;' /><rect x='87.42' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #9CBCDE;' /><rect
#> x='86.86' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #9CBBDE;' /><rect x='86.30' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #9BBBDE;' /><rect x='85.74' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #9ABADE;' /><rect
#> x='85.18' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #9ABADD;' /><rect x='84.62' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #99B9DD;' /><rect x='84.05' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #98B9DD;' /><rect
#> x='83.49' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #97B8DD;' /><rect x='82.93' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #97B8DC;' /><rect x='82.37' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #96B7DC;' /><rect
#> x='81.81' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #95B7DC;' /><rect x='81.25' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #95B6DB;' /><rect x='80.69' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #94B6DB;' /><rect
#> x='80.13' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #93B6DB;' /><rect x='79.56' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #92B5DB;' /><rect x='79.00' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #92B5DA;' /><rect
#> x='78.44' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #91B4DA;' /><rect x='77.88' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #90B4DA;' /><rect x='77.32' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #90B3DA;' /><rect
#> x='76.76' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #8FB3D9;' /><rect x='76.20' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #8EB2D9;' /><rect x='75.64' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #8DB2D9;' /><rect
#> x='75.08' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #8DB1D9;' /><rect x='74.51' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #8CB1D8;' /><rect x='73.95' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #8BB0D8;' /><rect
#> x='73.39' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #8AB0D8;' /><rect x='72.83' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #8AAFD8;' /><rect x='72.27' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #89AFD7;' /><rect
#> x='71.71' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #88AED7;' /><rect x='71.15' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #88AED7;' /><rect x='70.59' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #87ADD6;' /><rect
#> x='70.02' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #86ADD6;' /><rect x='69.46' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #85ADD6;' /><rect x='68.90' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #85ACD6;' /><rect
#> x='68.34' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #84ACD5;' /><rect x='67.78' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #83ABD5;' /><rect x='67.22' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #82ABD5;' /><rect
#> x='66.66' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #82AAD5;' /><rect x='66.10' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #81AAD4;' /><rect x='65.53' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #80A9D4;' /><rect
#> x='64.97' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #7FA9D4;' /><rect x='64.41' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #7FA8D4;' /><rect x='63.85' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #7EA8D3;' /><rect
#> x='63.29' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #7DA7D3;' /><rect x='62.73' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #7CA7D3;' /><rect x='62.17' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #7CA6D3;' /><rect
#> x='61.61' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #7BA6D2;' /><rect x='61.05' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #7AA5D2;' /><rect x='60.48' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #79A5D2;' /><rect
#> x='59.92' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #79A5D2;' /><rect x='59.36' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #78A4D1;' /><rect x='58.80' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #77A4D1;' /><rect
#> x='58.24' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #76A3D1;' /><rect x='57.68' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #76A3D0;' /><rect x='57.12' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #75A2D0;' /><rect
#> x='56.56' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #74A2D0;' /><rect x='55.99' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #73A1D0;' /><rect x='55.43' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #73A1CF;' /><rect
#> x='54.87' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #72A0CF;' /><rect x='54.31' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #71A0CF;' /><rect x='53.75' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #709FCF;' /><rect
#> x='53.19' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #6F9FCE;' /><rect x='52.63' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #6F9ECE;' /><rect x='52.07' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #6E9ECE;' /><rect
#> x='51.50' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #6D9ECE;' /><rect x='50.94' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #6C9DCD;' /><rect x='50.38' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #6B9DCD;' /><rect
#> x='49.82' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #6B9CCD;' /><rect x='49.26' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #6A9CCD;' /><rect x='48.70' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #699BCC;' /><rect
#> x='48.14' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #689BCC;' /><rect x='47.58' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #679ACC;' /><rect x='47.01' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #679ACB;' /><rect
#> x='46.45' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #6699CB;' /><rect x='45.89' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #6599CB;' /><rect x='45.33' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #6498CB;' /><rect
#> x='44.77' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #6398CA;' /><rect x='44.21' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #6398CA;' /><rect x='43.65' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #6297CA;' /><rect
#> x='43.09' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #6197CA;' /><rect x='42.53' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #6096C9;' /><rect x='41.96' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #5F96C9;' /><rect
#> x='41.40' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #5E95C9;' /><rect x='40.84' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #5E95C9;' /><rect x='40.28' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #5D94C8;' /><rect
#> x='39.72' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #5C94C8;' /><rect x='39.16' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #5B93C8;' /><rect x='38.60' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #5A93C8;' /><rect
#> x='38.04' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #5993C7;' /><rect x='37.47' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #5892C7;' /><rect x='36.91' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #5792C7;' /><rect
#> x='36.35' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #5791C6;' /><rect x='35.79' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #5691C6;' /><rect x='35.23' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #5590C6;' /><rect
#> x='34.67' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #5490C6;' /><rect x='34.11' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #538FC5;' /><rect x='33.55' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #528FC5;' /><rect
#> x='32.98' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #518EC5;' /><rect x='32.42' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #508EC5;' /><rect x='31.86' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #4F8EC4;' /><rect
#> x='31.30' y='3.93' width='0.56' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #4E8DC4;' /><rect x='30.74' y='3.93' width='0.56' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #4D8DC4;' /><rect x='30.18' y='3.93'
#> width='0.56' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #4C8CC4;' /><rect
#> x='29.06' y='3.93' width='1.12' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #4C8CC3;' /><rect x='27.93' y='3.93' width='1.12' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #4B8BC3;' /><rect x='26.81' y='3.93'
#> width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #4A8BC3;' /><rect
#> x='25.69' y='3.93' width='1.12' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #498AC3;' /><rect x='24.57' y='3.93' width='1.12' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #488AC2;' /><rect x='23.44' y='3.93'
#> width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #4789C2;' /><rect
#> x='22.32' y='3.93' width='1.12' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #4689C2;' /><rect x='21.20' y='3.93' width='1.12' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #4589C1;' /><rect x='20.08' y='3.93'
#> width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #4488C1;' /><rect
#> x='18.95' y='3.93' width='1.12' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #4388C1;' /><rect x='17.83' y='3.93' width='1.12' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #4187C1;' /><rect x='16.71' y='3.93'
#> width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #4087C0;' /><rect
#> x='15.59' y='3.93' width='1.12' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #3F86C0;' /><rect x='14.47' y='3.93' width='1.12' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #3E86C0;' /><rect x='13.34' y='3.93'
#> width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #3D85C0;' /><rect
#> x='12.22' y='3.93' width='1.12' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #3C85BF;' /><rect x='11.10' y='3.93' width='1.12' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #3B85BF;' /><rect x='9.98' y='3.93'
#> width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #3A84BF;' /><rect
#> x='8.85' y='3.93' width='1.12' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #3984BF;' /><rect x='7.73' y='3.93' width='1.12' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #3783BE;' /><rect x='6.61' y='3.93'
#> width='1.12' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #3683BE;' /><rect
#> x='5.49' y='3.93' width='1.12' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #3582BE;' /><rect x='4.36' y='3.93' width='1.12' height='18.75'
#> style='stroke-width: 1.07; stroke: none; stroke-linecap: butt;
#> stroke-linejoin: miter; fill: #3482BE;' /><rect x='2.68' y='3.93'
#> width='1.68' height='18.75' style='stroke-width: 1.07; stroke: none;
#> stroke-linecap: butt; stroke-linejoin: miter; fill: #3281BD;' /><rect
#> x='1.00' y='3.93' width='1.68' height='18.75' style='stroke-width:
#> 1.07; stroke: none; stroke-linecap: butt; stroke-linejoin: miter;
#> fill: #3181BD;' /><g
#> clip-path='url(#cpMC4wMHwxNDEuNzN8MC4wMHwzNC4wMg==)'><text x='1.00'
#> y='30.18' style='font-size: 8.00px; font-family: "Arial";'
#> textLength='52.52px' lengthAdjust='spacingAndGlyphs'>222 categories
#> <td headers="n_missing" class="gt_row gt_right gt_striped">0.4%