Skip to content

Instantly share code, notes, and snippets.

@fasiha
Created March 12, 2025 06:33
Show Gist options
  • Save fasiha/d5ea0bdd9b9f84e02d9566892604cf22 to your computer and use it in GitHub Desktop.
Save fasiha/d5ea0bdd9b9f84e02d9566892604cf22 to your computer and use it in GitHub Desktop.
Comparing US stonks ($VTI) and World ex-US ($ACWX) for a couple of months before and after the start of 2025 like the FT article. Code assumes Yahoo! Finance CSV files are available.
import pandas as pd
import numpy as np
import pylab as plt
from pandas.tseries.offsets import MonthEnd
plt.style.use('ggplot')
plt.ion()
# Load the datasets
us_data = pd.read_csv('vti.txt.csv', parse_dates=['Date'], index_col='Date')
world_ex_us_data = pd.read_csv('acwx.txt.csv',
parse_dates=['Date'],
index_col='Date')
# Ensure both datasets cover the same date range
start_date = max(us_data.index.min(), world_ex_us_data.index.min())
end_date = min(us_data.index.max(), world_ex_us_data.index.max())
us_data = us_data.query("@start_date <= index <= @end_date")
world_ex_us_data = world_ex_us_data.query("@start_date <= index <= @end_date")
# Calculate daily returns
us_data['Daily Return'] = us_data['Close'].pct_change()
world_ex_us_data['Daily Return'] = world_ex_us_data['Close'].pct_change()
# Combine the daily returns into a single DataFrame
returns = pd.DataFrame({
'US': us_data['Daily Return'],
'World_ex_US': world_ex_us_data['Daily Return']
}).dropna()
# Resample to monthly periods and calculate Pearson correlation for each month
def monthly_pearson(df):
return df.corr().iloc[0, 1]
monthly_corr = returns.groupby([returns.index.year,
returns.index.month]).apply(monthly_pearson)
# Convert the grouped index to a datetime index
monthly_corr.index = [
pd.Timestamp(f'{year}-{month:02d}') + MonthEnd(0)
for year, month in monthly_corr.index
]
# Plot the monthly Pearson correlation coefficients
plt.figure(figsize=(14, 8))
plt.plot(
monthly_corr.index,
monthly_corr.values,
label='Monthly Pearson Correlation',
)
plt.title(
'Monthly Pearson Correlation Between US (VTI) and World ex-US (ACWX) Stock Indices'
)
plt.xlabel('Year')
plt.ylabel('Pearson Correlation Coefficient')
plt.grid(True)
plt.tight_layout()
plt.savefig('pearson.png', dpi=300)
plt.savefig('pearson.svg')
print(monthly_corr.describe())
print(monthly_corr.sort_values()[:10])
fix = lambda ser: ser / ser[-1] * 100
year_months = [(10, 2024), (11, 2024), (12, 2024), (1, 2025), (2, 2025),
(3, 2025)]
plt.figure(figsize=(14, 8))
for m, y in year_months:
idx = np.logical_and(us_data.index.year == y, us_data.index.month == m)
plt.plot(
us_data.index[idx],
fix(us_data['Close'][idx]),
label='US',
c='r',
)
plt.plot(
world_ex_us_data.index[idx],
fix(world_ex_us_data['Close'][idx]),
label='World ex-US',
c='b',
linestyle='-.',
)
handles, labels = plt.gca().get_legend_handles_labels()
plt.legend(handles[:2], labels[:2])
plt.grid(True)
plt.xlabel('Date')
plt.ylabel('Index')
plt.suptitle(
'US (\$VTI, red solid) vs World ex-US (\$ACWX, blue dashed), monthly rebased'
)
plt.tight_layout()
plt.savefig('monthly.png', dpi=300)
plt.savefig('monthly.svg')
fig, axs = plt.subplots(len(year_months), 1, sharex=True, figsize=(14, 8))
for ax, (m, y) in zip(axs, year_months):
idx = us_data.index > pd.Timestamp(f"{y}-{m:02}-01")
ax.plot(
us_data.index[idx],
fix(us_data['Close'][idx]),
label='US',
c='r',
)
ax.plot(world_ex_us_data.index[idx],
fix(world_ex_us_data['Close'][idx]),
label='World ex-US',
c='b',
linestyle='-.')
ax.grid(True)
ax.set_ylabel('Index')
axs[-1].legend()
axs[-1].set_xlabel('Date')
fig.suptitle(
'US (\$VTI, red solid) and World ex-US (\$ACWX, blue dashed), rebased')
fig.tight_layout()
fig.savefig('monthly-cumul.png', dpi=300)
fig.savefig('monthly-cumul.svg')
"""
Output is:
count 204.000000
mean 0.827587
std 0.128098
min 0.011139
25% 0.784704
50% 0.857678
75% 0.918354
max 0.985072
dtype: float64
2024-11-30 0.011139
2014-06-30 0.373610
2024-06-30 0.411560
2020-12-31 0.417950
2008-04-30 0.436142
2017-10-31 0.464513
2025-02-28 0.565186
2014-11-30 0.570015
2024-10-31 0.573248
2019-12-31 0.585244
dtype: float64
"""
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1008pt" height="576pt" viewBox="0 0 1008 576" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2025-03-11T23:33:09.759528</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.6.2, https://matplotlib.org/</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 576
L 1008 576
L 1008 0
L 0 0
z
" style="fill: #ffffff"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 52.715 101.693984
L 997.2 101.693984
L 997.2 33.48
L 52.715 33.48
z
" style="fill: #e5e5e5"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 90.279744 101.693984
L 90.279744 33.48
" clip-path="url(#p35c54033eb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="mfae46ce50b" d="M 0 0
L 0 3.5
" style="stroke: #555555; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mfae46ce50b" x="90.279744" y="101.693984" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 256.637898 101.693984
L 256.637898 33.48
" clip-path="url(#p35c54033eb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#mfae46ce50b" x="256.637898" y="101.693984" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 417.629659 101.693984
L 417.629659 33.48
" clip-path="url(#p35c54033eb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#mfae46ce50b" x="417.629659" y="101.693984" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 583.987812 101.693984
L 583.987812 33.48
" clip-path="url(#p35c54033eb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<g>
<use xlink:href="#mfae46ce50b" x="583.987812" y="101.693984" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 750.345966 101.693984
L 750.345966 33.48
" clip-path="url(#p35c54033eb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#mfae46ce50b" x="750.345966" y="101.693984" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_11">
<path d="M 900.604943 101.693984
L 900.604943 33.48
" clip-path="url(#p35c54033eb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_12">
<g>
<use xlink:href="#mfae46ce50b" x="900.604943" y="101.693984" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_13">
<path d="M 52.715 98.109484
L 997.2 98.109484
" clip-path="url(#p35c54033eb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_14">
<defs>
<path id="mbbfe78cc71" d="M 0 0
L -3.5 0
" style="stroke: #555555; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="98.109484" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- 90 -->
<g style="fill: #555555" transform="translate(32.99 101.908702) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-39" d="M 703 97
L 703 672
Q 941 559 1184 500
Q 1428 441 1663 441
Q 2288 441 2617 861
Q 2947 1281 2994 2138
Q 2813 1869 2534 1725
Q 2256 1581 1919 1581
Q 1219 1581 811 2004
Q 403 2428 403 3163
Q 403 3881 828 4315
Q 1253 4750 1959 4750
Q 2769 4750 3195 4129
Q 3622 3509 3622 2328
Q 3622 1225 3098 567
Q 2575 -91 1691 -91
Q 1453 -91 1209 -44
Q 966 3 703 97
z
M 1959 2075
Q 2384 2075 2632 2365
Q 2881 2656 2881 3163
Q 2881 3666 2632 3958
Q 2384 4250 1959 4250
Q 1534 4250 1286 3958
Q 1038 3666 1038 3163
Q 1038 2656 1286 2365
Q 1534 2075 1959 2075
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-30" d="M 2034 4250
Q 1547 4250 1301 3770
Q 1056 3291 1056 2328
Q 1056 1369 1301 889
Q 1547 409 2034 409
Q 2525 409 2770 889
Q 3016 1369 3016 2328
Q 3016 3291 2770 3770
Q 2525 4250 2034 4250
z
M 2034 4750
Q 2819 4750 3233 4129
Q 3647 3509 3647 2328
Q 3647 1150 3233 529
Q 2819 -91 2034 -91
Q 1250 -91 836 529
Q 422 1150 422 2328
Q 422 3509 836 4129
Q 1250 4750 2034 4750
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_15">
<path d="M 52.715 63.946268
L 997.2 63.946268
" clip-path="url(#p35c54033eb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="63.946268" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 100 -->
<g style="fill: #555555" transform="translate(26.6275 67.745486) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-31" d="M 794 531
L 1825 531
L 1825 4091
L 703 3866
L 703 4441
L 1819 4666
L 2450 4666
L 2450 531
L 3481 531
L 3481 0
L 794 0
L 794 531
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/>
</g>
</g>
</g>
<g id="text_3">
<!-- Index -->
<g style="fill: #555555" transform="translate(20.131875 84.106679) rotate(-90) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-49" d="M 628 4666
L 1259 4666
L 1259 0
L 628 0
L 628 4666
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-6e" d="M 3513 2113
L 3513 0
L 2938 0
L 2938 2094
Q 2938 2591 2744 2837
Q 2550 3084 2163 3084
Q 1697 3084 1428 2787
Q 1159 2491 1159 1978
L 1159 0
L 581 0
L 581 3500
L 1159 3500
L 1159 2956
Q 1366 3272 1645 3428
Q 1925 3584 2291 3584
Q 2894 3584 3203 3211
Q 3513 2838 3513 2113
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-64" d="M 2906 2969
L 2906 4863
L 3481 4863
L 3481 0
L 2906 0
L 2906 525
Q 2725 213 2448 61
Q 2172 -91 1784 -91
Q 1150 -91 751 415
Q 353 922 353 1747
Q 353 2572 751 3078
Q 1150 3584 1784 3584
Q 2172 3584 2448 3432
Q 2725 3281 2906 2969
z
M 947 1747
Q 947 1113 1208 752
Q 1469 391 1925 391
Q 2381 391 2643 752
Q 2906 1113 2906 1747
Q 2906 2381 2643 2742
Q 2381 3103 1925 3103
Q 1469 3103 1208 2742
Q 947 2381 947 1747
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-65" d="M 3597 1894
L 3597 1613
L 953 1613
Q 991 1019 1311 708
Q 1631 397 2203 397
Q 2534 397 2845 478
Q 3156 559 3463 722
L 3463 178
Q 3153 47 2828 -22
Q 2503 -91 2169 -91
Q 1331 -91 842 396
Q 353 884 353 1716
Q 353 2575 817 3079
Q 1281 3584 2069 3584
Q 2775 3584 3186 3129
Q 3597 2675 3597 1894
z
M 3022 2063
Q 3016 2534 2758 2815
Q 2500 3097 2075 3097
Q 1594 3097 1305 2825
Q 1016 2553 972 2059
L 3022 2063
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-78" d="M 3513 3500
L 2247 1797
L 3578 0
L 2900 0
L 1881 1375
L 863 0
L 184 0
L 1544 1831
L 300 3500
L 978 3500
L 1906 2253
L 2834 3500
L 3513 3500
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-49"/>
<use xlink:href="#DejaVuSans-6e" x="29.492188"/>
<use xlink:href="#DejaVuSans-64" x="92.871094"/>
<use xlink:href="#DejaVuSans-65" x="156.347656"/>
<use xlink:href="#DejaVuSans-78" x="216.121094"/>
</g>
</g>
</g>
<g id="line2d_17">
<path d="M 954.268864 72.406728
L 948.902472 70.057276
L 932.803295 60.65947
L 927.436903 62.278522
L 922.070511 55.777967
L 916.704119 59.709951
L 911.337727 55.339728
L 895.238551 48.948733
L 889.872159 54.365862
L 884.505767 48.839173
L 879.139375 48.960906
L 873.772983 47.183601
L 857.673807 45.345429
L 852.307415 38.564887
L 846.941023 36.580636
L 841.574631 37.104089
L 820.109062 38.138821
L 814.74267 38.090128
L 809.376278 41.888205
L 804.009886 40.683046
L 798.643494 40.488273
L 782.544318 42.813377
L 777.177926 39.538753
L 771.811534 40.439579
L 766.445142 42.119498
L 761.07875 44.736763
L 744.979574 42.082978
L 739.613182 40.086553
L 734.24679 42.362964
L 728.880398 40.804779
L 723.514006 43.908977
L 707.41483 38.796181
L 702.048437 37.724928
L 696.682045 39.648313
L 691.315653 41.425619
L 669.850085 45.004576
L 664.483693 48.303546
L 659.117301 48.035733
L 653.750909 54.475422
L 648.384517 55.266688
L 632.285341 55.838834
L 621.552557 50.506918
L 616.186165 50.835598
L 610.819773 46.830574
L 594.720597 48.826999
L 589.354205 53.452862
L 578.62142 52.78333
L 573.255028 51.553824
L 557.155852 47.597494
L 551.78946 43.677683
L 541.056676 43.88463
L 535.690284 47.682707
L 519.591108 48.559186
L 514.224716 52.576383
L 508.858324 52.077277
L 503.491932 40.792606
L 498.12554 38.97878
L 482.026364 40.463926
L 476.659972 40.281326
L 471.29358 38.187514
L 465.927187 41.121285
L 460.560795 39.7457
L 444.461619 37.396248
L 439.095227 38.418808
L 433.728835 37.396248
L 428.362443 39.85526
L 422.996051 39.85526
L 406.896875 40.549139
L 396.164091 42.569911
L 390.797699 41.535178
L 385.431307 42.862071
L 369.332131 44.627203
L 363.965739 46.404508
L 358.599347 48.900039
L 353.232955 49.106986
L 347.866562 50.738211
L 331.767386 52.174663
L 326.400994 47.634014
L 321.034602 44.968056
L 315.66821 44.797629
L 310.301818 43.37335
L 294.202642 44.383736
L 288.83625 46.063655
L 283.469858 48.559186
L 278.103466 58.273499
L 272.737074 62.631549
L 256.637898 62.010709
L 251.271506 63.471508
L 245.905114 56.970953
L 240.538722 56.106647
L 235.17233 56.569233
L 219.073153 57.981339
L 213.706761 57.652659
L 208.340369 58.577832
L 202.973977 55.412768
L 197.607585 55.011048
L 181.508409 53.903275
L 176.142017 55.278861
L 170.775625 55.205821
L 165.409233 56.983126
L 160.042841 54.572808
L 143.943665 57.287459
L 138.577273 59.965591
L 133.210881 59.247365
L 127.844489 61.645509
L 122.478097 64.518414
L 106.37892 61.377696
L 101.012528 64.676667
L 95.646136 63.946268
" clip-path="url(#p35c54033eb)" style="fill: none; stroke: #ff0000; stroke-width: 1.5; stroke-linecap: square"/>
</g>
<g id="line2d_18">
<path d="M 954.268864 73.623556
L 948.902472 73.683292
L 932.803295 65.738358
L 927.436903 68.426494
L 922.070511 65.559149
L 916.704119 73.623556
L 911.337727 74.340392
L 895.238551 75.116964
L 889.872159 74.758546
L 884.505767 70.099111
L 879.139375 71.293838
L 873.772983 73.38461
L 857.673807 71.711993
L 852.307415 69.62122
L 846.941023 71.59252
L 841.574631 69.083593
L 820.109062 71.59252
L 814.74267 72.369092
L 809.376278 76.013009
L 804.009886 77.148
L 798.643494 77.864836
L 782.544318 80.552972
L 777.177926 78.581672
L 771.811534 79.895872
L 766.445142 81.867171
L 761.07875 86.287661
L 744.979574 83.121634
L 739.613182 79.537454
L 734.24679 83.718998
L 728.880398 83.539789
L 723.514006 84.01768
L 707.41483 82.285326
L 702.048437 83.898207
L 696.682045 85.869506
L 691.315653 85.451352
L 669.850085 90.528941
L 664.483693 92.201559
L 659.117301 93.097604
L 653.750909 96.741521
L 648.384517 98.593348
L 632.285341 97.338885
L 621.552557 91.962614
L 616.186165 91.723668
L 610.819773 90.648414
L 594.720597 92.978132
L 589.354205 94.650749
L 578.62142 93.993649
L 573.255028 93.694968
L 557.155852 91.424987
L 551.78946 90.70815
L 541.056676 91.36525
L 535.690284 92.500241
L 519.591108 94.352067
L 514.224716 94.232595
L 508.858324 94.352067
L 503.491932 86.46687
L 498.12554 80.612708
L 482.026364 79.656926
L 476.659972 78.999827
L 471.29358 76.431164
L 465.927187 78.103781
L 460.560795 74.758546
L 444.461619 76.4909
L 439.095227 75.893537
L 433.728835 77.685627
L 428.362443 78.163518
L 422.996051 79.477717
L 406.896875 80.552972
L 396.164091 83.420316
L 390.797699 84.853989
L 385.431307 83.241107
L 369.332131 84.137152
L 363.965739 84.794252
L 358.599347 85.331879
L 353.232955 84.615043
L 347.866562 84.49557
L 331.767386 86.885024
L 326.400994 86.347397
L 321.034602 86.108452
L 315.66821 84.196889
L 310.301818 78.880354
L 294.202642 78.342727
L 288.83625 72.906719
L 283.469858 78.581672
L 278.103466 74.459864
L 272.737074 78.044045
L 256.637898 78.880354
L 251.271506 79.656926
L 245.905114 77.207736
L 240.538722 74.937755
L 235.17233 73.743028
L 219.073153 75.953273
L 213.706761 75.116964
L 208.340369 76.013009
L 202.973977 73.265137
L 197.607585 71.771729
L 181.508409 68.665439
L 176.142017 71.174365
L 170.775625 70.93542
L 165.409233 72.548301
L 160.042841 66.634403
L 143.943665 66.813612
L 138.577273 68.725175
L 133.210881 68.784912
L 127.844489 68.426494
L 122.478097 65.200731
L 106.37892 64.782576
L 101.012528 67.410976
L 95.646136 63.946268
" clip-path="url(#p35c54033eb)" style="fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #0000ff; stroke-width: 1.5"/>
</g>
<g id="patch_3">
<path d="M 52.715 101.693984
L 52.715 33.48
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 997.2 101.693984
L 997.2 33.48
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_5">
<path d="M 52.715 101.693984
L 997.2 101.693984
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_6">
<path d="M 52.715 33.48
L 997.2 33.48
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
</g>
<g id="axes_2">
<g id="patch_7">
<path d="M 52.715 187.803187
L 997.2 187.803187
L 997.2 119.589203
L 52.715 119.589203
z
" style="fill: #e5e5e5"/>
</g>
<g id="matplotlib.axis_3">
<g id="xtick_7">
<g id="line2d_19">
<path d="M 90.279744 187.803187
L 90.279744 119.589203
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_20">
<g>
<use xlink:href="#mfae46ce50b" x="90.279744" y="187.803187" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_21">
<path d="M 256.637898 187.803187
L 256.637898 119.589203
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_22">
<g>
<use xlink:href="#mfae46ce50b" x="256.637898" y="187.803187" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_23">
<path d="M 417.629659 187.803187
L 417.629659 119.589203
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_24">
<g>
<use xlink:href="#mfae46ce50b" x="417.629659" y="187.803187" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_10">
<g id="line2d_25">
<path d="M 583.987812 187.803187
L 583.987812 119.589203
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_26">
<g>
<use xlink:href="#mfae46ce50b" x="583.987812" y="187.803187" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_11">
<g id="line2d_27">
<path d="M 750.345966 187.803187
L 750.345966 119.589203
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_28">
<g>
<use xlink:href="#mfae46ce50b" x="750.345966" y="187.803187" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_12">
<g id="line2d_29">
<path d="M 900.604943 187.803187
L 900.604943 119.589203
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_30">
<g>
<use xlink:href="#mfae46ce50b" x="900.604943" y="187.803187" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_4">
<g id="ytick_3">
<g id="line2d_31">
<path d="M 52.715 179.006836
L 997.2 179.006836
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_32">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="179.006836" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 95 -->
<g style="fill: #555555" transform="translate(32.99 182.806055) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-35" d="M 691 4666
L 3169 4666
L 3169 4134
L 1269 4134
L 1269 2991
Q 1406 3038 1543 3061
Q 1681 3084 1819 3084
Q 2600 3084 3056 2656
Q 3513 2228 3513 1497
Q 3513 744 3044 326
Q 2575 -91 1722 -91
Q 1428 -91 1123 -41
Q 819 9 494 109
L 494 744
Q 775 591 1075 516
Q 1375 441 1709 441
Q 2250 441 2565 725
Q 2881 1009 2881 1497
Q 2881 1984 2565 2268
Q 2250 2553 1709 2553
Q 1456 2553 1204 2497
Q 953 2441 691 2322
L 691 4666
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/>
</g>
</g>
</g>
<g id="ytick_4">
<g id="line2d_33">
<path d="M 52.715 156.65207
L 997.2 156.65207
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_34">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="156.65207" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 100 -->
<g style="fill: #555555" transform="translate(26.6275 160.451289) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/>
</g>
</g>
</g>
<g id="ytick_5">
<g id="line2d_35">
<path d="M 52.715 134.297304
L 997.2 134.297304
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_36">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="134.297304" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_6">
<!-- 105 -->
<g style="fill: #555555" transform="translate(26.6275 138.096523) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/>
</g>
</g>
</g>
<g id="text_7">
<!-- Index -->
<g style="fill: #555555" transform="translate(20.131875 170.215883) rotate(-90) scale(0.12 -0.12)">
<use xlink:href="#DejaVuSans-49"/>
<use xlink:href="#DejaVuSans-6e" x="29.492188"/>
<use xlink:href="#DejaVuSans-64" x="92.871094"/>
<use xlink:href="#DejaVuSans-65" x="156.347656"/>
<use xlink:href="#DejaVuSans-78" x="216.121094"/>
</g>
</g>
</g>
<g id="line2d_37">
<path d="M 954.268864 169.395842
L 948.902472 166.332893
L 932.803295 154.081097
L 927.436903 156.191834
L 922.070511 147.717147
L 916.704119 152.843222
L 911.337727 147.145819
L 895.238551 138.813964
L 889.872159 145.876203
L 884.505767 138.671132
L 879.139375 138.829834
L 873.772983 136.512784
L 857.673807 134.116384
L 852.307415 125.276682
L 846.941023 122.689839
L 841.574631 123.372258
L 820.109062 124.721225
L 814.74267 124.657744
L 809.376278 129.609247
L 804.009886 128.038097
L 798.643494 127.784174
L 782.544318 130.815382
L 777.177926 126.546298
L 771.811534 127.720693
L 766.445142 129.910781
L 761.07875 133.322874
L 744.979574 129.86317
L 739.613182 127.260457
L 734.24679 130.228185
L 728.880398 128.196799
L 723.514006 132.2437
L 707.41483 125.578216
L 702.048437 124.181638
L 696.682045 126.68913
L 691.315653 129.006179
L 669.850085 133.672018
L 664.483693 137.972843
L 659.117301 137.623698
L 653.750909 146.019035
L 648.384517 147.050598
L 632.285341 147.796498
L 621.552557 140.845349
L 616.186165 141.273845
L 610.819773 136.052549
L 594.720597 138.655262
L 589.354205 144.685938
L 578.62142 143.813077
L 573.255028 142.210187
L 557.155852 137.052371
L 551.78946 131.942166
L 541.056676 132.21196
L 535.690284 137.163463
L 519.591108 138.306117
L 514.224716 143.543284
L 508.858324 142.892605
L 503.491932 128.180929
L 498.12554 125.816269
L 482.026364 127.752433
L 476.659972 127.51438
L 471.29358 124.784705
L 465.927187 128.609424
L 460.560795 126.816091
L 444.461619 123.753142
L 439.095227 125.086239
L 433.728835 123.753142
L 428.362443 126.958923
L 422.996051 126.958923
L 406.896875 127.863525
L 396.164091 130.497978
L 390.797699 129.149011
L 385.431307 130.878863
L 369.332131 133.180042
L 363.965739 135.497091
L 358.599347 138.750483
L 353.232955 139.020276
L 347.866562 141.146883
L 331.767386 143.019567
L 326.400994 137.099982
L 321.034602 133.624408
L 315.66821 133.402225
L 310.301818 131.545411
L 294.202642 132.862638
L 288.83625 135.052726
L 283.469858 138.306117
L 278.103466 150.970538
L 272.737074 156.65207
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke: #ff0000; stroke-width: 1.5; stroke-linecap: square"/>
</g>
<g id="line2d_38">
<path d="M 954.268864 150.617955
L 948.902472 150.699497
L 932.803295 139.854398
L 927.436903 143.523792
L 922.070511 139.609772
L 916.704119 150.617955
L 911.337727 151.59646
L 895.238551 152.656507
L 889.872159 152.167255
L 884.505767 145.806971
L 879.139375 147.437813
L 873.772983 150.291786
L 857.673807 148.008608
L 852.307415 145.154634
L 846.941023 147.845524
L 841.574631 144.420756
L 820.109062 147.845524
L 814.74267 148.905571
L 809.376278 153.879639
L 804.009886 155.428939
L 798.643494 156.407444
L 782.544318 160.076838
L 777.177926 157.385949
L 771.811534 159.179875
L 766.445142 161.870764
L 761.07875 167.904879
L 744.979574 163.583148
L 739.613182 158.690622
L 734.24679 164.398569
L 728.880398 164.153943
L 723.514006 164.80628
L 707.41483 162.441559
L 702.048437 164.643195
L 696.682045 167.334085
L 691.315653 166.76329
L 669.850085 173.694368
L 664.483693 175.977547
L 659.117301 177.200678
L 653.750909 182.174746
L 648.384517 184.702551
L 632.285341 182.990167
L 621.552557 175.651379
L 616.186165 175.32521
L 610.819773 173.857452
L 594.720597 177.037594
L 589.354205 179.320773
L 578.62142 178.42381
L 573.255028 178.016099
L 557.155852 174.9175
L 551.78946 173.938995
L 541.056676 174.835958
L 535.690284 176.385257
L 519.591108 178.913062
L 514.224716 178.749978
L 508.858324 178.913062
L 503.491932 168.149506
L 498.12554 160.15838
L 482.026364 158.853707
L 476.659972 157.956744
L 471.29358 154.450433
L 465.927187 156.733612
L 460.560795 152.167255
L 444.461619 154.531976
L 439.095227 153.716555
L 433.728835 156.162817
L 428.362443 156.815154
L 422.996051 158.60908
L 406.896875 160.076838
L 396.164091 163.990859
L 390.797699 165.947869
L 385.431307 163.746232
L 369.332131 164.969364
L 363.965739 165.866327
L 358.599347 166.600206
L 353.232955 165.621701
L 347.866562 165.458616
L 331.767386 168.7203
L 326.400994 167.986421
L 321.034602 167.660253
L 315.66821 165.050906
L 310.301818 157.793659
L 294.202642 157.059781
L 288.83625 149.63945
L 283.469858 157.385949
L 278.103466 151.759544
L 272.737074 156.65207
" clip-path="url(#pc3d05ce94c)" style="fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #0000ff; stroke-width: 1.5"/>
</g>
<g id="patch_8">
<path d="M 52.715 187.803187
L 52.715 119.589203
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_9">
<path d="M 997.2 187.803187
L 997.2 119.589203
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_10">
<path d="M 52.715 187.803187
L 997.2 187.803187
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_11">
<path d="M 52.715 119.589203
L 997.2 119.589203
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
</g>
<g id="axes_3">
<g id="patch_12">
<path d="M 52.715 273.91239
L 997.2 273.91239
L 997.2 205.698407
L 52.715 205.698407
z
" style="fill: #e5e5e5"/>
</g>
<g id="matplotlib.axis_5">
<g id="xtick_13">
<g id="line2d_39">
<path d="M 90.279744 273.91239
L 90.279744 205.698407
" clip-path="url(#p5943192b9a)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_40">
<g>
<use xlink:href="#mfae46ce50b" x="90.279744" y="273.91239" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_14">
<g id="line2d_41">
<path d="M 256.637898 273.91239
L 256.637898 205.698407
" clip-path="url(#p5943192b9a)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_42">
<g>
<use xlink:href="#mfae46ce50b" x="256.637898" y="273.91239" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_15">
<g id="line2d_43">
<path d="M 417.629659 273.91239
L 417.629659 205.698407
" clip-path="url(#p5943192b9a)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_44">
<g>
<use xlink:href="#mfae46ce50b" x="417.629659" y="273.91239" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_16">
<g id="line2d_45">
<path d="M 583.987812 273.91239
L 583.987812 205.698407
" clip-path="url(#p5943192b9a)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_46">
<g>
<use xlink:href="#mfae46ce50b" x="583.987812" y="273.91239" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_17">
<g id="line2d_47">
<path d="M 750.345966 273.91239
L 750.345966 205.698407
" clip-path="url(#p5943192b9a)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_48">
<g>
<use xlink:href="#mfae46ce50b" x="750.345966" y="273.91239" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_18">
<g id="line2d_49">
<path d="M 900.604943 273.91239
L 900.604943 205.698407
" clip-path="url(#p5943192b9a)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_50">
<g>
<use xlink:href="#mfae46ce50b" x="900.604943" y="273.91239" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_6">
<g id="ytick_6">
<g id="line2d_51">
<path d="M 52.715 252.443636
L 997.2 252.443636
" clip-path="url(#p5943192b9a)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_52">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="252.443636" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_8">
<!-- 95 -->
<g style="fill: #555555" transform="translate(32.99 256.242855) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/>
</g>
</g>
</g>
<g id="ytick_7">
<g id="line2d_53">
<path d="M 52.715 228.898242
L 997.2 228.898242
" clip-path="url(#p5943192b9a)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_54">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="228.898242" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_9">
<!-- 100 -->
<g style="fill: #555555" transform="translate(26.6275 232.697461) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/>
</g>
</g>
</g>
<g id="text_10">
<!-- Index -->
<g style="fill: #555555" transform="translate(20.131875 256.325086) rotate(-90) scale(0.12 -0.12)">
<use xlink:href="#DejaVuSans-49"/>
<use xlink:href="#DejaVuSans-6e" x="29.492188"/>
<use xlink:href="#DejaVuSans-64" x="92.871094"/>
<use xlink:href="#DejaVuSans-65" x="156.347656"/>
<use xlink:href="#DejaVuSans-78" x="216.121094"/>
</g>
</g>
</g>
<g id="line2d_55">
<path d="M 954.268864 270.811755
L 948.902472 267.786583
L 932.803295 255.685898
L 927.436903 257.770602
L 922.070511 249.400439
L 916.704119 254.46329
L 911.337727 248.836158
L 895.238551 240.607066
L 889.872159 247.582201
L 884.505767 240.465996
L 879.139375 240.62274
L 873.772983 238.334269
L 857.673807 235.967425
L 852.307415 227.236749
L 846.941023 224.681812
L 841.574631 225.355814
L 820.109062 226.688143
L 814.74267 226.625445
L 809.376278 231.515878
L 804.009886 229.964106
L 798.643494 229.713314
L 782.544318 232.707137
L 777.177926 228.490706
L 771.811534 229.650617
L 766.445142 231.813692
L 761.07875 235.183702
L 744.979574 231.766669
L 739.613182 229.196057
L 734.24679 232.127182
L 728.880398 230.12085
L 723.514006 234.117838
L 707.41483 227.534564
L 702.048437 226.155211
L 696.682045 228.631777
L 691.315653 230.920248
L 669.850085 235.52854
L 664.483693 239.776319
L 659.117301 239.431481
L 653.750909 247.723272
L 648.384517 248.742112
L 632.285341 249.478811
L 621.552557 242.613397
L 616.186165 243.036607
L 610.819773 237.879709
L 594.720597 240.450321
L 589.354205 246.406617
L 578.62142 245.544521
L 573.255028 243.961401
L 557.155852 238.8672
L 551.78946 233.820024
L 541.056676 234.086489
L 535.690284 238.976922
L 519.591108 240.105483
L 514.224716 245.278055
L 508.858324 244.635403
L 503.491932 230.105176
L 498.12554 227.769681
L 482.026364 229.681965
L 476.659972 229.446849
L 471.29358 226.750841
L 465.927187 230.528386
L 460.560795 228.757172
L 444.461619 225.732001
L 439.095227 227.048656
L 433.728835 225.732001
L 428.362443 228.898242
L 422.996051 228.898242
" clip-path="url(#p5943192b9a)" style="fill: none; stroke: #ff0000; stroke-width: 1.5; stroke-linecap: square"/>
</g>
<g id="line2d_56">
<path d="M 954.268864 220.444502
L 948.902472 220.530764
L 932.803295 209.05783
L 927.436903 212.93965
L 922.070511 208.799042
L 916.704119 220.444502
L 911.337727 221.479653
L 895.238551 222.601068
L 889.872159 222.083492
L 884.505767 215.355004
L 879.139375 217.080258
L 873.772983 220.099451
L 857.673807 217.684096
L 852.307415 214.664903
L 846.941023 217.511571
L 841.574631 213.888539
L 820.109062 217.511571
L 814.74267 218.632986
L 809.376278 223.895008
L 804.009886 225.533999
L 798.643494 226.569151
L 782.544318 230.45097
L 777.177926 227.604302
L 771.811534 229.502081
L 766.445142 232.348749
L 761.07875 238.732186
L 744.979574 234.160265
L 739.613182 228.984505
L 734.24679 235.022891
L 728.880398 234.764103
L 723.514006 235.454205
L 707.41483 232.952587
L 702.048437 235.281679
L 696.682045 238.128347
L 691.315653 237.524509
L 669.850085 244.856835
L 664.483693 247.272189
L 659.117301 248.566129
L 653.750909 253.828152
L 648.384517 256.502294
L 632.285341 254.690778
L 621.552557 246.927139
L 616.186165 246.582088
L 610.819773 245.02936
L 594.720597 248.393604
L 589.354205 250.808958
L 578.62142 249.860069
L 573.255028 249.428756
L 557.155852 246.150775
L 551.78946 245.115623
L 541.056676 246.064512
L 535.690284 247.703503
L 519.591108 250.377645
L 514.224716 250.20512
L 508.858324 250.377645
L 503.491932 238.990974
L 498.12554 230.537233
L 482.026364 229.15703
L 476.659972 228.208141
L 471.29358 224.498847
L 465.927187 226.914201
L 460.560795 222.083492
L 444.461619 224.585109
L 439.095227 223.722483
L 433.728835 226.310363
L 428.362443 227.000464
L 422.996051 228.898242
" clip-path="url(#p5943192b9a)" style="fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #0000ff; stroke-width: 1.5"/>
</g>
<g id="patch_13">
<path d="M 52.715 273.91239
L 52.715 205.698407
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_14">
<path d="M 997.2 273.91239
L 997.2 205.698407
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_15">
<path d="M 52.715 273.91239
L 997.2 273.91239
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_16">
<path d="M 52.715 205.698407
L 997.2 205.698407
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
</g>
<g id="axes_4">
<g id="patch_17">
<path d="M 52.715 360.021593
L 997.2 360.021593
L 997.2 291.80761
L 52.715 291.80761
z
" style="fill: #e5e5e5"/>
</g>
<g id="matplotlib.axis_7">
<g id="xtick_19">
<g id="line2d_57">
<path d="M 90.279744 360.021593
L 90.279744 291.80761
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_58">
<g>
<use xlink:href="#mfae46ce50b" x="90.279744" y="360.021593" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_20">
<g id="line2d_59">
<path d="M 256.637898 360.021593
L 256.637898 291.80761
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_60">
<g>
<use xlink:href="#mfae46ce50b" x="256.637898" y="360.021593" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_21">
<g id="line2d_61">
<path d="M 417.629659 360.021593
L 417.629659 291.80761
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_62">
<g>
<use xlink:href="#mfae46ce50b" x="417.629659" y="360.021593" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_22">
<g id="line2d_63">
<path d="M 583.987812 360.021593
L 583.987812 291.80761
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_64">
<g>
<use xlink:href="#mfae46ce50b" x="583.987812" y="360.021593" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_23">
<g id="line2d_65">
<path d="M 750.345966 360.021593
L 750.345966 291.80761
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_66">
<g>
<use xlink:href="#mfae46ce50b" x="750.345966" y="360.021593" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_24">
<g id="line2d_67">
<path d="M 900.604943 360.021593
L 900.604943 291.80761
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_68">
<g>
<use xlink:href="#mfae46ce50b" x="900.604943" y="360.021593" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_8">
<g id="ytick_8">
<g id="line2d_69">
<path d="M 52.715 334.273976
L 997.2 334.273976
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_70">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="334.273976" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_11">
<!-- 100 -->
<g style="fill: #555555" transform="translate(26.6275 338.073195) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/>
</g>
</g>
</g>
<g id="ytick_9">
<g id="line2d_71">
<path d="M 52.715 292.200336
L 997.2 292.200336
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_72">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="292.200336" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_12">
<!-- 110 -->
<g style="fill: #555555" transform="translate(26.6275 295.999555) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-31" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/>
</g>
</g>
</g>
<g id="text_13">
<!-- Index -->
<g style="fill: #555555" transform="translate(20.131875 342.434289) rotate(-90) scale(0.12 -0.12)">
<use xlink:href="#DejaVuSans-49"/>
<use xlink:href="#DejaVuSans-6e" x="29.492188"/>
<use xlink:href="#DejaVuSans-64" x="92.871094"/>
<use xlink:href="#DejaVuSans-65" x="156.347656"/>
<use xlink:href="#DejaVuSans-78" x="216.121094"/>
</g>
</g>
</g>
<g id="line2d_73">
<path d="M 954.268864 356.920958
L 948.902472 354.113721
L 932.803295 342.884775
L 927.436903 344.819295
L 922.070511 337.052123
L 916.704119 341.750244
L 911.337727 336.528493
L 895.238551 328.892227
L 889.872159 335.364871
L 884.505767 328.76132
L 879.139375 328.906773
L 873.772983 326.783164
L 857.673807 324.586828
L 852.307415 316.485114
L 846.941023 314.114236
L 841.574631 314.739682
L 820.109062 315.97603
L 814.74267 315.917849
L 809.376278 320.455972
L 804.009886 319.015991
L 798.643494 318.783267
L 782.544318 321.561413
L 777.177926 317.648736
L 771.811534 318.725086
L 766.445142 320.732332
L 761.07875 323.859565
L 744.979574 320.688697
L 739.613182 318.303273
L 734.24679 321.023238
L 728.880398 319.161444
L 723.514006 322.870487
L 707.41483 316.761474
L 702.048437 315.481491
L 696.682045 317.779643
L 691.315653 319.903252
L 669.850085 324.179561
L 664.483693 328.121328
L 659.117301 327.801332
L 653.750909 335.495779
L 648.384517 336.441221
L 632.285341 337.124849
L 621.552557 330.754022
L 616.186165 331.146744
L 610.819773 326.361351
L 594.720597 328.746775
L 589.354205 334.273976
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke: #ff0000; stroke-width: 1.5; stroke-linecap: square"/>
</g>
<g id="line2d_74">
<path d="M 954.268864 305.820717
L 948.902472 305.90155
L 932.803295 295.150745
L 927.436903 298.788235
L 922.070511 294.908245
L 916.704119 305.820717
L 911.337727 306.790715
L 895.238551 307.841545
L 889.872159 307.356546
L 884.505767 301.051563
L 879.139375 302.668225
L 873.772983 305.497385
L 857.673807 303.234057
L 852.307415 300.404898
L 846.941023 303.072391
L 841.574631 299.6774
L 820.109062 303.072391
L 814.74267 304.123221
L 809.376278 309.054042
L 804.009886 310.589871
L 798.643494 311.559869
L 782.544318 315.197359
L 777.177926 312.529866
L 771.811534 314.308195
L 766.445142 316.975688
L 761.07875 322.957339
L 744.979574 318.673184
L 739.613182 313.823196
L 734.24679 319.481515
L 728.880398 319.239016
L 723.514006 319.885681
L 707.41483 317.54152
L 702.048437 319.724014
L 696.682045 322.391507
L 691.315653 321.825675
L 669.850085 328.696491
L 664.483693 330.959818
L 659.117301 332.172315
L 653.750909 337.103136
L 648.384517 339.608963
L 632.285341 337.911467
L 621.552557 330.636486
L 616.186165 330.313153
L 610.819773 328.858157
L 594.720597 332.010649
L 589.354205 334.273976
" clip-path="url(#pdfff1a1bdb)" style="fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #0000ff; stroke-width: 1.5"/>
</g>
<g id="patch_18">
<path d="M 52.715 360.021593
L 52.715 291.80761
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_19">
<path d="M 997.2 360.021593
L 997.2 291.80761
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_20">
<path d="M 52.715 360.021593
L 997.2 360.021593
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_21">
<path d="M 52.715 291.80761
L 997.2 291.80761
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
</g>
<g id="axes_5">
<g id="patch_22">
<path d="M 52.715 446.130797
L 997.2 446.130797
L 997.2 377.916813
L 52.715 377.916813
z
" style="fill: #e5e5e5"/>
</g>
<g id="matplotlib.axis_9">
<g id="xtick_25">
<g id="line2d_75">
<path d="M 90.279744 446.130797
L 90.279744 377.916813
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_76">
<g>
<use xlink:href="#mfae46ce50b" x="90.279744" y="446.130797" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_26">
<g id="line2d_77">
<path d="M 256.637898 446.130797
L 256.637898 377.916813
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_78">
<g>
<use xlink:href="#mfae46ce50b" x="256.637898" y="446.130797" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_27">
<g id="line2d_79">
<path d="M 417.629659 446.130797
L 417.629659 377.916813
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_80">
<g>
<use xlink:href="#mfae46ce50b" x="417.629659" y="446.130797" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_28">
<g id="line2d_81">
<path d="M 583.987812 446.130797
L 583.987812 377.916813
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_82">
<g>
<use xlink:href="#mfae46ce50b" x="583.987812" y="446.130797" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_29">
<g id="line2d_83">
<path d="M 750.345966 446.130797
L 750.345966 377.916813
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_84">
<g>
<use xlink:href="#mfae46ce50b" x="750.345966" y="446.130797" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="xtick_30">
<g id="line2d_85">
<path d="M 900.604943 446.130797
L 900.604943 377.916813
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_86">
<g>
<use xlink:href="#mfae46ce50b" x="900.604943" y="446.130797" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_10">
<g id="ytick_10">
<g id="line2d_87">
<path d="M 52.715 431.345268
L 997.2 431.345268
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_88">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="431.345268" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_14">
<!-- 95 -->
<g style="fill: #555555" transform="translate(32.99 435.144487) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/>
</g>
</g>
</g>
<g id="ytick_11">
<g id="line2d_89">
<path d="M 52.715 409.448468
L 997.2 409.448468
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_90">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="409.448468" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_15">
<!-- 100 -->
<g style="fill: #555555" transform="translate(26.6275 413.247686) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/>
</g>
</g>
</g>
<g id="ytick_12">
<g id="line2d_91">
<path d="M 52.715 387.551667
L 997.2 387.551667
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_92">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="387.551667" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_16">
<!-- 105 -->
<g style="fill: #555555" transform="translate(26.6275 391.350886) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-35" x="127.246094"/>
</g>
</g>
</g>
<g id="text_17">
<!-- Index -->
<g style="fill: #555555" transform="translate(20.131875 428.543492) rotate(-90) scale(0.12 -0.12)">
<use xlink:href="#DejaVuSans-49"/>
<use xlink:href="#DejaVuSans-6e" x="29.492188"/>
<use xlink:href="#DejaVuSans-64" x="92.871094"/>
<use xlink:href="#DejaVuSans-65" x="156.347656"/>
<use xlink:href="#DejaVuSans-78" x="216.121094"/>
</g>
</g>
</g>
<g id="line2d_93">
<path d="M 954.268864 443.030161
L 948.902472 440.178746
L 932.803295 428.773085
L 927.436903 430.73805
L 922.070511 422.848642
L 916.704119 427.620699
L 911.337727 422.316772
L 895.238551 414.560331
L 889.872159 421.134838
L 884.505767 414.427364
L 879.139375 414.575105
L 873.772983 412.418076
L 857.673807 410.187176
L 852.307415 401.957962
L 846.941023 399.549772
L 841.574631 400.185062
L 820.109062 401.440866
L 814.74267 401.38177
L 809.376278 405.991311
L 804.009886 404.528668
L 798.643494 404.292282
L 782.544318 407.114148
L 777.177926 403.139896
L 771.811534 404.233185
L 766.445142 406.272021
L 761.07875 409.448468
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke: #ff0000; stroke-width: 1.5; stroke-linecap: square"/>
</g>
<g id="line2d_94">
<path d="M 954.268864 392.078508
L 948.902472 392.160442
L 932.803295 381.26325
L 927.436903 384.95027
L 922.070511 381.017449
L 916.704119 392.078508
L 911.337727 393.061713
L 895.238551 394.126852
L 889.872159 393.63525
L 884.505767 387.244415
L 879.139375 388.883091
L 873.772983 391.750773
L 857.673807 389.456627
L 852.307415 386.588945
L 846.941023 389.29276
L 841.574631 385.851541
L 820.109062 389.29276
L 814.74267 390.357899
L 809.376278 395.355859
L 804.009886 396.912601
L 798.643494 397.895806
L 782.544318 401.582826
L 777.177926 398.879011
L 771.811534 400.681554
L 766.445142 403.385369
L 761.07875 409.448468
" clip-path="url(#p98cef4f0ea)" style="fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #0000ff; stroke-width: 1.5"/>
</g>
<g id="patch_23">
<path d="M 52.715 446.130797
L 52.715 377.916813
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_24">
<path d="M 997.2 446.130797
L 997.2 377.916813
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_25">
<path d="M 52.715 446.130797
L 997.2 446.130797
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_26">
<path d="M 52.715 377.916813
L 997.2 377.916813
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
</g>
<g id="axes_6">
<g id="patch_27">
<path d="M 52.715 532.24
L 997.2 532.24
L 997.2 464.026016
L 52.715 464.026016
z
" style="fill: #e5e5e5"/>
</g>
<g id="matplotlib.axis_11">
<g id="xtick_31">
<g id="line2d_95">
<path d="M 90.279744 532.24
L 90.279744 464.026016
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_96">
<g>
<use xlink:href="#mfae46ce50b" x="90.279744" y="532.24" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_18">
<!-- 2024-10 -->
<g style="fill: #555555" transform="translate(69.388338 546.838438) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-32" d="M 1228 531
L 3431 531
L 3431 0
L 469 0
L 469 531
Q 828 903 1448 1529
Q 2069 2156 2228 2338
Q 2531 2678 2651 2914
Q 2772 3150 2772 3378
Q 2772 3750 2511 3984
Q 2250 4219 1831 4219
Q 1534 4219 1204 4116
Q 875 4013 500 3803
L 500 4441
Q 881 4594 1212 4672
Q 1544 4750 1819 4750
Q 2544 4750 2975 4387
Q 3406 4025 3406 3419
Q 3406 3131 3298 2873
Q 3191 2616 2906 2266
Q 2828 2175 2409 1742
Q 1991 1309 1228 531
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-34" d="M 2419 4116
L 825 1625
L 2419 1625
L 2419 4116
z
M 2253 4666
L 3047 4666
L 3047 1625
L 3713 1625
L 3713 1100
L 3047 1100
L 3047 0
L 2419 0
L 2419 1100
L 313 1100
L 313 1709
L 2253 4666
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-2d" d="M 313 2009
L 1997 2009
L 1997 1497
L 313 1497
L 313 2009
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-32" x="127.246094"/>
<use xlink:href="#DejaVuSans-34" x="190.869141"/>
<use xlink:href="#DejaVuSans-2d" x="254.492188"/>
<use xlink:href="#DejaVuSans-31" x="290.576172"/>
<use xlink:href="#DejaVuSans-30" x="354.199219"/>
</g>
</g>
</g>
<g id="xtick_32">
<g id="line2d_97">
<path d="M 256.637898 532.24
L 256.637898 464.026016
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_98">
<g>
<use xlink:href="#mfae46ce50b" x="256.637898" y="532.24" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_19">
<!-- 2024-11 -->
<g style="fill: #555555" transform="translate(235.746491 546.838438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-32" x="127.246094"/>
<use xlink:href="#DejaVuSans-34" x="190.869141"/>
<use xlink:href="#DejaVuSans-2d" x="254.492188"/>
<use xlink:href="#DejaVuSans-31" x="290.576172"/>
<use xlink:href="#DejaVuSans-31" x="354.199219"/>
</g>
</g>
</g>
<g id="xtick_33">
<g id="line2d_99">
<path d="M 417.629659 532.24
L 417.629659 464.026016
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_100">
<g>
<use xlink:href="#mfae46ce50b" x="417.629659" y="532.24" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_20">
<!-- 2024-12 -->
<g style="fill: #555555" transform="translate(396.738253 546.838438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-32" x="127.246094"/>
<use xlink:href="#DejaVuSans-34" x="190.869141"/>
<use xlink:href="#DejaVuSans-2d" x="254.492188"/>
<use xlink:href="#DejaVuSans-31" x="290.576172"/>
<use xlink:href="#DejaVuSans-32" x="354.199219"/>
</g>
</g>
</g>
<g id="xtick_34">
<g id="line2d_101">
<path d="M 583.987812 532.24
L 583.987812 464.026016
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_102">
<g>
<use xlink:href="#mfae46ce50b" x="583.987812" y="532.24" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_21">
<!-- 2025-01 -->
<g style="fill: #555555" transform="translate(563.096406 546.838438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-32" x="127.246094"/>
<use xlink:href="#DejaVuSans-35" x="190.869141"/>
<use xlink:href="#DejaVuSans-2d" x="254.492188"/>
<use xlink:href="#DejaVuSans-30" x="290.576172"/>
<use xlink:href="#DejaVuSans-31" x="354.199219"/>
</g>
</g>
</g>
<g id="xtick_35">
<g id="line2d_103">
<path d="M 750.345966 532.24
L 750.345966 464.026016
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_104">
<g>
<use xlink:href="#mfae46ce50b" x="750.345966" y="532.24" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_22">
<!-- 2025-02 -->
<g style="fill: #555555" transform="translate(729.45456 546.838438) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-32" x="127.246094"/>
<use xlink:href="#DejaVuSans-35" x="190.869141"/>
<use xlink:href="#DejaVuSans-2d" x="254.492188"/>
<use xlink:href="#DejaVuSans-30" x="290.576172"/>
<use xlink:href="#DejaVuSans-32" x="354.199219"/>
</g>
</g>
</g>
<g id="xtick_36">
<g id="line2d_105">
<path d="M 900.604943 532.24
L 900.604943 464.026016
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_106">
<g>
<use xlink:href="#mfae46ce50b" x="900.604943" y="532.24" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_23">
<!-- 2025-03 -->
<g style="fill: #555555" transform="translate(879.713537 546.838438) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-33" d="M 2597 2516
Q 3050 2419 3304 2112
Q 3559 1806 3559 1356
Q 3559 666 3084 287
Q 2609 -91 1734 -91
Q 1441 -91 1130 -33
Q 819 25 488 141
L 488 750
Q 750 597 1062 519
Q 1375 441 1716 441
Q 2309 441 2620 675
Q 2931 909 2931 1356
Q 2931 1769 2642 2001
Q 2353 2234 1838 2234
L 1294 2234
L 1294 2753
L 1863 2753
Q 2328 2753 2575 2939
Q 2822 3125 2822 3475
Q 2822 3834 2567 4026
Q 2313 4219 1838 4219
Q 1578 4219 1281 4162
Q 984 4106 628 3988
L 628 4550
Q 988 4650 1302 4700
Q 1616 4750 1894 4750
Q 2613 4750 3031 4423
Q 3450 4097 3450 3541
Q 3450 3153 3228 2886
Q 3006 2619 2597 2516
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-32"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-32" x="127.246094"/>
<use xlink:href="#DejaVuSans-35" x="190.869141"/>
<use xlink:href="#DejaVuSans-2d" x="254.492188"/>
<use xlink:href="#DejaVuSans-30" x="290.576172"/>
<use xlink:href="#DejaVuSans-33" x="354.199219"/>
</g>
</g>
</g>
<g id="text_24">
<!-- Date -->
<g style="fill: #555555" transform="translate(510.616562 562.03625) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-44" d="M 1259 4147
L 1259 519
L 2022 519
Q 2988 519 3436 956
Q 3884 1394 3884 2338
Q 3884 3275 3436 3711
Q 2988 4147 2022 4147
L 1259 4147
z
M 628 4666
L 1925 4666
Q 3281 4666 3915 4102
Q 4550 3538 4550 2338
Q 4550 1131 3912 565
Q 3275 0 1925 0
L 628 0
L 628 4666
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-61" d="M 2194 1759
Q 1497 1759 1228 1600
Q 959 1441 959 1056
Q 959 750 1161 570
Q 1363 391 1709 391
Q 2188 391 2477 730
Q 2766 1069 2766 1631
L 2766 1759
L 2194 1759
z
M 3341 1997
L 3341 0
L 2766 0
L 2766 531
Q 2569 213 2275 61
Q 1981 -91 1556 -91
Q 1019 -91 701 211
Q 384 513 384 1019
Q 384 1609 779 1909
Q 1175 2209 1959 2209
L 2766 2209
L 2766 2266
Q 2766 2663 2505 2880
Q 2244 3097 1772 3097
Q 1472 3097 1187 3025
Q 903 2953 641 2809
L 641 3341
Q 956 3463 1253 3523
Q 1550 3584 1831 3584
Q 2591 3584 2966 3190
Q 3341 2797 3341 1997
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-74" d="M 1172 4494
L 1172 3500
L 2356 3500
L 2356 3053
L 1172 3053
L 1172 1153
Q 1172 725 1289 603
Q 1406 481 1766 481
L 2356 481
L 2356 0
L 1766 0
Q 1100 0 847 248
Q 594 497 594 1153
L 594 3053
L 172 3053
L 172 3500
L 594 3500
L 594 4494
L 1172 4494
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-44"/>
<use xlink:href="#DejaVuSans-61" x="77.001953"/>
<use xlink:href="#DejaVuSans-74" x="138.28125"/>
<use xlink:href="#DejaVuSans-65" x="177.490234"/>
</g>
</g>
</g>
<g id="matplotlib.axis_12">
<g id="ytick_13">
<g id="line2d_107">
<path d="M 52.715 530.186407
L 997.2 530.186407
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_108">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="530.186407" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_25">
<!-- 95 -->
<g style="fill: #555555" transform="translate(32.99 533.985626) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-39"/>
<use xlink:href="#DejaVuSans-35" x="63.623047"/>
</g>
</g>
</g>
<g id="ytick_14">
<g id="line2d_109">
<path d="M 52.715 488.976467
L 997.2 488.976467
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke: #ffffff; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_110">
<g>
<use xlink:href="#mbbfe78cc71" x="52.715" y="488.976467" style="fill: #555555; stroke: #555555; stroke-width: 0.8"/>
</g>
</g>
<g id="text_26">
<!-- 100 -->
<g style="fill: #555555" transform="translate(26.6275 492.775686) scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-31"/>
<use xlink:href="#DejaVuSans-30" x="63.623047"/>
<use xlink:href="#DejaVuSans-30" x="127.246094"/>
</g>
</g>
</g>
<g id="text_27">
<!-- Index -->
<g style="fill: #555555" transform="translate(20.131875 514.652696) rotate(-90) scale(0.12 -0.12)">
<use xlink:href="#DejaVuSans-49"/>
<use xlink:href="#DejaVuSans-6e" x="29.492188"/>
<use xlink:href="#DejaVuSans-64" x="92.871094"/>
<use xlink:href="#DejaVuSans-65" x="156.347656"/>
<use xlink:href="#DejaVuSans-78" x="216.121094"/>
</g>
</g>
</g>
<g id="line2d_111">
<path d="M 954.268864 529.139364
L 948.902472 523.61052
L 932.803295 501.495145
L 927.436903 505.305177
L 922.070511 490.007754
L 916.704119 499.26069
L 911.337727 488.976467
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke: #ff0000; stroke-width: 1.5; stroke-linecap: square"/>
</g>
<g id="line2d_112">
<path d="M 954.268864 487.192809
L 948.902472 487.341447
L 932.803295 467.572567
L 927.436903 474.261285
L 922.070511 467.126652
L 916.704119 487.192809
L 911.337727 488.976467
" clip-path="url(#p783a6bf28d)" style="fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #0000ff; stroke-width: 1.5"/>
</g>
<g id="patch_28">
<path d="M 52.715 532.24
L 52.715 464.026016
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_29">
<path d="M 997.2 532.24
L 997.2 464.026016
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_30">
<path d="M 52.715 532.24
L 997.2 532.24
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_31">
<path d="M 52.715 464.026016
L 997.2 464.026016
" style="fill: none; stroke: #ffffff; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="legend_1">
<g id="patch_32">
<path d="M 59.715 501.382266
L 152.72125 501.382266
Q 154.72125 501.382266 154.72125 499.382266
L 154.72125 471.026016
Q 154.72125 469.026016 152.72125 469.026016
L 59.715 469.026016
Q 57.715 469.026016 57.715 471.026016
L 57.715 499.382266
Q 57.715 501.382266 59.715 501.382266
z
" style="fill: #e5e5e5; opacity: 0.8; stroke: #cccccc; stroke-width: 0.5; stroke-linejoin: miter"/>
</g>
<g id="line2d_113">
<path d="M 61.715 477.124454
L 71.715 477.124454
L 81.715 477.124454
" style="fill: none; stroke: #ff0000; stroke-width: 1.5; stroke-linecap: square"/>
</g>
<g id="text_28">
<!-- US -->
<g transform="translate(89.715 480.624454) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-55" d="M 556 4666
L 1191 4666
L 1191 1831
Q 1191 1081 1462 751
Q 1734 422 2344 422
Q 2950 422 3222 751
Q 3494 1081 3494 1831
L 3494 4666
L 4128 4666
L 4128 1753
Q 4128 841 3676 375
Q 3225 -91 2344 -91
Q 1459 -91 1007 375
Q 556 841 556 1753
L 556 4666
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-53" d="M 3425 4513
L 3425 3897
Q 3066 4069 2747 4153
Q 2428 4238 2131 4238
Q 1616 4238 1336 4038
Q 1056 3838 1056 3469
Q 1056 3159 1242 3001
Q 1428 2844 1947 2747
L 2328 2669
Q 3034 2534 3370 2195
Q 3706 1856 3706 1288
Q 3706 609 3251 259
Q 2797 -91 1919 -91
Q 1588 -91 1214 -16
Q 841 59 441 206
L 441 856
Q 825 641 1194 531
Q 1563 422 1919 422
Q 2459 422 2753 634
Q 3047 847 3047 1241
Q 3047 1584 2836 1778
Q 2625 1972 2144 2069
L 1759 2144
Q 1053 2284 737 2584
Q 422 2884 422 3419
Q 422 4038 858 4394
Q 1294 4750 2059 4750
Q 2388 4750 2728 4690
Q 3069 4631 3425 4513
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-55"/>
<use xlink:href="#DejaVuSans-53" x="73.193359"/>
</g>
</g>
<g id="line2d_114">
<path d="M 61.715 491.802579
L 71.715 491.802579
L 81.715 491.802579
" style="fill: none; stroke-dasharray: 9.6,2.4,1.5,2.4; stroke-dashoffset: 0; stroke: #0000ff; stroke-width: 1.5"/>
</g>
<g id="text_29">
<!-- World ex-US -->
<g transform="translate(89.715 495.302579) scale(0.1 -0.1)">
<defs>
<path id="DejaVuSans-57" d="M 213 4666
L 850 4666
L 1831 722
L 2809 4666
L 3519 4666
L 4500 722
L 5478 4666
L 6119 4666
L 4947 0
L 4153 0
L 3169 4050
L 2175 0
L 1381 0
L 213 4666
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-6f" d="M 1959 3097
Q 1497 3097 1228 2736
Q 959 2375 959 1747
Q 959 1119 1226 758
Q 1494 397 1959 397
Q 2419 397 2687 759
Q 2956 1122 2956 1747
Q 2956 2369 2687 2733
Q 2419 3097 1959 3097
z
M 1959 3584
Q 2709 3584 3137 3096
Q 3566 2609 3566 1747
Q 3566 888 3137 398
Q 2709 -91 1959 -91
Q 1206 -91 779 398
Q 353 888 353 1747
Q 353 2609 779 3096
Q 1206 3584 1959 3584
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-72" d="M 2631 2963
Q 2534 3019 2420 3045
Q 2306 3072 2169 3072
Q 1681 3072 1420 2755
Q 1159 2438 1159 1844
L 1159 0
L 581 0
L 581 3500
L 1159 3500
L 1159 2956
Q 1341 3275 1631 3429
Q 1922 3584 2338 3584
Q 2397 3584 2469 3576
Q 2541 3569 2628 3553
L 2631 2963
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-6c" d="M 603 4863
L 1178 4863
L 1178 0
L 603 0
L 603 4863
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-20" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-57"/>
<use xlink:href="#DejaVuSans-6f" x="93.001953"/>
<use xlink:href="#DejaVuSans-72" x="154.183594"/>
<use xlink:href="#DejaVuSans-6c" x="195.296875"/>
<use xlink:href="#DejaVuSans-64" x="223.080078"/>
<use xlink:href="#DejaVuSans-20" x="286.556641"/>
<use xlink:href="#DejaVuSans-65" x="318.34375"/>
<use xlink:href="#DejaVuSans-78" x="378.117188"/>
<use xlink:href="#DejaVuSans-2d" x="437.296875"/>
<use xlink:href="#DejaVuSans-55" x="473.380859"/>
<use xlink:href="#DejaVuSans-53" x="546.574219"/>
</g>
</g>
</g>
</g>
<g id="text_30">
<!-- US ($VTI, red solid) and World ex-US ($ACWX, blue dashed), rebased -->
<g transform="translate(297.462188 20.638125) scale(0.12 -0.12)">
<defs>
<path id="DejaVuSans-28" d="M 1984 4856
Q 1566 4138 1362 3434
Q 1159 2731 1159 2009
Q 1159 1288 1364 580
Q 1569 -128 1984 -844
L 1484 -844
Q 1016 -109 783 600
Q 550 1309 550 2009
Q 550 2706 781 3412
Q 1013 4119 1484 4856
L 1984 4856
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-24" d="M 2163 -941
L 1850 -941
L 1847 0
Q 1519 6 1191 76
Q 863 147 531 288
L 531 850
Q 850 650 1176 548
Q 1503 447 1850 444
L 1850 1869
Q 1159 1981 845 2250
Q 531 2519 531 2988
Q 531 3497 872 3790
Q 1213 4084 1850 4128
L 1850 4863
L 2163 4863
L 2163 4138
Q 2453 4125 2725 4076
Q 2997 4028 3256 3944
L 3256 3397
Q 2997 3528 2723 3600
Q 2450 3672 2163 3684
L 2163 2350
Q 2872 2241 3206 1959
Q 3541 1678 3541 1191
Q 3541 663 3186 358
Q 2831 53 2163 6
L 2163 -941
z
M 1850 2406
L 1850 3688
Q 1488 3647 1297 3481
Q 1106 3316 1106 3041
Q 1106 2772 1282 2622
Q 1459 2472 1850 2406
z
M 2163 1806
L 2163 453
Q 2559 506 2761 678
Q 2963 850 2963 1131
Q 2963 1406 2770 1568
Q 2578 1731 2163 1806
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-56" d="M 1831 0
L 50 4666
L 709 4666
L 2188 738
L 3669 4666
L 4325 4666
L 2547 0
L 1831 0
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-54" d="M -19 4666
L 3928 4666
L 3928 4134
L 2272 4134
L 2272 0
L 1638 0
L 1638 4134
L -19 4134
L -19 4666
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-2c" d="M 750 794
L 1409 794
L 1409 256
L 897 -744
L 494 -744
L 750 256
L 750 794
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-73" d="M 2834 3397
L 2834 2853
Q 2591 2978 2328 3040
Q 2066 3103 1784 3103
Q 1356 3103 1142 2972
Q 928 2841 928 2578
Q 928 2378 1081 2264
Q 1234 2150 1697 2047
L 1894 2003
Q 2506 1872 2764 1633
Q 3022 1394 3022 966
Q 3022 478 2636 193
Q 2250 -91 1575 -91
Q 1294 -91 989 -36
Q 684 19 347 128
L 347 722
Q 666 556 975 473
Q 1284 391 1588 391
Q 1994 391 2212 530
Q 2431 669 2431 922
Q 2431 1156 2273 1281
Q 2116 1406 1581 1522
L 1381 1569
Q 847 1681 609 1914
Q 372 2147 372 2553
Q 372 3047 722 3315
Q 1072 3584 1716 3584
Q 2034 3584 2315 3537
Q 2597 3491 2834 3397
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-69" d="M 603 3500
L 1178 3500
L 1178 0
L 603 0
L 603 3500
z
M 603 4863
L 1178 4863
L 1178 4134
L 603 4134
L 603 4863
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-29" d="M 513 4856
L 1013 4856
Q 1481 4119 1714 3412
Q 1947 2706 1947 2009
Q 1947 1309 1714 600
Q 1481 -109 1013 -844
L 513 -844
Q 928 -128 1133 580
Q 1338 1288 1338 2009
Q 1338 2731 1133 3434
Q 928 4138 513 4856
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-41" d="M 2188 4044
L 1331 1722
L 3047 1722
L 2188 4044
z
M 1831 4666
L 2547 4666
L 4325 0
L 3669 0
L 3244 1197
L 1141 1197
L 716 0
L 50 0
L 1831 4666
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-43" d="M 4122 4306
L 4122 3641
Q 3803 3938 3442 4084
Q 3081 4231 2675 4231
Q 1875 4231 1450 3742
Q 1025 3253 1025 2328
Q 1025 1406 1450 917
Q 1875 428 2675 428
Q 3081 428 3442 575
Q 3803 722 4122 1019
L 4122 359
Q 3791 134 3420 21
Q 3050 -91 2638 -91
Q 1578 -91 968 557
Q 359 1206 359 2328
Q 359 3453 968 4101
Q 1578 4750 2638 4750
Q 3056 4750 3426 4639
Q 3797 4528 4122 4306
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-58" d="M 403 4666
L 1081 4666
L 2241 2931
L 3406 4666
L 4084 4666
L 2584 2425
L 4184 0
L 3506 0
L 2194 1984
L 872 0
L 191 0
L 1856 2491
L 403 4666
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-62" d="M 3116 1747
Q 3116 2381 2855 2742
Q 2594 3103 2138 3103
Q 1681 3103 1420 2742
Q 1159 2381 1159 1747
Q 1159 1113 1420 752
Q 1681 391 2138 391
Q 2594 391 2855 752
Q 3116 1113 3116 1747
z
M 1159 2969
Q 1341 3281 1617 3432
Q 1894 3584 2278 3584
Q 2916 3584 3314 3078
Q 3713 2572 3713 1747
Q 3713 922 3314 415
Q 2916 -91 2278 -91
Q 1894 -91 1617 61
Q 1341 213 1159 525
L 1159 0
L 581 0
L 581 4863
L 1159 4863
L 1159 2969
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-75" d="M 544 1381
L 544 3500
L 1119 3500
L 1119 1403
Q 1119 906 1312 657
Q 1506 409 1894 409
Q 2359 409 2629 706
Q 2900 1003 2900 1516
L 2900 3500
L 3475 3500
L 3475 0
L 2900 0
L 2900 538
Q 2691 219 2414 64
Q 2138 -91 1772 -91
Q 1169 -91 856 284
Q 544 659 544 1381
z
M 1991 3584
L 1991 3584
z
" transform="scale(0.015625)"/>
<path id="DejaVuSans-68" d="M 3513 2113
L 3513 0
L 2938 0
L 2938 2094
Q 2938 2591 2744 2837
Q 2550 3084 2163 3084
Q 1697 3084 1428 2787
Q 1159 2491 1159 1978
L 1159 0
L 581 0
L 581 4863
L 1159 4863
L 1159 2956
Q 1366 3272 1645 3428
Q 1925 3584 2291 3584
Q 2894 3584 3203 3211
Q 3513 2838 3513 2113
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#DejaVuSans-55"/>
<use xlink:href="#DejaVuSans-53" x="73.193359"/>
<use xlink:href="#DejaVuSans-20" x="136.669922"/>
<use xlink:href="#DejaVuSans-28" x="168.457031"/>
<use xlink:href="#DejaVuSans-24" x="207.470703"/>
<use xlink:href="#DejaVuSans-56" x="271.09375"/>
<use xlink:href="#DejaVuSans-54" x="339.501953"/>
<use xlink:href="#DejaVuSans-49" x="400.585938"/>
<use xlink:href="#DejaVuSans-2c" x="430.078125"/>
<use xlink:href="#DejaVuSans-20" x="461.865234"/>
<use xlink:href="#DejaVuSans-72" x="493.652344"/>
<use xlink:href="#DejaVuSans-65" x="532.515625"/>
<use xlink:href="#DejaVuSans-64" x="594.039062"/>
<use xlink:href="#DejaVuSans-20" x="657.515625"/>
<use xlink:href="#DejaVuSans-73" x="689.302734"/>
<use xlink:href="#DejaVuSans-6f" x="741.402344"/>
<use xlink:href="#DejaVuSans-6c" x="802.583984"/>
<use xlink:href="#DejaVuSans-69" x="830.367188"/>
<use xlink:href="#DejaVuSans-64" x="858.150391"/>
<use xlink:href="#DejaVuSans-29" x="921.626953"/>
<use xlink:href="#DejaVuSans-20" x="960.640625"/>
<use xlink:href="#DejaVuSans-61" x="992.427734"/>
<use xlink:href="#DejaVuSans-6e" x="1053.707031"/>
<use xlink:href="#DejaVuSans-64" x="1117.085938"/>
<use xlink:href="#DejaVuSans-20" x="1180.5625"/>
<use xlink:href="#DejaVuSans-57" x="1212.349609"/>
<use xlink:href="#DejaVuSans-6f" x="1305.351562"/>
<use xlink:href="#DejaVuSans-72" x="1366.533203"/>
<use xlink:href="#DejaVuSans-6c" x="1407.646484"/>
<use xlink:href="#DejaVuSans-64" x="1435.429688"/>
<use xlink:href="#DejaVuSans-20" x="1498.90625"/>
<use xlink:href="#DejaVuSans-65" x="1530.693359"/>
<use xlink:href="#DejaVuSans-78" x="1590.466797"/>
<use xlink:href="#DejaVuSans-2d" x="1649.646484"/>
<use xlink:href="#DejaVuSans-55" x="1685.730469"/>
<use xlink:href="#DejaVuSans-53" x="1758.923828"/>
<use xlink:href="#DejaVuSans-20" x="1822.400391"/>
<use xlink:href="#DejaVuSans-28" x="1854.1875"/>
<use xlink:href="#DejaVuSans-24" x="1893.201172"/>
<use xlink:href="#DejaVuSans-41" x="1956.824219"/>
<use xlink:href="#DejaVuSans-43" x="2023.482422"/>
<use xlink:href="#DejaVuSans-57" x="2093.306641"/>
<use xlink:href="#DejaVuSans-58" x="2192.183594"/>
<use xlink:href="#DejaVuSans-2c" x="2260.689453"/>
<use xlink:href="#DejaVuSans-20" x="2292.476562"/>
<use xlink:href="#DejaVuSans-62" x="2324.263672"/>
<use xlink:href="#DejaVuSans-6c" x="2387.740234"/>
<use xlink:href="#DejaVuSans-75" x="2415.523438"/>
<use xlink:href="#DejaVuSans-65" x="2478.902344"/>
<use xlink:href="#DejaVuSans-20" x="2540.425781"/>
<use xlink:href="#DejaVuSans-64" x="2572.212891"/>
<use xlink:href="#DejaVuSans-61" x="2635.689453"/>
<use xlink:href="#DejaVuSans-73" x="2696.96875"/>
<use xlink:href="#DejaVuSans-68" x="2749.068359"/>
<use xlink:href="#DejaVuSans-65" x="2812.447266"/>
<use xlink:href="#DejaVuSans-64" x="2873.970703"/>
<use xlink:href="#DejaVuSans-29" x="2937.447266"/>
<use xlink:href="#DejaVuSans-2c" x="2976.460938"/>
<use xlink:href="#DejaVuSans-20" x="3008.248047"/>
<use xlink:href="#DejaVuSans-72" x="3040.035156"/>
<use xlink:href="#DejaVuSans-65" x="3078.898438"/>
<use xlink:href="#DejaVuSans-62" x="3140.421875"/>
<use xlink:href="#DejaVuSans-61" x="3203.898438"/>
<use xlink:href="#DejaVuSans-73" x="3265.177734"/>
<use xlink:href="#DejaVuSans-65" x="3317.277344"/>
<use xlink:href="#DejaVuSans-64" x="3378.800781"/>
</g>
</g>
</g>
<defs>
<clipPath id="p35c54033eb">
<rect x="52.715" y="33.48" width="944.485" height="68.213984"/>
</clipPath>
<clipPath id="pc3d05ce94c">
<rect x="52.715" y="119.589203" width="944.485" height="68.213984"/>
</clipPath>
<clipPath id="p5943192b9a">
<rect x="52.715" y="205.698407" width="944.485" height="68.213984"/>
</clipPath>
<clipPath id="pdfff1a1bdb">
<rect x="52.715" y="291.80761" width="944.485" height="68.213984"/>
</clipPath>
<clipPath id="p98cef4f0ea">
<rect x="52.715" y="377.916813" width="944.485" height="68.213984"/>
</clipPath>
<clipPath id="p783a6bf28d">
<rect x="52.715" y="464.026016" width="944.485" height="68.213984"/>
</clipPath>
</defs>
</svg>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment