Files
wiki/output/法拍/东莞法拍房趋势分析.html
T
wiki-agentandClaude Opus 4.6 f06d84a003 Add 东莞法拍房 historical data: 31 sub-regions, 24,949 records (2017-2026)
Scraped all 31 Dongguan sub-regions using sortField=2 (end-time ascending)
to bypass JD's ~4000-item API cap. Merged 34 CSV files by paimaiId into
24,949 unique records covering 2017-07 to 2026-11.

Key findings:
- 上架量 grew ~50x: 98 (2017) → 4,813 (2026)
- 流拍率 peaked at 81.6% (2024), eased to 67.4% (2026)
- 樟木头: 558 records, failure rate peaked 94.2% (2024)
- 塘厦: 205 records, 2026 failure rate 51.0%

Includes: scrape_history.py, batch_scrape_towns.sh, analyze_trends.py,
yearly_stats.py, and updated SKILL.md + url_structure.md documenting
the 4000-item cap and sub-region scraping strategy.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-09-12 02:59:54 +00:00

535 lines
184 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>东莞法拍房上架量与流拍量趋势</title>
<style>
.viz-root {
color-scheme: light;
--surface-1: #fcfcfb;
--page-plane: #f9f9f7;
--text-primary: #0b0b0b;
--text-secondary: #52514e;
--text-muted: #898781;
--gridline: #e1e0d9;
--axis-line: #c3c2b7;
--series-1: #2a78d6;
--series-2: #eb6834;
--border-ring: rgba(11,11,11,0.10);
}
@media (prefers-color-scheme: dark) {
:root:where(:not([data-theme="light"])) .viz-root {
color-scheme: dark;
--surface-1: #1a1a19;
--page-plane: #0d0d0d;
--text-primary: #ffffff;
--text-secondary: #c3c2b7;
--text-muted: #898781;
--gridline: #2c2c2a;
--axis-line: #383835;
--series-1: #3987e5;
--series-2: #d95926;
--border-ring: rgba(255,255,255,0.10);
}
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--page-plane);
font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
color: var(--text-primary);
padding: 32px 24px;
line-height: 1.5;
}
.viz-root {
max-width: 1200px;
margin: 0 auto;
background: var(--surface-1);
border-radius: 8px;
padding: 36px 40px 40px;
}
h1 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.subtitle { font-size: 13px; color: var(--text-secondary); margin-bottom: 28px; }
.legend { display: flex; gap: 24px; margin-bottom: 24px; font-size: 13px; color: var(--text-secondary); }
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-swatch { width: 20px; height: 3px; border-radius: 2px; }
.legend-swatch.s1 { background: var(--series-1); }
.legend-swatch.s2 { background: var(--series-2); }
.panels { display: grid; grid-template-columns: 1fr; gap: 36px; }
.panel { border-top: 1px solid var(--border-ring); padding-top: 20px; }
.panel:first-child { border-top: none; padding-top: 0; }
.panel-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.panel-title { font-size: 15px; font-weight: 600; }
.panel-subtitle { font-size: 12px; color: var(--text-muted); }
.chart-wrap { position: relative; overflow-x: auto; }
svg { display: block; width: 100%; min-width: 600px; height: auto; overflow: visible; }
.tooltip {
position: absolute; pointer-events: none;
background: var(--surface-1);
border: 1px solid var(--border-ring);
border-radius: 6px;
padding: 10px 14px;
font-size: 12px;
color: var(--text-primary);
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
opacity: 0;
transition: opacity 0.12s;
z-index: 10;
white-space: nowrap;
}
.tt-month { font-weight: 600; margin-bottom: 6px; }
.tt-row { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 2px; }
.tt-row span { display: flex; align-items: center; gap: 6px; }
.tt-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.tt-val { font-variant-numeric: tabular-nums; }
.note { font-size: 12px; color: var(--text-muted); margin-top: 24px; line-height: 1.6; }
.data-table-wrap { margin-top: 28px; }
.data-table-toggle {
font-size: 13px; color: var(--series-1); cursor: pointer;
background: none; border: none; padding: 4px 0;
font-family: inherit;
}
.data-table {
max-height: 0; overflow: hidden; transition: max-height 0.3s;
margin-top: 12px;
}
.data-table.visible { max-height: 600px; overflow-y: auto; }
.data-table table { width: 100%; border-collapse: collapse; font-size: 12px; }
.data-table th, .data-table td { padding: 6px 10px; text-align: right; border-bottom: 1px solid var(--gridline); }
.data-table th { color: var(--text-secondary); font-weight: 600; }
.data-table td:first-child, .data-table th:first-child { text-align: left; }
.data-table tr.group-header td { font-weight: 600; color: var(--text-primary); background: var(--page-plane); }
</style>
</head>
<body>
<div class="viz-root">
<h1>东莞法拍房上架量与流拍量趋势</h1>
<p class="subtitle">2017-05 2026-11 · 按拍卖开始时间月度汇总 · 流拍 = 已结束且出价次数为0</p>
<div class="legend">
<div class="legend-item"><span class="legend-swatch s1"></span>上架量</div>
<div class="legend-item"><span class="legend-swatch s2"></span>流拍量</div>
</div>
<div class="panels">
<div class="panel">
<div class="panel-header">
<span class="panel-title">东莞全市</span>
<span class="panel-subtitle">全市法拍住宅 · 共 24949 条记录</span>
</div>
<div class="chart-wrap" id="panel-0">
<svg viewBox="0 0 1120 240" width="100%" height="240"><line x1="52" y1="200.0" x2="1096" y2="200.0" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="204.0" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">0</text><line x1="52" y1="163.2" x2="1096" y2="163.2" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="167.2" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">161</text><line x1="52" y1="126.4" x2="1096" y2="126.4" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="130.4" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">322</text><line x1="52" y1="89.6" x2="1096" y2="89.6" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="93.6" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">483</text><line x1="52" y1="52.8" x2="1096" y2="52.8" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="56.8" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">644</text><line x1="52" y1="16.0" x2="1096" y2="16.0" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="20.0" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">806</text><text x="52.0" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2017</text><text x="125.3" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2018</text><line x1="125.3" y1="16" x2="125.3" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="235.2" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2019</text><line x1="235.2" y1="16" x2="235.2" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="345.1" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2020</text><line x1="345.1" y1="16" x2="345.1" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="454.9" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2021</text><line x1="454.9" y1="16" x2="454.9" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="564.8" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2022</text><line x1="564.8" y1="16" x2="564.8" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="674.7" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2023</text><line x1="674.7" y1="16" x2="674.7" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="784.6" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2024</text><line x1="784.6" y1="16" x2="784.6" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="894.5" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2025</text><line x1="894.5" y1="16" x2="894.5" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="1004.4" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2026</text><line x1="1004.4" y1="16" x2="1004.4" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><line x1="52" y1="200" x2="1096" y2="200" stroke="var(--axis-line)" stroke-width="1"/><path d="M52.0,199.8 L52.0,199.8 L61.2,197.3 L70.3,197.0 L79.5,198.4 L88.6,198.2 L97.8,198.2 L106.9,193.4 L116.1,195.4 L125.3,196.1 L134.4,196.3 L143.6,193.8 L152.7,196.8 L161.9,193.2 L171.1,190.6 L180.2,186.3 L189.4,177.2 L198.5,169.6 L207.7,171.2 L216.8,161.4 L226.0,159.8 L235.2,171.5 L244.3,180.1 L253.5,178.3 L262.6,164.4 L271.8,171.2 L280.9,172.1 L290.1,162.8 L299.3,169.0 L308.4,170.3 L317.6,162.1 L326.7,174.4 L335.9,161.2 L345.1,172.1 L354.2,180.4 L363.4,189.5 L372.5,181.1 L381.7,177.2 L390.8,176.7 L400.0,173.5 L409.2,162.1 L418.3,158.2 L427.5,161.9 L436.6,164.4 L445.8,151.6 L454.9,161.0 L464.1,176.7 L473.3,172.6 L482.4,176.5 L491.6,178.3 L500.7,159.4 L509.9,168.5 L519.1,151.8 L528.2,152.5 L537.4,152.7 L546.5,147.5 L555.7,132.4 L564.8,150.5 L574.0,151.1 L583.2,166.7 L592.3,164.8 L601.5,160.7 L610.6,166.2 L619.8,155.5 L628.9,134.3 L638.1,124.4 L647.3,139.7 L656.4,134.7 L665.6,140.9 L674.7,165.3 L683.9,167.6 L693.1,168.7 L702.2,151.8 L711.4,125.6 L720.5,149.3 L729.7,119.4 L738.8,137.0 L748.0,109.8 L757.2,84.7 L766.3,114.2 L775.5,112.3 L784.6,132.4 L793.8,154.8 L802.9,158.7 L812.1,144.5 L821.3,118.5 L830.4,147.7 L839.6,132.0 L848.7,148.2 L857.9,146.8 L867.1,147.7 L876.2,153.2 L885.4,137.2 L894.5,152.3 L903.7,153.2 L912.8,153.7 L922.0,143.2 L931.2,135.6 L940.3,115.1 L949.5,117.1 L958.6,126.0 L967.8,38.4 L976.9,104.1 L986.1,63.5 L995.3,16.0 L1004.4,88.1 L1013.6,123.8 L1022.7,99.6 L1031.9,68.3 L1041.1,78.1 L1050.2,70.8 L1059.4,87.5 L1068.5,70.8 L1077.7,55.0 L1086.8,159.6 L1096.0,199.8 L1096.0,200.0 L52.0,200.0 Z" fill="var(--series-1)" opacity="0.06"/><path d="M52.0,200.0 L52.0,200.0 L61.2,197.7 L70.3,197.3 L79.5,198.9 L88.6,198.9 L97.8,198.6 L106.9,196.6 L116.1,197.5 L125.3,197.5 L134.4,197.7 L143.6,196.8 L152.7,198.2 L161.9,197.5 L171.1,193.8 L180.2,191.3 L189.4,188.6 L198.5,187.0 L207.7,183.8 L216.8,174.9 L226.0,177.2 L235.2,184.0 L244.3,187.7 L253.5,185.8 L262.6,179.7 L271.8,186.8 L280.9,183.8 L290.1,177.9 L299.3,183.1 L308.4,183.6 L317.6,179.9 L326.7,185.4 L335.9,175.3 L345.1,182.0 L354.2,188.4 L363.4,192.5 L372.5,189.7 L381.7,188.4 L390.8,190.0 L400.0,186.1 L409.2,178.3 L418.3,175.6 L427.5,178.5 L436.6,179.5 L445.8,171.2 L454.9,181.1 L464.1,185.6 L473.3,182.9 L482.4,187.2 L491.6,189.5 L500.7,174.2 L509.9,181.3 L519.1,164.6 L528.2,169.9 L537.4,166.7 L546.5,165.1 L555.7,149.5 L564.8,161.4 L574.0,176.5 L583.2,175.8 L592.3,174.2 L601.5,169.0 L610.6,176.5 L619.8,166.7 L628.9,153.0 L638.1,148.6 L647.3,152.1 L656.4,149.8 L665.6,159.8 L674.7,176.0 L683.9,173.3 L693.1,178.3 L702.2,161.9 L711.4,147.0 L720.5,161.0 L729.7,151.8 L738.8,156.4 L748.0,117.1 L757.2,107.5 L766.3,143.6 L775.5,129.7 L784.6,134.3 L793.8,166.9 L802.9,161.9 L812.1,155.5 L821.3,140.2 L830.4,149.1 L839.6,144.3 L848.7,158.9 L857.9,158.0 L867.1,158.7 L876.2,155.9 L885.4,146.1 L894.5,158.5 L903.7,164.8 L912.8,168.7 L922.0,145.2 L931.2,150.9 L940.3,157.5 L949.5,123.8 L958.6,134.5 L967.8,65.1 L976.9,137.0 L986.1,91.3 L995.3,96.1 L1004.4,119.6 L1013.6,98.0 L1022.7,132.2 L1031.9,112.6 L1041.1,125.8 L1050.2,98.9 L1059.4,134.5 L1068.5,128.1 L1077.7,144.5 L1086.8,200.0 L1096.0,200.0 L1096.0,200.0 L52.0,200.0 Z" fill="var(--series-2)" opacity="0.06"/><path d="M52.0,199.8 L61.2,197.3 L70.3,197.0 L79.5,198.4 L88.6,198.2 L97.8,198.2 L106.9,193.4 L116.1,195.4 L125.3,196.1 L134.4,196.3 L143.6,193.8 L152.7,196.8 L161.9,193.2 L171.1,190.6 L180.2,186.3 L189.4,177.2 L198.5,169.6 L207.7,171.2 L216.8,161.4 L226.0,159.8 L235.2,171.5 L244.3,180.1 L253.5,178.3 L262.6,164.4 L271.8,171.2 L280.9,172.1 L290.1,162.8 L299.3,169.0 L308.4,170.3 L317.6,162.1 L326.7,174.4 L335.9,161.2 L345.1,172.1 L354.2,180.4 L363.4,189.5 L372.5,181.1 L381.7,177.2 L390.8,176.7 L400.0,173.5 L409.2,162.1 L418.3,158.2 L427.5,161.9 L436.6,164.4 L445.8,151.6 L454.9,161.0 L464.1,176.7 L473.3,172.6 L482.4,176.5 L491.6,178.3 L500.7,159.4 L509.9,168.5 L519.1,151.8 L528.2,152.5 L537.4,152.7 L546.5,147.5 L555.7,132.4 L564.8,150.5 L574.0,151.1 L583.2,166.7 L592.3,164.8 L601.5,160.7 L610.6,166.2 L619.8,155.5 L628.9,134.3 L638.1,124.4 L647.3,139.7 L656.4,134.7 L665.6,140.9 L674.7,165.3 L683.9,167.6 L693.1,168.7 L702.2,151.8 L711.4,125.6 L720.5,149.3 L729.7,119.4 L738.8,137.0 L748.0,109.8 L757.2,84.7 L766.3,114.2 L775.5,112.3 L784.6,132.4 L793.8,154.8 L802.9,158.7 L812.1,144.5 L821.3,118.5 L830.4,147.7 L839.6,132.0 L848.7,148.2 L857.9,146.8 L867.1,147.7 L876.2,153.2 L885.4,137.2 L894.5,152.3 L903.7,153.2 L912.8,153.7 L922.0,143.2 L931.2,135.6 L940.3,115.1 L949.5,117.1 L958.6,126.0 L967.8,38.4 L976.9,104.1 L986.1,63.5 L995.3,16.0 L1004.4,88.1 L1013.6,123.8 L1022.7,99.6 L1031.9,68.3 L1041.1,78.1 L1050.2,70.8 L1059.4,87.5 L1068.5,70.8 L1077.7,55.0 L1086.8,159.6 L1096.0,199.8" fill="none" stroke="var(--series-1)" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/><path d="M52.0,200.0 L61.2,197.7 L70.3,197.3 L79.5,198.9 L88.6,198.9 L97.8,198.6 L106.9,196.6 L116.1,197.5 L125.3,197.5 L134.4,197.7 L143.6,196.8 L152.7,198.2 L161.9,197.5 L171.1,193.8 L180.2,191.3 L189.4,188.6 L198.5,187.0 L207.7,183.8 L216.8,174.9 L226.0,177.2 L235.2,184.0 L244.3,187.7 L253.5,185.8 L262.6,179.7 L271.8,186.8 L280.9,183.8 L290.1,177.9 L299.3,183.1 L308.4,183.6 L317.6,179.9 L326.7,185.4 L335.9,175.3 L345.1,182.0 L354.2,188.4 L363.4,192.5 L372.5,189.7 L381.7,188.4 L390.8,190.0 L400.0,186.1 L409.2,178.3 L418.3,175.6 L427.5,178.5 L436.6,179.5 L445.8,171.2 L454.9,181.1 L464.1,185.6 L473.3,182.9 L482.4,187.2 L491.6,189.5 L500.7,174.2 L509.9,181.3 L519.1,164.6 L528.2,169.9 L537.4,166.7 L546.5,165.1 L555.7,149.5 L564.8,161.4 L574.0,176.5 L583.2,175.8 L592.3,174.2 L601.5,169.0 L610.6,176.5 L619.8,166.7 L628.9,153.0 L638.1,148.6 L647.3,152.1 L656.4,149.8 L665.6,159.8 L674.7,176.0 L683.9,173.3 L693.1,178.3 L702.2,161.9 L711.4,147.0 L720.5,161.0 L729.7,151.8 L738.8,156.4 L748.0,117.1 L757.2,107.5 L766.3,143.6 L775.5,129.7 L784.6,134.3 L793.8,166.9 L802.9,161.9 L812.1,155.5 L821.3,140.2 L830.4,149.1 L839.6,144.3 L848.7,158.9 L857.9,158.0 L867.1,158.7 L876.2,155.9 L885.4,146.1 L894.5,158.5 L903.7,164.8 L912.8,168.7 L922.0,145.2 L931.2,150.9 L940.3,157.5 L949.5,123.8 L958.6,134.5 L967.8,65.1 L976.9,137.0 L986.1,91.3 L995.3,96.1 L1004.4,119.6 L1013.6,98.0 L1022.7,132.2 L1031.9,112.6 L1041.1,125.8 L1050.2,98.9 L1059.4,134.5 L1068.5,128.1 L1077.7,144.5 L1086.8,200.0 L1096.0,200.0" fill="none" stroke="var(--series-2)" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/><circle cx="52.0" cy="199.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="52.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="47.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="0"/><circle cx="61.2" cy="197.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="61.2" cy="197.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="56.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="1"/><circle cx="70.3" cy="197.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="70.3" cy="197.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="65.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="2"/><circle cx="79.5" cy="198.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="79.5" cy="198.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="74.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="3"/><circle cx="88.6" cy="198.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="88.6" cy="198.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="84.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="4"/><circle cx="97.8" cy="198.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="97.8" cy="198.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="93.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="5"/><circle cx="106.9" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="106.9" cy="196.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="102.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="6"/><circle cx="116.1" cy="195.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="116.1" cy="197.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="111.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="7"/><circle cx="125.3" cy="196.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="125.3" cy="197.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="120.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="8"/><circle cx="134.4" cy="196.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="134.4" cy="197.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="129.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="9"/><circle cx="143.6" cy="193.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="143.6" cy="196.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="139.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="10"/><circle cx="152.7" cy="196.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="152.7" cy="198.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="148.2" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="11"/><circle cx="161.9" cy="193.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="161.9" cy="197.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="157.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="12"/><circle cx="171.1" cy="190.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="171.1" cy="193.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="166.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="13"/><circle cx="180.2" cy="186.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="180.2" cy="191.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="175.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="14"/><circle cx="189.4" cy="177.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="189.4" cy="188.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="184.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="15"/><circle cx="198.5" cy="169.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="198.5" cy="187.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="194.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="16"/><circle cx="207.7" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="207.7" cy="183.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="203.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="17"/><circle cx="216.8" cy="161.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="216.8" cy="174.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="212.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="18"/><circle cx="226.0" cy="159.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="226.0" cy="177.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="221.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="19"/><circle cx="235.2" cy="171.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="235.2" cy="184.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="230.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="20"/><circle cx="244.3" cy="180.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="244.3" cy="187.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="239.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="21"/><circle cx="253.5" cy="178.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="253.5" cy="185.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="248.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="22"/><circle cx="262.6" cy="164.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="262.6" cy="179.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="258.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="23"/><circle cx="271.8" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="271.8" cy="186.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="267.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="24"/><circle cx="280.9" cy="172.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="280.9" cy="183.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="276.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="25"/><circle cx="290.1" cy="162.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="290.1" cy="177.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="285.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="26"/><circle cx="299.3" cy="169.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="299.3" cy="183.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="294.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="27"/><circle cx="308.4" cy="170.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="308.4" cy="183.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="303.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="28"/><circle cx="317.6" cy="162.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="317.6" cy="179.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="313.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="29"/><circle cx="326.7" cy="174.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="326.7" cy="185.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="322.2" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="30"/><circle cx="335.9" cy="161.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="335.9" cy="175.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="331.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="31"/><circle cx="345.1" cy="172.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="345.1" cy="182.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="340.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="32"/><circle cx="354.2" cy="180.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="354.2" cy="188.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="349.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="33"/><circle cx="363.4" cy="189.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="363.4" cy="192.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="358.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="34"/><circle cx="372.5" cy="181.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="372.5" cy="189.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="368.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="35"/><circle cx="381.7" cy="177.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="381.7" cy="188.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="377.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="36"/><circle cx="390.8" cy="176.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="390.8" cy="190.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="386.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="37"/><circle cx="400.0" cy="173.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="400.0" cy="186.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="395.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="38"/><circle cx="409.2" cy="162.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="409.2" cy="178.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="404.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="39"/><circle cx="418.3" cy="158.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="418.3" cy="175.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="413.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="40"/><circle cx="427.5" cy="161.9" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="427.5" cy="178.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="422.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="41"/><circle cx="436.6" cy="164.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="436.6" cy="179.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="432.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="42"/><circle cx="445.8" cy="151.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="445.8" cy="171.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="441.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="43"/><circle cx="454.9" cy="161.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="454.9" cy="181.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="450.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="44"/><circle cx="464.1" cy="176.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="464.1" cy="185.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="459.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="45"/><circle cx="473.3" cy="172.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="473.3" cy="182.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="468.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="46"/><circle cx="482.4" cy="176.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="482.4" cy="187.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="477.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="47"/><circle cx="491.6" cy="178.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="491.6" cy="189.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="487.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="48"/><circle cx="500.7" cy="159.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="500.7" cy="174.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="496.2" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="49"/><circle cx="509.9" cy="168.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="509.9" cy="181.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="505.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="50"/><circle cx="519.1" cy="151.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="519.1" cy="164.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="514.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="51"/><circle cx="528.2" cy="152.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="528.2" cy="169.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="523.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="52"/><circle cx="537.4" cy="152.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="537.4" cy="166.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="532.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="53"/><circle cx="546.5" cy="147.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="546.5" cy="165.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="542.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="54"/><circle cx="555.7" cy="132.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="555.7" cy="149.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="551.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="55"/><circle cx="564.8" cy="150.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="564.8" cy="161.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="560.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="56"/><circle cx="574.0" cy="151.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="574.0" cy="176.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="569.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="57"/><circle cx="583.2" cy="166.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="583.2" cy="175.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="578.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="58"/><circle cx="592.3" cy="164.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="592.3" cy="174.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="587.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="59"/><circle cx="601.5" cy="160.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="601.5" cy="169.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="596.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="60"/><circle cx="610.6" cy="166.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="610.6" cy="176.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="606.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="61"/><circle cx="619.8" cy="155.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="619.8" cy="166.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="615.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="62"/><circle cx="628.9" cy="134.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="628.9" cy="153.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="624.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="63"/><circle cx="638.1" cy="124.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="638.1" cy="148.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="633.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="64"/><circle cx="647.3" cy="139.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="647.3" cy="152.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="642.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="65"/><circle cx="656.4" cy="134.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="656.4" cy="149.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="651.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="66"/><circle cx="665.6" cy="140.9" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="665.6" cy="159.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="661.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="67"/><circle cx="674.7" cy="165.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="674.7" cy="176.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="670.2" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="68"/><circle cx="683.9" cy="167.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="683.9" cy="173.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="679.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="69"/><circle cx="693.1" cy="168.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="693.1" cy="178.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="688.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="70"/><circle cx="702.2" cy="151.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="702.2" cy="161.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="697.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="71"/><circle cx="711.4" cy="125.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="711.4" cy="147.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="706.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="72"/><circle cx="720.5" cy="149.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="720.5" cy="161.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="716.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="73"/><circle cx="729.7" cy="119.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="729.7" cy="151.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="725.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="74"/><circle cx="738.8" cy="137.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="738.8" cy="156.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="734.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="75"/><circle cx="748.0" cy="109.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="748.0" cy="117.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="743.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="76"/><circle cx="757.2" cy="84.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="757.2" cy="107.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="752.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="77"/><circle cx="766.3" cy="114.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="766.3" cy="143.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="761.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="78"/><circle cx="775.5" cy="112.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="775.5" cy="129.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="770.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="79"/><circle cx="784.6" cy="132.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="784.6" cy="134.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="780.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="80"/><circle cx="793.8" cy="154.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="793.8" cy="166.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="789.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="81"/><circle cx="802.9" cy="158.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="802.9" cy="161.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="798.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="82"/><circle cx="812.1" cy="144.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="812.1" cy="155.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="807.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="83"/><circle cx="821.3" cy="118.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="821.3" cy="140.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="816.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="84"/><circle cx="830.4" cy="147.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="830.4" cy="149.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="825.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="85"/><circle cx="839.6" cy="132.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="839.6" cy="144.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="835.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="86"/><circle cx="848.7" cy="148.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="848.7" cy="158.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="844.2" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="87"/><circle cx="857.9" cy="146.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="857.9" cy="158.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="853.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="88"/><circle cx="867.1" cy="147.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="867.1" cy="158.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="862.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="89"/><circle cx="876.2" cy="153.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="876.2" cy="155.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="871.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="90"/><circle cx="885.4" cy="137.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="885.4" cy="146.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="880.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="91"/><circle cx="894.5" cy="152.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="894.5" cy="158.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="890.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="92"/><circle cx="903.7" cy="153.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="903.7" cy="164.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="899.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="93"/><circle cx="912.8" cy="153.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="912.8" cy="168.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="908.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="94"/><circle cx="922.0" cy="143.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="922.0" cy="145.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="917.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="95"/><circle cx="931.2" cy="135.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="931.2" cy="150.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="926.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="96"/><circle cx="940.3" cy="115.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="940.3" cy="157.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="935.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="97"/><circle cx="949.5" cy="117.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="949.5" cy="123.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="944.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="98"/><circle cx="958.6" cy="126.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="958.6" cy="134.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="954.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="99"/><circle cx="967.8" cy="38.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="967.8" cy="65.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="963.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="100"/><circle cx="976.9" cy="104.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="976.9" cy="137.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="972.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="101"/><circle cx="986.1" cy="63.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="986.1" cy="91.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="981.6" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="102"/><circle cx="995.3" cy="16.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="995.3" cy="96.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="990.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="103"/><circle cx="1004.4" cy="88.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1004.4" cy="119.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="999.9" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="104"/><circle cx="1013.6" cy="123.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1013.6" cy="98.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1009.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="105"/><circle cx="1022.7" cy="99.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1022.7" cy="132.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1018.2" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="106"/><circle cx="1031.9" cy="68.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1031.9" cy="112.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1027.4" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="107"/><circle cx="1041.1" cy="78.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1041.1" cy="125.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1036.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="108"/><circle cx="1050.2" cy="70.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1050.2" cy="98.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1045.7" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="109"/><circle cx="1059.4" cy="87.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1059.4" cy="134.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1054.8" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="110"/><circle cx="1068.5" cy="70.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1068.5" cy="128.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1064.0" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="111"/><circle cx="1077.7" cy="55.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1077.7" cy="144.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1073.1" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="112"/><circle cx="1086.8" cy="159.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1086.8" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1082.3" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="113"/><circle cx="1096.0" cy="199.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1096.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1091.5" y="16" width="9.1" height="184" fill="transparent" class="hit" data-idx="114"/><text x="1090.0" y="191.8" text-anchor="end" font-size="11" fill="var(--text-primary)" font-family="system-ui" font-variant-numeric="tabular-nums" font-weight="600">1</text><line class="crosshair" x1="0" y1="16" x2="0" y2="200" stroke="var(--text-muted)" stroke-width="1" stroke-dasharray="3 3" opacity="0"/></svg>
<div class="tooltip" id="tooltip-0"></div>
</div>
</div>
<div class="panel">
<div class="panel-header">
<span class="panel-title">樟木头</span>
<span class="panel-subtitle">样本量 558 套</span>
</div>
<div class="chart-wrap" id="panel-1">
<svg viewBox="0 0 1120 240" width="100%" height="240"><line x1="52" y1="200.0" x2="1096" y2="200.0" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="204.0" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">0</text><line x1="52" y1="163.2" x2="1096" y2="163.2" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="167.2" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">6</text><line x1="52" y1="126.4" x2="1096" y2="126.4" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="130.4" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">12</text><line x1="52" y1="89.6" x2="1096" y2="89.6" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="93.6" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">19</text><line x1="52" y1="52.8" x2="1096" y2="52.8" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="56.8" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">25</text><line x1="52" y1="16.0" x2="1096" y2="16.0" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="20.0" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">32</text><text x="52.0" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2018</text><text x="153.4" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2019</text><line x1="153.4" y1="16" x2="153.4" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="275.0" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2020</text><line x1="275.0" y1="16" x2="275.0" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="396.6" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2021</text><line x1="396.6" y1="16" x2="396.6" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="518.3" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2022</text><line x1="518.3" y1="16" x2="518.3" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="639.9" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2023</text><line x1="639.9" y1="16" x2="639.9" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="761.5" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2024</text><line x1="761.5" y1="16" x2="761.5" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="883.1" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2025</text><line x1="883.1" y1="16" x2="883.1" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="1004.8" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2026</text><line x1="1004.8" y1="16" x2="1004.8" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><line x1="52" y1="200" x2="1096" y2="200" stroke="var(--axis-line)" stroke-width="1"/><path d="M52.0,188.5 L52.0,188.5 L62.1,188.5 L72.3,200.0 L82.4,200.0 L92.5,194.2 L102.7,200.0 L112.8,165.5 L123.0,171.2 L133.1,177.0 L143.2,177.0 L153.4,177.0 L163.5,188.5 L173.6,194.2 L183.8,200.0 L193.9,188.5 L204.0,194.2 L214.2,119.5 L224.3,159.8 L234.4,171.2 L244.6,171.2 L254.7,200.0 L264.9,188.5 L275.0,200.0 L285.1,194.2 L295.3,200.0 L305.4,200.0 L315.5,200.0 L325.7,194.2 L335.8,194.2 L345.9,200.0 L356.1,200.0 L366.2,188.5 L376.3,182.8 L386.5,177.0 L396.6,165.5 L406.8,177.0 L416.9,200.0 L427.0,200.0 L437.2,200.0 L447.3,194.2 L457.4,182.8 L467.6,171.2 L477.7,165.5 L487.8,182.8 L498.0,182.8 L508.1,200.0 L518.3,182.8 L528.4,188.5 L538.5,200.0 L548.7,200.0 L558.8,194.2 L568.9,188.5 L579.1,188.5 L589.2,182.8 L599.3,154.0 L609.5,148.2 L619.6,159.8 L629.7,159.8 L639.9,177.0 L650.0,194.2 L660.2,200.0 L670.3,200.0 L680.4,177.0 L690.6,171.2 L700.7,148.2 L710.8,148.2 L721.0,148.2 L731.1,148.2 L741.2,171.2 L751.4,148.2 L761.5,165.5 L771.7,171.2 L781.8,171.2 L791.9,171.2 L802.1,165.5 L812.2,177.0 L822.3,154.0 L832.5,171.2 L842.6,136.8 L852.7,154.0 L862.9,200.0 L873.0,177.0 L883.1,171.2 L893.3,142.5 L903.4,165.5 L913.6,56.2 L923.7,67.8 L933.8,62.0 L944.0,125.2 L954.1,79.2 L964.2,125.2 L974.4,142.5 L984.5,177.0 L994.6,177.0 L1004.8,171.2 L1014.9,177.0 L1025.0,113.8 L1035.2,39.0 L1045.3,159.8 L1055.5,131.0 L1065.6,119.5 L1075.7,159.8 L1085.9,73.5 L1096.0,194.2 L1096.0,200.0 L52.0,200.0 Z" fill="var(--series-1)" opacity="0.06"/><path d="M52.0,194.2 L52.0,194.2 L62.1,200.0 L72.3,200.0 L82.4,200.0 L92.5,194.2 L102.7,200.0 L112.8,177.0 L123.0,182.8 L133.1,182.8 L143.2,200.0 L153.4,194.2 L163.5,188.5 L173.6,200.0 L183.8,200.0 L193.9,200.0 L204.0,200.0 L214.2,165.5 L224.3,188.5 L234.4,177.0 L244.6,200.0 L254.7,200.0 L264.9,188.5 L275.0,200.0 L285.1,200.0 L295.3,200.0 L305.4,200.0 L315.5,200.0 L325.7,200.0 L335.8,200.0 L345.9,200.0 L356.1,200.0 L366.2,194.2 L376.3,188.5 L386.5,194.2 L396.6,188.5 L406.8,188.5 L416.9,200.0 L427.0,200.0 L437.2,200.0 L447.3,200.0 L457.4,188.5 L467.6,171.2 L477.7,182.8 L487.8,188.5 L498.0,182.8 L508.1,194.2 L518.3,188.5 L528.4,194.2 L538.5,200.0 L548.7,200.0 L558.8,200.0 L568.9,188.5 L579.1,200.0 L589.2,182.8 L599.3,171.2 L609.5,154.0 L619.6,154.0 L629.7,177.0 L639.9,177.0 L650.0,194.2 L660.2,200.0 L670.3,200.0 L680.4,182.8 L690.6,177.0 L700.7,165.5 L710.8,177.0 L721.0,148.2 L731.1,165.5 L741.2,177.0 L751.4,131.0 L761.5,165.5 L771.7,194.2 L781.8,154.0 L791.9,165.5 L802.1,171.2 L812.2,171.2 L822.3,165.5 L832.5,165.5 L842.6,148.2 L852.7,171.2 L862.9,188.5 L873.0,165.5 L883.1,171.2 L893.3,159.8 L903.4,177.0 L913.6,73.5 L923.7,73.5 L933.8,171.2 L944.0,131.0 L954.1,16.0 L964.2,154.0 L974.4,148.2 L984.5,188.5 L994.6,165.5 L1004.8,188.5 L1014.9,177.0 L1025.0,125.2 L1035.2,125.2 L1045.3,171.2 L1055.5,154.0 L1065.6,165.5 L1075.7,182.8 L1085.9,177.0 L1096.0,200.0 L1096.0,200.0 L52.0,200.0 Z" fill="var(--series-2)" opacity="0.06"/><path d="M52.0,188.5 L62.1,188.5 L72.3,200.0 L82.4,200.0 L92.5,194.2 L102.7,200.0 L112.8,165.5 L123.0,171.2 L133.1,177.0 L143.2,177.0 L153.4,177.0 L163.5,188.5 L173.6,194.2 L183.8,200.0 L193.9,188.5 L204.0,194.2 L214.2,119.5 L224.3,159.8 L234.4,171.2 L244.6,171.2 L254.7,200.0 L264.9,188.5 L275.0,200.0 L285.1,194.2 L295.3,200.0 L305.4,200.0 L315.5,200.0 L325.7,194.2 L335.8,194.2 L345.9,200.0 L356.1,200.0 L366.2,188.5 L376.3,182.8 L386.5,177.0 L396.6,165.5 L406.8,177.0 L416.9,200.0 L427.0,200.0 L437.2,200.0 L447.3,194.2 L457.4,182.8 L467.6,171.2 L477.7,165.5 L487.8,182.8 L498.0,182.8 L508.1,200.0 L518.3,182.8 L528.4,188.5 L538.5,200.0 L548.7,200.0 L558.8,194.2 L568.9,188.5 L579.1,188.5 L589.2,182.8 L599.3,154.0 L609.5,148.2 L619.6,159.8 L629.7,159.8 L639.9,177.0 L650.0,194.2 L660.2,200.0 L670.3,200.0 L680.4,177.0 L690.6,171.2 L700.7,148.2 L710.8,148.2 L721.0,148.2 L731.1,148.2 L741.2,171.2 L751.4,148.2 L761.5,165.5 L771.7,171.2 L781.8,171.2 L791.9,171.2 L802.1,165.5 L812.2,177.0 L822.3,154.0 L832.5,171.2 L842.6,136.8 L852.7,154.0 L862.9,200.0 L873.0,177.0 L883.1,171.2 L893.3,142.5 L903.4,165.5 L913.6,56.2 L923.7,67.8 L933.8,62.0 L944.0,125.2 L954.1,79.2 L964.2,125.2 L974.4,142.5 L984.5,177.0 L994.6,177.0 L1004.8,171.2 L1014.9,177.0 L1025.0,113.8 L1035.2,39.0 L1045.3,159.8 L1055.5,131.0 L1065.6,119.5 L1075.7,159.8 L1085.9,73.5 L1096.0,194.2" fill="none" stroke="var(--series-1)" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/><path d="M52.0,194.2 L62.1,200.0 L72.3,200.0 L82.4,200.0 L92.5,194.2 L102.7,200.0 L112.8,177.0 L123.0,182.8 L133.1,182.8 L143.2,200.0 L153.4,194.2 L163.5,188.5 L173.6,200.0 L183.8,200.0 L193.9,200.0 L204.0,200.0 L214.2,165.5 L224.3,188.5 L234.4,177.0 L244.6,200.0 L254.7,200.0 L264.9,188.5 L275.0,200.0 L285.1,200.0 L295.3,200.0 L305.4,200.0 L315.5,200.0 L325.7,200.0 L335.8,200.0 L345.9,200.0 L356.1,200.0 L366.2,194.2 L376.3,188.5 L386.5,194.2 L396.6,188.5 L406.8,188.5 L416.9,200.0 L427.0,200.0 L437.2,200.0 L447.3,200.0 L457.4,188.5 L467.6,171.2 L477.7,182.8 L487.8,188.5 L498.0,182.8 L508.1,194.2 L518.3,188.5 L528.4,194.2 L538.5,200.0 L548.7,200.0 L558.8,200.0 L568.9,188.5 L579.1,200.0 L589.2,182.8 L599.3,171.2 L609.5,154.0 L619.6,154.0 L629.7,177.0 L639.9,177.0 L650.0,194.2 L660.2,200.0 L670.3,200.0 L680.4,182.8 L690.6,177.0 L700.7,165.5 L710.8,177.0 L721.0,148.2 L731.1,165.5 L741.2,177.0 L751.4,131.0 L761.5,165.5 L771.7,194.2 L781.8,154.0 L791.9,165.5 L802.1,171.2 L812.2,171.2 L822.3,165.5 L832.5,165.5 L842.6,148.2 L852.7,171.2 L862.9,188.5 L873.0,165.5 L883.1,171.2 L893.3,159.8 L903.4,177.0 L913.6,73.5 L923.7,73.5 L933.8,171.2 L944.0,131.0 L954.1,16.0 L964.2,154.0 L974.4,148.2 L984.5,188.5 L994.6,165.5 L1004.8,188.5 L1014.9,177.0 L1025.0,125.2 L1035.2,125.2 L1045.3,171.2 L1055.5,154.0 L1065.6,165.5 L1075.7,182.8 L1085.9,177.0 L1096.0,200.0" fill="none" stroke="var(--series-2)" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/><circle cx="52.0" cy="188.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="52.0" cy="194.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="47.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="0"/><circle cx="62.1" cy="188.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="62.1" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="57.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="1"/><circle cx="72.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="72.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="67.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="2"/><circle cx="82.4" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="82.4" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="77.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="3"/><circle cx="92.5" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="92.5" cy="194.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="87.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="4"/><circle cx="102.7" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="102.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="97.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="5"/><circle cx="112.8" cy="165.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="112.8" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="107.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="6"/><circle cx="123.0" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="123.0" cy="182.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="117.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="7"/><circle cx="133.1" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="133.1" cy="182.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="128.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="8"/><circle cx="143.2" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="143.2" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="138.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="9"/><circle cx="153.4" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="153.4" cy="194.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="148.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="10"/><circle cx="163.5" cy="188.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="163.5" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="158.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="11"/><circle cx="173.6" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="173.6" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="168.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="12"/><circle cx="183.8" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="183.8" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="178.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="13"/><circle cx="193.9" cy="188.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="193.9" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="188.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="14"/><circle cx="204.0" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="204.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="199.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="15"/><circle cx="214.2" cy="119.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="214.2" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="209.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="16"/><circle cx="224.3" cy="159.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="224.3" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="219.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="17"/><circle cx="234.4" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="234.4" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="229.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="18"/><circle cx="244.6" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="244.6" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="239.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="19"/><circle cx="254.7" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="254.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="249.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="20"/><circle cx="264.9" cy="188.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="264.9" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="259.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="21"/><circle cx="275.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="275.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="270.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="22"/><circle cx="285.1" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="285.1" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="280.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="23"/><circle cx="295.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="295.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="290.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="24"/><circle cx="305.4" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="305.4" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="300.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="25"/><circle cx="315.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="315.5" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="310.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="26"/><circle cx="325.7" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="325.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="320.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="27"/><circle cx="335.8" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="335.8" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="330.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="28"/><circle cx="345.9" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="345.9" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="340.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="29"/><circle cx="356.1" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="356.1" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="351.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="30"/><circle cx="366.2" cy="188.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="366.2" cy="194.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="361.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="31"/><circle cx="376.3" cy="182.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="376.3" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="371.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="32"/><circle cx="386.5" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="386.5" cy="194.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="381.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="33"/><circle cx="396.6" cy="165.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="396.6" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="391.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="34"/><circle cx="406.8" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="406.8" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="401.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="35"/><circle cx="416.9" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="416.9" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="411.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="36"/><circle cx="427.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="427.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="422.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="37"/><circle cx="437.2" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="437.2" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="432.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="38"/><circle cx="447.3" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="447.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="442.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="39"/><circle cx="457.4" cy="182.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="457.4" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="452.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="40"/><circle cx="467.6" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="467.6" cy="171.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="462.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="41"/><circle cx="477.7" cy="165.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="477.7" cy="182.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="472.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="42"/><circle cx="487.8" cy="182.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="487.8" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="482.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="43"/><circle cx="498.0" cy="182.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="498.0" cy="182.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="493.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="44"/><circle cx="508.1" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="508.1" cy="194.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="503.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="45"/><circle cx="518.3" cy="182.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="518.3" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="513.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="46"/><circle cx="528.4" cy="188.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="528.4" cy="194.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="523.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="47"/><circle cx="538.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="538.5" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="533.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="48"/><circle cx="548.7" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="548.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="543.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="49"/><circle cx="558.8" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="558.8" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="553.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="50"/><circle cx="568.9" cy="188.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="568.9" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="563.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="51"/><circle cx="579.1" cy="188.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="579.1" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="574.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="52"/><circle cx="589.2" cy="182.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="589.2" cy="182.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="584.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="53"/><circle cx="599.3" cy="154.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="599.3" cy="171.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="594.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="54"/><circle cx="609.5" cy="148.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="609.5" cy="154.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="604.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="55"/><circle cx="619.6" cy="159.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="619.6" cy="154.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="614.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="56"/><circle cx="629.7" cy="159.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="629.7" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="624.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="57"/><circle cx="639.9" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="639.9" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="634.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="58"/><circle cx="650.0" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="650.0" cy="194.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="645.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="59"/><circle cx="660.2" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="660.2" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="655.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="60"/><circle cx="670.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="670.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="665.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="61"/><circle cx="680.4" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="680.4" cy="182.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="675.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="62"/><circle cx="690.6" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="690.6" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="685.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="63"/><circle cx="700.7" cy="148.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="700.7" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="695.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="64"/><circle cx="710.8" cy="148.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="710.8" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="705.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="65"/><circle cx="721.0" cy="148.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="721.0" cy="148.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="716.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="66"/><circle cx="731.1" cy="148.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="731.1" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="726.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="67"/><circle cx="741.2" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="741.2" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="736.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="68"/><circle cx="751.4" cy="148.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="751.4" cy="131.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="746.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="69"/><circle cx="761.5" cy="165.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="761.5" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="756.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="70"/><circle cx="771.7" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="771.7" cy="194.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="766.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="71"/><circle cx="781.8" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="781.8" cy="154.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="776.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="72"/><circle cx="791.9" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="791.9" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="786.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="73"/><circle cx="802.1" cy="165.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="802.1" cy="171.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="797.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="74"/><circle cx="812.2" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="812.2" cy="171.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="807.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="75"/><circle cx="822.3" cy="154.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="822.3" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="817.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="76"/><circle cx="832.5" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="832.5" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="827.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="77"/><circle cx="842.6" cy="136.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="842.6" cy="148.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="837.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="78"/><circle cx="852.7" cy="154.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="852.7" cy="171.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="847.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="79"/><circle cx="862.9" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="862.9" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="857.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="80"/><circle cx="873.0" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="873.0" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="868.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="81"/><circle cx="883.1" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="883.1" cy="171.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="878.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="82"/><circle cx="893.3" cy="142.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="893.3" cy="159.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="888.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="83"/><circle cx="903.4" cy="165.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="903.4" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="898.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="84"/><circle cx="913.6" cy="56.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="913.6" cy="73.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="908.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="85"/><circle cx="923.7" cy="67.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="923.7" cy="73.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="918.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="86"/><circle cx="933.8" cy="62.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="933.8" cy="171.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="928.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="87"/><circle cx="944.0" cy="125.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="944.0" cy="131.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="938.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="88"/><circle cx="954.1" cy="79.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="954.1" cy="16.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="949.1" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="89"/><circle cx="964.2" cy="125.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="964.2" cy="154.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="959.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="90"/><circle cx="974.4" cy="142.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="974.4" cy="148.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="969.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="91"/><circle cx="984.5" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="984.5" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="979.5" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="92"/><circle cx="994.6" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="994.6" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="989.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="93"/><circle cx="1004.8" cy="171.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1004.8" cy="188.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="999.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="94"/><circle cx="1014.9" cy="177.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1014.9" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1009.9" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="95"/><circle cx="1025.0" cy="113.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1025.0" cy="125.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1020.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="96"/><circle cx="1035.2" cy="39.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1035.2" cy="125.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1030.2" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="97"/><circle cx="1045.3" cy="159.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1045.3" cy="171.2" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1040.3" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="98"/><circle cx="1055.5" cy="131.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1055.5" cy="154.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1050.4" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="99"/><circle cx="1065.6" cy="119.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1065.6" cy="165.5" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1060.6" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="100"/><circle cx="1075.7" cy="159.8" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1075.7" cy="182.8" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1070.7" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="101"/><circle cx="1085.9" cy="73.5" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1085.9" cy="177.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1080.8" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="102"/><circle cx="1096.0" cy="194.2" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1096.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1091.0" y="16" width="10.0" height="184" fill="transparent" class="hit" data-idx="103"/><text x="1090.0" y="186.2" text-anchor="end" font-size="11" fill="var(--text-primary)" font-family="system-ui" font-variant-numeric="tabular-nums" font-weight="600">1</text><line class="crosshair" x1="0" y1="16" x2="0" y2="200" stroke="var(--text-muted)" stroke-width="1" stroke-dasharray="3 3" opacity="0"/></svg>
<div class="tooltip" id="tooltip-1"></div>
</div>
</div>
<div class="panel">
<div class="panel-header">
<span class="panel-title">塘厦</span>
<span class="panel-subtitle">样本量 205 套</span>
</div>
<div class="chart-wrap" id="panel-2">
<svg viewBox="0 0 1120 240" width="100%" height="240"><line x1="52" y1="200.0" x2="1096" y2="200.0" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="204.0" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">0</text><line x1="52" y1="163.2" x2="1096" y2="163.2" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="167.2" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">5</text><line x1="52" y1="126.4" x2="1096" y2="126.4" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="130.4" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">11</text><line x1="52" y1="89.6" x2="1096" y2="89.6" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="93.6" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">16</text><line x1="52" y1="52.8" x2="1096" y2="52.8" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="56.8" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">22</text><line x1="52" y1="16.0" x2="1096" y2="16.0" stroke="var(--gridline)" stroke-width="1"/><text x="44" y="20.0" text-anchor="end" font-size="11" fill="var(--text-muted)" font-family="system-ui" font-variant-numeric="tabular-nums">28</text><text x="52.0" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2019</text><text x="135.0" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2020</text><line x1="135.0" y1="16" x2="135.0" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="277.4" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2021</text><line x1="277.4" y1="16" x2="277.4" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="419.8" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2022</text><line x1="419.8" y1="16" x2="419.8" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="562.1" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2023</text><line x1="562.1" y1="16" x2="562.1" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="704.5" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2024</text><line x1="704.5" y1="16" x2="704.5" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="846.9" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2025</text><line x1="846.9" y1="16" x2="846.9" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><text x="989.2" y="228" text-anchor="middle" font-size="11" fill="var(--text-muted)" font-family="system-ui">2026</text><line x1="989.2" y1="16" x2="989.2" y2="200" stroke="var(--gridline)" stroke-width="0.5" stroke-dasharray="2 4"/><line x1="52" y1="200" x2="1096" y2="200" stroke="var(--axis-line)" stroke-width="1"/><path d="M52.0,193.4 L52.0,193.4 L63.9,193.4 L75.7,193.4 L87.6,200.0 L99.5,200.0 L111.3,200.0 L123.2,200.0 L135.0,200.0 L146.9,200.0 L158.8,200.0 L170.6,200.0 L182.5,200.0 L194.4,200.0 L206.2,200.0 L218.1,200.0 L230.0,200.0 L241.8,200.0 L253.7,193.4 L265.5,200.0 L277.4,200.0 L289.3,200.0 L301.1,200.0 L313.0,200.0 L324.9,200.0 L336.7,200.0 L348.6,193.4 L360.5,200.0 L372.3,200.0 L384.2,200.0 L396.0,200.0 L407.9,200.0 L419.8,200.0 L431.6,200.0 L443.5,200.0 L455.4,200.0 L467.2,200.0 L479.1,200.0 L491.0,200.0 L502.8,193.4 L514.7,200.0 L526.5,200.0 L538.4,200.0 L550.3,200.0 L562.1,200.0 L574.0,200.0 L585.9,200.0 L597.7,200.0 L609.6,200.0 L621.5,193.4 L633.3,200.0 L645.2,200.0 L657.0,200.0 L668.9,193.4 L680.8,193.4 L692.6,200.0 L704.5,173.7 L716.4,193.4 L728.2,200.0 L740.1,200.0 L752.0,200.0 L763.8,200.0 L775.7,200.0 L787.5,200.0 L799.4,200.0 L811.3,200.0 L823.1,200.0 L835.0,186.9 L846.9,186.9 L858.7,200.0 L870.6,200.0 L882.5,200.0 L894.3,200.0 L906.2,193.4 L918.0,193.4 L929.9,186.9 L941.8,173.7 L953.6,200.0 L965.5,186.9 L977.4,200.0 L989.2,108.0 L1001.1,121.1 L1013.0,81.7 L1024.8,114.6 L1036.7,68.6 L1048.5,16.0 L1060.4,48.9 L1072.3,29.1 L1084.1,88.3 L1096.0,160.6 L1096.0,200.0 L52.0,200.0 Z" fill="var(--series-1)" opacity="0.06"/><path d="M52.0,193.4 L52.0,193.4 L63.9,193.4 L75.7,200.0 L87.6,200.0 L99.5,193.4 L111.3,200.0 L123.2,200.0 L135.0,200.0 L146.9,200.0 L158.8,200.0 L170.6,200.0 L182.5,200.0 L194.4,200.0 L206.2,200.0 L218.1,200.0 L230.0,200.0 L241.8,200.0 L253.7,200.0 L265.5,200.0 L277.4,200.0 L289.3,200.0 L301.1,200.0 L313.0,200.0 L324.9,200.0 L336.7,200.0 L348.6,193.4 L360.5,200.0 L372.3,200.0 L384.2,200.0 L396.0,200.0 L407.9,200.0 L419.8,200.0 L431.6,200.0 L443.5,200.0 L455.4,200.0 L467.2,200.0 L479.1,200.0 L491.0,200.0 L502.8,200.0 L514.7,200.0 L526.5,200.0 L538.4,200.0 L550.3,200.0 L562.1,200.0 L574.0,200.0 L585.9,200.0 L597.7,200.0 L609.6,200.0 L621.5,193.4 L633.3,200.0 L645.2,200.0 L657.0,200.0 L668.9,193.4 L680.8,193.4 L692.6,200.0 L704.5,173.7 L716.4,200.0 L728.2,200.0 L740.1,193.4 L752.0,200.0 L763.8,200.0 L775.7,200.0 L787.5,200.0 L799.4,200.0 L811.3,200.0 L823.1,200.0 L835.0,186.9 L846.9,186.9 L858.7,200.0 L870.6,200.0 L882.5,200.0 L894.3,200.0 L906.2,193.4 L918.0,200.0 L929.9,186.9 L941.8,186.9 L953.6,200.0 L965.5,186.9 L977.4,200.0 L989.2,147.4 L1001.1,173.7 L1013.0,121.1 L1024.8,160.6 L1036.7,134.3 L1048.5,108.0 L1060.4,134.3 L1072.3,134.3 L1084.1,160.6 L1096.0,200.0 L1096.0,200.0 L52.0,200.0 Z" fill="var(--series-2)" opacity="0.06"/><path d="M52.0,193.4 L63.9,193.4 L75.7,193.4 L87.6,200.0 L99.5,200.0 L111.3,200.0 L123.2,200.0 L135.0,200.0 L146.9,200.0 L158.8,200.0 L170.6,200.0 L182.5,200.0 L194.4,200.0 L206.2,200.0 L218.1,200.0 L230.0,200.0 L241.8,200.0 L253.7,193.4 L265.5,200.0 L277.4,200.0 L289.3,200.0 L301.1,200.0 L313.0,200.0 L324.9,200.0 L336.7,200.0 L348.6,193.4 L360.5,200.0 L372.3,200.0 L384.2,200.0 L396.0,200.0 L407.9,200.0 L419.8,200.0 L431.6,200.0 L443.5,200.0 L455.4,200.0 L467.2,200.0 L479.1,200.0 L491.0,200.0 L502.8,193.4 L514.7,200.0 L526.5,200.0 L538.4,200.0 L550.3,200.0 L562.1,200.0 L574.0,200.0 L585.9,200.0 L597.7,200.0 L609.6,200.0 L621.5,193.4 L633.3,200.0 L645.2,200.0 L657.0,200.0 L668.9,193.4 L680.8,193.4 L692.6,200.0 L704.5,173.7 L716.4,193.4 L728.2,200.0 L740.1,200.0 L752.0,200.0 L763.8,200.0 L775.7,200.0 L787.5,200.0 L799.4,200.0 L811.3,200.0 L823.1,200.0 L835.0,186.9 L846.9,186.9 L858.7,200.0 L870.6,200.0 L882.5,200.0 L894.3,200.0 L906.2,193.4 L918.0,193.4 L929.9,186.9 L941.8,173.7 L953.6,200.0 L965.5,186.9 L977.4,200.0 L989.2,108.0 L1001.1,121.1 L1013.0,81.7 L1024.8,114.6 L1036.7,68.6 L1048.5,16.0 L1060.4,48.9 L1072.3,29.1 L1084.1,88.3 L1096.0,160.6" fill="none" stroke="var(--series-1)" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/><path d="M52.0,193.4 L63.9,193.4 L75.7,200.0 L87.6,200.0 L99.5,193.4 L111.3,200.0 L123.2,200.0 L135.0,200.0 L146.9,200.0 L158.8,200.0 L170.6,200.0 L182.5,200.0 L194.4,200.0 L206.2,200.0 L218.1,200.0 L230.0,200.0 L241.8,200.0 L253.7,200.0 L265.5,200.0 L277.4,200.0 L289.3,200.0 L301.1,200.0 L313.0,200.0 L324.9,200.0 L336.7,200.0 L348.6,193.4 L360.5,200.0 L372.3,200.0 L384.2,200.0 L396.0,200.0 L407.9,200.0 L419.8,200.0 L431.6,200.0 L443.5,200.0 L455.4,200.0 L467.2,200.0 L479.1,200.0 L491.0,200.0 L502.8,200.0 L514.7,200.0 L526.5,200.0 L538.4,200.0 L550.3,200.0 L562.1,200.0 L574.0,200.0 L585.9,200.0 L597.7,200.0 L609.6,200.0 L621.5,193.4 L633.3,200.0 L645.2,200.0 L657.0,200.0 L668.9,193.4 L680.8,193.4 L692.6,200.0 L704.5,173.7 L716.4,200.0 L728.2,200.0 L740.1,193.4 L752.0,200.0 L763.8,200.0 L775.7,200.0 L787.5,200.0 L799.4,200.0 L811.3,200.0 L823.1,200.0 L835.0,186.9 L846.9,186.9 L858.7,200.0 L870.6,200.0 L882.5,200.0 L894.3,200.0 L906.2,193.4 L918.0,200.0 L929.9,186.9 L941.8,186.9 L953.6,200.0 L965.5,186.9 L977.4,200.0 L989.2,147.4 L1001.1,173.7 L1013.0,121.1 L1024.8,160.6 L1036.7,134.3 L1048.5,108.0 L1060.4,134.3 L1072.3,134.3 L1084.1,160.6 L1096.0,200.0" fill="none" stroke="var(--series-2)" stroke-width="1.5" stroke-linejoin="round" stroke-linecap="round"/><circle cx="52.0" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="52.0" cy="193.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="46.1" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="0"/><circle cx="63.9" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="63.9" cy="193.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="58.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="1"/><circle cx="75.7" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="75.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="69.9" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="2"/><circle cx="87.6" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="87.6" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="81.7" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="3"/><circle cx="99.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="99.5" cy="193.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="93.6" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="4"/><circle cx="111.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="111.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="105.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="5"/><circle cx="123.2" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="123.2" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="117.3" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="6"/><circle cx="135.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="135.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="129.2" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="7"/><circle cx="146.9" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="146.9" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="141.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="8"/><circle cx="158.8" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="158.8" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="152.9" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="9"/><circle cx="170.6" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="170.6" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="164.8" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="10"/><circle cx="182.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="182.5" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="176.6" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="11"/><circle cx="194.4" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="194.4" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="188.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="12"/><circle cx="206.2" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="206.2" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="200.4" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="13"/><circle cx="218.1" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="218.1" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="212.2" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="14"/><circle cx="230.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="230.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="224.1" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="15"/><circle cx="241.8" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="241.8" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="236.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="16"/><circle cx="253.7" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="253.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="247.8" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="17"/><circle cx="265.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="265.5" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="259.7" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="18"/><circle cx="277.4" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="277.4" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="271.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="19"/><circle cx="289.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="289.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="283.4" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="20"/><circle cx="301.1" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="301.1" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="295.3" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="21"/><circle cx="313.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="313.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="307.1" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="22"/><circle cx="324.9" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="324.9" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="319.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="23"/><circle cx="336.7" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="336.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="330.9" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="24"/><circle cx="348.6" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="348.6" cy="193.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="342.7" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="25"/><circle cx="360.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="360.5" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="354.6" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="26"/><circle cx="372.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="372.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="366.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="27"/><circle cx="384.2" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="384.2" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="378.3" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="28"/><circle cx="396.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="396.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="390.2" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="29"/><circle cx="407.9" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="407.9" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="402.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="30"/><circle cx="419.8" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="419.8" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="413.9" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="31"/><circle cx="431.6" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="431.6" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="425.8" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="32"/><circle cx="443.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="443.5" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="437.6" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="33"/><circle cx="455.4" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="455.4" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="449.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="34"/><circle cx="467.2" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="467.2" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="461.4" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="35"/><circle cx="479.1" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="479.1" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="473.2" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="36"/><circle cx="491.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="491.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="485.1" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="37"/><circle cx="502.8" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="502.8" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="497.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="38"/><circle cx="514.7" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="514.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="508.8" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="39"/><circle cx="526.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="526.5" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="520.7" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="40"/><circle cx="538.4" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="538.4" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="532.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="41"/><circle cx="550.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="550.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="544.4" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="42"/><circle cx="562.1" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="562.1" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="556.3" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="43"/><circle cx="574.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="574.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="568.1" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="44"/><circle cx="585.9" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="585.9" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="580.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="45"/><circle cx="597.7" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="597.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="591.9" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="46"/><circle cx="609.6" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="609.6" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="603.7" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="47"/><circle cx="621.5" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="621.5" cy="193.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="615.6" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="48"/><circle cx="633.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="633.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="627.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="49"/><circle cx="645.2" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="645.2" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="639.3" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="50"/><circle cx="657.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="657.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="651.2" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="51"/><circle cx="668.9" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="668.9" cy="193.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="663.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="52"/><circle cx="680.8" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="680.8" cy="193.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="674.9" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="53"/><circle cx="692.6" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="692.6" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="686.8" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="54"/><circle cx="704.5" cy="173.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="704.5" cy="173.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="698.6" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="55"/><circle cx="716.4" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="716.4" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="710.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="56"/><circle cx="728.2" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="728.2" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="722.4" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="57"/><circle cx="740.1" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="740.1" cy="193.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="734.2" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="58"/><circle cx="752.0" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="752.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="746.1" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="59"/><circle cx="763.8" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="763.8" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="758.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="60"/><circle cx="775.7" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="775.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="769.8" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="61"/><circle cx="787.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="787.5" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="781.7" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="62"/><circle cx="799.4" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="799.4" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="793.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="63"/><circle cx="811.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="811.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="805.4" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="64"/><circle cx="823.1" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="823.1" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="817.3" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="65"/><circle cx="835.0" cy="186.9" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="835.0" cy="186.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="829.1" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="66"/><circle cx="846.9" cy="186.9" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="846.9" cy="186.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="841.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="67"/><circle cx="858.7" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="858.7" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="852.9" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="68"/><circle cx="870.6" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="870.6" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="864.7" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="69"/><circle cx="882.5" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="882.5" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="876.6" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="70"/><circle cx="894.3" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="894.3" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="888.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="71"/><circle cx="906.2" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="906.2" cy="193.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="900.3" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="72"/><circle cx="918.0" cy="193.4" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="918.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="912.2" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="73"/><circle cx="929.9" cy="186.9" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="929.9" cy="186.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="924.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="74"/><circle cx="941.8" cy="173.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="941.8" cy="186.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="935.9" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="75"/><circle cx="953.6" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="953.6" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="947.8" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="76"/><circle cx="965.5" cy="186.9" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="965.5" cy="186.9" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="959.6" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="77"/><circle cx="977.4" cy="200.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="977.4" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="971.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="78"/><circle cx="989.2" cy="108.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="989.2" cy="147.4" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="983.4" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="79"/><circle cx="1001.1" cy="121.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1001.1" cy="173.7" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="995.2" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="80"/><circle cx="1013.0" cy="81.7" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1013.0" cy="121.1" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1007.1" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="81"/><circle cx="1024.8" cy="114.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1024.8" cy="160.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1019.0" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="82"/><circle cx="1036.7" cy="68.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1036.7" cy="134.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1030.8" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="83"/><circle cx="1048.5" cy="16.0" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1048.5" cy="108.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1042.7" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="84"/><circle cx="1060.4" cy="48.9" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1060.4" cy="134.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1054.5" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="85"/><circle cx="1072.3" cy="29.1" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1072.3" cy="134.3" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1066.4" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="86"/><circle cx="1084.1" cy="88.3" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1084.1" cy="160.6" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1078.3" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="87"/><circle cx="1096.0" cy="160.6" r="2.5" fill="var(--series-1)" stroke="var(--surface-1)" stroke-width="1.5"/><circle cx="1096.0" cy="200.0" r="2.5" fill="var(--series-2)" stroke="var(--surface-1)" stroke-width="1.5"/><rect x="1090.1" y="16" width="11.7" height="184" fill="transparent" class="hit" data-idx="88"/><text x="1090.0" y="152.6" text-anchor="end" font-size="11" fill="var(--text-primary)" font-family="system-ui" font-variant-numeric="tabular-nums" font-weight="600">6</text><line class="crosshair" x1="0" y1="16" x2="0" y2="200" stroke="var(--text-muted)" stroke-width="1" stroke-dasharray="3 3" opacity="0"/></svg>
<div class="tooltip" id="tooltip-2"></div>
</div>
</div>
</div>
<p class="note">
注:上架量按「开始时间」归入对应月份,流拍量按「结束时间」归入对应月份。流拍率 = 流拍量 / 已结束量。近期月份(最近2-3个月)的已结束量和流拍量可能不完整(部分拍卖尚未结束)。
</p>
<div class="data-table-wrap">
<button class="data-table-toggle" id="tableToggle">显示/隐藏数据表</button>
<div class="data-table" id="dataTable">
<table>
<thead><tr><th>区域</th><th>月份</th><th>上架量</th><th>流拍量</th><th>已结束</th><th>流拍率</th></tr></thead>
<tbody>
<tr class="group-header"><td colspan="6">东莞全市(共 115 个月)</td></tr>
<tr><td></td><td style="text-align:left">2017-05</td><td>1</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2017-06</td><td>12</td><td>10</td><td>13</td><td>76.9%</td></tr>
<tr><td></td><td style="text-align:left">2017-07</td><td>13</td><td>12</td><td>13</td><td>92.3%</td></tr>
<tr><td></td><td style="text-align:left">2017-08</td><td>7</td><td>5</td><td>7</td><td>71.4%</td></tr>
<tr><td></td><td style="text-align:left">2017-09</td><td>8</td><td>5</td><td>8</td><td>62.5%</td></tr>
<tr><td></td><td style="text-align:left">2017-10</td><td>8</td><td>6</td><td>8</td><td>75.0%</td></tr>
<tr><td></td><td style="text-align:left">2017-11</td><td>29</td><td>15</td><td>27</td><td>55.6%</td></tr>
<tr><td></td><td style="text-align:left">2017-12</td><td>20</td><td>11</td><td>22</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2018-01</td><td>17</td><td>11</td><td>17</td><td>64.7%</td></tr>
<tr><td></td><td style="text-align:left">2018-02</td><td>16</td><td>10</td><td>15</td><td>66.7%</td></tr>
<tr><td></td><td style="text-align:left">2018-03</td><td>27</td><td>14</td><td>25</td><td>56.0%</td></tr>
<tr><td></td><td style="text-align:left">2018-04</td><td>14</td><td>8</td><td>14</td><td>57.1%</td></tr>
<tr><td></td><td style="text-align:left">2018-05</td><td>30</td><td>11</td><td>25</td><td>44.0%</td></tr>
<tr><td></td><td style="text-align:left">2018-06</td><td>41</td><td>27</td><td>42</td><td>64.3%</td></tr>
<tr><td></td><td style="text-align:left">2018-07</td><td>60</td><td>38</td><td>63</td><td>60.3%</td></tr>
<tr><td></td><td style="text-align:left">2018-08</td><td>100</td><td>50</td><td>100</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2018-09</td><td>133</td><td>57</td><td>127</td><td>44.9%</td></tr>
<tr><td></td><td style="text-align:left">2018-10</td><td>126</td><td>71</td><td>124</td><td>57.3%</td></tr>
<tr><td></td><td style="text-align:left">2018-11</td><td>169</td><td>110</td><td>167</td><td>65.9%</td></tr>
<tr><td></td><td style="text-align:left">2018-12</td><td>176</td><td>100</td><td>169</td><td>59.2%</td></tr>
<tr><td></td><td style="text-align:left">2019-01</td><td>125</td><td>70</td><td>118</td><td>59.3%</td></tr>
<tr><td></td><td style="text-align:left">2019-02</td><td>87</td><td>54</td><td>92</td><td>58.7%</td></tr>
<tr><td></td><td style="text-align:left">2019-03</td><td>95</td><td>62</td><td>106</td><td>58.5%</td></tr>
<tr><td></td><td style="text-align:left">2019-04</td><td>156</td><td>89</td><td>155</td><td>57.4%</td></tr>
<tr><td></td><td style="text-align:left">2019-05</td><td>126</td><td>58</td><td>125</td><td>46.4%</td></tr>
<tr><td></td><td style="text-align:left">2019-06</td><td>122</td><td>71</td><td>119</td><td>59.7%</td></tr>
<tr><td></td><td style="text-align:left">2019-07</td><td>163</td><td>97</td><td>164</td><td>59.1%</td></tr>
<tr><td></td><td style="text-align:left">2019-08</td><td>136</td><td>74</td><td>132</td><td>56.1%</td></tr>
<tr><td></td><td style="text-align:left">2019-09</td><td>130</td><td>72</td><td>126</td><td>57.1%</td></tr>
<tr><td></td><td style="text-align:left">2019-10</td><td>166</td><td>88</td><td>164</td><td>53.7%</td></tr>
<tr><td></td><td style="text-align:left">2019-11</td><td>112</td><td>64</td><td>114</td><td>56.1%</td></tr>
<tr><td></td><td style="text-align:left">2019-12</td><td>170</td><td>108</td><td>172</td><td>62.8%</td></tr>
<tr><td></td><td style="text-align:left">2020-01</td><td>122</td><td>79</td><td>125</td><td>63.2%</td></tr>
<tr><td></td><td style="text-align:left">2020-02</td><td>86</td><td>51</td><td>79</td><td>64.6%</td></tr>
<tr><td></td><td style="text-align:left">2020-03</td><td>46</td><td>33</td><td>54</td><td>61.1%</td></tr>
<tr><td></td><td style="text-align:left">2020-04</td><td>83</td><td>45</td><td>86</td><td>52.3%</td></tr>
<tr><td></td><td style="text-align:left">2020-05</td><td>100</td><td>51</td><td>103</td><td>49.5%</td></tr>
<tr><td></td><td style="text-align:left">2020-06</td><td>102</td><td>44</td><td>98</td><td>44.9%</td></tr>
<tr><td></td><td style="text-align:left">2020-07</td><td>116</td><td>61</td><td>121</td><td>50.4%</td></tr>
<tr><td></td><td style="text-align:left">2020-08</td><td>166</td><td>95</td><td>162</td><td>58.6%</td></tr>
<tr><td></td><td style="text-align:left">2020-09</td><td>183</td><td>107</td><td>183</td><td>58.5%</td></tr>
<tr><td></td><td style="text-align:left">2020-10</td><td>167</td><td>94</td><td>165</td><td>57.0%</td></tr>
<tr><td></td><td style="text-align:left">2020-11</td><td>156</td><td>90</td><td>153</td><td>58.8%</td></tr>
<tr><td></td><td style="text-align:left">2020-12</td><td>212</td><td>126</td><td>210</td><td>60.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-01</td><td>171</td><td>83</td><td>160</td><td>51.9%</td></tr>
<tr><td></td><td style="text-align:left">2021-02</td><td>102</td><td>63</td><td>113</td><td>55.8%</td></tr>
<tr><td></td><td style="text-align:left">2021-03</td><td>120</td><td>75</td><td>130</td><td>57.7%</td></tr>
<tr><td></td><td style="text-align:left">2021-04</td><td>103</td><td>56</td><td>100</td><td>56.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-05</td><td>95</td><td>46</td><td>78</td><td>59.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-06</td><td>178</td><td>113</td><td>199</td><td>56.8%</td></tr>
<tr><td></td><td style="text-align:left">2021-07</td><td>138</td><td>82</td><td>132</td><td>62.1%</td></tr>
<tr><td></td><td style="text-align:left">2021-08</td><td>211</td><td>155</td><td>199</td><td>77.9%</td></tr>
<tr><td></td><td style="text-align:left">2021-09</td><td>208</td><td>132</td><td>213</td><td>62.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-10</td><td>207</td><td>146</td><td>195</td><td>74.9%</td></tr>
<tr><td></td><td style="text-align:left">2021-11</td><td>230</td><td>153</td><td>222</td><td>68.9%</td></tr>
<tr><td></td><td style="text-align:left">2021-12</td><td>296</td><td>221</td><td>296</td><td>74.7%</td></tr>
<tr><td></td><td style="text-align:left">2022-01</td><td>217</td><td>169</td><td>214</td><td>79.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-02</td><td>214</td><td>103</td><td>188</td><td>54.8%</td></tr>
<tr><td></td><td style="text-align:left">2022-03</td><td>146</td><td>106</td><td>150</td><td>70.7%</td></tr>
<tr><td></td><td style="text-align:left">2022-04</td><td>154</td><td>113</td><td>180</td><td>62.8%</td></tr>
<tr><td></td><td style="text-align:left">2022-05</td><td>172</td><td>136</td><td>184</td><td>73.9%</td></tr>
<tr><td></td><td style="text-align:left">2022-06</td><td>148</td><td>103</td><td>138</td><td>74.6%</td></tr>
<tr><td></td><td style="text-align:left">2022-07</td><td>195</td><td>146</td><td>205</td><td>71.2%</td></tr>
<tr><td></td><td style="text-align:left">2022-08</td><td>288</td><td>206</td><td>283</td><td>72.8%</td></tr>
<tr><td></td><td style="text-align:left">2022-09</td><td>331</td><td>225</td><td>312</td><td>72.1%</td></tr>
<tr><td></td><td style="text-align:left">2022-10</td><td>264</td><td>210</td><td>264</td><td>79.5%</td></tr>
<tr><td></td><td style="text-align:left">2022-11</td><td>286</td><td>220</td><td>283</td><td>77.7%</td></tr>
<tr><td></td><td style="text-align:left">2022-12</td><td>259</td><td>176</td><td>243</td><td>72.4%</td></tr>
<tr><td></td><td style="text-align:left">2023-01</td><td>152</td><td>105</td><td>157</td><td>66.9%</td></tr>
<tr><td></td><td style="text-align:left">2023-02</td><td>142</td><td>117</td><td>173</td><td>67.6%</td></tr>
<tr><td></td><td style="text-align:left">2023-03</td><td>137</td><td>95</td><td>146</td><td>65.1%</td></tr>
<tr><td></td><td style="text-align:left">2023-04</td><td>211</td><td>167</td><td>216</td><td>77.3%</td></tr>
<tr><td></td><td style="text-align:left">2023-05</td><td>326</td><td>232</td><td>316</td><td>73.4%</td></tr>
<tr><td></td><td style="text-align:left">2023-06</td><td>222</td><td>171</td><td>231</td><td>74.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-07</td><td>353</td><td>211</td><td>275</td><td>76.7%</td></tr>
<tr><td></td><td style="text-align:left">2023-08</td><td>276</td><td>191</td><td>277</td><td>69.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-09</td><td>395</td><td>363</td><td>418</td><td>86.8%</td></tr>
<tr><td></td><td style="text-align:left">2023-10</td><td>505</td><td>405</td><td>479</td><td>84.6%</td></tr>
<tr><td></td><td style="text-align:left">2023-11</td><td>376</td><td>247</td><td>320</td><td>77.2%</td></tr>
<tr><td></td><td style="text-align:left">2023-12</td><td>384</td><td>308</td><td>389</td><td>79.2%</td></tr>
<tr><td></td><td style="text-align:left">2024-01</td><td>296</td><td>288</td><td>352</td><td>81.8%</td></tr>
<tr><td></td><td style="text-align:left">2024-02</td><td>198</td><td>145</td><td>190</td><td>76.3%</td></tr>
<tr><td></td><td style="text-align:left">2024-03</td><td>181</td><td>167</td><td>222</td><td>75.2%</td></tr>
<tr><td></td><td style="text-align:left">2024-04</td><td>243</td><td>195</td><td>249</td><td>78.3%</td></tr>
<tr><td></td><td style="text-align:left">2024-05</td><td>357</td><td>262</td><td>327</td><td>80.1%</td></tr>
<tr><td></td><td style="text-align:left">2024-06</td><td>229</td><td>223</td><td>257</td><td>86.8%</td></tr>
<tr><td></td><td style="text-align:left">2024-07</td><td>298</td><td>244</td><td>297</td><td>82.2%</td></tr>
<tr><td></td><td style="text-align:left">2024-08</td><td>227</td><td>180</td><td>217</td><td>82.9%</td></tr>
<tr><td></td><td style="text-align:left">2024-09</td><td>233</td><td>184</td><td>217</td><td>84.8%</td></tr>
<tr><td></td><td style="text-align:left">2024-10</td><td>229</td><td>181</td><td>232</td><td>78.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-11</td><td>205</td><td>193</td><td>222</td><td>86.9%</td></tr>
<tr><td></td><td style="text-align:left">2024-12</td><td>275</td><td>236</td><td>278</td><td>84.9%</td></tr>
<tr><td></td><td style="text-align:left">2025-01</td><td>209</td><td>182</td><td>205</td><td>88.8%</td></tr>
<tr><td></td><td style="text-align:left">2025-02</td><td>205</td><td>154</td><td>206</td><td>74.8%</td></tr>
<tr><td></td><td style="text-align:left">2025-03</td><td>203</td><td>137</td><td>203</td><td>67.5%</td></tr>
<tr><td></td><td style="text-align:left">2025-04</td><td>249</td><td>240</td><td>284</td><td>84.5%</td></tr>
<tr><td></td><td style="text-align:left">2025-05</td><td>282</td><td>215</td><td>266</td><td>80.8%</td></tr>
<tr><td></td><td style="text-align:left">2025-06</td><td>372</td><td>186</td><td>250</td><td>74.4%</td></tr>
<tr><td></td><td style="text-align:left">2025-07</td><td>363</td><td>334</td><td>412</td><td>81.1%</td></tr>
<tr><td></td><td style="text-align:left">2025-08</td><td>324</td><td>287</td><td>364</td><td>78.8%</td></tr>
<tr><td></td><td style="text-align:left">2025-09</td><td>708</td><td>591</td><td>707</td><td>83.6%</td></tr>
<tr><td></td><td style="text-align:left">2025-10</td><td>420</td><td>276</td><td>413</td><td>66.8%</td></tr>
<tr><td></td><td style="text-align:left">2025-11</td><td>598</td><td>476</td><td>569</td><td>83.7%</td></tr>
<tr><td></td><td style="text-align:left">2025-12</td><td>806</td><td>455</td><td>547</td><td>83.2%</td></tr>
<tr><td></td><td style="text-align:left">2026-01</td><td>490</td><td>352</td><td>482</td><td>73.0%</td></tr>
<tr><td></td><td style="text-align:left">2026-02</td><td>334</td><td>447</td><td>518</td><td>86.3%</td></tr>
<tr><td></td><td style="text-align:left">2026-03</td><td>440</td><td>297</td><td>454</td><td>65.4%</td></tr>
<tr><td></td><td style="text-align:left">2026-04</td><td>577</td><td>383</td><td>556</td><td>68.9%</td></tr>
<tr><td></td><td style="text-align:left">2026-05</td><td>534</td><td>325</td><td>534</td><td>60.9%</td></tr>
<tr><td></td><td style="text-align:left">2026-06</td><td>566</td><td>443</td><td>668</td><td>66.3%</td></tr>
<tr><td></td><td style="text-align:left">2026-07</td><td>493</td><td>287</td><td>515</td><td>55.7%</td></tr>
<tr><td></td><td style="text-align:left">2026-08</td><td>566</td><td>315</td><td>535</td><td>58.9%</td></tr>
<tr><td></td><td style="text-align:left">2026-09</td><td>635</td><td>243</td><td>325</td><td>74.8%</td></tr>
<tr><td></td><td style="text-align:left">2026-10</td><td>177</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2026-11</td><td>1</td><td>0</td><td>0</td><td></td></tr>
<tr class="group-header"><td colspan="6">樟木头(共 104 个月)</td></tr>
<tr><td></td><td style="text-align:left">2018-03</td><td>2</td><td>1</td><td>2</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2018-04</td><td>2</td><td>0</td><td>2</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2018-05</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2018-06</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2018-07</td><td>1</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2018-08</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2018-09</td><td>6</td><td>4</td><td>6</td><td>66.7%</td></tr>
<tr><td></td><td style="text-align:left">2018-10</td><td>5</td><td>3</td><td>5</td><td>60.0%</td></tr>
<tr><td></td><td style="text-align:left">2018-11</td><td>4</td><td>3</td><td>4</td><td>75.0%</td></tr>
<tr><td></td><td style="text-align:left">2018-12</td><td>4</td><td>0</td><td>2</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-01</td><td>4</td><td>1</td><td>3</td><td>33.3%</td></tr>
<tr><td></td><td style="text-align:left">2019-02</td><td>2</td><td>2</td><td>5</td><td>40.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-03</td><td>1</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-04</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2019-05</td><td>2</td><td>0</td><td>2</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-06</td><td>1</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-07</td><td>14</td><td>6</td><td>14</td><td>42.9%</td></tr>
<tr><td></td><td style="text-align:left">2019-08</td><td>7</td><td>2</td><td>7</td><td>28.6%</td></tr>
<tr><td></td><td style="text-align:left">2019-09</td><td>5</td><td>4</td><td>4</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-10</td><td>5</td><td>0</td><td>4</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-11</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2019-12</td><td>2</td><td>2</td><td>4</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2020-01</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-02</td><td>1</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2020-03</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-04</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-05</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-06</td><td>1</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2020-07</td><td>1</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2020-08</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-09</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-10</td><td>2</td><td>1</td><td>2</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2020-11</td><td>3</td><td>2</td><td>3</td><td>66.7%</td></tr>
<tr><td></td><td style="text-align:left">2020-12</td><td>4</td><td>1</td><td>4</td><td>25.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-01</td><td>6</td><td>2</td><td>6</td><td>33.3%</td></tr>
<tr><td></td><td style="text-align:left">2021-02</td><td>4</td><td>2</td><td>4</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-03</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-04</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-05</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-06</td><td>1</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-07</td><td>3</td><td>2</td><td>2</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-08</td><td>5</td><td>5</td><td>6</td><td>83.3%</td></tr>
<tr><td></td><td style="text-align:left">2021-09</td><td>6</td><td>3</td><td>4</td><td>75.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-10</td><td>3</td><td>2</td><td>3</td><td>66.7%</td></tr>
<tr><td></td><td style="text-align:left">2021-11</td><td>3</td><td>3</td><td>3</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-12</td><td>0</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-01</td><td>3</td><td>2</td><td>4</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-02</td><td>2</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-03</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-04</td><td>0</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-05</td><td>1</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-06</td><td>2</td><td>2</td><td>2</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-07</td><td>2</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-08</td><td>3</td><td>3</td><td>4</td><td>75.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-09</td><td>8</td><td>5</td><td>5</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-10</td><td>9</td><td>8</td><td>8</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-11</td><td>7</td><td>8</td><td>9</td><td>88.9%</td></tr>
<tr><td></td><td style="text-align:left">2022-12</td><td>7</td><td>4</td><td>5</td><td>80.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-01</td><td>4</td><td>4</td><td>6</td><td>66.7%</td></tr>
<tr><td></td><td style="text-align:left">2023-02</td><td>1</td><td>1</td><td>2</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-03</td><td>0</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-04</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-05</td><td>4</td><td>3</td><td>4</td><td>75.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-06</td><td>5</td><td>4</td><td>5</td><td>80.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-07</td><td>9</td><td>6</td><td>7</td><td>85.7%</td></tr>
<tr><td></td><td style="text-align:left">2023-08</td><td>9</td><td>4</td><td>7</td><td>57.1%</td></tr>
<tr><td></td><td style="text-align:left">2023-09</td><td>9</td><td>9</td><td>10</td><td>90.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-10</td><td>9</td><td>6</td><td>7</td><td>85.7%</td></tr>
<tr><td></td><td style="text-align:left">2023-11</td><td>5</td><td>4</td><td>4</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-12</td><td>9</td><td>12</td><td>12</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-01</td><td>6</td><td>6</td><td>6</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-02</td><td>5</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-03</td><td>5</td><td>8</td><td>9</td><td>88.9%</td></tr>
<tr><td></td><td style="text-align:left">2024-04</td><td>5</td><td>6</td><td>6</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-05</td><td>6</td><td>5</td><td>5</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-06</td><td>4</td><td>5</td><td>6</td><td>83.3%</td></tr>
<tr><td></td><td style="text-align:left">2024-07</td><td>8</td><td>6</td><td>6</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-08</td><td>5</td><td>6</td><td>6</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-09</td><td>11</td><td>9</td><td>10</td><td>90.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-10</td><td>8</td><td>5</td><td>6</td><td>83.3%</td></tr>
<tr><td></td><td style="text-align:left">2024-11</td><td>0</td><td>2</td><td>2</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-12</td><td>4</td><td>6</td><td>6</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-01</td><td>5</td><td>5</td><td>6</td><td>83.3%</td></tr>
<tr><td></td><td style="text-align:left">2025-02</td><td>10</td><td>7</td><td>10</td><td>70.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-03</td><td>6</td><td>4</td><td>5</td><td>80.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-04</td><td>25</td><td>22</td><td>22</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-05</td><td>23</td><td>22</td><td>23</td><td>95.7%</td></tr>
<tr><td></td><td style="text-align:left">2025-06</td><td>24</td><td>5</td><td>7</td><td>71.4%</td></tr>
<tr><td></td><td style="text-align:left">2025-07</td><td>13</td><td>12</td><td>15</td><td>80.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-08</td><td>21</td><td>32</td><td>35</td><td>91.4%</td></tr>
<tr><td></td><td style="text-align:left">2025-09</td><td>13</td><td>8</td><td>13</td><td>61.5%</td></tr>
<tr><td></td><td style="text-align:left">2025-10</td><td>10</td><td>9</td><td>11</td><td>81.8%</td></tr>
<tr><td></td><td style="text-align:left">2025-11</td><td>4</td><td>2</td><td>4</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-12</td><td>4</td><td>6</td><td>7</td><td>85.7%</td></tr>
<tr><td></td><td style="text-align:left">2026-01</td><td>5</td><td>2</td><td>4</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2026-02</td><td>4</td><td>4</td><td>4</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2026-03</td><td>15</td><td>13</td><td>16</td><td>81.2%</td></tr>
<tr><td></td><td style="text-align:left">2026-04</td><td>28</td><td>13</td><td>23</td><td>56.5%</td></tr>
<tr><td></td><td style="text-align:left">2026-05</td><td>7</td><td>5</td><td>8</td><td>62.5%</td></tr>
<tr><td></td><td style="text-align:left">2026-06</td><td>12</td><td>8</td><td>16</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2026-07</td><td>14</td><td>6</td><td>13</td><td>46.2%</td></tr>
<tr><td></td><td style="text-align:left">2026-08</td><td>7</td><td>3</td><td>7</td><td>42.9%</td></tr>
<tr><td></td><td style="text-align:left">2026-09</td><td>22</td><td>4</td><td>6</td><td>66.7%</td></tr>
<tr><td></td><td style="text-align:left">2026-10</td><td>1</td><td>0</td><td>0</td><td></td></tr>
<tr class="group-header"><td colspan="6">塘厦(共 89 个月)</td></tr>
<tr><td></td><td style="text-align:left">2019-06</td><td>1</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-07</td><td>1</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-08</td><td>1</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2019-09</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2019-10</td><td>0</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2019-11</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2019-12</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-01</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-02</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-03</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-04</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-05</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-06</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-07</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-08</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-09</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-10</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-11</td><td>1</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2020-12</td><td>0</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-01</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-02</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-03</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-04</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-05</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-06</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-07</td><td>1</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2021-08</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-09</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-10</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-11</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2021-12</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-01</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-02</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-03</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-04</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-05</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-06</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-07</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-08</td><td>1</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2022-09</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-10</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-11</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2022-12</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-01</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-02</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-03</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-04</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-05</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-06</td><td>1</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-07</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-08</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-09</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2023-10</td><td>1</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-11</td><td>1</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2023-12</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-01</td><td>4</td><td>4</td><td>4</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-02</td><td>1</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-03</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-04</td><td>0</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2024-05</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-06</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-07</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-08</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-09</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-10</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-11</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2024-12</td><td>2</td><td>2</td><td>2</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-01</td><td>2</td><td>2</td><td>2</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-02</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2025-03</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2025-04</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2025-05</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2025-06</td><td>1</td><td>1</td><td>1</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-07</td><td>1</td><td>0</td><td>1</td><td>0.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-08</td><td>2</td><td>2</td><td>2</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-09</td><td>4</td><td>2</td><td>4</td><td>50.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-10</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2025-11</td><td>2</td><td>2</td><td>2</td><td>100.0%</td></tr>
<tr><td></td><td style="text-align:left">2025-12</td><td>0</td><td>0</td><td>0</td><td></td></tr>
<tr><td></td><td style="text-align:left">2026-01</td><td>14</td><td>8</td><td>13</td><td>61.5%</td></tr>
<tr><td></td><td style="text-align:left">2026-02</td><td>12</td><td>4</td><td>9</td><td>44.4%</td></tr>
<tr><td></td><td style="text-align:left">2026-03</td><td>18</td><td>12</td><td>19</td><td>63.2%</td></tr>
<tr><td></td><td style="text-align:left">2026-04</td><td>13</td><td>6</td><td>13</td><td>46.2%</td></tr>
<tr><td></td><td style="text-align:left">2026-05</td><td>20</td><td>10</td><td>19</td><td>52.6%</td></tr>
<tr><td></td><td style="text-align:left">2026-06</td><td>28</td><td>14</td><td>31</td><td>45.2%</td></tr>
<tr><td></td><td style="text-align:left">2026-07</td><td>23</td><td>10</td><td>23</td><td>43.5%</td></tr>
<tr><td></td><td style="text-align:left">2026-08</td><td>26</td><td>10</td><td>21</td><td>47.6%</td></tr>
<tr><td></td><td style="text-align:left">2026-09</td><td>17</td><td>6</td><td>9</td><td>66.7%</td></tr>
<tr><td></td><td style="text-align:left">2026-10</td><td>6</td><td>0</td><td>0</td><td></td></tr>
</tbody>
</table>
</div>
</div>
</div>
<script>
const DATA = {"东莞全市": [{"month": "2017-05", "listed": 1, "failed": 0, "ended": 0, "rate": null}, {"month": "2017-06", "listed": 12, "failed": 10, "ended": 13, "rate": 76.9}, {"month": "2017-07", "listed": 13, "failed": 12, "ended": 13, "rate": 92.3}, {"month": "2017-08", "listed": 7, "failed": 5, "ended": 7, "rate": 71.4}, {"month": "2017-09", "listed": 8, "failed": 5, "ended": 8, "rate": 62.5}, {"month": "2017-10", "listed": 8, "failed": 6, "ended": 8, "rate": 75.0}, {"month": "2017-11", "listed": 29, "failed": 15, "ended": 27, "rate": 55.6}, {"month": "2017-12", "listed": 20, "failed": 11, "ended": 22, "rate": 50.0}, {"month": "2018-01", "listed": 17, "failed": 11, "ended": 17, "rate": 64.7}, {"month": "2018-02", "listed": 16, "failed": 10, "ended": 15, "rate": 66.7}, {"month": "2018-03", "listed": 27, "failed": 14, "ended": 25, "rate": 56.0}, {"month": "2018-04", "listed": 14, "failed": 8, "ended": 14, "rate": 57.1}, {"month": "2018-05", "listed": 30, "failed": 11, "ended": 25, "rate": 44.0}, {"month": "2018-06", "listed": 41, "failed": 27, "ended": 42, "rate": 64.3}, {"month": "2018-07", "listed": 60, "failed": 38, "ended": 63, "rate": 60.3}, {"month": "2018-08", "listed": 100, "failed": 50, "ended": 100, "rate": 50.0}, {"month": "2018-09", "listed": 133, "failed": 57, "ended": 127, "rate": 44.9}, {"month": "2018-10", "listed": 126, "failed": 71, "ended": 124, "rate": 57.3}, {"month": "2018-11", "listed": 169, "failed": 110, "ended": 167, "rate": 65.9}, {"month": "2018-12", "listed": 176, "failed": 100, "ended": 169, "rate": 59.2}, {"month": "2019-01", "listed": 125, "failed": 70, "ended": 118, "rate": 59.3}, {"month": "2019-02", "listed": 87, "failed": 54, "ended": 92, "rate": 58.7}, {"month": "2019-03", "listed": 95, "failed": 62, "ended": 106, "rate": 58.5}, {"month": "2019-04", "listed": 156, "failed": 89, "ended": 155, "rate": 57.4}, {"month": "2019-05", "listed": 126, "failed": 58, "ended": 125, "rate": 46.4}, {"month": "2019-06", "listed": 122, "failed": 71, "ended": 119, "rate": 59.7}, {"month": "2019-07", "listed": 163, "failed": 97, "ended": 164, "rate": 59.1}, {"month": "2019-08", "listed": 136, "failed": 74, "ended": 132, "rate": 56.1}, {"month": "2019-09", "listed": 130, "failed": 72, "ended": 126, "rate": 57.1}, {"month": "2019-10", "listed": 166, "failed": 88, "ended": 164, "rate": 53.7}, {"month": "2019-11", "listed": 112, "failed": 64, "ended": 114, "rate": 56.1}, {"month": "2019-12", "listed": 170, "failed": 108, "ended": 172, "rate": 62.8}, {"month": "2020-01", "listed": 122, "failed": 79, "ended": 125, "rate": 63.2}, {"month": "2020-02", "listed": 86, "failed": 51, "ended": 79, "rate": 64.6}, {"month": "2020-03", "listed": 46, "failed": 33, "ended": 54, "rate": 61.1}, {"month": "2020-04", "listed": 83, "failed": 45, "ended": 86, "rate": 52.3}, {"month": "2020-05", "listed": 100, "failed": 51, "ended": 103, "rate": 49.5}, {"month": "2020-06", "listed": 102, "failed": 44, "ended": 98, "rate": 44.9}, {"month": "2020-07", "listed": 116, "failed": 61, "ended": 121, "rate": 50.4}, {"month": "2020-08", "listed": 166, "failed": 95, "ended": 162, "rate": 58.6}, {"month": "2020-09", "listed": 183, "failed": 107, "ended": 183, "rate": 58.5}, {"month": "2020-10", "listed": 167, "failed": 94, "ended": 165, "rate": 57.0}, {"month": "2020-11", "listed": 156, "failed": 90, "ended": 153, "rate": 58.8}, {"month": "2020-12", "listed": 212, "failed": 126, "ended": 210, "rate": 60.0}, {"month": "2021-01", "listed": 171, "failed": 83, "ended": 160, "rate": 51.9}, {"month": "2021-02", "listed": 102, "failed": 63, "ended": 113, "rate": 55.8}, {"month": "2021-03", "listed": 120, "failed": 75, "ended": 130, "rate": 57.7}, {"month": "2021-04", "listed": 103, "failed": 56, "ended": 100, "rate": 56.0}, {"month": "2021-05", "listed": 95, "failed": 46, "ended": 78, "rate": 59.0}, {"month": "2021-06", "listed": 178, "failed": 113, "ended": 199, "rate": 56.8}, {"month": "2021-07", "listed": 138, "failed": 82, "ended": 132, "rate": 62.1}, {"month": "2021-08", "listed": 211, "failed": 155, "ended": 199, "rate": 77.9}, {"month": "2021-09", "listed": 208, "failed": 132, "ended": 213, "rate": 62.0}, {"month": "2021-10", "listed": 207, "failed": 146, "ended": 195, "rate": 74.9}, {"month": "2021-11", "listed": 230, "failed": 153, "ended": 222, "rate": 68.9}, {"month": "2021-12", "listed": 296, "failed": 221, "ended": 296, "rate": 74.7}, {"month": "2022-01", "listed": 217, "failed": 169, "ended": 214, "rate": 79.0}, {"month": "2022-02", "listed": 214, "failed": 103, "ended": 188, "rate": 54.8}, {"month": "2022-03", "listed": 146, "failed": 106, "ended": 150, "rate": 70.7}, {"month": "2022-04", "listed": 154, "failed": 113, "ended": 180, "rate": 62.8}, {"month": "2022-05", "listed": 172, "failed": 136, "ended": 184, "rate": 73.9}, {"month": "2022-06", "listed": 148, "failed": 103, "ended": 138, "rate": 74.6}, {"month": "2022-07", "listed": 195, "failed": 146, "ended": 205, "rate": 71.2}, {"month": "2022-08", "listed": 288, "failed": 206, "ended": 283, "rate": 72.8}, {"month": "2022-09", "listed": 331, "failed": 225, "ended": 312, "rate": 72.1}, {"month": "2022-10", "listed": 264, "failed": 210, "ended": 264, "rate": 79.5}, {"month": "2022-11", "listed": 286, "failed": 220, "ended": 283, "rate": 77.7}, {"month": "2022-12", "listed": 259, "failed": 176, "ended": 243, "rate": 72.4}, {"month": "2023-01", "listed": 152, "failed": 105, "ended": 157, "rate": 66.9}, {"month": "2023-02", "listed": 142, "failed": 117, "ended": 173, "rate": 67.6}, {"month": "2023-03", "listed": 137, "failed": 95, "ended": 146, "rate": 65.1}, {"month": "2023-04", "listed": 211, "failed": 167, "ended": 216, "rate": 77.3}, {"month": "2023-05", "listed": 326, "failed": 232, "ended": 316, "rate": 73.4}, {"month": "2023-06", "listed": 222, "failed": 171, "ended": 231, "rate": 74.0}, {"month": "2023-07", "listed": 353, "failed": 211, "ended": 275, "rate": 76.7}, {"month": "2023-08", "listed": 276, "failed": 191, "ended": 277, "rate": 69.0}, {"month": "2023-09", "listed": 395, "failed": 363, "ended": 418, "rate": 86.8}, {"month": "2023-10", "listed": 505, "failed": 405, "ended": 479, "rate": 84.6}, {"month": "2023-11", "listed": 376, "failed": 247, "ended": 320, "rate": 77.2}, {"month": "2023-12", "listed": 384, "failed": 308, "ended": 389, "rate": 79.2}, {"month": "2024-01", "listed": 296, "failed": 288, "ended": 352, "rate": 81.8}, {"month": "2024-02", "listed": 198, "failed": 145, "ended": 190, "rate": 76.3}, {"month": "2024-03", "listed": 181, "failed": 167, "ended": 222, "rate": 75.2}, {"month": "2024-04", "listed": 243, "failed": 195, "ended": 249, "rate": 78.3}, {"month": "2024-05", "listed": 357, "failed": 262, "ended": 327, "rate": 80.1}, {"month": "2024-06", "listed": 229, "failed": 223, "ended": 257, "rate": 86.8}, {"month": "2024-07", "listed": 298, "failed": 244, "ended": 297, "rate": 82.2}, {"month": "2024-08", "listed": 227, "failed": 180, "ended": 217, "rate": 82.9}, {"month": "2024-09", "listed": 233, "failed": 184, "ended": 217, "rate": 84.8}, {"month": "2024-10", "listed": 229, "failed": 181, "ended": 232, "rate": 78.0}, {"month": "2024-11", "listed": 205, "failed": 193, "ended": 222, "rate": 86.9}, {"month": "2024-12", "listed": 275, "failed": 236, "ended": 278, "rate": 84.9}, {"month": "2025-01", "listed": 209, "failed": 182, "ended": 205, "rate": 88.8}, {"month": "2025-02", "listed": 205, "failed": 154, "ended": 206, "rate": 74.8}, {"month": "2025-03", "listed": 203, "failed": 137, "ended": 203, "rate": 67.5}, {"month": "2025-04", "listed": 249, "failed": 240, "ended": 284, "rate": 84.5}, {"month": "2025-05", "listed": 282, "failed": 215, "ended": 266, "rate": 80.8}, {"month": "2025-06", "listed": 372, "failed": 186, "ended": 250, "rate": 74.4}, {"month": "2025-07", "listed": 363, "failed": 334, "ended": 412, "rate": 81.1}, {"month": "2025-08", "listed": 324, "failed": 287, "ended": 364, "rate": 78.8}, {"month": "2025-09", "listed": 708, "failed": 591, "ended": 707, "rate": 83.6}, {"month": "2025-10", "listed": 420, "failed": 276, "ended": 413, "rate": 66.8}, {"month": "2025-11", "listed": 598, "failed": 476, "ended": 569, "rate": 83.7}, {"month": "2025-12", "listed": 806, "failed": 455, "ended": 547, "rate": 83.2}, {"month": "2026-01", "listed": 490, "failed": 352, "ended": 482, "rate": 73.0}, {"month": "2026-02", "listed": 334, "failed": 447, "ended": 518, "rate": 86.3}, {"month": "2026-03", "listed": 440, "failed": 297, "ended": 454, "rate": 65.4}, {"month": "2026-04", "listed": 577, "failed": 383, "ended": 556, "rate": 68.9}, {"month": "2026-05", "listed": 534, "failed": 325, "ended": 534, "rate": 60.9}, {"month": "2026-06", "listed": 566, "failed": 443, "ended": 668, "rate": 66.3}, {"month": "2026-07", "listed": 493, "failed": 287, "ended": 515, "rate": 55.7}, {"month": "2026-08", "listed": 566, "failed": 315, "ended": 535, "rate": 58.9}, {"month": "2026-09", "listed": 635, "failed": 243, "ended": 325, "rate": 74.8}, {"month": "2026-10", "listed": 177, "failed": 0, "ended": 0, "rate": null}, {"month": "2026-11", "listed": 1, "failed": 0, "ended": 0, "rate": null}], "樟木头": [{"month": "2018-03", "listed": 2, "failed": 1, "ended": 2, "rate": 50.0}, {"month": "2018-04", "listed": 2, "failed": 0, "ended": 2, "rate": 0.0}, {"month": "2018-05", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2018-06", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2018-07", "listed": 1, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2018-08", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2018-09", "listed": 6, "failed": 4, "ended": 6, "rate": 66.7}, {"month": "2018-10", "listed": 5, "failed": 3, "ended": 5, "rate": 60.0}, {"month": "2018-11", "listed": 4, "failed": 3, "ended": 4, "rate": 75.0}, {"month": "2018-12", "listed": 4, "failed": 0, "ended": 2, "rate": 0.0}, {"month": "2019-01", "listed": 4, "failed": 1, "ended": 3, "rate": 33.3}, {"month": "2019-02", "listed": 2, "failed": 2, "ended": 5, "rate": 40.0}, {"month": "2019-03", "listed": 1, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2019-04", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2019-05", "listed": 2, "failed": 0, "ended": 2, "rate": 0.0}, {"month": "2019-06", "listed": 1, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2019-07", "listed": 14, "failed": 6, "ended": 14, "rate": 42.9}, {"month": "2019-08", "listed": 7, "failed": 2, "ended": 7, "rate": 28.6}, {"month": "2019-09", "listed": 5, "failed": 4, "ended": 4, "rate": 100.0}, {"month": "2019-10", "listed": 5, "failed": 0, "ended": 4, "rate": 0.0}, {"month": "2019-11", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2019-12", "listed": 2, "failed": 2, "ended": 4, "rate": 50.0}, {"month": "2020-01", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-02", "listed": 1, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2020-03", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-04", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-05", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-06", "listed": 1, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2020-07", "listed": 1, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2020-08", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-09", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-10", "listed": 2, "failed": 1, "ended": 2, "rate": 50.0}, {"month": "2020-11", "listed": 3, "failed": 2, "ended": 3, "rate": 66.7}, {"month": "2020-12", "listed": 4, "failed": 1, "ended": 4, "rate": 25.0}, {"month": "2021-01", "listed": 6, "failed": 2, "ended": 6, "rate": 33.3}, {"month": "2021-02", "listed": 4, "failed": 2, "ended": 4, "rate": 50.0}, {"month": "2021-03", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-04", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-05", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-06", "listed": 1, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2021-07", "listed": 3, "failed": 2, "ended": 2, "rate": 100.0}, {"month": "2021-08", "listed": 5, "failed": 5, "ended": 6, "rate": 83.3}, {"month": "2021-09", "listed": 6, "failed": 3, "ended": 4, "rate": 75.0}, {"month": "2021-10", "listed": 3, "failed": 2, "ended": 3, "rate": 66.7}, {"month": "2021-11", "listed": 3, "failed": 3, "ended": 3, "rate": 100.0}, {"month": "2021-12", "listed": 0, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2022-01", "listed": 3, "failed": 2, "ended": 4, "rate": 50.0}, {"month": "2022-02", "listed": 2, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2022-03", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-04", "listed": 0, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2022-05", "listed": 1, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2022-06", "listed": 2, "failed": 2, "ended": 2, "rate": 100.0}, {"month": "2022-07", "listed": 2, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2022-08", "listed": 3, "failed": 3, "ended": 4, "rate": 75.0}, {"month": "2022-09", "listed": 8, "failed": 5, "ended": 5, "rate": 100.0}, {"month": "2022-10", "listed": 9, "failed": 8, "ended": 8, "rate": 100.0}, {"month": "2022-11", "listed": 7, "failed": 8, "ended": 9, "rate": 88.9}, {"month": "2022-12", "listed": 7, "failed": 4, "ended": 5, "rate": 80.0}, {"month": "2023-01", "listed": 4, "failed": 4, "ended": 6, "rate": 66.7}, {"month": "2023-02", "listed": 1, "failed": 1, "ended": 2, "rate": 50.0}, {"month": "2023-03", "listed": 0, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2023-04", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-05", "listed": 4, "failed": 3, "ended": 4, "rate": 75.0}, {"month": "2023-06", "listed": 5, "failed": 4, "ended": 5, "rate": 80.0}, {"month": "2023-07", "listed": 9, "failed": 6, "ended": 7, "rate": 85.7}, {"month": "2023-08", "listed": 9, "failed": 4, "ended": 7, "rate": 57.1}, {"month": "2023-09", "listed": 9, "failed": 9, "ended": 10, "rate": 90.0}, {"month": "2023-10", "listed": 9, "failed": 6, "ended": 7, "rate": 85.7}, {"month": "2023-11", "listed": 5, "failed": 4, "ended": 4, "rate": 100.0}, {"month": "2023-12", "listed": 9, "failed": 12, "ended": 12, "rate": 100.0}, {"month": "2024-01", "listed": 6, "failed": 6, "ended": 6, "rate": 100.0}, {"month": "2024-02", "listed": 5, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2024-03", "listed": 5, "failed": 8, "ended": 9, "rate": 88.9}, {"month": "2024-04", "listed": 5, "failed": 6, "ended": 6, "rate": 100.0}, {"month": "2024-05", "listed": 6, "failed": 5, "ended": 5, "rate": 100.0}, {"month": "2024-06", "listed": 4, "failed": 5, "ended": 6, "rate": 83.3}, {"month": "2024-07", "listed": 8, "failed": 6, "ended": 6, "rate": 100.0}, {"month": "2024-08", "listed": 5, "failed": 6, "ended": 6, "rate": 100.0}, {"month": "2024-09", "listed": 11, "failed": 9, "ended": 10, "rate": 90.0}, {"month": "2024-10", "listed": 8, "failed": 5, "ended": 6, "rate": 83.3}, {"month": "2024-11", "listed": 0, "failed": 2, "ended": 2, "rate": 100.0}, {"month": "2024-12", "listed": 4, "failed": 6, "ended": 6, "rate": 100.0}, {"month": "2025-01", "listed": 5, "failed": 5, "ended": 6, "rate": 83.3}, {"month": "2025-02", "listed": 10, "failed": 7, "ended": 10, "rate": 70.0}, {"month": "2025-03", "listed": 6, "failed": 4, "ended": 5, "rate": 80.0}, {"month": "2025-04", "listed": 25, "failed": 22, "ended": 22, "rate": 100.0}, {"month": "2025-05", "listed": 23, "failed": 22, "ended": 23, "rate": 95.7}, {"month": "2025-06", "listed": 24, "failed": 5, "ended": 7, "rate": 71.4}, {"month": "2025-07", "listed": 13, "failed": 12, "ended": 15, "rate": 80.0}, {"month": "2025-08", "listed": 21, "failed": 32, "ended": 35, "rate": 91.4}, {"month": "2025-09", "listed": 13, "failed": 8, "ended": 13, "rate": 61.5}, {"month": "2025-10", "listed": 10, "failed": 9, "ended": 11, "rate": 81.8}, {"month": "2025-11", "listed": 4, "failed": 2, "ended": 4, "rate": 50.0}, {"month": "2025-12", "listed": 4, "failed": 6, "ended": 7, "rate": 85.7}, {"month": "2026-01", "listed": 5, "failed": 2, "ended": 4, "rate": 50.0}, {"month": "2026-02", "listed": 4, "failed": 4, "ended": 4, "rate": 100.0}, {"month": "2026-03", "listed": 15, "failed": 13, "ended": 16, "rate": 81.2}, {"month": "2026-04", "listed": 28, "failed": 13, "ended": 23, "rate": 56.5}, {"month": "2026-05", "listed": 7, "failed": 5, "ended": 8, "rate": 62.5}, {"month": "2026-06", "listed": 12, "failed": 8, "ended": 16, "rate": 50.0}, {"month": "2026-07", "listed": 14, "failed": 6, "ended": 13, "rate": 46.2}, {"month": "2026-08", "listed": 7, "failed": 3, "ended": 7, "rate": 42.9}, {"month": "2026-09", "listed": 22, "failed": 4, "ended": 6, "rate": 66.7}, {"month": "2026-10", "listed": 1, "failed": 0, "ended": 0, "rate": null}], "塘厦": [{"month": "2019-06", "listed": 1, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2019-07", "listed": 1, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2019-08", "listed": 1, "failed": 0, "ended": 0, "rate": null}, {"month": "2019-09", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2019-10", "listed": 0, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2019-11", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2019-12", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-01", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-02", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-03", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-04", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-05", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-06", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-07", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-08", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-09", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-10", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-11", "listed": 1, "failed": 0, "ended": 0, "rate": null}, {"month": "2020-12", "listed": 0, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2021-01", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-02", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-03", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-04", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-05", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-06", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-07", "listed": 1, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2021-08", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-09", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-10", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-11", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2021-12", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-01", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-02", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-03", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-04", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-05", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-06", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-07", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-08", "listed": 1, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2022-09", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-10", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-11", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2022-12", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-01", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-02", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-03", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-04", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-05", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-06", "listed": 1, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2023-07", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-08", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-09", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2023-10", "listed": 1, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2023-11", "listed": 1, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2023-12", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-01", "listed": 4, "failed": 4, "ended": 4, "rate": 100.0}, {"month": "2024-02", "listed": 1, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-03", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-04", "listed": 0, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2024-05", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-06", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-07", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-08", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-09", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-10", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-11", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2024-12", "listed": 2, "failed": 2, "ended": 2, "rate": 100.0}, {"month": "2025-01", "listed": 2, "failed": 2, "ended": 2, "rate": 100.0}, {"month": "2025-02", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2025-03", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2025-04", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2025-05", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2025-06", "listed": 1, "failed": 1, "ended": 1, "rate": 100.0}, {"month": "2025-07", "listed": 1, "failed": 0, "ended": 1, "rate": 0.0}, {"month": "2025-08", "listed": 2, "failed": 2, "ended": 2, "rate": 100.0}, {"month": "2025-09", "listed": 4, "failed": 2, "ended": 4, "rate": 50.0}, {"month": "2025-10", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2025-11", "listed": 2, "failed": 2, "ended": 2, "rate": 100.0}, {"month": "2025-12", "listed": 0, "failed": 0, "ended": 0, "rate": null}, {"month": "2026-01", "listed": 14, "failed": 8, "ended": 13, "rate": 61.5}, {"month": "2026-02", "listed": 12, "failed": 4, "ended": 9, "rate": 44.4}, {"month": "2026-03", "listed": 18, "failed": 12, "ended": 19, "rate": 63.2}, {"month": "2026-04", "listed": 13, "failed": 6, "ended": 13, "rate": 46.2}, {"month": "2026-05", "listed": 20, "failed": 10, "ended": 19, "rate": 52.6}, {"month": "2026-06", "listed": 28, "failed": 14, "ended": 31, "rate": 45.2}, {"month": "2026-07", "listed": 23, "failed": 10, "ended": 23, "rate": 43.5}, {"month": "2026-08", "listed": 26, "failed": 10, "ended": 21, "rate": 47.6}, {"month": "2026-09", "listed": 17, "failed": 6, "ended": 9, "rate": 66.7}, {"month": "2026-10", "listed": 6, "failed": 0, "ended": 0, "rate": null}]};
const PANEL_KEYS = ["东莞全市", "樟木头", "塘厦"];
function getCss(prop) {
const root = document.querySelector('.viz-root');
return getComputedStyle(root).getPropertyValue(prop).trim();
}
function setupPanel(key, idx) {
const wrap = document.getElementById('panel-' + idx);
const svg = wrap.querySelector('svg');
const crosshair = wrap.querySelector('.crosshair');
const tt = document.getElementById('tooltip-' + idx);
const data = DATA[key];
if (!data || data.length === 0) return;
function showTooltip(i) {
const d = data[i];
if (!d) return;
const s1 = getCss('--series-1') || '#2a78d6';
const s2 = getCss('--series-2') || '#eb6834';
tt.innerHTML =
'<div class="tt-month">' + d.month + '</div>' +
'<div class="tt-row"><span><span class="tt-dot" style="background:' + s1 + '"></span>上架量</span><span class="tt-val">' + d.listed + ' 套</span></div>' +
'<div class="tt-row"><span><span class="tt-dot" style="background:' + s2 + '"></span>流拍量</span><span class="tt-val">' + d.failed + ' 套</span></div>' +
'<div class="tt-row"><span>已结束</span><span class="tt-val">' + d.ended + ' 套</span></div>' +
'<div class="tt-row"><span>流拍率</span><span class="tt-val">' + (d.rate !== null ? d.rate + '%' : '—') + '</span></div>';
const rect = svg.getBoundingClientRect();
const viewBox = svg.viewBox.baseVal;
const scaleX = rect.width / viewBox.width;
const hitEl = wrap.querySelectorAll('.hit')[i];
const hitRect = hitEl.getBoundingClientRect();
tt.style.left = (hitRect.left - rect.left + hitRect.width / 2 + 12) + 'px';
tt.style.top = '10px';
tt.style.opacity = 1;
const cx = parseFloat(hitEl.getAttribute('x')) + parseFloat(hitEl.getAttribute('width')) / 2;
crosshair.setAttribute('x1', cx);
crosshair.setAttribute('x2', cx);
crosshair.style.opacity = 1;
}
function hide() {
tt.style.opacity = 0;
crosshair.style.opacity = 0;
}
wrap.querySelectorAll('.hit').forEach(hit => {
hit.addEventListener('mouseenter', () => showTooltip(parseInt(hit.dataset.idx)));
hit.addEventListener('mouseleave', hide);
});
}
PANEL_KEYS.forEach((k, i) => setupPanel(k, i));
document.getElementById('tableToggle').addEventListener('click', () => {
document.getElementById('dataTable').classList.toggle('visible');
});
</script>
</body>
</html>